#
# 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=8 DEFAULT CHARSET=utf8;

INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (3, 2, 1588, NULL, '3.0000', 4, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (4, 2, 1650, NULL, '1.0000', 4, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (5, 1, 1502, NULL, '5.0000', 4, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (6, 1, 2809, NULL, '2.0000', 4, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (7, 3, 2085, NULL, '1.0000', 3, '', '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 DEFAULT NULL,
  `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=4 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, '2021-04-01 04:34:00', '2021/04/0001', 4, '', NULL, 3, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (2, '2021-05-07 18:27:00', '2021/05/0002', 4, '', NULL, 3, 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, '2021-08-05 23:43:00', '5/8/2020', 3, '', NULL, 3, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_attachments
#

DROP TABLE IF EXISTS `sma_attachments`;

CREATE TABLE `sma_attachments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `subject_id` int(11) NOT NULL,
  `subject_type` varchar(55) NOT NULL,
  `file_name` varchar(100) NOT NULL,
  `orig_name` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# 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 DEFAULT CHARSET=utf8;

#
# 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=3 DEFAULT CHARSET=utf8;

INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (1, 'C1', 'Category 1', NULL, NULL, NULL, NULL);
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (2, 'C2', 'LAK', NULL, 0, 'lak', 'LAK');


#
# 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 DEFAULT NULL,
  `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=33 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', 'Petaling Jaya', 'Selangor', '46000', 'Malaysia', '0123456789', 'customer@tecdiary.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 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 (2, 4, 'supplier', NULL, NULL, 'Test Supplier', 'Supplier Company Name', NULL, 'Supplier Address', 'Petaling Jaya', 'Selangor', '46050', 'Malaysia', '0123456789', 'supplier@tecdiary.com', '-', '-', '-', '-', '-', '-', NULL, 0, 'logo.png', 0, NULL, 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, 'fmms-commandos', 'Commandos', '', 'Commandos', 'Adenta', '', '', '', '0596062260/020875520', 'info@fmmsgh.com', '', '', '', '', '', '', ' Thank you for shopping with us. <br>Please come again', 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 (4, 4, 'supplier', NULL, NULL, 'HETTY', 'DESTINY LINK PHARMACY LTD.', '', 'okaishie drug lane', 'Accra', '', '00233', 'Ghana', '0302631491', 'rapsotoday@gmail.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 (5, 4, 'supplier', NULL, NULL, 'BASE PHARMACY', 'BASE PHARMACY', '', 'OKASHIE DRUG LANE', 'ACCRA', 'ACCRA', '233', 'ACCRA', '0302672317', 'BASEPHARMACY@GMAIL.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 (6, 4, 'supplier', NULL, NULL, 'ERNEST CHEMIST', 'ERNEST CHEMISTS LTD', '', 'okaishie kimblery avenue', 'accra', 'ACCRA', '', '', '0302229293', 'ernestchm@ncs.com.gh', '', '', '', '', '', '', 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 (7, 4, 'supplier', NULL, NULL, 'RENIE', 'RENIE CHEMIST', '', 'okaishie drug lane', 'accra', 'accra', '', '', '0503496180', 'info@reniechemist.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 (8, 4, 'supplier', NULL, NULL, 'KINAPHARMA', 'KINAPHARMA LIMITED', '', 'okaishie', 'accra', 'accra', '', '', '0302220390', 'info@kinapharma.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 (9, 4, 'supplier', NULL, NULL, 'TOBINCO', 'TOBINCO PHARMCETICAL', '', 'accra', 'accra', '', '', '', '0240494550', 'INFO@tobinco.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 (10, 4, 'supplier', NULL, NULL, 'TINATEET', 'TINATTET HERBAL MANUFACTURING COMPANY', '', 'OKAISHIE', 'ACCRA', 'ACCRA', '', '', '0243106856', 'info@tenattet.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 (11, 4, 'supplier', NULL, NULL, 'ELOHIM', 'ELOHIM PHARMACEUTICALS LTD', '', 'okaishie', 'accra', 'accra', '', '', '0596913391', 'info@elohim.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 (12, 4, 'supplier', NULL, NULL, 'OSONS', 'OSONS CHEMIST', '', 'ACCRA', 'ACCRA', '', '', '', '0302245334', 'OSONS@VODAFONE.COM.GH', '', '', '', '', '', '', 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 (13, 4, 'supplier', NULL, NULL, '(LETAP)', 'Letap pharmaceuticals ltd', '', 'accra', 'accra', '', '', '', '0302224613', 'info@letap.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 (14, 4, 'supplier', NULL, NULL, 'STELLA', 'OPEN MARKET', '', '<p>New lego, 0244282043</p>', 'ACCRA', '', '', '', '0244385405', 'INFO@FMMS.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 (15, 4, 'supplier', NULL, NULL, 'YARABI', 'YARABI VENTURES', '', 'nima', 'accra', '', '', '', '0244875328', 'info@yarabiventures.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 (16, 4, 'supplier', NULL, NULL, 'KELMED', 'KELMED PHARMACAUTICALS', '', 'okaishie/madina', 'accra', '', '', '', '0302344556', 'info@kelmed.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 (17, 4, 'supplier', NULL, NULL, 'HARLOWS', 'HARLOWS HERBALS CENTRE', '', 'okaishie drug lane', 'accra', '', '', '', '0209054768', 'info@harlows.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 (18, 4, 'supplier', NULL, NULL, 'NISSI', 'NISSI PHARMACY', '', 'madina', 'accra', '', '', '', '0542019630', 'nissi.pharmaltd@yahoo.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 (19, 4, 'supplier', NULL, NULL, 'HANNAH', 'YELLOW&ORANGE PHARMACEUTICAL', '', 'accra', 'spintex', 'ghana', '', '', '0540238009', 'alextease@gmail.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 (20, 4, 'supplier', NULL, NULL, 'MEDITAB', 'MEDITAB PHARMACY', '', 'KISSEMAN', 'ACCRA', '', '', '', '0557428812', 'INFO@MEDITAB.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 (21, 3, 'customer', 1, 'General', 'STELLA', 'FMMS PHAR ACY', '', 'NEW LEGON', 'ACCRA', '', '', '', '0244385405', 'SAPPIAHKUBI@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 (22, 4, 'supplier', NULL, NULL, 'CELLGIVITY', 'MAX INTERNATIONAL', '', 'EAST LEGON', 'ACCRA', '', '', '', '0267385405', 'INFO@MAX.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 (23, 4, 'supplier', NULL, NULL, 'SHAGGY', 'SHAGGYSCO PHARMACY', '', 'OKAISHIE', 'ACCRA', '', '', '', '05515597749', 'INFO@SHAGGY.CO', '', '', '', '', '', '', 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 (24, 4, 'supplier', NULL, NULL, 'DEPENDABLE', 'DEPENDABLE', '', 'ACCRA', 'ACCRA', '', '', '', '0242505555', 'INFO@DEP.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 (25, 4, 'supplier', NULL, NULL, 'ECG', 'EAST CANTOMENT', '', 'NORTH LEGON', 'ACCRA', '', '', '', '0244385405', 'INFO@ECG.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 (26, 4, 'supplier', NULL, NULL, 'UNICORN', 'UNICORN CHEMIST', '', 'OSU ', 'ACCRA', '', '', '', '0556554285', 'INFO@UNICORM.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 (27, 4, 'supplier', NULL, NULL, 'MPHARMA', 'MPHARMA', '', 'EAST LEGON', 'ACCRA', '', '', '', '0244385405', 'MPHARMA@INFO.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 (28, 4, 'supplier', NULL, NULL, 'FRANK', 'NEW LIFE PHARMACY', '', 'USA', 'MIAMI', 'USA', '', '', '0244385405', 'INFO@NEWLIFE.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 (29, 4, 'supplier', NULL, NULL, 'GEORGE', 'PHARMA GEORGE CHEMIST', '', 'DOME', 'ACCRA', '', '', '', '0244444444', 'INFO@PHARMAGEORGE.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 (30, 4, 'supplier', NULL, NULL, 'SHAGGY', 'SHAGGYSCO PHARMACY', '', 'OKAISHIE', 'ACCRA', '', '', '', '0551597749', 'INFO@SHAGGYS.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 (31, NULL, 'biller', NULL, NULL, 'fmms-rosarosa', 'rosa rosa', '', 'rosa rosa', 'Adenta', '', '', '', '0596062260/020875520', 'info@fmmsgh.co', '', '', '', '', '', '', ' Thank you for shopping with us. <br>Please come again', 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 (32, NULL, 'biller', NULL, NULL, 'fmms-lakeside', 'LAKE SIDE', '', 'lakeside', 'Botwe', '', '', '', '0596062260/020875520', 'support@fmmsgh.com', '', '', '', '', '', '', ' Thank you for shopping with us. <br>Please come again', 0, 'logo.png', 0, NULL, NULL, NULL, '');


#
# 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,
  `purchase_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11233 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`, `purchase_id`) VALUES (22, '2021-04-12', 1702, 22, 16, 2465, '1.0000', '90.0000', '90.0000', '19.5000', '19.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (23, '2021-04-12', 1728, 23, 16, NULL, '8.0000', '90.0000', '90.0000', '2.5000', '2.5000', '-8.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (24, '2021-04-12', 1999, 24, 17, NULL, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (25, '2021-04-12', 1641, 25, 18, 2379, '1.0000', '90.0000', '90.0000', '1.3000', '1.3000', '107.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (26, '2021-04-12', 1385, 26, 19, NULL, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (27, '2021-04-12', 1501, 27, 19, 1504, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (28, '2021-04-12', 1771, 28, 19, 2199, '1.0000', '3.3900', '3.3900', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (29, '2021-04-12', 1863, 29, 19, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (30, '2021-04-12', 1565, 30, 19, NULL, '1.0000', '18.0500', '18.0500', '24.0000', '24.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (31, '2021-04-12', 2288, 31, 19, NULL, '1.0000', '7.5900', '7.5900', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (32, '2021-04-12', 1609, 32, 19, NULL, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (33, '2021-04-12', 2169, 33, 19, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (34, '2021-04-12', 2275, 34, 19, NULL, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (35, '2021-04-12', 2169, 35, 19, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (36, '2021-04-12', 1935, 36, 19, NULL, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (37, '2021-04-13', 2256, 37, 20, NULL, '1.0000', '12.7400', '12.7400', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (38, '2021-04-13', 2003, 38, 20, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (39, '2021-04-13', 1863, 39, 20, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (40, '2021-04-13', 1845, 40, 21, NULL, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (41, '2021-04-13', 2233, 41, 21, NULL, '1.0000', '19.0200', '19.0200', '26.5000', '26.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (42, '2021-04-13', 1454, 42, 21, NULL, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (43, '2021-04-13', 1761, 43, 21, 2189, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (44, '2021-04-13', 2058, 44, 22, NULL, '1.0000', '10.0000', '10.0000', '30.0000', '30.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (45, '2021-04-13', 2256, 45, 23, NULL, '1.0000', '12.7400', '12.7400', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (46, '2021-04-13', 2003, 46, 23, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (47, '2021-04-13', 1863, 47, 23, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (48, '2021-04-13', 1602, 48, 23, NULL, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (49, '2021-04-13', 1636, 49, 24, 2374, '1.0000', '90.0000', '90.0000', '13.0000', '13.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (50, '2021-04-13', 2068, 50, 24, NULL, '1.0000', '11.8000', '11.8000', '15.5000', '15.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (51, '2021-04-13', 1639, 51, 24, 2377, '1.0000', '6.6300', '6.6300', '9.0000', '9.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (52, '2021-04-13', 1529, 52, 24, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (53, '2021-04-13', 1432, 53, 25, NULL, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (54, '2021-04-13', 2259, 54, 25, NULL, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (55, '2021-04-13', 1310, 55, 26, 2481, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (56, '2021-04-13', 1310, 56, 26, 2481, '6.0000', '0.3700', '0.3700', '0.5000', '0.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (57, '2021-04-13', 2237, 57, 26, NULL, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (58, '2021-04-13', 1559, 58, 26, 1663, '2.0000', '22.1000', '22.1000', '30.0000', '30.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (59, '2021-04-13', 1993, 59, 26, NULL, '1.0000', '0.6000', '0.6000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (60, '2021-04-13', 2135, 60, 26, 1523, '2.0000', '2.5000', '2.5000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (61, '2021-04-13', 1427, 61, 27, NULL, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (62, '2021-04-13', 1299, 62, 28, 2470, '2.0000', '3.9000', '3.9000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (63, '2021-04-13', 1319, 63, 28, 2488, '1.0000', '3.0000', '3.0000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (64, '2021-04-13', 1689, 64, 28, 2469, '1.0000', '12.3500', '12.3500', '16.5000', '16.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (65, '2021-04-13', 1980, 65, 29, NULL, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (66, '2021-04-13', 1667, 66, 29, NULL, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (67, '2021-04-13', 2280, 67, 30, NULL, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (68, '2021-04-13', 1427, 68, 30, NULL, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (69, '2021-04-13', 1847, 69, 30, NULL, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (70, '2021-04-14', 1602, 70, 31, NULL, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (71, '2021-04-14', 1931, 71, 31, NULL, '1.0000', '7.0000', '7.0000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (72, '2021-04-14', 2275, 72, 31, NULL, '10.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (73, '2021-04-14', 1947, 73, 31, 2497, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (74, '2021-04-14', 1912, 74, 31, 1503, '1.0000', '0.3100', '0.3100', '0.8000', '0.8000', '99.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (75, '2021-04-14', 1812, 75, 32, 2448, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (76, '2021-04-14', 2178, 76, 33, NULL, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (77, '2021-04-14', 2275, 77, 33, NULL, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (78, '2021-04-14', 2279, 78, 33, NULL, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (79, '2021-04-14', 1863, 79, 33, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (80, '2021-04-14', 1839, 80, 33, NULL, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (81, '2021-04-14', 1496, 81, 33, 1499, '1.0000', '8.8400', '8.8400', '12.0000', '12.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (82, '2021-04-14', 1772, 82, 33, NULL, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (83, '2021-04-14', 1602, 83, 33, NULL, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (84, '2021-04-14', 1433, 84, 34, NULL, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (85, '2021-04-14', 1387, 85, 34, NULL, '1.0000', '90.0000', '90.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (86, '2021-04-14', 1602, 86, 34, NULL, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (87, '2021-04-14', 1819, 87, 35, NULL, '1.0000', '5.5000', '5.5000', '7.2600', '7.2600', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (88, '2021-04-14', 1616, 88, 35, NULL, '1.0000', '4.0000', '4.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (89, '2021-04-14', 1888, 89, 35, NULL, '1.0000', '90.0000', '90.0000', '19.5000', '19.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (90, '2021-04-14', 1767, 90, 35, 2195, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (91, '2021-04-14', 1600, 91, 36, NULL, '1.0000', '7.8800', '7.8800', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (92, '2021-04-14', 2072, 92, 36, NULL, '1.0000', '7.3800', '7.3800', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (93, '2021-04-14', 2143, 93, 37, NULL, '1.0000', '15.0000', '15.0000', '22.0000', '22.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (94, '2021-04-14', 1371, 94, 38, NULL, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (95, '2021-04-14', 2275, 95, 38, NULL, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (96, '2021-04-14', 1912, 96, 38, 1503, '2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '97.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (97, '2021-04-14', 1667, 97, 38, NULL, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (98, '2021-04-14', 1805, 98, 38, NULL, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (99, '2021-04-14', 2143, 99, 38, NULL, '1.0000', '15.0000', '15.0000', '22.0000', '22.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (100, '2021-04-14', 1717, 100, 39, NULL, '1.0000', '90.0000', '90.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (101, '2021-04-14', 1812, 101, 40, 2448, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (102, '2021-04-14', 2268, 102, 41, NULL, '1.0000', '14.6000', '14.6000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (103, '2021-04-14', 1952, 103, 42, NULL, '1.0000', '37.2300', '37.2300', '49.0000', '49.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (104, '2021-04-15', 2146, 104, 43, NULL, '3.0000', '1.8100', '1.8100', '2.5000', '2.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (105, '2021-04-15', 1912, 105, 44, 1503, '1.0000', '0.3100', '0.3100', '0.8000', '0.8000', '96.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (106, '2021-04-15', 1585, 106, 44, NULL, '1.0000', '8.9900', '8.9900', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (107, '2021-04-15', 1523, 107, 44, 1528, '2.0000', '0.9300', '0.9300', '3.0000', '3.0000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (108, '2021-04-15', 1755, 108, 44, 2183, '1.0000', '5.5900', '5.5900', '7.5000', '7.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (109, '2021-04-15', 1392, 109, 44, NULL, '1.0000', '90.0000', '90.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (110, '2021-04-15', 1303, 110, 44, 2492, '1.0000', '1.3800', '1.3800', '4.0000', '4.0000', '159.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (111, '2021-04-15', 1863, 111, 44, NULL, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (112, '2021-04-15', 1342, 112, 44, NULL, '3.0000', '43.9000', '43.9000', '7.5000', '7.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (113, '2021-04-15', 1748, 113, 44, 1527, '6.0000', '0.3200', '0.3200', '0.5000', '0.5000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (114, '2021-04-15', 2097, 114, 44, 2503, '2.0000', '1.6500', '1.6500', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (115, '2021-04-15', 1299, 115, 44, 2470, '2.0000', '3.9000', '3.9000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (116, '2021-04-15', 1946, 116, 44, 2494, '2.0000', '10.0000', '10.0000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (117, '2021-04-15', 1302, 117, 44, 2493, '2.0000', '4.0000', '4.0000', '6.0000', '6.0000', '28.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (118, '2021-04-15', 1314, 118, 44, 2484, '2.0000', '1.2000', '1.2000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (119, '2021-04-15', 1449, 119, 44, NULL, '3.0000', '0.6600', '0.6600', '2.5000', '2.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (120, '2021-04-15', 1572, 120, 44, NULL, '2.0000', '1.7000', '1.7000', '2.5000', '2.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (121, '2021-04-15', 1385, 121, 44, NULL, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (122, '2021-04-15', 1905, 122, 44, NULL, '3.0000', '0.4000', '0.4000', '1.0000', '1.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (123, '2021-04-15', 2136, 123, 44, NULL, '5.0000', '0.9500', '0.9500', '3.0000', '3.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (124, '2021-04-15', 2063, 124, 44, 2174, '1.0000', '1.9900', '1.9900', '3.5000', '3.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (125, '2021-04-15', 1931, 125, 44, NULL, '4.0000', '7.0000', '7.0000', '1.5000', '1.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (126, '2021-04-15', 2275, 126, 44, NULL, '4.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (127, '2021-04-15', 1953, 127, 44, NULL, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (128, '2021-04-15', 1874, 128, 44, NULL, '1.0000', '6.1000', '6.1000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (129, '2021-04-15', 1307, 129, 44, 2478, '1.0000', '1.9000', '1.9000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (130, '2021-04-15', 1302, 130, 44, 2493, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '29.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (131, '2021-04-15', 1302, 131, 45, 2718, '5.0000', '4.0000', '4.0000', '6.0000', '6.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (132, '2021-04-15', 2237, 132, 45, NULL, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (133, '2021-04-15', 1427, 133, 45, NULL, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (134, '2021-04-15', 1450, 134, 45, NULL, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (135, '2021-04-15', 1534, 135, 45, 1667, '2.0000', '9.8500', '9.8500', '1.3000', '1.3000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (136, '2021-04-15', 1310, 136, 45, 2481, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (137, '2021-04-15', 1533, 137, 46, 1540, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (138, '2021-04-15', 2001, 138, 46, 2187, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (139, '2021-04-15', 1575, 139, 47, NULL, '2.0000', '90.0000', '90.0000', '14.0000', '14.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (140, '2021-04-15', 1331, 140, 47, NULL, '1.0000', '4.2000', '4.2000', '5.5000', '5.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (141, '2021-04-15', 1715, 141, 48, NULL, '1.0000', '4.9200', '4.9200', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (142, '2021-04-15', 1812, 142, 48, 2448, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (143, '2021-04-15', 1989, 143, 48, NULL, '1.0000', '3.5000', '3.5000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (144, '2021-04-15', 1619, 144, 49, NULL, '1.0000', '9.8500', '9.8500', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (145, '2021-04-15', 1526, 145, 50, 1533, '1.0000', '90.0000', '90.0000', '44.0000', '44.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (146, '2021-04-15', 2211, 146, 50, NULL, '1.0000', '10.0000', '10.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (147, '2021-04-15', 2010, 147, 50, NULL, '2.0000', '1.2500', '1.2500', '2.5000', '2.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (148, '2021-04-15', 1665, 148, 50, 2401, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (149, '2021-04-15', 1502, 149, 51, 1505, '1.0000', '90.0000', '90.0000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (150, '2021-04-15', 2233, 150, 52, 3079, '1.0000', '19.0200', '19.0200', '26.5000', '26.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (151, '2021-04-15', 1641, 151, 52, 2379, '15.0000', '90.0000', '90.0000', '1.3000', '1.3000', '92.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (152, '2021-04-15', 2260, 152, 53, 3101, '4.0000', '4.2000', '4.2000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (153, '2021-04-15', 1700, 153, 54, 2463, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (154, '2021-04-15', 1523, 154, 54, 1528, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (155, '2021-04-15', 2260, 155, 54, 3101, '4.0000', '4.2000', '4.2000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (156, '2021-04-15', 1624, 156, 55, NULL, '1.0000', '90.0000', '90.0000', '67.0000', '67.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (157, '2021-04-15', 1904, 157, 56, NULL, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (158, '2021-04-15', 1651, 158, 56, 3257, '1.0000', '6.8300', '6.8300', '9.0000', '9.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (159, '2021-04-16', 1374, 159, 57, 3417, '3.0000', '55.5900', '55.5900', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (160, '2021-04-16', 1780, 160, 58, NULL, '3.0000', '90.0000', '90.0000', '47.0000', '47.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (161, '2021-04-16', 1478, 161, 59, 1490, '2.0000', '90.0000', '90.0000', '28.0000', '28.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (162, '2021-04-16', 2320, 162, 60, NULL, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (163, '2021-04-16', 2318, 163, 60, 3455, '3.0000', '0.5000', '0.5000', '1.0000', '1.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (164, '2021-04-16', 1529, 164, 61, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (165, '2021-04-16', 1493, 165, 61, 1497, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (166, '2021-04-16', 1339, 166, 61, 3378, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (167, '2021-04-16', 1369, 167, 62, 3412, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (168, '2021-04-16', 2250, 168, 63, 3089, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (169, '2021-04-16', 2283, 169, 63, 3123, '2.0000', '1.4300', '1.4300', '2.0000', '2.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (170, '2021-04-16', 1510, 170, 64, 1513, '2.0000', '90.0000', '90.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (171, '2021-04-16', 1961, 171, 65, NULL, '1.0000', '16.3900', '16.3900', '22.0000', '22.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (172, '2021-04-16', 2220, 172, 66, NULL, '2.0000', '5.2800', '5.2800', '7.0000', '7.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (173, '2021-04-16', 1991, 173, 67, NULL, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (174, '2021-04-16', 1620, 174, 68, NULL, '4.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (175, '2021-04-16', 2104, 175, 69, 2510, '1.0000', '0.2000', '0.2000', '1.0000', '1.0000', '149.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (176, '2021-04-16', 2068, 176, 69, NULL, '1.0000', '11.8000', '11.8000', '15.5000', '15.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (177, '2021-04-16', 1610, 177, 69, NULL, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (178, '2021-04-16', 1767, 178, 69, 2195, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (179, '2021-04-16', 2288, 179, 69, 3128, '1.0000', '7.5900', '7.5900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (180, '2021-04-16', 1871, 180, 69, NULL, '10.0000', '90.0000', '90.0000', '2.6000', '2.6000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (181, '2021-04-16', 2268, 181, 69, 3108, '1.0000', '14.6000', '14.6000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (182, '2021-04-16', 2228, 182, 70, 1710, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (183, '2021-04-16', 2168, 183, 71, NULL, '1.0000', '26.0000', '26.0000', '34.0000', '34.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (184, '2021-04-16', 1851, 184, 71, NULL, '1.0000', '11.5600', '11.5600', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (185, '2021-04-16', 1622, 185, 72, NULL, '1.0000', '90.0000', '90.0000', '72.0000', '72.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (186, '2021-04-16', 2140, 186, 72, NULL, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (187, '2021-04-16', 2259, 187, 72, 3100, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (188, '2021-04-16', 1863, 188, 72, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (189, '2021-04-17', 2237, 189, 73, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '57.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (190, '2021-04-17', 2308, 190, 73, 3142, '1.0000', '20.0000', '20.0000', '40.0000', '40.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (191, '2021-04-17', 2317, 191, 73, NULL, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (192, '2021-04-17', 2318, 192, 73, NULL, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (193, '2021-04-17', 1839, 193, 73, NULL, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (194, '2021-04-17', 1579, 194, 73, NULL, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (195, '2021-04-17', 1455, 195, 73, NULL, '1.0000', '4.0000', '4.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (196, '2021-04-17', 1783, 196, 73, NULL, '1.0000', '90.0000', '90.0000', '31.0000', '31.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (197, '2021-04-17', 2037, 197, 73, NULL, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (198, '2021-04-17', 1976, 198, 73, NULL, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (199, '2021-04-17', 1903, 199, 73, NULL, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (200, '2021-04-17', 1501, 200, 73, 1504, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (201, '2021-04-17', 1533, 201, 73, 1540, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (202, '2021-04-17', 2088, 202, 73, 2444, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (203, '2021-04-17', 2026, 203, 73, NULL, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (204, '2021-04-17', 1528, 204, 73, 1535, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (205, '2021-04-17', 1735, 205, 73, NULL, '28.0000', '4.6000', '4.6000', '6.0000', '6.0000', '-28.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (206, '2021-04-17', 2169, 206, 73, NULL, '2.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (207, '2021-04-17', 1904, 207, 73, NULL, '3.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (208, '2021-04-17', 2068, 208, 73, NULL, '1.0000', '11.8000', '11.8000', '15.5000', '15.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (209, '2021-04-17', 1947, 209, 73, 2497, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (210, '2021-04-17', 2096, 210, 73, 2502, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (211, '2021-04-17', 1602, 211, 73, NULL, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (212, '2021-04-17', 1561, 212, 74, 1668, '2.0000', '27.0000', '27.0000', '35.5000', '35.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (213, '2021-04-17', 1544, 213, 74, 1549, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (214, '2021-04-17', 1672, 214, 74, 2437, '2.0000', '90.0000', '90.0000', '38.0000', '38.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (215, '2021-04-17', 1636, 215, 74, 3271, '1.0000', '90.0000', '90.0000', '13.0000', '13.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (216, '2021-04-17', 2068, 216, 74, NULL, '1.0000', '11.8000', '11.8000', '15.5000', '15.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (217, '2021-04-17', 1761, 217, 75, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (218, '2021-04-17', 1435, 218, 75, NULL, '1.0000', '18.5000', '18.5000', '24.5000', '24.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (219, '2021-04-17', 1807, 219, 75, 3540, '6.0000', '1.8000', '1.8000', '2.5000', '2.5000', '23.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (220, '2021-04-17', 1811, 220, 75, NULL, '1.0000', '14.5300', '14.5300', '19.0000', '19.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (221, '2021-04-17', 1961, 221, 75, NULL, '1.0000', '16.3900', '16.3900', '22.0000', '22.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (222, '2021-04-17', 1603, 222, 75, NULL, '1.0000', '55.1600', '55.1600', '73.0000', '73.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (223, '2021-04-17', 2291, 223, 75, 3131, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (224, '2021-04-17', 1311, 224, 76, 2485, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (225, '2021-04-17', 1702, 225, 76, 2465, '1.0000', '90.0000', '90.0000', '19.5000', '19.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (226, '2021-04-17', 1892, 226, 76, NULL, '1.0000', '0.5200', '0.5200', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (227, '2021-04-17', 2060, 227, 76, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (228, '2021-04-17', 1523, 228, 76, 1528, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (229, '2021-04-17', 1863, 229, 76, NULL, '5.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (230, '2021-04-17', 1602, 230, 77, NULL, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (231, '2021-04-17', 2131, 231, 77, NULL, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (232, '2021-04-18', 1866, 232, 78, NULL, '1.0000', '4.7500', '4.7500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (233, '2021-04-18', 2314, 233, 78, 3070, '1.0000', '3.9000', '3.9000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (234, '2021-04-18', 1666, 234, 78, 3243, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (235, '2021-04-18', 2260, 235, 78, 3101, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (236, '2021-04-18', 1916, 236, 78, NULL, '1.0000', '8.2300', '8.2300', '11.0000', '11.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (237, '2021-04-18', 1602, 237, 78, NULL, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (238, '2021-04-18', 1666, 238, 78, 3243, '2.0000', '90.0000', '90.0000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (239, '2021-04-18', 1313, 239, 78, 3075, '1.0000', '0.4200', '0.4200', '3.0000', '3.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (240, '2021-04-18', 1450, 240, 78, NULL, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (241, '2021-04-18', 2285, 241, 78, 3125, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (242, '2021-04-18', 2320, 242, 78, NULL, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (243, '2021-04-18', 1839, 243, 79, NULL, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (244, '2021-04-18', 1946, 244, 79, 2494, '1.0000', '10.0000', '10.0000', '5.0000', '5.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (245, '2021-04-18', 1647, 245, 79, 3261, '1.0000', '4.7200', '4.7200', '6.5000', '6.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (246, '2021-04-18', 1667, 246, 80, NULL, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (247, '2021-04-18', 1961, 247, 81, NULL, '1.0000', '16.3900', '16.3900', '22.0000', '22.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (248, '2021-04-18', 1302, 248, 81, 3071, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (249, '2021-04-18', 2287, 249, 81, 3127, '4.0000', '1.8000', '1.8000', '2.5000', '2.5000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (250, '2021-04-18', 1746, 250, 81, NULL, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (251, '2021-04-18', 1450, 251, 81, NULL, '2.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (252, '2021-04-18', 1603, 252, 81, NULL, '1.0000', '55.1600', '55.1600', '73.0000', '73.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (253, '2021-04-18', 1813, 253, 81, NULL, '1.0000', '90.0000', '90.0000', '28.0000', '28.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (254, '2021-04-18', 2109, 254, 82, 2514, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '148.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (255, '2021-04-18', 1863, 255, 82, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (256, '2021-04-18', 1748, 256, 82, 1527, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (257, '2021-04-18', 1841, 257, 82, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (258, '2021-04-18', 1608, 258, 83, NULL, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (259, '2021-04-18', 2340, 259, 84, NULL, '1.0000', '4.2000', '4.2000', '5.5000', '5.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (260, '2021-04-18', 2341, 260, 84, NULL, '1.0000', '5.5900', '5.5900', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (261, '2021-04-18', 2353, 261, 84, NULL, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (262, '2021-04-18', 1863, 262, 85, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (263, '2021-04-18', 1301, 263, 85, 2472, '1.0000', '1.6800', '1.6800', '2.0000', '2.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (264, '2021-04-18', 1806, 264, 85, NULL, '1.0000', '90.0000', '90.0000', '74.0000', '74.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (265, '2021-04-19', 1969, 265, 86, 1522, '1.0000', '4.3300', '4.3300', '7.0000', '7.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (266, '2021-04-19', 2169, 266, 86, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (267, '2021-04-19', 2379, 267, 86, 4235, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (268, '2021-04-19', 2379, 268, 86, 4235, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (269, '2021-04-19', 2315, 269, 86, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '498.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (270, '2021-04-19', 2036, 270, 86, 4251, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (271, '2021-04-19', 2280, 271, 86, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (272, '2021-04-19', 1863, 272, 86, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (273, '2021-04-19', 1460, 273, 86, NULL, '1.0000', '10.8600', '10.8600', '14.5000', '14.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (274, '2021-04-19', 2285, 274, 86, 3125, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (275, '2021-04-19', 1867, 275, 86, NULL, '1.0000', '10.0500', '10.0500', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (276, '2021-04-19', 2320, 276, 86, NULL, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (277, '2021-04-19', 1812, 277, 86, 2448, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (278, '2021-04-19', 1868, 278, 86, NULL, '1.0000', '4.0300', '4.0300', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (279, '2021-04-19', 1449, 279, 86, NULL, '2.0000', '0.6600', '0.6600', '2.5000', '2.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (280, '2021-04-19', 2030, 280, 86, NULL, '1.0000', '10.0000', '10.0000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (281, '2021-04-19', 1645, 281, 86, 3262, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (282, '2021-04-19', 1639, 282, 86, 3268, '1.0000', '6.6300', '6.6300', '9.0000', '9.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (283, '2021-04-19', 1771, 283, 86, 3410, '1.0000', '3.3900', '3.3900', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (284, '2021-04-19', 2290, 284, 86, 3130, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (285, '2021-04-19', 2318, 285, 86, 4250, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (286, '2021-04-19', 1414, 286, 87, NULL, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (287, '2021-04-19', 1575, 287, 87, NULL, '2.0000', '90.0000', '90.0000', '14.0000', '14.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (288, '2021-04-19', 1347, 288, 87, 3386, '1.0000', '3.4000', '3.4000', '4.5000', '4.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (289, '2021-04-19', 1397, 289, 87, NULL, '1.0000', '3.2000', '3.2000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (290, '2021-04-19', 1432, 290, 87, NULL, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (291, '2021-04-19', 2399, 291, 87, 4212, '3.0000', '8.5000', '8.5000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (292, '2021-04-19', 1651, 292, 87, 3257, '1.0000', '6.8300', '6.8300', '9.0000', '9.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (293, '2021-04-19', 1855, 293, 87, NULL, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (294, '2021-04-19', 1637, 294, 87, 3270, '1.0000', '90.0000', '90.0000', '13.5000', '13.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (295, '2021-04-19', 1620, 295, 88, NULL, '2.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (296, '2021-04-19', 1529, 296, 88, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (297, '2021-04-19', 1665, 297, 89, 3244, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (298, '2021-04-19', 2280, 298, 89, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (299, '2021-04-19', 1863, 299, 89, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (300, '2021-04-19', 1963, 300, 89, NULL, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (301, '2021-04-19', 2061, 301, 89, 2179, '1.0000', '10.9800', '10.9800', '15.0000', '15.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (302, '2021-04-19', 1871, 302, 89, NULL, '3.0000', '90.0000', '90.0000', '2.6000', '2.6000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (303, '2021-04-19', 1574, 303, 89, NULL, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (304, '2021-04-19', 2318, 304, 89, 4400, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (305, '2021-04-19', 2104, 305, 89, 2510, '2.0000', '0.2000', '0.2000', '1.0000', '1.0000', '147.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (306, '2021-04-19', 2251, 306, 89, 3091, '1.0000', '11.6400', '11.6400', '16.0000', '16.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (307, '2021-04-19', 2247, 307, 89, 3086, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (308, '2021-04-19', 2055, 308, 89, 4357, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (309, '2021-04-19', 2275, 309, 89, 3115, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (310, '2021-04-19', 1311, 310, 89, 2485, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (311, '2021-04-19', 2037, 311, 89, NULL, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (312, '2021-04-19', 2038, 312, 89, NULL, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (313, '2021-04-19', 2027, 313, 89, NULL, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (314, '2021-04-19', 1983, 314, 89, NULL, '1.0000', '11.0000', '11.0000', '14.5000', '14.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (315, '2021-04-19', 2386, 315, 89, 4391, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (316, '2021-04-19', 2122, 316, 89, 2644, '1.0000', '20.0000', '20.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (317, '2021-04-19', 2000, 317, 89, NULL, '1.0000', '7.5000', '7.5000', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (318, '2021-04-20', 2340, 318, 90, 3891, '1.0000', '4.2000', '4.2000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (319, '2021-04-20', 1591, 319, 90, NULL, '1.0000', '90.0000', '90.0000', '11.5000', '11.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (320, '2021-04-20', 1528, 320, 90, 1535, '2.0000', '90.0000', '90.0000', '6.0000', '6.0000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (321, '2021-04-20', 2366, 321, 90, 3901, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (322, '2021-04-20', 1863, 322, 90, NULL, '3.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (323, '2021-04-20', 1321, 323, 90, 2490, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (324, '2021-04-20', 2275, 324, 90, 3115, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (325, '2021-04-20', 1935, 325, 90, NULL, '2.0000', '90.0000', '90.0000', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (326, '2021-04-20', 2253, 326, 90, 3093, '1.0000', '9.2500', '9.2500', '12.0000', '12.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (327, '2021-04-20', 1577, 327, 90, NULL, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (328, '2021-04-20', 1831, 328, 91, NULL, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (329, '2021-04-20', 2362, 329, 91, 3870, '1.0000', '82.0200', '82.0200', '108.0000', '108.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (330, '2021-04-20', 2417, 330, 92, 4679, '1.0000', '14.5000', '14.5000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (331, '2021-04-20', 2416, 331, 92, 4678, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (332, '2021-04-20', 2416, 332, 93, 4678, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (333, '2021-04-20', 2242, 333, 94, 3066, '1.0000', '0.4800', '0.4800', '1.0000', '1.0000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (334, '2021-04-20', 1502, 334, 94, 1505, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (335, '2021-04-20', 1771, 335, 94, 3410, '1.0000', '3.3900', '3.3900', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (336, '2021-04-20', 1811, 336, 94, NULL, '1.0000', '14.5300', '14.5300', '19.0000', '19.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (337, '2021-04-20', 1409, 337, 94, NULL, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (338, '2021-04-20', 2308, 338, 94, 3142, '1.0000', '20.0000', '20.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (339, '2021-04-20', 2317, 339, 94, NULL, '2.0000', '15.0000', '15.0000', '18.0000', '18.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (340, '2021-04-20', 1780, 340, 94, NULL, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (341, '2021-04-20', 1529, 341, 94, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (342, '2021-04-20', 1922, 342, 94, NULL, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (343, '2021-04-20', 1837, 343, 94, NULL, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (344, '2021-04-20', 1519, 344, 94, 1524, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (345, '2021-04-20', 1311, 345, 94, 2485, '10.0000', '0.3700', '0.3700', '0.5000', '0.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (346, '2021-04-20', 2285, 346, 94, 3125, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (347, '2021-04-20', 1688, 347, 94, 2452, '1.0000', '16.9900', '16.9900', '24.0000', '24.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (348, '2021-04-20', 1966, 348, 94, 3242, '3.0000', '2.7100', '2.7100', '3.5000', '3.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (349, '2021-04-20', 1586, 349, 95, NULL, '1.0000', '90.0000', '90.0000', '65.0000', '65.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (350, '2021-04-20', 1432, 350, 95, NULL, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (351, '2021-04-20', 2023, 351, 95, NULL, '1.0000', '14.0000', '14.0000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (352, '2021-04-20', 1546, 352, 95, 1665, '3.0000', '90.0000', '90.0000', '3.5000', '3.5000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (353, '2021-04-20', 1873, 353, 95, NULL, '1.0000', '90.0000', '90.0000', '15.5000', '15.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (354, '2021-04-20', 1523, 354, 95, 1528, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (355, '2021-04-20', 1737, 355, 95, NULL, '1.0000', '90.0000', '90.0000', '62.0000', '62.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (356, '2021-04-20', 2432, 356, 95, NULL, '1.0000', '14.5000', '14.5000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (357, '2021-04-20', 1963, 357, 96, NULL, '2.0000', '7.0000', '7.0000', '10.0000', '10.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (358, '2021-04-20', 1871, 358, 96, NULL, '10.0000', '90.0000', '90.0000', '2.6000', '2.6000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (359, '2021-04-20', 1812, 359, 96, 2448, '3.0000', '7.8900', '7.8900', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (360, '2021-04-20', 1591, 360, 96, NULL, '1.0000', '90.0000', '90.0000', '11.5000', '11.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (361, '2021-04-20', 1385, 361, 96, 3428, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (362, '2021-04-20', 1863, 362, 96, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (363, '2021-04-20', 1608, 363, 96, NULL, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (364, '2021-04-20', 1616, 364, 96, NULL, '1.0000', '4.0000', '4.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (365, '2021-04-20', 1647, 365, 96, 3261, '1.0000', '4.7200', '4.7200', '6.5000', '6.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (366, '2021-04-20', 1961, 366, 96, NULL, '1.0000', '16.3900', '16.3900', '24.0000', '24.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (367, '2021-04-20', 2410, 367, 96, 4670, '1.0000', '4.3200', '4.3200', '6.0000', '6.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (368, '2021-04-21', 1871, 368, 97, NULL, '20.0000', '90.0000', '90.0000', '2.6000', '2.6000', '-20.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (369, '2021-04-21', 1302, 369, 97, 3071, '3.0000', '4.0000', '4.0000', '6.0000', '6.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (370, '2021-04-21', 2428, 370, 97, NULL, '1.0000', '11.0000', '11.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (371, '2021-04-21', 2455, 371, 97, NULL, '1.0000', '7.5300', '7.5300', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (372, '2021-04-21', 2237, 372, 97, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '56.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (373, '2021-04-21', 2237, 373, 97, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '56.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (374, '2021-04-21', 2353, 374, 97, 3878, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (375, '2021-04-21', 1381, 375, 97, 3424, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (376, '2021-04-21', 1369, 376, 97, 3412, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (377, '2021-04-21', 1748, 377, 97, 1527, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (378, '2021-04-21', 2289, 378, 97, 3129, '1.0000', '0.2300', '0.2300', '0.5000', '0.5000', '69.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (379, '2021-04-21', 2320, 379, 97, NULL, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (380, '2021-04-21', 1523, 380, 97, 1528, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (381, '2021-04-21', 1771, 381, 97, 3410, '1.0000', '3.3900', '3.3900', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (382, '2021-04-21', 1935, 382, 97, NULL, '3.0000', '90.0000', '90.0000', '1.5000', '1.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (383, '2021-04-21', 1621, 383, 97, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (384, '2021-04-21', 2060, 384, 98, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (385, '2021-04-21', 1744, 385, 98, 2180, '1.0000', '90.0000', '90.0000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (386, '2021-04-21', 1369, 386, 98, 3412, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (387, '2021-04-21', 1765, 387, 98, 3178, '1.0000', '5.3900', '5.3900', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (662, '2021-04-22', 1425, 652, 115, NULL, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (729, '2021-04-22', 2280, 719, 118, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (730, '2021-04-22', 1621, 720, 118, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (731, '2021-04-22', 1738, 721, 118, NULL, '1.0000', '7.1000', '7.1000', '9.5000', '9.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (732, '2021-04-22', 2318, 722, 118, 4400, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (733, '2021-04-22', 1935, 723, 118, NULL, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (734, '2021-04-22', 1980, 724, 118, NULL, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (735, '2021-04-22', 2280, 725, 118, 3120, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (736, '2021-04-22', 2151, 726, 118, NULL, '1.0000', '17.5000', '17.5000', '23.0000', '23.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (737, '2021-04-22', 2144, 727, 118, NULL, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (738, '2021-04-22', 1863, 728, 118, 4992, '5.0000', '1.2200', '1.2200', '2.0000', '2.0000', '125.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (805, '2021-04-22', 1310, 795, 121, 2481, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (806, '2021-04-22', 2435, 796, 121, NULL, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (807, '2021-04-22', 2191, 797, 122, NULL, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (808, '2021-04-22', 1855, 798, 123, 4986, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (809, '2021-04-22', 1602, 799, 124, NULL, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (810, '2021-04-22', 1488, 800, 124, 1491, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (811, '2021-04-22', 1690, 801, 124, 2453, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (812, '2021-04-22', 2289, 802, 124, 3129, '2.0000', '0.2300', '0.2300', '0.5000', '0.5000', '67.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (813, '2021-04-22', 1841, 803, 124, 4974, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '76.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (814, '2021-04-22', 1840, 804, 124, 4973, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (815, '2021-04-22', 1564, 805, 124, NULL, '5.0000', '90.0000', '90.0000', '4.0000', '4.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (816, '2021-04-22', 1668, 806, 124, 3241, '1.0000', '90.0000', '90.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (817, '2021-04-22', 2001, 807, 124, 3184, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (818, '2021-04-22', 1663, 808, 124, 3245, '1.0000', '90.0000', '90.0000', '109.0000', '109.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (819, '2021-04-22', 1831, 809, 124, 4966, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (820, '2021-04-22', 1619, 810, 124, NULL, '1.0000', '9.8500', '9.8500', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (821, '2021-04-22', 1485, 811, 124, 1483, '1.0000', '90.0000', '90.0000', '30.5000', '30.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (822, '2021-04-22', 1904, 812, 124, NULL, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (823, '2021-04-22', 1401, 813, 124, 4360, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (824, '2021-04-22', 1505, 814, 124, 1508, '1.0000', '90.0000', '90.0000', '17.5000', '17.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (825, '2021-04-22', 1688, 815, 124, 4940, '1.0000', '16.9900', '16.9900', '24.0000', '24.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (826, '2021-04-22', 2366, 816, 124, 3901, '1.0000', '3.7500', '3.7500', '6.0000', '6.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (827, '2021-04-22', 1621, 817, 124, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (828, '2021-04-22', 1637, 818, 124, 3270, '1.0000', '90.0000', '90.0000', '13.5000', '13.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (829, '2021-04-22', 2259, 819, 124, 3100, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (830, '2021-04-22', 1812, 820, 124, 4951, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (831, '2021-04-22', 1876, 821, 125, 5004, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (832, '2021-04-22', 1426, 822, 125, NULL, '1.0000', '36.0000', '36.0000', '47.5000', '47.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (833, '2021-04-22', 1432, 823, 125, NULL, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (834, '2021-04-22', 1785, 824, 125, 4932, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (835, '2021-04-22', 2275, 825, 125, 3115, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (836, '2021-04-22', 1592, 826, 125, NULL, '1.0000', '90.0000', '90.0000', '44.0000', '44.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (837, '2021-04-22', 1570, 827, 125, NULL, '1.0000', '90.0000', '90.0000', '54.5000', '54.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (838, '2021-04-22', 2155, 828, 126, NULL, '1.0000', '21.7000', '21.7000', '29.0000', '29.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (839, '2021-04-22', 1560, 829, 127, NULL, '1.0000', '23.1800', '23.1800', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (840, '2021-04-23', 1592, 830, 128, NULL, '1.0000', '90.0000', '90.0000', '44.0000', '44.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (841, '2021-04-23', 1375, 831, 128, 3418, '1.0000', '90.0000', '90.0000', '35.0000', '35.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (842, '2021-04-23', 1690, 832, 128, 2453, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (843, '2021-04-23', 1736, 833, 128, NULL, '2.0000', '26.7000', '26.7000', '37.0000', '37.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (844, '2021-04-23', 1502, 834, 129, 1505, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (845, '2021-04-23', 1863, 835, 129, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '124.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (846, '2021-04-23', 1496, 836, 130, 4387, '1.0000', '8.8400', '8.8400', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (847, '2021-04-23', 1689, 837, 130, 4939, '1.0000', '12.3500', '12.3500', '16.5000', '16.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (848, '2021-04-23', 1837, 838, 131, 4970, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (849, '2021-04-23', 1667, 839, 131, 4837, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (850, '2021-04-23', 1369, 840, 131, 3412, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (851, '2021-04-23', 1756, 841, 131, 3187, '1.0000', '4.9900', '4.9900', '6.5000', '6.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (852, '2021-04-23', 2228, 842, 132, 4371, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (853, '2021-04-23', 2290, 843, 132, 4830, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (854, '2021-04-23', 2105, 844, 133, 2511, '2.0000', '1.3500', '1.3500', '3.0000', '3.0000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (855, '2021-04-23', 1604, 845, 133, NULL, '1.0000', '70.6900', '70.6900', '93.0000', '93.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (856, '2021-04-23', 1643, 846, 133, 3264, '1.0000', '90.0000', '90.0000', '53.0000', '53.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (857, '2021-04-23', 2111, 847, 133, 2635, '1.0000', '40.0000', '40.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (858, '2021-04-23', 2010, 848, 133, NULL, '2.0000', '1.2500', '1.2500', '2.5000', '2.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (859, '2021-04-23', 1967, 849, 134, NULL, '1.0000', '19.5900', '19.5900', '26.0000', '26.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (860, '2021-04-23', 1325, 850, 134, 3364, '2.0000', '23.9800', '23.9800', '32.0000', '32.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (861, '2021-04-23', 2237, 851, 134, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '54.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (862, '2021-04-23', 1528, 852, 134, 1535, '2.0000', '90.0000', '90.0000', '6.0000', '6.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (863, '2021-04-23', 1689, 853, 134, 4939, '1.0000', '12.3500', '12.3500', '16.5000', '16.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (864, '2021-04-23', 1812, 854, 134, 4951, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (865, '2021-04-23', 1519, 855, 134, 1524, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (866, '2021-04-23', 2104, 856, 134, 2510, '2.0000', '0.2000', '0.2000', '1.0000', '1.0000', '145.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (867, '2021-04-23', 2289, 857, 134, 3129, '2.0000', '0.2300', '0.2300', '0.5000', '0.5000', '65.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (868, '2021-04-23', 1841, 858, 134, 4974, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '74.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (869, '2021-04-23', 2289, 859, 134, 3129, '2.0000', '0.2300', '0.2300', '0.5000', '0.5000', '65.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (870, '2021-04-23', 1904, 860, 134, NULL, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (871, '2021-04-23', 2153, 861, 134, NULL, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (872, '2021-04-23', 1533, 862, 134, 1540, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (873, '2021-04-23', 2016, 863, 134, NULL, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (874, '2021-04-23', 2327, 864, 134, 5084, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (875, '2021-04-23', 2318, 865, 134, 4400, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (876, '2021-04-23', 2135, 866, 134, 1523, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (877, '2021-04-23', 1621, 867, 134, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (878, '2021-04-23', 2476, 868, 135, NULL, '1.0000', '10.0000', '10.0000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (879, '2021-04-23', 2486, 869, 135, NULL, '3.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (880, '2021-04-23', 2483, 870, 135, NULL, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (881, '2021-04-23', 2482, 871, 135, NULL, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (882, '2021-04-23', 2481, 872, 135, NULL, '1.0000', '3.5000', '3.5000', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (883, '2021-04-23', 2487, 873, 135, NULL, '1.0000', '30.0000', '30.0000', '35.0000', '35.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (884, '2021-04-23', 2009, 874, 135, NULL, '1.0000', '18.0000', '18.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (885, '2021-04-23', 2286, 875, 135, 3126, '2.0000', '4.3000', '4.3000', '6.0000', '6.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (886, '2021-04-23', 1904, 876, 135, NULL, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (887, '2021-04-23', 1609, 877, 135, 4994, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (888, '2021-04-23', 2163, 878, 136, NULL, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (889, '2021-04-23', 1564, 879, 136, NULL, '2.0000', '90.0000', '90.0000', '4.0000', '4.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (890, '2021-04-23', 2403, 880, 136, 4358, '2.0000', '17.8000', '17.8000', '24.0000', '24.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (891, '2021-04-23', 1785, 881, 136, 4932, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (892, '2021-04-23', 2390, 882, 136, 4397, '1.0000', '7.4000', '7.4000', '9.0000', '9.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (893, '2021-04-23', 1866, 883, 136, 4995, '1.0000', '4.7500', '4.7500', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (894, '2021-04-23', 2241, 884, 137, 3067, '1.0000', '6.5900', '6.5900', '9.0000', '9.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (895, '2021-04-23', 1863, 885, 137, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '123.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (896, '2021-04-24', 1785, 886, 138, 4932, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (897, '2021-04-24', 1410, 887, 138, NULL, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (898, '2021-04-24', 2315, 888, 138, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '496.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (899, '2021-04-24', 2416, 889, 138, 4827, '2.0000', '1.2000', '1.2000', '1.5000', '1.5000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (900, '2021-04-24', 2379, 890, 138, 4385, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (901, '2021-04-24', 1551, 891, 138, 1655, '2.0000', '90.0000', '90.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (902, '2021-04-24', 1635, 892, 138, 3272, '15.0000', '90.0000', '90.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (903, '2021-04-24', 1343, 893, 138, 3382, '1.0000', '43.9000', '43.9000', '58.0000', '58.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (904, '2021-04-24', 1534, 894, 138, 1667, '1.0000', '9.8500', '9.8500', '1.3000', '1.3000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (905, '2021-04-24', 1931, 895, 138, NULL, '1.0000', '7.0000', '7.0000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (906, '2021-04-24', 1744, 896, 138, 2180, '1.0000', '90.0000', '90.0000', '33.0000', '33.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (907, '2021-04-24', 1575, 897, 138, NULL, '2.0000', '90.0000', '90.0000', '14.0000', '14.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (908, '2021-04-24', 2366, 898, 138, 3901, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (909, '2021-04-24', 1863, 899, 139, 4992, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '121.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (910, '2021-04-24', 1381, 900, 139, 3424, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (911, '2021-04-24', 2320, 901, 139, NULL, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (912, '2021-04-24', 2275, 902, 139, 3115, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (913, '2021-04-24', 2250, 903, 139, 3090, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (914, '2021-04-24', 1781, 904, 139, 4936, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (915, '2021-04-24', 1533, 905, 139, 1540, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (916, '2021-04-24', 1321, 906, 139, 2490, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (917, '2021-04-24', 2422, 907, 139, 5356, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (918, '2021-04-24', 2273, 908, 140, 3113, '1.0000', '2.6700', '2.6700', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (919, '2021-04-24', 2030, 909, 140, NULL, '1.0000', '10.0000', '10.0000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (920, '2021-04-24', 1381, 910, 140, 3424, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (921, '2021-04-24', 1519, 911, 140, 1524, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (922, '2021-04-24', 1690, 912, 140, 2453, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (923, '2021-04-24', 1432, 913, 140, NULL, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (924, '2021-04-24', 1427, 914, 141, 4383, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (925, '2021-04-24', 1426, 915, 141, NULL, '1.0000', '36.0000', '36.0000', '47.5000', '47.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (926, '2021-04-24', 2493, 916, 142, NULL, '1.0000', '6.5000', '6.5000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (927, '2021-04-24', 2304, 917, 143, 3063, '10.0000', '1.3300', '1.3300', '2.0000', '2.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (928, '2021-04-24', 1811, 918, 143, 4834, '1.0000', '14.5300', '14.5300', '19.0000', '19.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (929, '2021-04-24', 1605, 919, 144, NULL, '1.0000', '24.8500', '24.8500', '33.0000', '33.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (930, '2021-04-24', 1818, 920, 144, 4954, '1.0000', '14.8000', '14.8000', '19.5000', '19.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (931, '2021-04-24', 2231, 921, 144, 1707, '1.0000', '33.0000', '33.0000', '36.0000', '36.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (932, '2021-04-24', 1371, 922, 144, 3414, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (933, '2021-04-24', 1602, 923, 144, NULL, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (934, '2021-04-24', 1999, 924, 144, NULL, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (935, '2021-04-24', 1949, 925, 144, 2498, '1.0000', '33.0000', '33.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (936, '2021-04-24', 1308, 926, 144, 2479, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (937, '2021-04-24', 2342, 927, 144, 3889, '10.0000', '1.8600', '1.8600', '2.5000', '2.5000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (938, '2021-04-24', 1528, 928, 144, 1535, '2.0000', '90.0000', '90.0000', '6.0000', '6.0000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (939, '2021-04-24', 2352, 929, 144, 3879, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (940, '2021-04-24', 1383, 930, 144, 3426, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (941, '2021-04-24', 1347, 931, 144, 3386, '2.0000', '3.4000', '3.4000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (942, '2021-04-24', 1868, 932, 144, 4997, '1.0000', '4.0300', '4.0300', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (943, '2021-04-24', 1837, 933, 144, 4970, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (944, '2021-04-24', 1574, 934, 144, NULL, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (945, '2021-04-24', 2167, 935, 145, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (946, '2021-04-24', 1904, 936, 145, 5508, '3.0000', '90.0000', '90.0000', '1.0000', '1.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (947, '2021-04-24', 1583, 937, 145, NULL, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (948, '2021-04-24', 1772, 938, 145, 4943, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (949, '2021-04-24', 1508, 939, 145, 1511, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (950, '2021-04-24', 2294, 940, 145, 3133, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (951, '2021-04-24', 1935, 941, 145, 5607, '3.0000', '90.0000', '90.0000', '1.5000', '1.5000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (952, '2021-04-24', 2015, 942, 145, NULL, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (953, '2021-04-24', 1347, 943, 145, 3386, '2.0000', '3.4000', '3.4000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (954, '2021-04-24', 1347, 943, 145, NULL, '8.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-8.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (955, '2021-04-24', 2251, 944, 145, 3091, '1.0000', '11.6400', '11.6400', '16.0000', '16.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (956, '2021-04-24', 2038, 945, 145, NULL, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (957, '2021-04-24', 2479, 946, 145, 5192, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (958, '2021-04-24', 1711, 947, 145, NULL, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (959, '2021-04-24', 2449, 948, 145, 5329, '1.0000', '5.5000', '5.5000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (960, '2021-04-25', 1912, 949, 146, 5514, '1.0000', '0.3100', '0.3100', '0.8000', '0.8000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (961, '2021-04-25', 1646, 950, 146, 3240, '2.0000', '4.5300', '4.5300', '6.0000', '6.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (962, '2021-04-25', 1904, 951, 146, 5508, '2.0000', '90.0000', '90.0000', '1.0000', '1.0000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (963, '2021-04-25', 1812, 952, 146, 4951, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (964, '2021-04-25', 2394, 953, 146, 4367, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (965, '2021-04-25', 1310, 954, 146, 2481, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (966, '2021-04-25', 1402, 955, 146, NULL, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (967, '2021-04-25', 1946, 956, 146, 2494, '2.0000', '10.0000', '10.0000', '5.0000', '5.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (968, '2021-04-25', 2460, 957, 146, 4832, '1.0000', '32.7700', '32.7700', '43.0000', '43.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (969, '2021-04-25', 2144, 958, 146, NULL, '2.0000', '15.0000', '15.0000', '25.0000', '25.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (970, '2021-04-25', 2366, 959, 146, 3901, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (971, '2021-04-25', 2486, 960, 146, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (972, '2021-04-25', 1657, 961, 146, 3251, '2.0000', '90.0000', '90.0000', '0.5000', '0.5000', '98.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (973, '2021-04-25', 2319, 962, 146, 4399, '20.0000', '3.5000', '3.5000', '4.0000', '4.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (974, '2021-04-25', 1621, 963, 146, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (975, '2021-04-25', 2231, 964, 146, 1707, '1.0000', '33.0000', '33.0000', '36.0000', '36.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (976, '2021-04-25', 2068, 965, 146, 5625, '1.0000', '11.8000', '11.8000', '15.5000', '15.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (977, '2021-04-25', 1502, 966, 146, 1505, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (978, '2021-04-25', 1844, 967, 146, 4976, '2.0000', '1.5000', '1.5000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1025, '2021-04-25', 2346, 1014, 151, 3885, '1.0000', '5.5000', '5.5000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1026, '2021-04-25', 1863, 1015, 151, 4992, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '119.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1027, '2021-04-25', 2109, 1016, 151, 2514, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '147.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1034, '2021-04-25', 1935, 1023, 154, 5607, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1038, '2021-04-25', 1550, 1027, 157, 1553, '1.0000', '90.0000', '90.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1039, '2021-04-25', 1550, 1028, 158, 1553, '1.0000', '90.0000', '90.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1040, '2021-04-25', 1602, 1029, 159, NULL, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1041, '2021-04-25', 1953, 1030, 160, 3407, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1042, '2021-04-25', 1369, 1031, 161, 3412, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1043, '2021-04-25', 1550, 1032, 162, 1553, '1.0000', '90.0000', '90.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1044, '2021-04-25', 1767, 1033, 163, 4822, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1045, '2021-04-25', 1602, 1034, 164, NULL, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1046, '2021-04-25', 1573, 1035, 165, NULL, '1.0000', '90.0000', '90.0000', '32.5000', '32.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1047, '2021-04-25', 2248, 1036, 165, 3087, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1048, '2021-04-25', 2280, 1037, 166, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1049, '2021-04-25', 1863, 1038, 166, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '118.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1050, '2021-04-25', 1410, 1039, 166, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1051, '2021-04-25', 2393, 1040, 166, 4806, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1052, '2021-04-25', 1496, 1041, 167, 4387, '1.0000', '8.8400', '8.8400', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1053, '2021-04-25', 1496, 1042, 168, 1499, '1.0000', '8.8400', '8.8400', '12.0000', '12.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1054, '2021-04-25', 2218, 1043, 169, NULL, '1.0000', '12.0000', '12.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1055, '2021-04-25', 1935, 1044, 169, 5607, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1056, '2021-04-25', 1863, 1045, 169, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '117.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1057, '2021-04-25', 2169, 1046, 169, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1058, '2021-04-25', 2302, 1047, 169, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1059, '2021-04-25', 1584, 1048, 170, NULL, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1060, '2021-04-25', 1602, 1049, 170, 5787, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1061, '2021-04-25', 1619, 1050, 170, NULL, '1.0000', '9.8500', '9.8500', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1062, '2021-04-25', 1452, 1051, 170, 5632, '1.0000', '1.2300', '1.2300', '2.0000', '2.0000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1063, '2021-04-25', 1812, 1052, 171, 4951, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1064, '2021-04-25', 1855, 1053, 172, 4986, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1065, '2021-04-26', 2351, 1054, 173, 3880, '1.0000', '17.7000', '17.7000', '23.0000', '23.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1066, '2021-04-26', 1608, 1055, 173, NULL, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1067, '2021-04-26', 1863, 1056, 173, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '116.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1068, '2021-04-26', 1637, 1057, 173, 3270, '1.0000', '90.0000', '90.0000', '13.5000', '13.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1069, '2021-04-26', 1430, 1058, 173, NULL, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1070, '2021-04-26', 1837, 1059, 173, 4970, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1071, '2021-04-26', 1863, 1060, 173, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '116.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1072, '2021-04-26', 1947, 1061, 173, 4998, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1073, '2021-04-26', 1580, 1062, 173, NULL, '3.0000', '0.9900', '0.9900', '1.5000', '1.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1074, '2021-04-26', 1837, 1063, 173, 4970, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1075, '2021-04-26', 1450, 1064, 173, NULL, '2.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1076, '2021-04-26', 2302, 1065, 173, 3143, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1077, '2021-04-26', 1812, 1066, 173, 4951, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1078, '2021-04-26', 1771, 1067, 173, 3410, '1.0000', '3.3900', '3.3900', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1079, '2021-04-26', 1349, 1068, 174, 3388, '1.0000', '32.5000', '32.5000', '43.0000', '43.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1080, '2021-04-26', 2280, 1069, 175, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1081, '2021-04-26', 1499, 1070, 175, 1502, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1082, '2021-04-26', 1620, 1071, 175, NULL, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1083, '2021-04-26', 2167, 1072, 175, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1084, '2021-04-26', 2071, 1073, 175, NULL, '2.0000', '5.0000', '5.0000', '6.5000', '6.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1085, '2021-04-26', 1609, 1074, 175, 4994, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1086, '2021-04-26', 1904, 1075, 175, 5508, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1087, '2021-04-26', 2263, 1076, 175, 3104, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1088, '2021-04-26', 2222, 1077, 175, 1496, '1.0000', '13.5000', '13.5000', '16.0000', '16.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1089, '2021-04-26', 2485, 1078, 175, 5197, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1090, '2021-04-26', 1349, 1079, 175, 3388, '1.0000', '32.5000', '32.5000', '43.0000', '43.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1091, '2021-04-26', 1874, 1080, 175, NULL, '1.0000', '6.1000', '6.1000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1092, '2021-04-26', 1935, 1081, 175, 5607, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1093, '2021-04-26', 1863, 1082, 175, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '114.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1094, '2021-04-26', 2360, 1083, 175, 3872, '2.0000', '0.5200', '0.5200', '0.6900', '0.6900', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1095, '2021-04-26', 1767, 1084, 175, 4822, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1096, '2021-04-26', 1651, 1085, 175, 3257, '1.0000', '6.8300', '6.8300', '9.0000', '9.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1097, '2021-04-26', 1912, 1086, 175, 5514, '3.0000', '0.3100', '0.3100', '0.8000', '0.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1098, '2021-04-26', 1912, 1086, 175, 1503, '1.0000', '0.3100', '0.3100', '0.8000', '0.8000', '95.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1099, '2021-04-26', 1383, 1087, 175, 3426, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1100, '2021-04-26', 2285, 1088, 176, 4835, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1101, '2021-04-26', 1655, 1089, 176, 3253, '1.0000', '90.0000', '90.0000', '44.0000', '44.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1102, '2021-04-26', 2320, 1090, 176, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1103, '2021-04-28', 2071, 1091, 177, NULL, '2.0000', '5.0000', '5.0000', '6.5000', '6.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1104, '2021-04-28', 2440, 1092, 177, 5824, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1105, '2021-04-28', 2005, 1093, 177, 5959, '1.0000', '2.3300', '2.3300', '3.5000', '3.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1106, '2021-04-28', 1848, 1094, 177, 4980, '3.0000', '0.4200', '0.4200', '1.0000', '1.0000', '97.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1107, '2021-04-28', 1874, 1095, 177, NULL, '1.0000', '6.1000', '6.1000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1108, '2021-04-28', 1407, 1096, 177, NULL, '1.0000', '16.8000', '16.8000', '22.0000', '22.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1109, '2021-04-28', 2237, 1097, 177, 3083, '2.0000', '1.0600', '1.0600', '1.5000', '1.5000', '52.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1110, '2021-04-28', 2411, 1098, 177, 4823, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1111, '2021-04-28', 2275, 1099, 177, 3115, '2.0000', '1.0900', '1.0900', '1.5000', '1.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1112, '2021-04-28', 1499, 1100, 177, 1502, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1113, '2021-04-28', 2108, 1101, 177, 6020, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1114, '2021-04-28', 1570, 1102, 177, NULL, '1.0000', '90.0000', '90.0000', '54.5000', '54.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1115, '2021-04-28', 1620, 1103, 177, NULL, '4.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1116, '2021-04-29', 2315, 1104, 178, 3069, '4.0000', '0.3300', '0.3300', '0.5000', '0.5000', '492.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1117, '2021-04-29', 2357, 1105, 178, 3875, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1118, '2021-04-29', 2289, 1106, 178, 3129, '2.0000', '0.2300', '0.2300', '0.5000', '0.5000', '61.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1119, '2021-04-29', 1590, 1107, 178, NULL, '1.0000', '1.7100', '1.7100', '2.2000', '2.2000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1120, '2021-04-29', 1608, 1108, 178, NULL, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1121, '2021-04-29', 1464, 1109, 178, NULL, '1.0000', '90.0000', '90.0000', '17.5000', '17.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1122, '2021-04-29', 2403, 1110, 178, 4358, '1.0000', '17.8000', '17.8000', '24.0000', '24.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1123, '2021-04-29', 1755, 1111, 178, 3188, '1.0000', '5.5900', '5.5900', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1124, '2021-04-29', 1901, 1112, 178, 5505, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1125, '2021-04-29', 1425, 1113, 178, NULL, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1126, '2021-04-29', 2318, 1114, 178, 4400, '35.0000', '0.5000', '0.5000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1127, '2021-04-29', 2318, 1114, 178, NULL, '5.0000', '0.5000', '0.5000', '1.0000', '1.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1128, '2021-04-29', 2280, 1115, 178, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1129, '2021-04-29', 2027, 1116, 179, 5977, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1130, '2021-04-29', 2155, 1117, 179, NULL, '1.0000', '21.7000', '21.7000', '29.0000', '29.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1131, '2021-04-29', 1560, 1118, 179, NULL, '1.0000', '23.1800', '23.1800', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1132, '2021-04-29', 2271, 1119, 179, 3111, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1133, '2021-04-29', 1863, 1120, 179, 4992, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '112.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1134, '2021-04-29', 1812, 1121, 179, 5875, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1135, '2021-04-29', 2327, 1122, 179, 5084, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1136, '2021-04-29', 1646, 1123, 179, 3240, '1.0000', '4.5300', '4.5300', '6.0000', '6.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1137, '2021-04-29', 1772, 1124, 179, 4943, '2.0000', '6.0500', '6.0500', '8.0000', '8.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1138, '2021-04-29', 2302, 1125, 179, 3143, '3.0000', '5.2000', '5.2000', '7.0000', '7.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1139, '2021-04-29', 1935, 1126, 179, 5607, '2.0000', '90.0000', '90.0000', '1.5000', '1.5000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1140, '2021-04-29', 2109, 1127, 179, 5999, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1141, '2021-04-29', 2135, 1128, 179, 1523, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1142, '2021-04-29', 1336, 1129, 179, 3375, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1143, '2021-04-29', 1338, 1130, 179, 3377, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1144, '2021-04-29', 1632, 1131, 179, 3274, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1145, '2021-04-29', 2221, 1132, 179, 4396, '1.0000', '15.0000', '15.0000', '35.0000', '35.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1146, '2021-04-29', 1744, 1133, 179, 2468, '1.0000', '90.0000', '90.0000', '33.0000', '33.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1147, '2021-04-29', 1744, 1134, 180, 2468, '1.0000', '90.0000', '90.0000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1148, '2021-04-29', 2465, 1135, 180, 4844, '1.0000', '7.8200', '7.8200', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1149, '2021-04-29', 1311, 1136, 180, 5503, '10.0000', '0.3700', '0.3700', '0.5000', '0.5000', '90.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1150, '2021-04-29', 1767, 1137, 180, 4822, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1151, '2021-04-29', 1521, 1138, 180, 1526, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1152, '2021-04-29', 1785, 1139, 180, 4932, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1153, '2021-04-30', 1996, 1140, 181, 5953, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1154, '2021-04-30', 1342, 1141, 181, 3381, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1155, '2021-04-30', 1307, 1142, 181, 4984, '1.0000', '1.9000', '1.9000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1156, '2021-04-30', 1427, 1143, 181, 4383, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1157, '2021-04-30', 1431, 1144, 181, NULL, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1158, '2021-04-30', 2451, 1145, 181, 5371, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1159, '2021-04-30', 2481, 1146, 181, 5193, '1.0000', '3.5000', '3.5000', '4.5000', '4.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1160, '2021-04-30', 2479, 1147, 181, 5192, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1161, '2021-04-30', 2151, 1148, 181, NULL, '1.0000', '17.5000', '17.5000', '23.0000', '23.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1162, '2021-04-30', 2317, 1149, 181, 6103, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1163, '2021-04-30', 2479, 1150, 182, 5192, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1164, '2021-04-30', 2399, 1151, 182, 5373, '1.0000', '8.5000', '8.5000', '11.0000', '11.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1165, '2021-04-30', 2483, 1152, 183, 5195, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1166, '2021-04-30', 2511, 1153, 183, 5873, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1167, '2021-04-30', 1863, 1154, 183, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '111.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1168, '2021-04-30', 2348, 1155, 184, 3883, '1.0000', '22.0300', '22.0300', '29.0000', '29.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1169, '2021-04-30', 2540, 1156, 184, 6171, '2.0000', '45.0000', '45.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1170, '2021-04-30', 1523, 1157, 184, 1528, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1171, '2021-04-30', 1563, 1158, 184, 1670, '1.0000', '4.9000', '4.9000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1172, '2021-04-30', 2458, 1159, 184, 4829, '1.0000', '9.9000', '9.9000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1173, '2021-04-30', 2405, 1160, 184, 4811, '10.0000', '1.2000', '1.2000', '1.6000', '1.6000', '90.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1174, '2021-04-30', 1665, 1161, 184, 3244, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1175, '2021-04-30', 1854, 1162, 184, 4985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1176, '2021-04-30', 1504, 1163, 184, 1507, '10.0000', '90.0000', '90.0000', '2.0000', '2.0000', '50.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1177, '2021-04-30', 1337, 1164, 184, 3376, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1178, '2021-04-30', 1922, 1165, 184, 5617, '2.0000', '90.0000', '90.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1179, '2021-04-30', 2410, 1166, 184, 4820, '1.0000', '4.3200', '4.3200', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1180, '2021-04-30', 2304, 1167, 184, 3063, '3.0000', '1.3300', '1.3300', '2.0000', '2.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1181, '2021-04-30', 1608, 1168, 184, NULL, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1182, '2021-04-30', 2220, 1169, 184, 4395, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1183, '2021-04-30', 1961, 1170, 184, 4838, '1.0000', '16.3900', '16.3900', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1184, '2021-04-30', 2352, 1171, 184, 3879, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1185, '2021-04-30', 1383, 1172, 184, 3426, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1186, '2021-04-30', 1602, 1173, 184, 6189, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '59.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1187, '2021-04-30', 1767, 1174, 185, 2195, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1188, '2021-04-30', 1563, 1175, 185, 1670, '1.0000', '4.9000', '4.9000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1189, '2021-04-30', 2546, 1176, 185, 6320, '1.0000', '13.6300', '13.6300', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1190, '2021-04-30', 1736, 1177, 185, NULL, '4.0000', '26.7000', '26.7000', '38.0000', '38.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1191, '2021-04-30', 2237, 1178, 185, 3083, '2.0000', '1.0600', '1.0600', '1.5000', '1.5000', '50.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1192, '2021-04-30', 2280, 1179, 185, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1193, '2021-04-30', 1812, 1180, 185, 5875, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1194, '2021-04-30', 1638, 1181, 185, 3269, '16.0000', '5.8200', '5.8200', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1195, '2021-04-30', 1638, 1181, 185, NULL, '5.0000', '5.8200', '5.8200', '8.0000', '8.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1196, '2021-04-30', 1311, 1182, 185, 5503, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '86.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1197, '2021-04-30', 1596, 1183, 185, NULL, '1.0000', '2.5700', '2.5700', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1198, '2021-04-30', 2251, 1184, 185, 6316, '1.0000', '11.6400', '11.6400', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1199, '2021-04-30', 1610, 1185, 185, NULL, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1200, '2021-04-30', 1640, 1186, 185, 3267, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1201, '2021-04-30', 2288, 1187, 185, 6324, '1.0000', '7.5900', '7.5900', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1202, '2021-05-01', 2416, 1188, 186, 4827, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1203, '2021-05-01', 1493, 1189, 186, 1497, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1204, '2021-05-01', 1367, 1190, 186, 3539, '10.0000', '4.9000', '4.9000', '6.5000', '6.5000', '30.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1205, '2021-05-01', 1574, 1191, 186, NULL, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1206, '2021-05-01', 2073, 1192, 186, 5612, '2.0000', '2.3000', '2.3000', '3.0000', '3.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1207, '2021-05-01', 1415, 1193, 186, NULL, '1.0000', '14.5000', '14.5000', '19.0000', '19.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1208, '2021-05-01', 2386, 1194, 186, 4391, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1209, '2021-05-01', 2242, 1195, 186, 3066, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1210, '2021-05-01', 1783, 1196, 186, 4934, '1.0000', '90.0000', '90.0000', '31.0000', '31.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1211, '2021-05-01', 1935, 1197, 186, 5607, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1212, '2021-05-01', 1432, 1198, 187, 5876, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1213, '2021-05-01', 2228, 1199, 187, 1710, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1214, '2021-05-01', 1785, 1200, 188, 4932, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1215, '2021-05-01', 1312, 1201, 189, 2482, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1216, '2021-05-01', 1307, 1202, 190, 4984, '1.0000', '1.9000', '1.9000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1217, '2021-05-01', 1875, 1203, 191, 6550, '1.0000', '90.0000', '90.0000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1218, '2021-05-01', 1904, 1204, 192, 5508, '5.0000', '90.0000', '90.0000', '1.0000', '1.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1219, '2021-05-01', 2169, 1205, 192, NULL, '3.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1220, '2021-05-01', 1772, 1206, 192, 4943, '2.0000', '6.0500', '6.0500', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1221, '2021-05-01', 2302, 1207, 192, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1222, '2021-05-01', 1332, 1208, 192, 3371, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1223, '2021-05-01', 1494, 1209, 192, NULL, '1.0000', '4.3900', '4.3900', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1224, '2021-05-01', 1559, 1210, 192, 1663, '1.0000', '22.1000', '22.1000', '30.0000', '30.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1225, '2021-05-01', 2455, 1211, 192, 5656, '1.0000', '7.5300', '7.5300', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1226, '2021-05-01', 2169, 1212, 192, NULL, '2.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1227, '2021-05-01', 1630, 1213, 192, NULL, '1.0000', '16.7400', '16.7400', '22.0000', '22.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1228, '2021-05-01', 2286, 1214, 193, 3126, '2.0000', '4.3000', '4.3000', '6.0000', '6.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1229, '2021-05-01', 1529, 1215, 193, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1230, '2021-05-01', 1646, 1216, 194, 3240, '1.0000', '4.5300', '4.5300', '6.0000', '6.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1231, '2021-05-01', 1721, 1217, 194, 6555, '1.0000', '8.6900', '8.6900', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1232, '2021-05-01', 1946, 1218, 194, 6000, '1.0000', '10.0000', '10.0000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1233, '2021-05-01', 1947, 1219, 194, 6003, '2.0000', '5.0000', '5.0000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1234, '2021-05-01', 1941, 1220, 194, 5601, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1235, '2021-05-01', 1529, 1221, 194, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1236, '2021-05-01', 2286, 1222, 194, 3126, '2.0000', '4.3000', '4.3000', '6.0000', '6.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1237, '2021-05-01', 1639, 1223, 195, 6544, '1.0000', '6.6300', '6.6300', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1238, '2021-05-01', 2061, 1224, 195, 2179, '1.0000', '10.9800', '10.9800', '15.0000', '15.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1239, '2021-05-01', 1665, 1225, 195, 3244, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1240, '2021-05-02', 1859, 1226, 196, 4989, '1.0000', '90.0000', '90.0000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1241, '2021-05-02', 1621, 1227, 196, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1242, '2021-05-02', 2426, 1228, 196, 5811, '1.0000', '12.5000', '12.5000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1243, '2021-05-02', 1523, 1229, 196, 1528, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1244, '2021-05-02', 1399, 1230, 196, NULL, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1245, '2021-05-02', 1651, 1231, 196, 3257, '1.0000', '6.8300', '6.8300', '9.0000', '9.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1246, '2021-05-02', 1854, 1232, 196, 4985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1247, '2021-05-02', 1904, 1233, 196, 5508, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1248, '2021-05-02', 2025, 1234, 196, 6425, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1249, '2021-05-02', 2437, 1235, 196, 5821, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1250, '2021-05-02', 2293, 1236, 196, 3064, '3.0000', '1.4400', '1.4400', '2.0000', '2.0000', '97.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1251, '2021-05-02', 1935, 1237, 196, 5607, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1252, '2021-05-02', 1864, 1238, 196, 4993, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1253, '2021-05-02', 1533, 1239, 196, 1540, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1254, '2021-05-02', 1440, 1240, 196, 3280, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1255, '2021-05-02', 1314, 1241, 197, 3076, '1.0000', '1.2000', '1.2000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1256, '2021-05-02', 1340, 1242, 197, 3379, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1257, '2021-05-02', 1812, 1243, 197, 5875, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1258, '2021-05-02', 2384, 1244, 197, 4370, '6.0000', '0.4000', '0.4000', '0.5000', '0.5000', '94.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1259, '2021-05-02', 1307, 1245, 197, 4984, '1.0000', '1.9000', '1.9000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1260, '2021-05-02', 2379, 1246, 197, 4385, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1261, '2021-05-02', 1837, 1247, 197, 4970, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1262, '2021-05-03', 1619, 1248, 198, NULL, '1.0000', '9.8500', '9.8500', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1263, '2021-05-03', 2073, 1249, 198, 5612, '3.0000', '2.3000', '2.3000', '3.0000', '3.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1264, '2021-05-03', 2218, 1250, 198, NULL, '1.0000', '12.0000', '12.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1265, '2021-05-03', 2191, 1251, 198, NULL, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1266, '2021-05-03', 2120, 1252, 198, 2640, '1.0000', '5.0000', '5.0000', '15.0000', '15.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1267, '2021-05-03', 1602, 1253, 198, 6547, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '58.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1268, '2021-05-03', 1935, 1254, 198, 5607, '2.0000', '90.0000', '90.0000', '1.5000', '1.5000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1269, '2021-05-03', 2487, 1255, 198, 5198, '1.0000', '30.0000', '30.0000', '35.0000', '35.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1270, '2021-05-03', 2482, 1256, 198, 5194, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1271, '2021-05-03', 2449, 1257, 198, 5834, '4.0000', '5.5000', '5.5000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1272, '2021-05-03', 2520, 1258, 198, 6041, '2.0000', '18.6000', '18.6000', '25.0000', '25.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1273, '2021-05-03', 2524, 1259, 198, 6247, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1274, '2021-05-03', 2392, 1260, 198, 4369, '2.0000', '3.2000', '3.2000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1275, '2021-05-03', 1463, 1261, 198, NULL, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1276, '2021-05-03', 2441, 1262, 198, 5826, '1.0000', '4.6000', '4.6000', '6.5000', '6.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1277, '2021-05-03', 1602, 1263, 198, 6547, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '58.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1278, '2021-05-03', 1505, 1264, 198, 1508, '1.0000', '90.0000', '90.0000', '17.5000', '17.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1279, '2021-05-03', 2237, 1265, 198, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1280, '2021-05-03', 2283, 1266, 198, 3123, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1281, '2021-05-03', 1816, 1267, 199, 4953, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1282, '2021-05-03', 2544, 1268, 199, 6534, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1283, '2021-05-03', 1863, 1269, 199, 4992, '3.0000', '1.2200', '1.2200', '2.0000', '2.0000', '108.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1284, '2021-05-03', 1935, 1270, 199, 5607, '2.0000', '90.0000', '90.0000', '1.5000', '1.5000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1285, '2021-05-03', 1410, 1271, 200, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1286, '2021-05-03', 2167, 1272, 200, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1287, '2021-05-03', 1935, 1273, 200, 5607, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1288, '2021-05-03', 1888, 1274, 201, 5013, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1289, '2021-05-03', 1756, 1275, 201, 3187, '2.0000', '4.9900', '4.9900', '6.5000', '6.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1290, '2021-05-03', 1529, 1276, 201, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1291, '2021-05-03', 2088, 1277, 201, 6006, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1292, '2021-05-04', 2384, 1278, 202, 4370, '4.0000', '0.4000', '0.4000', '0.5000', '0.5000', '90.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1293, '2021-05-04', 2291, 1279, 202, 3131, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1294, '2021-05-04', 2281, 1280, 202, 3121, '5.0000', '3.0000', '3.0000', '4.0000', '4.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1295, '2021-05-04', 2260, 1281, 202, 7067, '2.0000', '4.2000', '4.2000', '6.0000', '6.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1296, '2021-05-04', 2479, 1282, 202, 5192, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1297, '2021-05-04', 2317, 1283, 202, 6248, '4.0000', '15.0000', '15.0000', '18.0000', '18.0000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1298, '2021-05-04', 1406, 1284, 202, NULL, '1.0000', '16.8000', '16.8000', '22.0000', '22.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1299, '2021-05-04', 2285, 1285, 202, 4835, '2.0000', '35.8000', '35.8000', '48.0000', '48.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1300, '2021-05-04', 1337, 1286, 202, 3376, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1301, '2021-05-04', 1545, 1287, 202, 1550, '1.0000', '90.0000', '90.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1302, '2021-05-04', 1674, 1288, 202, 2439, '1.0000', '90.0000', '90.0000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1303, '2021-05-04', 1953, 1289, 202, 3407, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1304, '2021-05-04', 1868, 1290, 202, 4997, '1.0000', '4.0300', '4.0300', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1305, '2021-05-04', 2511, 1291, 202, 5873, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1306, '2021-05-04', 2293, 1292, 202, 3064, '1.0000', '1.4400', '1.4400', '2.0000', '2.0000', '96.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1307, '2021-05-04', 2250, 1293, 202, 3090, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1308, '2021-05-04', 1488, 1294, 203, 1491, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1309, '2021-05-04', 2281, 1295, 203, 3121, '3.0000', '3.0000', '3.0000', '4.0000', '4.0000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1310, '2021-05-04', 2463, 1296, 203, 4840, '5.0000', '2.8700', '2.8700', '4.0000', '4.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1311, '2021-05-04', 2135, 1297, 203, 1523, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1312, '2021-05-04', 1710, 1298, 203, NULL, '1.0000', '3.4300', '3.4300', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1313, '2021-05-04', 1703, 1299, 203, 5493, '1.0000', '7.5900', '7.5900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1314, '2021-05-04', 1841, 1300, 203, 4974, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '72.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1315, '2021-05-04', 2484, 1301, 203, 5196, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1316, '2021-05-04', 2486, 1302, 203, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1317, '2021-05-04', 2512, 1303, 203, 6042, '2.0000', '20.0000', '20.0000', '25.0000', '25.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1318, '2021-05-04', 1339, 1304, 203, 3378, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1319, '2021-05-04', 1427, 1305, 203, 4383, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1320, '2021-05-04', 1863, 1306, 203, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '107.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1321, '2021-05-05', 1460, 1307, 204, NULL, '1.0000', '10.8600', '10.8600', '14.5000', '14.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1322, '2021-05-05', 1608, 1308, 204, NULL, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1323, '2021-05-05', 2104, 1309, 204, 6016, '1.0000', '0.2000', '0.2000', '1.0000', '1.0000', '149.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1324, '2021-05-05', 2229, 1310, 204, 1709, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1325, '2021-05-05', 1630, 1311, 204, NULL, '1.0000', '16.7400', '16.7400', '22.0000', '22.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1326, '2021-05-05', 2169, 1312, 204, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1327, '2021-05-05', 1864, 1313, 204, 4993, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1328, '2021-05-05', 2320, 1314, 204, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1329, '2021-05-05', 2231, 1315, 204, 1707, '1.0000', '33.0000', '33.0000', '36.0000', '36.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1330, '2021-05-05', 2316, 1316, 204, NULL, '1.0000', '44.0000', '44.0000', '46.0000', '46.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1331, '2021-05-05', 2556, 1317, 204, 7130, '2.0000', '0.5800', '0.5800', '1.0000', '1.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1332, '2021-05-05', 2151, 1318, 204, NULL, '1.0000', '17.5000', '17.5000', '23.0000', '23.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1333, '2021-05-05', 2255, 1319, 204, 3095, '1.0000', '17.4900', '17.4900', '23.0000', '23.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1334, '2021-05-05', 2293, 1320, 204, 3064, '1.0000', '1.4400', '1.4400', '2.0000', '2.0000', '95.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1335, '2021-05-05', 2289, 1321, 204, 3129, '2.0000', '0.2300', '0.2300', '0.5000', '0.5000', '59.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1336, '2021-05-05', 1904, 1322, 204, 5508, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1337, '2021-05-05', 1354, 1323, 204, 3393, '1.0000', '39.7500', '39.7500', '53.0000', '53.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1338, '2021-05-05', 1761, 1324, 204, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1339, '2021-05-05', 2089, 1325, 204, NULL, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1340, '2021-05-05', 1449, 1326, 204, 5624, '3.0000', '0.6600', '0.6600', '2.5000', '2.5000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1341, '2021-05-05', 2136, 1327, 204, NULL, '3.0000', '0.9500', '0.9500', '3.0000', '3.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1342, '2021-05-05', 1314, 1328, 204, 3076, '2.0000', '1.2000', '1.2000', '3.0000', '3.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1343, '2021-05-05', 1812, 1329, 204, 5875, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1344, '2021-05-05', 1304, 1330, 204, 2475, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1345, '2021-05-05', 1309, 1331, 204, 3074, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1346, '2021-05-05', 1450, 1332, 204, NULL, '2.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1347, '2021-05-05', 1837, 1333, 204, 4970, '5.0000', '0.5500', '0.5500', '1.0000', '1.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1348, '2021-05-05', 2379, 1334, 204, 4385, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1349, '2021-05-05', 1546, 1335, 204, 1665, '7.0000', '90.0000', '90.0000', '3.5000', '3.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1350, '2021-05-05', 1388, 1336, 204, NULL, '1.0000', '5.3000', '5.3000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1351, '2021-05-05', 1839, 1337, 204, 4972, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1352, '2021-05-05', 2120, 1338, 205, 2640, '1.0000', '5.0000', '5.0000', '15.0000', '15.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1353, '2021-05-05', 2071, 1339, 205, NULL, '3.0000', '5.0000', '5.0000', '6.5000', '6.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1354, '2021-05-05', 2221, 1340, 205, 4396, '2.0000', '15.0000', '15.0000', '35.0000', '35.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1355, '2021-05-05', 1595, 1341, 205, NULL, '1.0000', '18.6100', '18.6100', '24.5000', '24.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1356, '2021-05-05', 1397, 1342, 205, NULL, '1.0000', '3.2000', '3.2000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1357, '2021-05-05', 1813, 1343, 205, 4952, '1.0000', '90.0000', '90.0000', '28.0000', '28.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1358, '2021-05-05', 1651, 1344, 205, 3257, '1.0000', '6.8300', '6.8300', '9.0000', '9.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1359, '2021-05-05', 1369, 1345, 205, 3412, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1360, '2021-05-05', 1523, 1346, 205, 1528, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1361, '2021-05-05', 1592, 1347, 205, 7120, '1.0000', '90.0000', '90.0000', '44.0000', '44.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1362, '2021-05-05', 1592, 1347, 205, NULL, '1.0000', '90.0000', '90.0000', '44.0000', '44.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1363, '2021-05-05', 1812, 1348, 205, 5875, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1364, '2021-05-05', 1431, 1349, 205, NULL, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1365, '2021-05-05', 2036, 1350, 205, 4401, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1366, '2021-05-05', 2025, 1351, 205, 6425, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1367, '2021-05-05', 1376, 1352, 205, 3419, '1.0000', '90.0000', '90.0000', '45.0000', '45.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1368, '2021-05-05', 2568, 1353, 205, 7213, '1.0000', '0.3300', '0.3300', '0.2500', '0.2500', '149.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1369, '2021-05-05', 2568, 1354, 205, 7213, '15.0000', '0.3300', '0.3300', '0.2500', '0.2500', '135.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1370, '2021-05-05', 1822, 1355, 206, 4957, '20.0000', '2.4000', '2.4000', '3.0000', '3.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1371, '2021-05-05', 1935, 1356, 206, 5607, '2.0000', '90.0000', '90.0000', '1.5000', '1.5000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1372, '2021-05-05', 2233, 1357, 206, 4813, '1.0000', '19.0200', '19.0200', '26.5000', '26.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1373, '2021-05-05', 1505, 1358, 206, 1508, '1.0000', '90.0000', '90.0000', '17.5000', '17.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1374, '2021-05-05', 1431, 1359, 206, NULL, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1375, '2021-05-05', 1337, 1360, 206, 3376, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1376, '2021-05-05', 2541, 1361, 206, 7079, '1.0000', '9.7500', '9.7500', '13.0000', '13.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1377, '2021-05-05', 1863, 1362, 206, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '106.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1378, '2021-05-05', 2568, 1363, 206, 7213, '1.0000', '0.3300', '0.3300', '0.2500', '0.2500', '133.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1379, '2021-05-05', 2568, 1364, 206, 7213, '1.0000', '0.3300', '0.3300', '0.2500', '0.2500', '133.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1380, '2021-05-05', 2568, 1365, 206, 7213, '5.0000', '0.3300', '0.3300', '0.2500', '0.2500', '129.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1381, '2021-05-05', 1993, 1366, 206, 6450, '1.0000', '0.6000', '0.6000', '3.5000', '3.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1382, '2021-05-05', 2167, 1367, 207, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1383, '2021-05-05', 1612, 1368, 207, NULL, '2.0000', '1.6000', '1.6000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1384, '2021-05-05', 1840, 1369, 207, 4973, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1385, '2021-05-05', 2336, 1370, 207, 3895, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1386, '2021-05-05', 1604, 1371, 207, 7324, '1.0000', '70.6900', '70.6900', '46.5000', '46.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1387, '2021-05-05', 1863, 1372, 207, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '105.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1388, '2021-05-05', 1687, 1373, 208, 5899, '1.0000', '12.0000', '12.0000', '15.5000', '15.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1389, '2021-05-05', 2472, 1374, 208, 5093, '1.0000', '9.5000', '9.5000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1390, '2021-05-05', 2285, 1375, 208, 7420, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1391, '2021-05-06', 2563, 1376, 209, 7208, '1.0000', '30.0000', '30.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1392, '2021-05-06', 1947, 1377, 209, 6003, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1393, '2021-05-06', 2280, 1378, 209, 3120, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1394, '2021-05-06', 1372, 1379, 209, 3415, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1395, '2021-05-06', 2260, 1380, 209, 7470, '3.0000', '4.2000', '4.2000', '6.0000', '6.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1396, '2021-05-06', 1570, 1381, 209, 7118, '1.0000', '90.0000', '90.0000', '54.5000', '54.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1397, '2021-05-06', 2260, 1382, 209, 7470, '4.0000', '4.2000', '4.2000', '6.0000', '6.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1398, '2021-05-06', 1863, 1383, 209, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '104.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1399, '2021-05-06', 1783, 1384, 210, 4934, '1.0000', '90.0000', '90.0000', '31.0000', '31.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1400, '2021-05-06', 2349, 1385, 210, 3882, '1.0000', '24.1000', '24.1000', '32.0000', '32.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1401, '2021-05-06', 1636, 1386, 210, 3271, '1.0000', '90.0000', '90.0000', '13.0000', '13.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1402, '2021-05-06', 1333, 1387, 210, 3372, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1403, '2021-05-06', 2305, 1388, 210, 3138, '2.0000', '1.3300', '1.3300', '2.0000', '2.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1404, '2021-05-06', 2154, 1389, 211, NULL, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1405, '2021-05-06', 2285, 1390, 211, 7420, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1406, '2021-05-06', 2221, 1391, 211, 4396, '2.0000', '15.0000', '15.0000', '35.0000', '35.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1407, '2021-05-06', 1411, 1392, 211, NULL, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1408, '2021-05-06', 1822, 1393, 211, 4957, '20.0000', '2.4000', '2.4000', '3.0000', '3.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1409, '2021-05-06', 2088, 1394, 211, 6006, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1410, '2021-05-06', 2232, 1395, 211, 3078, '1.0000', '27.0000', '27.0000', '36.0000', '36.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1411, '2021-05-06', 2297, 1396, 211, 3136, '1.0000', '7.2000', '7.2000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1412, '2021-05-06', 1904, 1397, 211, 5508, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1413, '2021-05-06', 1610, 1398, 211, NULL, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1414, '2021-05-06', 1756, 1399, 211, 3187, '2.0000', '4.9900', '4.9900', '6.5000', '6.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1415, '2021-05-06', 1602, 1400, 211, 7466, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '56.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1416, '2021-05-06', 1999, 1401, 211, 6444, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1417, '2021-05-06', 1672, 1402, 211, 7412, '3.0000', '90.0000', '90.0000', '3.8000', '3.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1418, '2021-05-06', 1672, 1402, 211, 7459, '11.0000', '90.0000', '90.0000', '3.8000', '3.8000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1419, '2021-05-06', 2169, 1403, 211, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1420, '2021-05-06', 1619, 1404, 211, NULL, '1.0000', '9.8500', '9.8500', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1421, '2021-05-07', 1912, 1405, 212, 1503, '2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '93.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1422, '2021-05-07', 1604, 1406, 212, 7421, '1.0000', '70.6900', '70.6900', '46.5000', '46.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1423, '2021-05-07', 1382, 1407, 212, 3425, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1424, '2021-05-07', 2280, 1408, 212, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1425, '2021-05-07', 2371, 1409, 212, 4376, '1.0000', '12.0000', '12.0000', '17.0000', '17.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1426, '2021-05-07', 1523, 1410, 212, 1528, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1427, '2021-05-07', 1841, 1411, 212, 4974, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '70.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1428, '2021-05-07', 1840, 1412, 212, 4973, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1429, '2021-05-07', 1730, 1413, 213, 1512, '1.0000', '23.9100', '23.9100', '31.5000', '31.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1430, '2021-05-07', 2271, 1414, 213, 3111, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1431, '2021-05-07', 2135, 1415, 213, 1523, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1432, '2021-05-07', 2526, 1416, 213, 6245, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1433, '2021-05-07', 1791, 1417, 213, 4926, '1.0000', '90.0000', '90.0000', '18.5000', '18.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1434, '2021-05-07', 1533, 1418, 213, 1540, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1435, '2021-05-07', 1529, 1419, 213, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1436, '2021-05-07', 1671, 1420, 213, 7461, '20.0000', '90.0000', '90.0000', '5.5000', '5.5000', '50.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1437, '2021-05-07', 2105, 1421, 213, 6017, '2.0000', '1.3500', '1.3500', '3.0000', '3.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1438, '2021-05-07', 1349, 1422, 213, 3388, '1.0000', '32.5000', '32.5000', '43.0000', '43.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1439, '2021-05-07', 2142, 1423, 213, NULL, '1.0000', '57.0000', '57.0000', '76.0000', '76.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1440, '2021-05-07', 2362, 1424, 213, 7460, '10.0000', '82.0200', '82.0200', '11.0000', '11.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1441, '2021-05-07', 1812, 1425, 213, 5875, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1442, '2021-05-07', 1399, 1426, 213, NULL, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1443, '2021-05-07', 2512, 1427, 213, 7520, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1444, '2021-05-07', 2222, 1428, 213, 1496, '1.0000', '13.5000', '13.5000', '16.0000', '16.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1445, '2021-05-07', 2567, 1429, 213, 7200, '1.0000', '33.0000', '33.0000', '37.0000', '37.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1446, '2021-05-07', 1432, 1430, 213, 5876, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1447, '2021-05-07', 1772, 1431, 214, 7401, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1448, '2021-05-07', 2280, 1432, 214, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1449, '2021-05-07', 2545, 1433, 214, 7478, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1450, '2021-05-07', 1520, 1434, 214, 1525, '1.0000', '1.4700', '1.4700', '2.0000', '2.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1451, '2021-05-07', 1863, 1435, 214, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '103.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1452, '2021-05-07', 2568, 1436, 214, 7213, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '125.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1453, '2021-05-07', 2457, 1437, 214, 4803, '1.0000', '23.0000', '23.0000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1454, '2021-05-07', 2302, 1438, 214, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1455, '2021-05-07', 1666, 1439, 214, 7115, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1456, '2021-05-07', 2568, 1440, 215, 7213, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '123.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1457, '2021-05-07', 1785, 1441, 215, 7611, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1458, '2021-05-07', 1667, 1442, 215, 4837, '2.0000', '90.0000', '90.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1459, '2021-05-07', 2170, 1443, 215, NULL, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1460, '2021-05-08', 1512, 1444, 216, 7491, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1461, '2021-05-08', 2556, 1445, 216, 7130, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1462, '2021-05-08', 2136, 1446, 216, NULL, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1463, '2021-05-08', 1602, 1447, 216, 7466, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '55.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1464, '2021-05-08', 1368, 1448, 216, 3411, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1465, '2021-05-08', 1602, 1449, 216, 7466, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '55.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1466, '2021-05-08', 1746, 1450, 216, NULL, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1467, '2021-05-08', 2169, 1451, 216, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1468, '2021-05-08', 1523, 1452, 216, 1528, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1469, '2021-05-08', 1527, 1453, 216, 1534, '1.0000', '90.0000', '90.0000', '17.5000', '17.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1470, '2021-05-08', 2169, 1454, 216, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1471, '2021-05-08', 2280, 1455, 216, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1472, '2021-05-08', 1742, 1456, 217, 6813, '1.0000', '90.0000', '90.0000', '23.5000', '23.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1473, '2021-05-08', 1772, 1457, 218, 7702, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1474, '2021-05-08', 2571, 1458, 218, 7234, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1475, '2021-05-08', 1425, 1459, 218, 7229, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1476, '2021-05-08', 1528, 1460, 218, 1535, '2.0000', '90.0000', '90.0000', '6.0000', '6.0000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1477, '2021-05-08', 1400, 1461, 218, NULL, '2.0000', '22.0000', '22.0000', '29.0000', '29.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1478, '2021-05-08', 1399, 1462, 218, NULL, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1479, '2021-05-08', 1904, 1463, 218, 5508, '4.0000', '90.0000', '90.0000', '1.0000', '1.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1480, '2021-05-08', 1339, 1464, 218, 3378, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1481, '2021-05-08', 1420, 1465, 218, NULL, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1482, '2021-05-08', 2469, 1466, 218, NULL, '1.0000', '48.0000', '48.0000', '55.0000', '55.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1483, '2021-05-08', 2445, 1467, 218, 5830, '20.0000', '3.2000', '3.2000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1484, '2021-05-08', 1621, 1468, 218, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1485, '2021-05-08', 1305, 1469, 218, 3072, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1486, '2021-05-08', 2544, 1470, 218, 7479, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1487, '2021-05-08', 1935, 1471, 218, 5607, '4.0000', '90.0000', '90.0000', '1.5000', '1.5000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1488, '2021-05-08', 1863, 1472, 218, 4992, '4.0000', '1.2200', '1.2200', '2.0000', '2.0000', '99.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1489, '2021-05-08', 2038, 1473, 219, 6413, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1490, '2021-05-08', 1449, 1474, 219, 5624, '2.0000', '0.6600', '0.6600', '2.5000', '2.5000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1491, '2021-05-08', 2167, 1475, 219, NULL, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1492, '2021-05-08', 2250, 1476, 219, 7711, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1493, '2021-05-08', 2260, 1477, 219, 7470, '4.0000', '4.2000', '4.2000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1494, '2021-05-08', 1846, 1478, 219, 4978, '1.0000', '90.0000', '90.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1495, '2021-05-08', 2403, 1479, 219, 4358, '1.0000', '17.8000', '17.8000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1496, '2021-05-08', 1620, 1480, 219, NULL, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1497, '2021-05-08', 1311, 1481, 219, 5503, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '84.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1498, '2021-05-08', 2588, 1482, 220, 8261, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1499, '2021-05-08', 1425, 1483, 221, 7229, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1500, '2021-05-08', 2327, 1484, 221, 5084, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1501, '2021-05-08', 1863, 1485, 221, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '98.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1502, '2021-05-08', 1602, 1486, 221, 7466, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '53.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1503, '2021-05-08', 1646, 1487, 221, 3240, '1.0000', '4.5300', '4.5300', '6.0000', '6.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1504, '2021-05-08', 2582, 1488, 221, 8287, '1.0000', '11.5000', '11.5000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1505, '2021-05-08', 1557, 1489, 221, 1661, '1.0000', '7.8800', '7.8800', '10.5000', '10.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1506, '2021-05-08', 1961, 1490, 221, 4838, '1.0000', '16.3900', '16.3900', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1507, '2021-05-08', 1955, 1491, 221, 3409, '1.0000', '35.0000', '35.0000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1508, '2021-05-09', 2135, 1492, 222, 1523, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1509, '2021-05-09', 1447, 1493, 222, 5626, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1510, '2021-05-09', 1577, 1494, 222, 8379, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1511, '2021-05-09', 2113, 1495, 222, 2633, '3.0000', '20.0000', '20.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1512, '2021-05-09', 2113, 1495, 222, 2579, '2.0000', '20.0000', '20.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1513, '2021-05-09', 2037, 1496, 222, 6414, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1514, '2021-05-09', 1596, 1497, 222, 8364, '1.0000', '2.5700', '2.5700', '4.0000', '4.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1515, '2021-05-09', 2169, 1498, 222, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1516, '2021-05-09', 2319, 1499, 222, 4399, '20.0000', '3.5000', '3.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1517, '2021-05-09', 1385, 1500, 222, 3428, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1518, '2021-05-09', 1394, 1501, 222, NULL, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1519, '2021-05-09', 2136, 1502, 222, NULL, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1520, '2021-05-09', 1589, 1503, 222, 8369, '1.0000', '90.0000', '90.0000', '8.5000', '8.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1521, '2021-05-09', 1761, 1504, 222, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1522, '2021-05-09', 1310, 1505, 222, 2481, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1523, '2021-05-09', 2559, 1506, 222, 7129, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1524, '2021-05-09', 1519, 1507, 222, 1524, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1525, '2021-05-09', 1419, 1508, 222, NULL, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1526, '2021-05-09', 1663, 1509, 222, 3245, '1.0000', '90.0000', '90.0000', '109.0000', '109.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1527, '2021-05-09', 1653, 1510, 222, 3255, '1.0000', '8.6200', '8.6200', '12.0000', '12.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1528, '2021-05-09', 2444, 1511, 222, 5829, '1.0000', '6.0000', '6.0000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1529, '2021-05-09', 2165, 1512, 223, 4405, '1.0000', '18.0000', '18.0000', '23.0000', '23.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1530, '2021-05-09', 2237, 1513, 224, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1531, '2021-05-09', 2574, 1514, 224, 7717, '10.0000', '0.7800', '0.7800', '1.0000', '1.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1532, '2021-05-09', 1651, 1515, 224, 7701, '1.0000', '6.8300', '6.8300', '9.0000', '9.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1533, '2021-05-09', 2568, 1516, 224, 7213, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '119.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1534, '2021-05-09', 1505, 1517, 225, 1508, '1.0000', '90.0000', '90.0000', '17.5000', '17.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1535, '2021-05-09', 2592, 1518, 225, 8436, '2.0000', '7.8400', '7.8400', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1536, '2021-05-09', 2436, 1519, 226, 5820, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1537, '2021-05-10', 1494, 1520, 227, 6787, '1.0000', '4.3900', '4.3900', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1538, '2021-05-10', 2285, 1521, 227, 8573, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1539, '2021-05-10', 2076, 1522, 227, 5609, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1540, '2021-05-10', 2342, 1523, 227, 8281, '5.0000', '1.8600', '1.8600', '2.5000', '2.5000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1541, '2021-05-10', 2345, 1524, 227, 3886, '1.0000', '7.6400', '7.6400', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1542, '2021-05-10', 2540, 1525, 227, 7484, '1.0000', '45.0000', '45.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1543, '2021-05-10', 1912, 1526, 227, 1503, '2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '91.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1544, '2021-05-10', 1523, 1527, 227, 1528, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1545, '2021-05-10', 2380, 1528, 227, 4386, '2.0000', '37.9000', '37.9000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1546, '2021-05-10', 2415, 1529, 227, 4807, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1547, '2021-05-10', 2415, 1529, 227, NULL, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1548, '2021-05-10', 1569, 1530, 227, 7119, '1.0000', '14.2800', '14.2800', '19.0000', '19.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1549, '2021-05-10', 1303, 1531, 227, 2657, '4.0000', '1.3800', '1.3800', '4.0000', '4.0000', '155.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1550, '2021-05-10', 2237, 1532, 227, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1551, '2021-05-10', 1912, 1533, 227, 1503, '2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '91.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1552, '2021-05-10', 2136, 1534, 227, NULL, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1553, '2021-05-10', 2169, 1535, 227, NULL, '3.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1554, '2021-05-10', 1523, 1536, 227, 1528, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1555, '2021-05-10', 2582, 1537, 227, 8287, '1.0000', '11.5000', '11.5000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1556, '2021-05-10', 1337, 1538, 227, 3376, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1557, '2021-05-10', 2405, 1539, 227, 4811, '1.0000', '1.2000', '1.2000', '1.6000', '1.6000', '89.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1558, '2021-05-10', 2088, 1540, 227, 6006, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1580, '2021-05-10', 2602, 1562, 229, 8621, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1581, '2021-05-10', 2601, 1563, 229, 8612, '1.0000', '16.0000', '16.0000', '25.0000', '25.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1582, '2021-05-10', 2603, 1564, 229, 8622, '1.0000', '1.0000', '1.0000', '1.3000', '1.3000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1583, '2021-05-10', 1602, 1565, 230, 7466, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '52.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1584, '2021-05-10', 1805, 1566, 230, 4944, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1585, '2021-05-10', 1432, 1567, 231, 5876, '2.0000', '9.0000', '9.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1586, '2021-05-10', 1837, 1568, 231, 4970, '3.0000', '0.5500', '0.5500', '1.0000', '1.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1587, '2021-05-10', 2556, 1569, 231, 7130, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1588, '2021-05-10', 2492, 1570, 231, 7113, '1.0000', '21.9900', '21.9900', '30.0000', '30.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1589, '2021-05-10', 2541, 1571, 231, 7482, '1.0000', '9.7500', '9.7500', '13.0000', '13.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1590, '2021-05-10', 1640, 1572, 231, 3267, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1591, '2021-05-10', 1563, 1573, 232, 1670, '1.0000', '4.9000', '4.9000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1592, '2021-05-10', 2505, 1574, 232, 5865, '1.0000', '68.5900', '68.5900', '90.5000', '90.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1593, '2021-05-10', 2144, 1575, 232, NULL, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1594, '2021-05-10', 2493, 1576, 232, 7117, '1.0000', '6.5000', '6.5000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1595, '2021-05-10', 1935, 1577, 232, 5607, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1596, '2021-05-10', 2568, 1578, 232, 7213, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '115.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1597, '2021-05-10', 1863, 1579, 232, 4992, '3.0000', '1.2200', '1.2200', '2.0000', '2.0000', '95.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1598, '2021-05-10', 1619, 1580, 232, NULL, '1.0000', '9.8500', '9.8500', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1599, '2021-05-10', 1523, 1581, 232, 1528, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1600, '2021-05-10', 1704, 1582, 233, 7468, '1.0000', '90.0000', '90.0000', '35.5000', '35.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1601, '2021-05-10', 2449, 1583, 233, 5834, '1.0000', '5.5000', '5.5000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1602, '2021-05-10', 2565, 1584, 233, 7198, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1603, '2021-05-10', 2233, 1585, 233, 8278, '1.0000', '19.0200', '19.0200', '26.5000', '26.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1604, '2021-05-10', 1505, 1586, 233, 1508, '1.0000', '90.0000', '90.0000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1605, '2021-05-10', 1471, 1587, 233, NULL, '1.0000', '6.9000', '6.9000', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1606, '2021-05-10', 1431, 1588, 233, NULL, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1607, '2021-05-10', 2027, 1589, 233, 6423, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1608, '2021-05-10', 1975, 1590, 233, 6465, '1.0000', '8.5000', '8.5000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1609, '2021-05-10', 2479, 1591, 233, 5192, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1610, '2021-05-10', 2005, 1592, 233, 6441, '2.0000', '2.3300', '2.3300', '3.5000', '3.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1611, '2021-05-10', 1957, 1593, 233, NULL, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1612, '2021-05-10', 2060, 1594, 234, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1613, '2021-05-10', 1931, 1595, 234, NULL, '1.0000', '7.0000', '7.0000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1614, '2021-05-10', 1520, 1596, 234, 1525, '1.0000', '1.4700', '1.4700', '2.0000', '2.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1615, '2021-05-10', 1573, 1597, 234, 5874, '1.0000', '90.0000', '90.0000', '32.5000', '32.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1616, '2021-05-10', 1935, 1598, 234, 5607, '2.0000', '90.0000', '90.0000', '1.5000', '1.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1617, '2021-05-10', 1480, 1599, 234, 1488, '2.0000', '90.0000', '90.0000', '38.0000', '38.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1618, '2021-05-10', 1727, 1600, 235, 8413, '10.0000', '1.8000', '1.8000', '3.7000', '3.7000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1619, '2021-05-10', 1602, 1601, 236, 9009, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1620, '2021-05-11', 1875, 1602, 237, NULL, '2.0000', '24.5000', '24.5000', '33.0000', '33.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1621, '2021-05-11', 1783, 1603, 237, NULL, '1.0000', '90.0000', '90.0000', '31.0000', '31.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1622, '2021-05-11', 2417, 1604, 237, NULL, '1.0000', '14.5000', '14.5000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1623, '2021-05-11', 2431, 1605, 237, NULL, '4.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1624, '2021-05-11', 1702, 1606, 237, NULL, '1.0000', '14.9700', '14.9700', '19.5000', '19.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1625, '2021-05-11', 1908, 1607, 237, NULL, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1626, '2021-05-11', 2251, 1608, 237, NULL, '1.0000', '11.6400', '11.6400', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1627, '2021-05-11', 2548, 1609, 237, NULL, '1.0000', '6.7200', '6.7200', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1628, '2021-05-11', 2244, 1610, 237, NULL, '1.0000', '7.3600', '7.3600', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1629, '2021-05-11', 1342, 1611, 237, 238, '1.0000', '5.5300', '5.5300', '7.5000', '7.5000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1630, '2021-05-11', 1449, 1612, 237, NULL, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1631, '2021-05-11', 1837, 1613, 237, NULL, '4.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1632, '2021-05-11', 2384, 1614, 237, NULL, '3.0000', '0.4000', '0.4000', '0.5000', '0.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1633, '2021-05-11', 1310, 1615, 237, 131, '3.0000', '90.0000', '90.0000', '0.5000', '0.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1634, '2021-05-11', 2136, 1616, 237, 1351, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '118.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1635, '2021-05-11', 1901, 1617, 237, 5480, '1.0000', '3.8432', '3.8432', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1636, '2021-05-11', 1602, 1618, 237, NULL, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1637, '2021-05-11', 2568, 1619, 237, NULL, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1638, '2021-05-11', 2350, 1620, 238, NULL, '1.0000', '10.3800', '10.3800', '13.5000', '13.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1639, '2021-05-11', 1575, 1621, 238, NULL, '2.0000', '66.8966', '66.8966', '14.0000', '14.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1640, '2021-05-11', 2231, 1622, 238, NULL, '1.0000', '33.0000', '33.0000', '36.0000', '36.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1641, '2021-05-11', 1427, 1623, 238, NULL, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1642, '2021-05-11', 2242, 1624, 239, NULL, '1.0000', '0.4800', '0.4800', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1643, '2021-05-11', 2232, 1625, 239, NULL, '1.0000', '27.0000', '27.0000', '36.0000', '36.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1644, '2021-05-11', 1682, 1626, 239, NULL, '1.0000', '90.0000', '90.0000', '14.0000', '14.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1645, '2021-05-11', 1922, 1627, 239, 6874, '1.0000', '46.6500', '46.6500', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1646, '2021-05-11', 1922, 1628, 239, 6874, '1.0000', '46.6500', '46.6500', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1647, '2021-05-11', 1785, 1629, 239, NULL, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1648, '2021-05-11', 1973, 1630, 239, NULL, '2.0000', '13.0000', '13.0000', '17.0000', '17.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1649, '2021-05-11', 2235, 1631, 239, NULL, '1.0000', '17.8000', '17.8000', '24.0000', '24.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1650, '2021-05-11', 2567, 1632, 239, NULL, '1.0000', '33.0000', '33.0000', '37.0000', '37.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1651, '2021-05-11', 2384, 1633, 239, 4087, '-3.0000', '0.4000', '0.4000', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1652, '2021-05-11', 2384, 1633, 239, NULL, '5.0000', '0.4000', '0.4000', '0.5000', '0.5000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1653, '2021-05-11', 1385, 1634, 239, 285, '1.0000', '48.1500', '48.1500', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1654, '2021-05-11', 1935, 1635, 239, NULL, '1.0000', '0.7200', '0.7200', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1655, '2021-05-11', 1414, 1636, 239, NULL, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1656, '2021-05-11', 1523, 1637, 239, NULL, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1657, '2021-05-11', 1346, 1638, 239, 3319, '5.0000', '0.9300', '0.9300', '1.2000', '1.2000', '53.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1658, '2021-05-11', 2541, 1639, 239, NULL, '1.0000', '9.7500', '9.7500', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1659, '2021-05-11', 1839, 1640, 239, NULL, '1.0000', '329.1420', '329.1420', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1660, '2021-05-11', 2327, 1641, 239, NULL, '2.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1661, '2021-05-11', 1440, 1642, 239, 4703, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1662, '2021-05-11', 2479, 1643, 239, NULL, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1663, '2021-05-11', 1828, 1644, 239, NULL, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1664, '2021-05-11', 1840, 1645, 239, NULL, '1.0000', '90.0000', '90.0000', '0.3000', '0.3000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1665, '2021-05-11', 1841, 1646, 239, 645, '1.0000', '90.0000', '90.0000', '0.5000', '0.5000', '19.0000', 1, 0, NULL, 53);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1666, '2021-05-11', 2423, 1647, 240, NULL, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1667, '2021-05-11', 1410, 1648, 240, NULL, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1668, '2021-05-11', 2605, 1649, 240, NULL, '3.0000', '8.7000', '8.7000', '11.0000', '11.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1669, '2021-05-11', 2169, 1650, 240, 1382, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '59.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1670, '2021-05-11', 1519, 1651, 240, NULL, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1671, '2021-05-11', 1302, 1652, 240, 31, '1.0000', '96.8800', '96.8800', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1672, '2021-05-11', 1523, 1653, 240, NULL, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1673, '2021-05-11', 1667, 1654, 240, 2432, '1.0000', '5.9400', '5.9400', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 47);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1674, '2021-05-11', 1602, 1655, 241, NULL, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1675, '2021-05-11', 2285, 1656, 241, NULL, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1676, '2021-05-11', 2557, 1657, 241, NULL, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1677, '2021-05-11', 2317, 1658, 241, 3473, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1678, '2021-05-12', 2293, 1659, 242, 3064, '2.0000', '1.4400', '1.4400', '2.0000', '2.0000', '93.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1679, '2021-05-12', 2068, 1660, 242, 5625, '1.0000', '11.8000', '11.8000', '15.5000', '15.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1680, '2021-05-12', 2384, 1661, 242, 4370, '4.0000', '0.4000', '0.4000', '0.5000', '0.5000', '86.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1681, '2021-05-12', 1310, 1662, 242, 2481, '6.0000', '0.3700', '0.3700', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1682, '2021-05-12', 1310, 1662, 242, NULL, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1683, '2021-05-12', 1837, 1663, 242, 4970, '3.0000', '0.5500', '0.5500', '1.0000', '1.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1684, '2021-05-12', 1580, 1664, 242, 9446, '1.0000', '0.9900', '0.9900', '1.5000', '1.5000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1685, '2021-05-12', 2315, 1665, 242, 3069, '4.0000', '0.3300', '0.3300', '0.5000', '0.5000', '488.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1686, '2021-05-12', 2285, 1666, 242, 8408, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1687, '2021-05-12', 1641, 1667, 242, 3266, '6.0000', '90.0000', '90.0000', '1.3000', '1.3000', '86.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1688, '2021-05-12', 2155, 1668, 242, NULL, '1.0000', '21.7000', '21.7000', '29.0000', '29.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1689, '2021-05-12', 1645, 1669, 242, 3262, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1690, '2021-05-12', 2426, 1670, 242, 5811, '1.0000', '12.5000', '12.5000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1691, '2021-05-12', 2340, 1671, 242, 4841, '1.0000', '4.2000', '4.2000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1692, '2021-05-12', 1670, 1672, 242, 2435, '1.0000', '90.0000', '90.0000', '23.4000', '23.4000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1693, '2021-05-12', 1657, 1673, 242, 3251, '6.0000', '90.0000', '90.0000', '0.5000', '0.5000', '92.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1694, '2021-05-12', 1654, 1674, 242, 3254, '1.0000', '90.0000', '90.0000', '11.5000', '11.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1695, '2021-05-12', 1761, 1675, 242, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1696, '2021-05-12', 2486, 1676, 242, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1697, '2021-05-12', 1369, 1677, 242, 8433, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1698, '2021-05-12', 2439, 1678, 243, 5823, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1699, '2021-05-12', 1843, 1679, 243, 4975, '7.0000', '3.9000', '3.9000', '5.6000', '5.6000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1700, '2021-05-12', 1748, 1680, 243, 1527, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1701, '2021-05-12', 1572, 1681, 244, 9452, '2.0000', '1.7000', '1.7000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1702, '2021-05-12', 1628, 1682, 244, 3277, '1.0000', '5.7900', '5.7900', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1703, '2021-05-12', 1863, 1683, 244, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '94.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1704, '2021-05-12', 2407, 1684, 244, 4812, '1.0000', '20.2000', '20.2000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1705, '2021-05-12', 2514, 1685, 244, 7518, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1706, '2021-05-12', 2511, 1686, 244, 5873, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1707, '2021-05-12', 1432, 1687, 244, 5876, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1708, '2021-05-12', 1804, 1688, 244, 9461, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1709, '2021-05-12', 2352, 1689, 244, 8411, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1710, '2021-05-12', 1521, 1690, 244, 1526, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1711, '2021-05-12', 1636, 1691, 244, 3271, '1.0000', '90.0000', '90.0000', '13.0000', '13.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1712, '2021-05-12', 1413, 1692, 245, NULL, '1.0000', '16.0000', '16.0000', '21.0000', '21.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1713, '2021-05-12', 1744, 1693, 245, 7465, '1.0000', '90.0000', '90.0000', '33.0000', '33.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1714, '2021-05-12', 1847, 1694, 245, 4979, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1715, '2021-05-12', 1863, 1695, 245, 4992, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '92.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1716, '2021-05-12', 1812, 1696, 245, 8280, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1717, '2021-05-12', 1602, 1697, 245, 9465, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1718, '2021-05-12', 2019, 1698, 245, 6427, '1.0000', '10.0000', '10.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1719, '2021-05-12', 2530, 1699, 245, 6128, '1.0000', '22.0000', '22.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1720, '2021-05-12', 2193, 1700, 245, 8178, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1721, '2021-05-12', 2577, 1701, 245, 7495, '1.0000', '20.0000', '20.0000', '28.0000', '28.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1722, '2021-05-12', 1641, 1702, 245, 3266, '6.0000', '90.0000', '90.0000', '1.3000', '1.3000', '80.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1723, '2021-05-12', 2169, 1703, 245, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1724, '2021-05-12', 1812, 1704, 245, 8280, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1725, '2021-05-12', 1845, 1705, 245, 7121, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1726, '2021-05-12', 1900, 1706, 245, 5504, '10.0000', '2.4600', '2.4600', '3.3000', '3.3000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1727, '2021-05-12', 1800, 1707, 245, 4921, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1728, '2021-05-12', 2124, 1708, 245, 2641, '1.0000', '25.0000', '25.0000', '40.0000', '40.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1729, '2021-05-12', 1912, 1709, 245, 1503, '2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '83.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1730, '2021-05-12', 2543, 1710, 245, 7480, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1731, '2021-05-12', 1602, 1711, 246, 9465, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1732, '2021-05-12', 1589, 1712, 246, 9438, '1.0000', '90.0000', '90.0000', '8.5000', '8.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1733, '2021-05-12', 1346, 1713, 246, 3385, '2.0000', '0.9300', '0.9300', '1.2000', '1.2000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1734, '2021-05-12', 1346, 1713, 246, NULL, '13.0000', '0.9300', '0.9300', '1.2000', '1.2000', '-13.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1735, '2021-05-12', 2155, 1714, 247, 1370, '1.0000', '21.7000', '21.7000', '29.0000', '29.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1736, '2021-05-12', 1310, 1715, 247, 131, '2.0000', '90.0000', '90.0000', '0.5000', '0.5000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1737, '2021-05-12', 1399, 1716, 247, NULL, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1738, '2021-05-12', 2543, 1717, 247, NULL, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1739, '2021-05-12', 1574, 1718, 247, NULL, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1740, '2021-05-13', 1707, 1719, 248, 9474, '1.0000', '25.1200', '25.1200', '33.0000', '33.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1741, '2021-05-13', 1682, 1720, 248, 2447, '1.0000', '10.6700', '10.6700', '14.0000', '14.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1742, '2021-05-13', 1658, 1721, 248, 3250, '1.0000', '90.0000', '90.0000', '36.0000', '36.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1743, '2021-05-13', 1580, 1722, 248, 9446, '1.0000', '0.9900', '0.9900', '1.5000', '1.5000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1744, '2021-05-13', 1529, 1723, 248, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1745, '2021-05-13', 2315, 1724, 248, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '486.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1746, '2021-05-13', 2068, 1725, 248, 5625, '1.0000', '11.8000', '11.8000', '15.5000', '15.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1747, '2021-05-13', 2569, 1726, 248, 7214, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1748, '2021-05-13', 1347, 1727, 248, NULL, '1.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1749, '2021-05-13', 1668, 1728, 248, 3241, '1.0000', '90.0000', '90.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1750, '2021-05-13', 1647, 1729, 248, 3261, '1.0000', '4.7200', '4.7200', '6.5000', '6.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1751, '2021-05-13', 1499, 1730, 248, 1502, '3.0000', '0.4100', '0.4100', '0.6000', '0.6000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1752, '2021-05-13', 1645, 1731, 248, 3262, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1753, '2021-05-13', 2283, 1732, 248, 3123, '2.0000', '1.4300', '1.4300', '2.0000', '2.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1754, '2021-05-13', 1513, 1733, 248, 1515, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1755, '2021-05-13', 2313, 1734, 248, 5631, '2.0000', '8.7000', '8.7000', '12.0000', '12.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1756, '2021-05-13', 2481, 1735, 248, 5193, '1.0000', '3.5000', '3.5000', '4.5000', '4.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1757, '2021-05-13', 2483, 1736, 248, 5195, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1758, '2021-05-13', 2602, 1737, 248, 8621, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1759, '2021-05-13', 1386, 1738, 248, NULL, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1760, '2021-05-13', 1440, 1739, 248, 7233, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1761, '2021-05-13', 2213, 1740, 248, NULL, '1.0000', '10.0000', '10.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1762, '2021-05-13', 2362, 1741, 248, 7460, '10.0000', '82.0200', '82.0200', '11.0000', '11.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1763, '2021-05-13', 2400, 1742, 248, 4361, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1764, '2021-05-13', 2169, 1743, 248, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1765, '2021-05-13', 1954, 1744, 249, 3408, '2.0000', '25.0000', '25.0000', '1.0000', '1.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1766, '2021-05-13', 2012, 1745, 250, 6437, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1767, '2021-05-13', 1822, 1746, 251, 8279, '5.0000', '2.4000', '2.4000', '3.0000', '3.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1768, '2021-05-13', 2088, 1747, 251, 6006, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1769, '2021-05-13', 1388, 1748, 251, 7226, '2.0000', '5.3000', '5.3000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1770, '2021-05-13', 2237, 1749, 251, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1771, '2021-05-13', 1863, 1750, 251, 4992, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '90.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1772, '2021-05-13', 1564, 1751, 251, 9458, '50.0000', '90.0000', '90.0000', '4.0000', '4.0000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1773, '2021-05-13', 2352, 1752, 251, 8411, '3.0000', '20.0000', '20.0000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1774, '2021-05-13', 1384, 1753, 251, 3427, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1775, '2021-05-13', 2035, 1754, 251, 6415, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1776, '2021-05-13', 1602, 1755, 251, 9465, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1777, '2021-05-13', 1740, 1756, 251, 6794, '1.0000', '7.3300', '7.3300', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1778, '2021-05-13', 1730, 1757, 251, 1512, '1.0000', '23.9100', '23.9100', '31.5000', '31.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1779, '2021-05-13', 1414, 1758, 251, 4805, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1780, '2021-05-13', 1665, 1759, 251, 3244, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1781, '2021-05-13', 1966, 1760, 251, 3242, '1.0000', '2.7100', '2.7100', '3.5000', '3.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1782, '2021-05-13', 2034, 1761, 251, 6416, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1783, '2021-05-13', 1409, 1762, 251, NULL, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1784, '2021-05-13', 1450, 1763, 251, NULL, '5.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1785, '2021-05-13', 1533, 1764, 251, 1540, '1.0000', '3.0500', '3.0500', '4.0000', '4.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1786, '2021-05-13', 2263, 1765, 251, 3104, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1787, '2021-05-13', 1854, 1766, 251, 4985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1788, '2021-05-13', 1790, 1767, 251, 4927, '1.0000', '90.0000', '90.0000', '22.0000', '22.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1810, '2021-05-13', 1812, 1810, 253, 8280, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1811, '2021-05-13', 1636, 1811, 253, 3271, '1.0000', '90.0000', '90.0000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1812, '2021-05-13', 1912, 1812, 253, 9575, '2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1813, '2021-05-13', 1708, 1813, 253, 9475, '1.0000', '20.1900', '20.1900', '26.5000', '26.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1814, '2021-05-13', 1435, 1814, 253, NULL, '1.0000', '18.5000', '18.5000', '24.5000', '24.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1815, '2021-05-13', 1947, 1815, 253, 6003, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1816, '2021-05-13', 1608, 1816, 253, 9426, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1817, '2021-05-13', 1310, 1817, 253, NULL, '6.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1818, '2021-05-13', 2518, 1818, 253, NULL, '1.0000', '107.1800', '107.1800', '140.0000', '140.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1819, '2021-05-13', 2463, 1819, 253, 4840, '5.0000', '2.8700', '2.8700', '4.0000', '4.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1820, '2021-05-13', 2348, 1820, 253, 8414, '1.0000', '22.0300', '22.0300', '29.0000', '29.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1821, '2021-05-13', 1863, 1821, 253, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '89.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1822, '2021-05-13', 1523, 1822, 253, 9574, '2.0000', '0.9300', '0.9300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1823, '2021-05-13', 1523, 1822, 253, 1528, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1845, '2021-05-13', 1363, 1865, 256, 3403, '1.0000', '81.4000', '81.4000', '107.5000', '107.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1846, '2021-05-13', 1412, 1866, 256, NULL, '1.0000', '14.0000', '14.0000', '18.5000', '18.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1847, '2021-05-13', 1311, 1867, 256, 5503, '25.0000', '0.3700', '0.3700', '0.5000', '0.5000', '59.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1848, '2021-05-13', 1400, 1868, 256, 9048, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1849, '2021-05-14', 1585, 1869, 257, 9442, '1.0000', '8.9900', '8.9900', '12.0000', '12.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1850, '2021-05-14', 2169, 1870, 257, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1851, '2021-05-14', 2237, 1871, 257, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1852, '2021-05-14', 1756, 1872, 257, 3187, '2.0000', '4.9900', '4.9900', '6.5000', '6.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1853, '2021-05-14', 2283, 1873, 257, 3123, '2.0000', '1.4300', '1.4300', '2.0000', '2.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1854, '2021-05-14', 2317, 1874, 257, 8617, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1855, '2021-05-14', 1602, 1875, 257, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '51.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1856, '2021-05-14', 2109, 1876, 257, 6021, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '148.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1857, '2021-05-14', 1805, 1877, 257, 4944, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1858, '2021-05-14', 2104, 1878, 257, 6016, '2.0000', '0.2000', '0.2000', '1.0000', '1.0000', '147.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1859, '2021-05-14', 2545, 1879, 257, 9541, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1860, '2021-05-14', 1837, 1880, 257, 4970, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1861, '2021-05-14', 2565, 1881, 257, 7198, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1862, '2021-05-14', 2007, 1882, 257, 6438, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1863, '2021-05-14', 2479, 1883, 257, 5192, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1864, '2021-05-14', 2484, 1884, 257, 5196, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1865, '2021-05-14', 2288, 1885, 257, 9544, '1.0000', '7.5900', '7.5900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1866, '2021-05-14', 2376, 1886, 257, 4381, '1.0000', '19.5000', '19.5000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1867, '2021-05-14', 1912, 1887, 257, 9575, '2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1868, '2021-05-14', 2277, 1888, 257, 3117, '1.0000', '0.7800', '0.7800', '1.0000', '1.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1869, '2021-05-14', 1828, 1889, 257, 4963, '1.0000', '0.7300', '0.7300', '1.0000', '1.0000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1870, '2021-05-14', 1602, 1890, 257, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '51.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1871, '2021-05-14', 1425, 1891, 257, 7229, '2.0000', '6.5000', '6.5000', '8.5000', '8.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1872, '2021-05-14', 2547, 1892, 258, 9547, '1.0000', '8.7600', '8.7600', '11.5000', '11.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1873, '2021-05-14', 2547, 1893, 259, 9547, '1.0000', '8.7600', '8.7600', '11.5000', '11.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1874, '2021-05-14', 1871, 1894, 259, 9427, '10.0000', '90.0000', '90.0000', '2.6000', '2.6000', '50.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1875, '2021-05-14', 2061, 1895, 259, 2179, '1.0000', '10.9800', '10.9800', '15.0000', '15.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1876, '2021-05-14', 1854, 1896, 259, 4985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1877, '2021-05-14', 2060, 1897, 259, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1878, '2021-05-14', 1602, 1898, 259, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1879, '2021-05-14', 1328, 1899, 259, 3366, '1.0000', '3.1500', '3.1500', '4.5000', '4.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1880, '2021-05-14', 2109, 1900, 259, 6021, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '146.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1881, '2021-05-14', 1494, 1901, 259, 6787, '1.0000', '4.3900', '4.3900', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1882, '2021-05-14', 1340, 1902, 259, 3379, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1883, '2021-05-14', 2392, 1903, 259, 8409, '1.0000', '3.2000', '3.2000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1884, '2021-05-14', 1806, 1904, 259, 4836, '1.0000', '90.0000', '90.0000', '74.0000', '74.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1885, '2021-05-14', 1650, 1905, 259, 3258, '1.0000', '14.5800', '14.5800', '19.0000', '19.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1886, '2021-05-14', 2568, 1906, 259, 7213, '1.0000', '0.3300', '0.3300', '0.2500', '0.2500', '114.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1887, '2021-05-14', 2568, 1907, 259, 7213, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '111.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1888, '2021-05-14', 1588, 1908, 259, 9439, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1889, '2021-05-14', 1335, 1909, 259, 3374, '1.0000', '0.8500', '0.8500', '2.0000', '2.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1890, '2021-05-14', 2237, 1910, 259, 3083, '2.0000', '1.0600', '1.0600', '1.5000', '1.5000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1891, '2021-05-14', 2178, 1911, 259, NULL, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1892, '2021-05-14', 2199, 1912, 259, 8179, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1893, '2021-05-14', 1912, 1913, 260, 9575, '2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1894, '2021-05-14', 1966, 1914, 260, 3242, '1.0000', '2.7100', '2.7100', '3.5000', '3.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1895, '2021-05-14', 2169, 1915, 260, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1896, '2021-05-14', 2379, 1916, 260, 4385, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1897, '2021-05-14', 1863, 1917, 260, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '88.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1898, '2021-05-14', 1910, 1918, 260, NULL, '2.0000', '1.0200', '1.0200', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1899, '2021-05-14', 1839, 1919, 260, 9420, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1900, '2021-05-14', 2392, 1920, 260, 8409, '1.0000', '3.2000', '3.2000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1901, '2021-05-14', 2022, 1921, 260, 4368, '1.0000', '3.5000', '3.5000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1902, '2021-05-14', 2039, 1922, 260, 6412, '1.0000', '9.0000', '9.0000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1903, '2021-05-14', 1785, 1923, 261, 9440, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1904, '2021-05-14', 1773, 1924, 261, 4942, '1.0000', '90.0000', '90.0000', '59.0000', '59.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1905, '2021-05-14', 2271, 1925, 261, 3111, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1906, '2021-05-14', 2060, 1926, 261, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1907, '2021-05-14', 2289, 1927, 261, 3129, '4.0000', '0.2300', '0.2300', '0.5000', '0.5000', '55.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1908, '2021-05-14', 1549, 1928, 261, 1552, '1.0000', '90.0000', '90.0000', '28.0000', '28.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1909, '2021-05-14', 2143, 1929, 261, NULL, '1.0000', '15.0000', '15.0000', '22.0000', '22.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1910, '2021-05-14', 2366, 1930, 261, 8415, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1911, '2021-05-14', 2331, 1931, 261, 3900, '1.0000', '12.0700', '12.0700', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1912, '2021-05-14', 1310, 1932, 261, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1913, '2021-05-14', 2606, 1933, 261, 9607, '2.0000', '40.0000', '40.0000', '53.0000', '53.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1914, '2021-05-15', 1435, 1934, 262, NULL, '1.0000', '18.5000', '18.5000', '24.5000', '24.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1915, '2021-05-15', 1619, 1935, 262, 9416, '2.0000', '9.8500', '9.8500', '13.0000', '13.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1916, '2021-05-15', 2452, 1936, 262, 5372, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1917, '2021-05-15', 1501, 1937, 262, 1504, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1918, '2021-05-15', 1621, 1938, 262, 9468, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1919, '2021-05-15', 2120, 1939, 262, 2640, '1.0000', '5.0000', '5.0000', '15.0000', '15.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1920, '2021-05-15', 2427, 1940, 262, 5801, '1.0000', '5.8000', '5.8000', '7.0000', '7.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1921, '2021-05-15', 1863, 1941, 262, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '87.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1922, '2021-05-15', 2280, 1942, 262, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1923, '2021-05-15', 2481, 1943, 262, 5193, '1.0000', '3.5000', '3.5000', '4.5000', '4.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1924, '2021-05-15', 1935, 1944, 262, 5607, '4.0000', '90.0000', '90.0000', '1.5000', '1.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1925, '2021-05-15', 2280, 1945, 262, 3120, '3.0000', '1.9000', '1.9000', '3.0000', '3.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1926, '2021-05-15', 2593, 1946, 262, 9061, '3.0000', '14.4000', '14.4000', '19.0000', '19.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1927, '2021-05-15', 2005, 1947, 262, 6441, '1.0000', '2.3300', '2.3300', '3.5000', '3.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1928, '2021-05-15', 2587, 1948, 262, 8288, '1.0000', '135.0000', '135.0000', '178.0000', '178.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1929, '2021-05-15', 1665, 1949, 262, 3244, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1930, '2021-05-15', 1307, 1950, 263, 4984, '1.0000', '1.9000', '1.9000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1931, '2021-05-15', 2260, 1951, 263, 9549, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1932, '2021-05-15', 2169, 1952, 263, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1933, '2021-05-15', 1863, 1953, 263, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '86.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1934, '2021-05-15', 1574, 1954, 263, 9451, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1935, '2021-05-15', 1771, 1955, 263, 3410, '1.0000', '3.3900', '3.3900', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1936, '2021-05-15', 1612, 1956, 263, 9422, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1937, '2021-05-15', 2248, 1957, 263, 3087, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1938, '2021-05-15', 1665, 1958, 264, 3244, '5.0000', '1.3000', '1.3000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1939, '2021-05-15', 1368, 1959, 264, 3411, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1940, '2021-05-15', 2403, 1960, 264, 9064, '3.0000', '17.8000', '17.8000', '24.0000', '24.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1941, '2021-05-15', 1783, 1961, 264, 4934, '1.0000', '90.0000', '90.0000', '31.0000', '31.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1942, '2021-05-15', 1575, 1962, 264, 9450, '2.0000', '90.0000', '90.0000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1943, '2021-05-15', 2468, 1963, 264, 4847, '1.0000', '4.8200', '4.8200', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1944, '2021-05-15', 1888, 1964, 264, 5013, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1945, '2021-05-15', 2435, 1965, 264, 5839, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1946, '2021-05-15', 1432, 1966, 265, 5876, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1947, '2021-05-15', 1425, 1967, 265, 7229, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1948, '2021-05-15', 2238, 1968, 266, 3084, '1.0000', '39.0000', '39.0000', '51.0000', '51.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1949, '2021-05-15', 1574, 1969, 267, 9451, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1950, '2021-05-15', 2315, 1970, 267, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '485.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1951, '2021-05-15', 1623, 1971, 268, 9414, '1.0000', '90.0000', '90.0000', '186.0000', '186.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1952, '2021-05-15', 1624, 1972, 268, 9469, '2.0000', '90.0000', '90.0000', '33.5000', '33.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1953, '2021-05-15', 1809, 1973, 268, 8419, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1954, '2021-05-15', 1863, 1974, 268, 4992, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '84.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1955, '2021-05-15', 2109, 1975, 268, 6021, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '144.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1956, '2021-05-15', 2255, 1976, 268, 3095, '1.0000', '17.4900', '17.4900', '23.0000', '23.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1957, '2021-05-15', 1651, 1977, 268, 8428, '1.0000', '6.8300', '6.8300', '9.0000', '9.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1958, '2021-05-15', 1904, 1978, 268, 5508, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1959, '2021-05-15', 2416, 1979, 268, 4827, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1960, '2021-05-15', 1427, 1980, 268, 4383, '2.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1961, '2021-05-15', 2485, 1981, 268, 5197, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1962, '2021-05-15', 2568, 1982, 268, 7213, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '106.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1963, '2021-05-15', 1570, 1983, 268, 9065, '1.0000', '90.0000', '90.0000', '54.5000', '54.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1964, '2021-05-15', 1809, 1984, 268, 8419, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1965, '2021-05-15', 1316, 1985, 268, 2487, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1966, '2021-05-15', 2220, 1986, 268, 4395, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1967, '2021-05-15', 2602, 1987, 268, 8621, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1968, '2021-05-15', 1875, 1988, 268, 9556, '1.0000', '90.0000', '90.0000', '3.4000', '3.4000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1969, '2021-05-15', 1875, 1988, 268, 5003, '2.0000', '90.0000', '90.0000', '3.4000', '3.4000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1970, '2021-05-15', 1875, 1988, 268, NULL, '1.0000', '90.0000', '90.0000', '3.4000', '3.4000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1971, '2021-05-15', 2607, 1989, 268, NULL, '1.0000', '1.4000', '1.4000', '1.7000', '1.7000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1972, '2021-05-15', 1425, 1990, 268, NULL, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1973, '2021-05-15', 2466, 1991, 269, 4845, '1.0000', '13.5900', '13.5900', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1974, '2021-05-15', 2379, 1992, 269, 4385, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1975, '2021-05-15', 1669, 1993, 269, 2434, '14.0000', '90.0000', '90.0000', '8.8000', '8.8000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1976, '2021-05-15', 1854, 1994, 269, 4985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1977, '2021-05-15', 1619, 1995, 269, 9416, '1.0000', '9.8500', '9.8500', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1978, '2021-05-15', 2602, 1996, 269, 8621, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1979, '2021-05-15', 1665, 1997, 269, 3244, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1980, '2021-05-15', 1812, 1998, 269, 8280, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1981, '2021-05-15', 1812, 1998, 269, 5875, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1982, '2021-05-15', 2039, 1999, 269, 6412, '1.0000', '9.0000', '9.0000', '14.0000', '14.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1983, '2021-05-15', 1494, 2000, 269, 6787, '1.0000', '4.3900', '4.3900', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (1984, '2021-05-15', 1340, 2001, 269, 3379, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1985, '2021-05-15', 2405, 2002, 269, 9571, '1.0000', '1.2000', '1.2000', '1.6000', '1.6000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1986, '2021-05-15', 1602, 2003, 269, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1987, '2021-05-15', 2352, 2004, 269, 8411, '2.0000', '20.0000', '20.0000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1988, '2021-05-15', 2352, 2004, 269, 3879, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1989, '2021-05-15', 1592, 2005, 269, 8285, '1.0000', '90.0000', '90.0000', '44.0000', '44.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1990, '2021-05-15', 2268, 2006, 269, 8431, '1.0000', '14.6000', '14.6000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1991, '2021-05-15', 1863, 2007, 269, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '83.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1992, '2021-05-15', 1573, 2008, 270, 5874, '1.0000', '90.0000', '90.0000', '32.5000', '32.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1993, '2021-05-15', 1502, 2009, 270, 9542, '2.0000', '90.0000', '90.0000', '10.5000', '10.5000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1994, '2021-05-15', 1602, 2010, 270, 9553, '2.0000', '6.9900', '6.9900', '9.5000', '9.5000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1995, '2021-05-15', 2060, 2011, 270, NULL, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1996, '2021-05-15', 1812, 2012, 270, 5875, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1997, '2021-05-15', 2302, 2013, 270, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1998, '2021-05-16', 1502, 2014, 271, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (1999, '2021-05-16', 2492, 2015, 271, 7113, '1.0000', '21.9900', '21.9900', '30.0000', '30.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2000, '2021-05-16', 1487, 2016, 271, 1481, '1.0000', '90.0000', '90.0000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2001, '2021-05-16', 1523, 2017, 272, NULL, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2002, '2021-05-16', 2280, 2018, 272, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2003, '2021-05-16', 2252, 2019, 272, 3092, '1.0000', '9.3000', '9.3000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2004, '2021-05-16', 2315, 2020, 272, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '483.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2005, '2021-05-16', 1402, 2021, 272, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2006, '2021-05-16', 1863, 2022, 272, 4992, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '81.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2007, '2021-05-16', 2108, 2023, 272, 6020, '2.0000', '4.7500', '4.7500', '6.5000', '6.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2008, '2021-05-16', 1905, 2024, 272, 5509, '2.0000', '0.4000', '0.4000', '1.0000', '1.0000', '95.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2009, '2021-05-16', 1313, 2025, 272, 3075, '2.0000', '0.4200', '0.4200', '3.0000', '3.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2010, '2021-05-16', 2221, 2026, 272, 4396, '1.0000', '15.0000', '15.0000', '35.0000', '35.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2011, '2021-05-16', 1602, 2027, 272, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2012, '2021-05-16', 1388, 2028, 272, 7226, '1.0000', '5.3000', '5.3000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2013, '2021-05-16', 1602, 2029, 272, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2014, '2021-05-16', 1667, 2030, 272, 4837, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2015, '2021-05-16', 1641, 2031, 272, 3266, '3.0000', '90.0000', '90.0000', '1.3000', '1.3000', '77.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2016, '2021-05-16', 2379, 2032, 272, 4385, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2017, '2021-05-16', 1602, 2033, 272, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2018, '2021-05-16', 2395, 2034, 272, 4366, '1.0000', '27.0000', '27.0000', '35.0000', '35.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2019, '2021-05-16', 1303, 2035, 272, 9576, '4.0000', '1.3800', '1.3800', '4.0000', '4.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2020, '2021-05-16', 1604, 2036, 272, 9466, '2.0000', '70.6900', '70.6900', '46.5000', '46.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2021, '2021-05-16', 1573, 2037, 273, NULL, '1.0000', '90.0000', '90.0000', '32.5000', '32.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2022, '2021-05-16', 1912, 2038, 273, 9575, '2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2023, '2021-05-16', 1342, 2039, 273, 3381, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2024, '2021-05-16', 1771, 2040, 273, 3410, '1.0000', '3.3900', '3.3900', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2025, '2021-05-16', 1519, 2041, 273, 1524, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2026, '2021-05-16', 1511, 2042, 273, 1514, '1.0000', '90.0000', '90.0000', '34.0000', '34.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2027, '2021-05-17', 1797, 2043, 274, 4923, '1.0000', '90.0000', '90.0000', '68.0000', '68.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2028, '2021-05-17', 2135, 2044, 275, 1523, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2029, '2021-05-17', 2424, 2045, 275, 5809, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2030, '2021-05-17', 2234, 2046, 275, 3080, '1.0000', '13.6000', '13.6000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2031, '2021-05-17', 1647, 2047, 275, 3261, '1.0000', '4.7200', '4.7200', '6.5000', '6.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2032, '2021-05-17', 2514, 2048, 275, 7518, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2033, '2021-05-17', 2259, 2049, 275, 7122, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2034, '2021-05-17', 2607, 2050, 275, 9620, '1.0000', '1.4000', '1.4000', '1.7000', '1.7000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2035, '2021-05-17', 2334, 2051, 275, 3897, '1.0000', '16.0000', '16.0000', '21.0000', '21.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2036, '2021-05-17', 1302, 2052, 275, 3071, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2037, '2021-05-17', 1564, 2053, 275, 9458, '10.0000', '90.0000', '90.0000', '4.0000', '4.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2038, '2021-05-17', 2568, 2054, 275, 7213, '1.0000', '0.3300', '0.3300', '0.2500', '0.2500', '105.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2039, '2021-05-17', 2568, 2055, 275, 7213, '10.0000', '0.3300', '0.3300', '0.2500', '0.2500', '96.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2040, '2021-05-17', 1394, 2056, 275, NULL, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2041, '2021-05-17', 1496, 2057, 275, 1499, '1.0000', '8.8400', '8.8400', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2042, '2021-05-17', 1646, 2058, 275, 3240, '1.0000', '4.5300', '4.5300', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2043, '2021-05-17', 1744, 2059, 275, 9554, '1.0000', '90.0000', '90.0000', '33.0000', '33.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2044, '2021-05-17', 1756, 2060, 275, 3187, '1.0000', '4.9900', '4.9900', '6.5000', '6.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2045, '2021-05-17', 1863, 2061, 276, 4992, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '79.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2046, '2021-05-17', 2289, 2062, 276, 3129, '10.0000', '0.2300', '0.2300', '0.5000', '0.5000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2047, '2021-05-17', 2238, 2063, 276, 3084, '4.0000', '39.0000', '39.0000', '51.0000', '51.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2048, '2021-05-17', 1550, 2064, 276, 5878, '1.0000', '90.0000', '90.0000', '18.3500', '18.3500', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2049, '2021-05-17', 2025, 2065, 276, 6425, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2050, '2021-05-17', 2088, 2066, 276, 9570, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2051, '2021-05-17', 1626, 2067, 276, 9413, '1.0000', '90.0000', '90.0000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2052, '2021-05-17', 2023, 2068, 276, 6426, '1.0000', '14.0000', '14.0000', '17.0000', '17.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2053, '2021-05-17', 2285, 2069, 276, 9582, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2054, '2021-05-17', 2144, 2070, 276, NULL, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2055, '2021-05-17', 1574, 2071, 276, 9451, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2056, '2021-05-17', 1693, 2072, 277, 2456, '2.0000', '7.8600', '7.8600', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2057, '2021-05-17', 1941, 2073, 277, 5601, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2058, '2021-05-17', 1863, 2074, 277, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '78.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2059, '2021-05-17', 2547, 2075, 277, 9547, '1.0000', '8.7600', '8.7600', '11.5000', '11.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2060, '2021-05-17', 2287, 2076, 277, 3127, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2061, '2021-05-17', 2302, 2077, 277, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2062, '2021-05-17', 1938, 2078, 277, 5604, '1.0000', '11.0000', '11.0000', '14.5000', '14.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2063, '2021-05-17', 2169, 2079, 277, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2064, '2021-05-17', 1385, 2080, 277, 3428, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2065, '2021-05-17', 1645, 2081, 277, 3262, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2066, '2021-05-17', 1876, 2082, 277, 9555, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2067, '2021-05-17', 1574, 2083, 277, 9451, '4.0000', '90.0000', '90.0000', '2.5000', '2.5000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2068, '2021-05-17', 2169, 2084, 277, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2069, '2021-05-17', 1754, 2085, 277, 2172, '1.0000', '90.0000', '90.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2070, '2021-05-17', 2342, 2086, 277, 9580, '10.0000', '1.8600', '1.8600', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2071, '2021-05-17', 1452, 2087, 277, 5632, '1.0000', '1.2300', '1.2300', '2.0000', '2.0000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2072, '2021-05-17', 2345, 2088, 277, 9579, '2.0000', '7.6400', '7.6400', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2073, '2021-05-17', 1450, 2089, 277, NULL, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2074, '2021-05-17', 1310, 2090, 277, NULL, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2075, '2021-05-17', 1412, 2091, 277, NULL, '1.0000', '14.0000', '14.0000', '18.5000', '18.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2076, '2021-05-17', 1733, 2092, 277, 4833, '3.0000', '8.8900', '8.8900', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2077, '2021-05-17', 1670, 2093, 277, 2435, '1.0000', '90.0000', '90.0000', '23.4000', '23.4000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2078, '2021-05-17', 1837, 2094, 277, 4970, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2079, '2021-05-17', 2169, 2095, 278, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2080, '2021-05-17', 1518, 2096, 278, 9533, '1.0000', '90.0000', '90.0000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2081, '2021-05-17', 1622, 2097, 278, 9415, '1.0000', '90.0000', '90.0000', '72.0000', '72.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2082, '2021-05-17', 2541, 2098, 278, 9537, '1.0000', '9.7500', '9.7500', '13.0000', '13.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2083, '2021-05-17', 1651, 2099, 278, 8428, '1.0000', '6.8300', '6.8300', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2084, '2021-05-17', 1863, 2100, 278, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '77.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2085, '2021-05-17', 2237, 2101, 278, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2086, '2021-05-17', 1904, 2102, 278, 5508, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2087, '2021-05-17', 2234, 2103, 279, 3080, '1.0000', '13.6000', '13.6000', '19.0000', '19.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2088, '2021-05-17', 2305, 2104, 279, 3138, '2.0000', '1.3300', '1.3300', '7.0000', '7.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2089, '2021-05-17', 1596, 2105, 280, 9433, '1.0000', '2.5700', '2.5700', '4.0000', '4.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2090, '2021-05-17', 1812, 2106, 281, 5875, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2091, '2021-05-17', 1812, 2106, 281, 4951, '3.0000', '7.8900', '7.8900', '10.5000', '10.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2092, '2021-05-17', 2592, 2107, 281, 8436, '1.0000', '7.8400', '7.8400', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2093, '2021-05-17', 2039, 2108, 282, 6412, '1.0000', '9.0000', '9.0000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2094, '2021-05-17', 2247, 2109, 283, 3086, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2095, '2021-05-17', 1805, 2110, 283, NULL, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2096, '2021-05-17', 1310, 2111, 283, NULL, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2097, '2021-05-17', 2135, 2112, 283, 1523, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2098, '2021-05-18', 1665, 2113, 284, 9695, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2099, '2021-05-18', 1580, 2114, 284, 9446, '1.0000', '0.9900', '0.9900', '1.5000', '1.5000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2100, '2021-05-18', 2297, 2115, 284, 3136, '1.0000', '7.2000', '7.2000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2101, '2021-05-18', 2405, 2116, 284, 9571, '1.0000', '1.2000', '1.2000', '1.6000', '1.6000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2102, '2021-05-18', 2405, 2116, 284, 9571, '1.0000', '1.2000', '1.2000', '1.6000', '1.6000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2103, '2021-05-18', 2405, 2116, 284, 4811, '1.0000', '1.2000', '1.2000', '1.6000', '1.6000', '87.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2104, '2021-05-18', 2432, 2117, 284, 5836, '1.0000', '14.5000', '14.5000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2105, '2021-05-18', 1665, 2118, 284, 9695, '5.0000', '1.3000', '1.3000', '2.0000', '2.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2106, '2021-05-18', 2451, 2119, 284, 5371, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2107, '2021-05-18', 1517, 2120, 284, 1519, '1.0000', '23.6400', '23.6400', '31.0000', '31.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2108, '2021-05-18', 1521, 2121, 284, 1526, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2109, '2021-05-18', 1384, 2122, 284, 3427, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2110, '2021-05-18', 2342, 2123, 284, NULL, '10.0000', '1.8600', '1.8600', '2.5000', '2.5000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2111, '2021-05-18', 2293, 2124, 284, 3064, '2.0000', '1.4400', '1.4400', '2.0000', '2.0000', '91.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2112, '2021-05-18', 2346, 2125, 284, 3885, '1.0000', '5.5000', '5.5000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2113, '2021-05-18', 1562, 2126, 284, 1669, '1.0000', '5.1300', '5.1300', '7.0000', '7.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2114, '2021-05-18', 1746, 2127, 284, NULL, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2115, '2021-05-18', 2568, 2128, 284, 7213, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '91.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2116, '2021-05-18', 2511, 2129, 284, 9693, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2117, '2021-05-18', 2089, 2130, 284, 9476, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2118, '2021-05-18', 2294, 2131, 284, 3133, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2119, '2021-05-18', 2250, 2132, 284, 8418, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2120, '2021-05-18', 2503, 2133, 284, 5841, '1.0000', '16.0000', '16.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2121, '2021-05-18', 2169, 2134, 285, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2122, '2021-05-18', 1507, 2135, 286, 1510, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2123, '2021-05-18', 2506, 2136, 286, 5867, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2124, '2021-05-18', 2493, 2137, 287, 7117, '1.0000', '6.5000', '6.5000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2125, '2021-05-18', 2608, 2138, 288, 9624, '2.0000', '83.3300', '83.3300', '120.0000', '120.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2126, '2021-05-18', 1303, 2139, 289, 9576, '1.0000', '1.3800', '1.3800', '4.0000', '4.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2127, '2021-05-18', 1772, 2140, 289, 8427, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2128, '2021-05-18', 2233, 2141, 289, 8278, '1.0000', '19.0200', '19.0200', '26.5000', '26.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2129, '2021-05-18', 1809, 2142, 289, 8419, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2130, '2021-05-18', 1876, 2143, 289, 9555, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2131, '2021-05-18', 1863, 2144, 289, 4992, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '75.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2132, '2021-05-18', 2363, 2145, 289, 3868, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2133, '2021-05-18', 2556, 2146, 289, 7130, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2134, '2021-05-18', 2228, 2147, 289, 7203, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2135, '2021-05-18', 1810, 2148, 289, 4949, '1.0000', '8.0500', '8.0500', '11.0000', '11.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2136, '2021-05-18', 1523, 2149, 289, 9574, '-1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2137, '2021-05-18', 1523, 2149, 289, 9574, '-1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2138, '2021-05-18', 1523, 2149, 289, 9574, '-1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2139, '2021-05-18', 1523, 2149, 289, 1528, '2.0000', '0.9300', '0.9300', '3.0000', '3.0000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2140, '2021-05-18', 2618, 2150, 289, 9776, '2.0000', '4.1000', '4.1000', '5.5000', '5.5000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2141, '2021-05-18', 1636, 2151, 289, 3271, '2.0000', '90.0000', '90.0000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2142, '2021-05-18', 1559, 2152, 289, 1663, '1.0000', '22.1000', '22.1000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2143, '2021-05-18', 2169, 2153, 289, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2144, '2021-05-18', 1672, 2154, 289, 9560, '20.0000', '90.0000', '90.0000', '3.8000', '3.8000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2145, '2021-05-18', 2271, 2155, 289, NULL, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2146, '2021-05-18', 2108, 2156, 289, 6020, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2147, '2021-05-18', 1863, 2157, 289, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '76.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2148, '2021-05-18', 1483, 2158, 290, 1485, '1.0000', '90.0000', '90.0000', '23.0000', '23.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2149, '2021-05-18', 2279, 2159, 290, 3119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2150, '2021-05-18', 1764, 2160, 290, 3179, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2151, '2021-05-18', 1338, 2161, 290, 3377, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2152, '2021-05-18', 1812, 2162, 290, 9635, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2153, '2021-05-18', 2221, 2163, 290, 4396, '1.0000', '15.0000', '15.0000', '30.0000', '30.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2154, '2021-05-18', 1626, 2164, 290, 9413, '1.0000', '90.0000', '90.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2155, '2021-05-18', 1665, 2165, 290, 9763, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2156, '2021-05-18', 1875, 2166, 290, 9784, '10.0000', '90.0000', '90.0000', '3.4000', '3.4000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2157, '2021-05-18', 1533, 2167, 291, 1540, '2.0000', '3.0500', '3.0500', '4.5000', '4.5000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2158, '2021-05-18', 1740, 2168, 291, 9565, '1.0000', '7.3300', '7.3300', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2159, '2021-05-18', 1438, 2169, 291, NULL, '1.0000', '14.8000', '14.8000', '19.5000', '19.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2160, '2021-05-18', 1725, 2170, 291, 9868, '1.0000', '90.0000', '90.0000', '94.5000', '94.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2161, '2021-05-18', 1983, 2171, 291, 6460, '1.0000', '11.0000', '11.0000', '14.5000', '14.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2162, '2021-05-18', 1669, 2172, 291, 2434, '5.0000', '90.0000', '90.0000', '8.8000', '8.8000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2163, '2021-05-19', 2233, 2173, 292, 8278, '1.0000', '19.0200', '19.0200', '26.5000', '26.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2164, '2021-05-19', 2143, 2174, 292, NULL, '1.0000', '15.0000', '15.0000', '22.0000', '22.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2165, '2021-05-19', 1645, 2175, 292, 3262, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2166, '2021-05-19', 1602, 2176, 292, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2167, '2021-05-19', 2109, 2177, 292, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '143.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2168, '2021-05-19', 2358, 2178, 292, 3874, '1.0000', '27.2100', '27.2100', '36.0000', '36.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2169, '2021-05-19', 2414, 2179, 292, 4826, '2.0000', '3.4000', '3.4000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2170, '2021-05-19', 1904, 2180, 292, 5508, '2.0000', '90.0000', '90.0000', '1.0000', '1.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2171, '2021-05-19', 1863, 2181, 292, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '73.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2172, '2021-05-19', 1636, 2182, 293, 3271, '2.0000', '90.0000', '90.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2173, '2021-05-19', 2411, 2183, 293, 4823, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2174, '2021-05-19', 1385, 2184, 293, 3428, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2175, '2021-05-19', 1342, 2185, 293, 3381, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2176, '2021-05-19', 2060, 2186, 293, NULL, '4.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2177, '2021-05-19', 2280, 2187, 293, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2178, '2021-05-19', 2237, 2188, 293, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2179, '2021-05-19', 2068, 2189, 293, 9905, '1.0000', '11.8000', '11.8000', '17.0000', '17.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2180, '2021-05-19', 1841, 2190, 293, 4974, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '66.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2181, '2021-05-19', 1961, 2191, 293, NULL, '1.0000', '16.3900', '16.3900', '26.0000', '26.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2182, '2021-05-19', 2234, 2192, 293, 9907, '1.0000', '13.6000', '13.6000', '18.8800', '18.8800', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2183, '2021-05-19', 2115, 2193, 294, 2638, '1.0000', '20.0000', '20.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2184, '2021-05-19', 2044, 2194, 294, 6408, '1.0000', '28.0000', '28.0000', '38.0000', '38.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2185, '2021-05-19', 1812, 2195, 294, 9635, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2186, '2021-05-19', 2611, 2196, 294, 9640, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2187, '2021-05-19', 2220, 2197, 294, 4395, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2188, '2021-05-19', 2317, 2198, 294, 8617, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2189, '2021-05-19', 2167, 2199, 294, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2190, '2021-05-19', 2353, 2200, 294, 3878, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2191, '2021-05-19', 1947, 2201, 294, 6003, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2192, '2021-05-19', 2317, 2202, 294, 8617, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2193, '2021-05-19', 1410, 2203, 294, NULL, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2194, '2021-05-19', 2622, 2204, 295, 9943, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2195, '2021-05-19', 2115, 2205, 296, 2638, '1.0000', '20.0000', '20.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2196, '2021-05-19', 1812, 2206, 297, 9635, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2197, '2021-05-19', 1863, 2207, 297, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '72.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2198, '2021-05-19', 1665, 2208, 297, 9913, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2199, '2021-05-19', 1574, 2209, 297, 9451, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2200, '2021-05-19', 1602, 2210, 297, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2201, '2021-05-19', 2556, 2211, 297, 7130, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2202, '2021-05-19', 2611, 2212, 297, 9640, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2203, '2021-05-19', 2379, 2213, 297, 4385, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2204, '2021-05-19', 2168, 2214, 298, 9562, '1.0000', '26.0000', '26.0000', '38.0000', '38.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2205, '2021-05-19', 1863, 2215, 298, 4992, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '70.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2206, '2021-05-19', 2245, 2216, 298, NULL, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2207, '2021-05-19', 2623, 2217, 299, 10009, '1.0000', '4.3000', '4.3000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2208, '2021-05-20', 2325, 2218, 300, 5088, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2209, '2021-05-20', 1478, 2219, 300, 1490, '2.0000', '90.0000', '90.0000', '28.0000', '28.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2210, '2021-05-20', 1837, 2220, 300, 4970, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2211, '2021-05-20', 1337, 2221, 300, 9572, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2212, '2021-05-20', 2574, 2222, 300, 8412, '10.0000', '0.7800', '0.7800', '1.0000', '1.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2213, '2021-05-20', 2296, 2223, 300, 3135, '1.0000', '13.2900', '13.2900', '18.0000', '18.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2214, '2021-05-20', 2327, 2224, 300, 5084, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2215, '2021-05-20', 2260, 2225, 300, 9549, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2216, '2021-05-20', 1579, 2226, 300, 5597, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2217, '2021-05-20', 2096, 2227, 300, 6008, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2218, '2021-05-20', 1374, 2228, 300, 4808, '3.0000', '55.5900', '55.5900', '24.0000', '24.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2219, '2021-05-20', 1502, 2229, 300, 9542, '2.0000', '90.0000', '90.0000', '10.5000', '10.5000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2220, '2021-05-20', 1616, 2230, 300, 9419, '1.0000', '4.0000', '4.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2221, '2021-05-20', 2283, 2231, 300, 3123, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2222, '2021-05-20', 2144, 2232, 300, NULL, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2223, '2021-05-20', 1863, 2233, 300, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '69.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2224, '2021-05-20', 1386, 2234, 300, NULL, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2225, '2021-05-20', 1450, 2235, 300, NULL, '2.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2226, '2021-05-20', 1546, 2236, 300, 1665, '2.0000', '90.0000', '90.0000', '3.5000', '3.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2227, '2021-05-20', 1704, 2237, 301, 9551, '1.0000', '90.0000', '90.0000', '35.5000', '35.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2228, '2021-05-20', 2238, 2238, 302, 3084, '3.0000', '39.0000', '39.0000', '51.0000', '51.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2229, '2021-05-20', 2238, 2238, 302, NULL, '1.0000', '39.0000', '39.0000', '51.0000', '51.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2230, '2021-05-20', 1779, 2239, 303, 4938, '10.0000', '0.3100', '0.3100', '1.0000', '1.0000', '90.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2231, '2021-05-20', 2272, 2240, 303, 3112, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2232, '2021-05-20', 2285, 2241, 303, 10002, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2233, '2021-05-20', 2556, 2242, 303, 7130, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2234, '2021-05-20', 1671, 2243, 303, 9558, '10.0000', '90.0000', '90.0000', '5.5000', '5.5000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2235, '2021-05-20', 1672, 2244, 303, 9560, '4.0000', '90.0000', '90.0000', '3.8000', '3.8000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2236, '2021-05-20', 1687, 2245, 303, 5899, '1.0000', '12.0000', '12.0000', '15.5000', '15.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2237, '2021-05-20', 1550, 2246, 303, 5878, '1.0000', '90.0000', '90.0000', '18.3500', '18.3500', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2238, '2021-05-20', 2242, 2247, 303, 3066, '4.0000', '0.4800', '0.4800', '1.0000', '1.0000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2239, '2021-05-20', 2061, 2248, 303, 2179, '1.0000', '10.9800', '10.9800', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2240, '2021-05-20', 1367, 2249, 303, 3539, '10.0000', '4.9000', '4.9000', '6.5000', '6.5000', '20.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (2241, '2021-05-20', 1313, 2250, 303, 3075, '1.0000', '0.4200', '0.4200', '3.0000', '3.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2242, '2021-05-20', 2237, 2251, 303, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2243, '2021-05-20', 1596, 2252, 303, 9433, '1.0000', '2.5700', '2.5700', '4.0000', '4.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2244, '2021-05-20', 2259, 2253, 303, 7122, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2245, '2021-05-20', 1346, 2254, 304, NULL, '15.0000', '0.9300', '0.9300', '1.2000', '1.2000', '-15.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2246, '2021-05-20', 2437, 2255, 304, 5821, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2247, '2021-05-20', 2491, 2256, 304, 7114, '1.0000', '12.2000', '12.2000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2248, '2021-05-20', 2523, 2257, 304, 7524, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2249, '2021-05-20', 1618, 2258, 304, 9417, '2.0000', '90.0000', '90.0000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2250, '2021-05-20', 1501, 2259, 304, 1504, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2251, '2021-05-20', 2568, 2260, 304, 7213, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '89.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2252, '2021-05-20', 1641, 2261, 304, 3266, '12.0000', '90.0000', '90.0000', '1.3000', '1.3000', '65.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2253, '2021-05-20', 1387, 2262, 305, NULL, '1.0000', '90.0000', '90.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2254, '2021-05-20', 1432, 2263, 305, 9634, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2255, '2021-05-20', 2167, 2264, 305, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2256, '2021-05-20', 2609, 2265, 305, 9637, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2257, '2021-05-20', 2315, 2266, 305, 3069, '3.0000', '0.3300', '0.3300', '0.5000', '0.5000', '480.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2258, '2021-05-20', 1300, 2267, 305, 2471, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2259, '2021-05-20', 2237, 2268, 305, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2260, '2021-05-20', 2221, 2269, 305, 4396, '1.0000', '15.0000', '15.0000', '30.0000', '30.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2261, '2021-05-20', 2440, 2270, 305, 5824, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2262, '2021-05-20', 1528, 2271, 305, 1535, '2.0000', '90.0000', '90.0000', '6.0000', '6.0000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2263, '2021-05-20', 2334, 2272, 305, 3897, '1.0000', '16.0000', '16.0000', '21.0000', '21.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2264, '2021-05-20', 1904, 2273, 305, 5508, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2265, '2021-05-20', 1871, 2274, 305, 9427, '40.0000', '90.0000', '90.0000', '2.6000', '2.6000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2266, '2021-05-20', 1310, 2275, 306, NULL, '5.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2267, '2021-05-20', 2624, 2276, 307, 10031, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2268, '2021-05-20', 1847, 2277, 307, 4979, '1.0000', '90.0000', '90.0000', '24.5000', '24.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2269, '2021-05-20', 1657, 2278, 308, 3251, '20.0000', '90.0000', '90.0000', '0.5000', '0.5000', '72.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2270, '2021-05-20', 1572, 2279, 308, 9452, '2.0000', '1.7000', '1.7000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2271, '2021-05-20', 1667, 2280, 308, 10000, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2272, '2021-05-20', 2568, 2281, 308, 7213, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '87.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2273, '2021-05-20', 2135, 2282, 308, 1523, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2274, '2021-05-20', 2221, 2283, 308, 4396, '2.0000', '15.0000', '15.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2275, '2021-05-20', 2331, 2284, 309, 3900, '2.0000', '12.0700', '12.0700', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2276, '2021-05-20', 2135, 2285, 309, 1523, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2277, '2021-05-20', 2279, 2286, 309, 3119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2278, '2021-05-20', 1602, 2287, 309, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2279, '2021-05-21', 1831, 2288, 310, 4966, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2280, '2021-05-21', 1621, 2289, 310, 9468, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2281, '2021-05-21', 1579, 2290, 310, 5597, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2282, '2021-05-21', 1300, 2291, 310, 2471, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2283, '2021-05-21', 2169, 2292, 310, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2284, '2021-05-21', 2360, 2293, 310, 3872, '2.0000', '0.5200', '0.5200', '0.6900', '0.6900', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2285, '2021-05-21', 2060, 2294, 310, NULL, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2286, '2021-05-21', 1303, 2295, 310, 9576, '3.0000', '1.3800', '1.3800', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2287, '2021-05-21', 1303, 2295, 310, 9576, '3.0000', '1.3800', '1.3800', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2288, '2021-05-21', 1303, 2295, 310, 2657, '1.0000', '1.3800', '1.3800', '4.0000', '4.0000', '150.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (2289, '2021-05-21', 1578, 2296, 310, 9447, '1.0000', '1.9700', '1.9700', '3.0000', '3.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2290, '2021-05-21', 1863, 2297, 310, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '68.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2291, '2021-05-21', 1432, 2298, 310, 10029, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2292, '2021-05-21', 1342, 2299, 310, 3381, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2293, '2021-05-21', 1577, 2300, 310, 9448, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2294, '2021-05-21', 2167, 2301, 310, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2295, '2021-05-21', 1874, 2302, 310, NULL, '1.0000', '6.1000', '6.1000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2296, '2021-05-21', 1963, 2303, 310, 5622, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2297, '2021-05-21', 2341, 2304, 310, 3890, '1.0000', '5.5900', '5.5900', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2298, '2021-05-21', 1864, 2305, 310, 8425, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2299, '2021-05-21', 1785, 2306, 310, 9440, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2300, '2021-05-21', 1812, 2307, 310, 10028, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2301, '2021-05-21', 2060, 2308, 310, NULL, '4.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2302, '2021-05-21', 1863, 2309, 310, 4992, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '67.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2303, '2021-05-21', 2109, 2310, 310, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '142.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2304, '2021-05-21', 2060, 2311, 310, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2305, '2021-05-21', 2457, 2312, 310, 4803, '1.0000', '23.0000', '23.0000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2306, '2021-05-21', 1303, 2313, 310, 9576, '3.0000', '1.3800', '1.3800', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2307, '2021-05-21', 1303, 2313, 310, 9576, '3.0000', '1.3800', '1.3800', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2308, '2021-05-21', 1303, 2313, 310, 2657, '1.0000', '1.3800', '1.3800', '4.0000', '4.0000', '150.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (2309, '2021-05-21', 1570, 2314, 311, 9065, '1.0000', '90.0000', '90.0000', '54.5000', '54.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2310, '2021-05-21', 1695, 2315, 311, 2458, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2311, '2021-05-21', 1670, 2316, 311, 2435, '1.0000', '90.0000', '90.0000', '23.4000', '23.4000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2312, '2021-05-21', 1347, 2317, 311, NULL, '3.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2313, '2021-05-21', 1837, 2318, 311, 4970, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2314, '2021-05-21', 2460, 2319, 311, 4832, '1.0000', '32.7700', '32.7700', '43.0000', '43.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2315, '2021-05-21', 1806, 2320, 311, 4945, '1.0000', '90.0000', '90.0000', '74.0000', '74.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2316, '2021-05-21', 2241, 2321, 311, 3067, '2.0000', '6.5900', '6.5900', '9.0000', '9.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2317, '2021-05-21', 1839, 2322, 311, 9420, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2318, '2021-05-21', 2250, 2323, 311, 8418, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2319, '2021-05-21', 2169, 2324, 311, NULL, '2.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2320, '2021-05-21', 1863, 2325, 311, 4992, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '64.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2321, '2021-05-21', 2352, 2326, 311, 3879, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2322, '2021-05-21', 2604, 2327, 311, 8626, '1.0000', '90.0000', '90.0000', '120.0000', '120.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2323, '2021-05-21', 2602, 2328, 311, 8621, '2.0000', '4.0000', '4.0000', '5.0000', '5.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2324, '2021-05-21', 2480, 2329, 311, NULL, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2325, '2021-05-21', 2317, 2330, 311, 8617, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2326, '2021-05-21', 2601, 2331, 311, 8612, '1.0000', '16.0000', '16.0000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2327, '2021-05-21', 1523, 2332, 311, NULL, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2328, '2021-05-21', 1828, 2333, 311, 4963, '2.0000', '0.7300', '0.7300', '1.0000', '1.0000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2329, '2021-05-21', 1321, 2334, 311, 2490, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2330, '2021-05-21', 1621, 2335, 311, 9468, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2331, '2021-05-21', 1659, 2336, 312, 3249, '1.0000', '90.0000', '90.0000', '55.0000', '55.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2332, '2021-05-21', 2625, 2337, 313, 10099, '1.0000', '17.0000', '17.0000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2333, '2021-05-21', 1912, 2338, 314, NULL, '1.0000', '0.3100', '0.3100', '0.8000', '0.8000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2334, '2021-05-21', 2567, 2339, 314, 7200, '1.0000', '33.0000', '33.0000', '37.0000', '37.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2335, '2021-05-21', 1746, 2340, 314, NULL, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2336, '2021-05-21', 1694, 2341, 314, 2457, '1.0000', '7.1900', '7.1900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2337, '2021-05-21', 2259, 2342, 314, 7122, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2338, '2021-05-21', 1665, 2343, 314, 10081, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2339, '2021-05-21', 2317, 2344, 314, 8617, '3.0000', '15.0000', '15.0000', '18.0000', '18.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2340, '2021-05-21', 2037, 2345, 314, 9941, '2.0000', '10.0000', '10.0000', '13.0000', '13.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2341, '2021-05-21', 1513, 2346, 314, 1515, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2342, '2021-05-21', 2615, 2347, 314, 10079, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2343, '2021-05-21', 2037, 2348, 315, 9941, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2344, '2021-05-21', 1812, 2349, 315, 10028, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2345, '2021-05-21', 1450, 2350, 315, NULL, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2346, '2021-05-21', 2302, 2351, 315, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2347, '2021-05-21', 1651, 2352, 315, 8428, '1.0000', '6.8300', '6.8300', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2348, '2021-05-22', 1785, 2353, 316, 8282, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2349, '2021-05-22', 2379, 2354, 316, 4385, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2350, '2021-05-22', 1602, 2355, 316, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2351, '2021-05-22', 1574, 2356, 316, 9451, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2352, '2021-05-22', 1863, 2357, 316, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '63.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2353, '2021-05-22', 1367, 2358, 316, 3539, '10.0000', '4.9000', '4.9000', '6.5000', '6.5000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (2354, '2021-05-22', 2061, 2359, 316, 2179, '1.0000', '10.9800', '10.9800', '15.0000', '15.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2355, '2021-05-22', 1686, 2360, 316, 2451, '1.0000', '90.0000', '90.0000', '35.0000', '35.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2356, '2021-05-22', 2565, 2361, 316, 7198, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2357, '2021-05-22', 1746, 2362, 316, NULL, '2.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2358, '2021-05-22', 2476, 2363, 316, 5189, '1.0000', '10.0000', '10.0000', '12.0000', '12.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2359, '2021-05-22', 1824, 2364, 316, 4959, '1.0000', '90.0000', '90.0000', '6.5000', '6.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2360, '2021-05-22', 1863, 2365, 316, 4992, '3.0000', '1.2200', '1.2200', '2.0000', '2.0000', '61.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2361, '2021-05-22', 2037, 2366, 316, 9941, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2362, '2021-05-22', 2024, 2367, 316, NULL, '1.0000', '14.0000', '14.0000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2363, '2021-05-22', 1837, 2368, 316, 4970, '3.0000', '0.5500', '0.5500', '1.0000', '1.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2364, '2021-05-22', 2280, 2369, 317, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2365, '2021-05-22', 1691, 2370, 317, 2454, '1.0000', '10.3300', '10.3300', '13.5000', '13.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2366, '2021-05-22', 2317, 2371, 317, 8617, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2367, '2021-05-22', 1394, 2372, 317, NULL, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2368, '2021-05-22', 1779, 2373, 317, 4938, '3.0000', '0.3100', '0.3100', '1.0000', '1.0000', '87.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2369, '2021-05-22', 1629, 2374, 318, 3276, '1.0000', '13.7900', '13.7900', '18.0000', '18.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2370, '2021-05-22', 2318, 2375, 318, NULL, '3.0000', '0.5000', '0.5000', '1.0000', '1.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2371, '2021-05-22', 1695, 2376, 318, 2458, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2372, '2021-05-22', 1947, 2377, 318, 6003, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2373, '2021-05-22', 1822, 2378, 319, 8279, '20.0000', '2.4000', '2.4000', '3.0000', '3.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2374, '2021-05-22', 1863, 2379, 319, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '59.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2375, '2021-05-22', 1529, 2380, 319, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2376, '2021-05-22', 1532, 2381, 319, 1539, '3.0000', '90.0000', '90.0000', '1.5000', '1.5000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2377, '2021-05-22', 2169, 2382, 319, NULL, '4.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2378, '2021-05-22', 1450, 2383, 319, NULL, '3.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2379, '2021-05-22', 2302, 2384, 319, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2380, '2021-05-22', 2068, 2385, 319, 10073, '1.0000', '11.8000', '11.8000', '17.0000', '17.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2381, '2021-05-22', 1841, 2386, 319, 4974, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '65.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2382, '2021-05-22', 2487, 2387, 319, 5198, '1.0000', '30.0000', '30.0000', '35.0000', '35.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2383, '2021-05-22', 2130, 2388, 319, 4402, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2384, '2021-05-22', 1493, 2389, 319, 10069, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2385, '2021-05-22', 1337, 2390, 319, 9572, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2386, '2021-05-22', 1938, 2391, 319, 5604, '1.0000', '11.0000', '11.0000', '14.5000', '14.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2387, '2021-05-22', 2281, 2392, 319, 3121, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2388, '2021-05-22', 1822, 2393, 319, 8279, '3.0000', '2.4000', '2.4000', '3.0000', '3.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2389, '2021-05-22', 1409, 2394, 319, NULL, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2390, '2021-05-22', 1431, 2395, 319, NULL, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2391, '2021-05-22', 1651, 2396, 319, 8428, '1.0000', '6.8300', '6.8300', '9.0000', '9.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2392, '2021-05-22', 1651, 2396, 319, 3257, '1.0000', '6.8300', '6.8300', '9.0000', '9.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2393, '2021-05-22', 2592, 2397, 319, 8436, '1.0000', '7.8400', '7.8400', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2394, '2021-05-22', 2230, 2398, 319, 1708, '1.0000', '43.5000', '43.5000', '46.0000', '46.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2395, '2021-05-22', 2544, 2399, 320, 9540, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2396, '2021-05-22', 1863, 2400, 320, 4992, '4.0000', '1.2200', '1.2200', '2.0000', '2.0000', '55.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2397, '2021-05-22', 1935, 2401, 320, 5607, '2.0000', '90.0000', '90.0000', '1.5000', '1.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2398, '2021-05-22', 2250, 2402, 320, 3090, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2399, '2021-05-22', 1855, 2403, 320, 4986, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2400, '2021-05-22', 2315, 2404, 320, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '478.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2401, '2021-05-22', 1602, 2405, 320, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2402, '2021-05-22', 1812, 2406, 320, 10182, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2403, '2021-05-22', 2486, 2407, 320, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2404, '2021-05-22', 2602, 2408, 320, 8621, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2405, '2021-05-22', 1863, 2409, 320, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '58.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2406, '2021-05-22', 2568, 2410, 320, 7213, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '83.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2407, '2021-05-22', 2169, 2411, 320, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2408, '2021-05-22', 1388, 2412, 320, 9797, '1.0000', '5.3000', '5.3000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2409, '2021-05-22', 1612, 2413, 320, 9422, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2410, '2021-05-22', 1335, 2414, 320, 3374, '5.0000', '0.8500', '0.8500', '2.0000', '2.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2411, '2021-05-22', 1666, 2415, 320, 7115, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2412, '2021-05-22', 1340, 2416, 320, 10208, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2413, '2021-05-22', 1602, 2417, 320, 9553, '2.0000', '6.9900', '6.9900', '9.5000', '9.5000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2414, '2021-05-22', 1573, 2418, 321, 10071, '1.0000', '90.0000', '90.0000', '32.5000', '32.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2415, '2021-05-22', 2221, 2419, 321, 4396, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2416, '2021-05-22', 1812, 2420, 321, 10182, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2417, '2021-05-22', 1304, 2421, 321, 2475, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2418, '2021-05-22', 1748, 2422, 321, 1527, '4.0000', '0.3200', '0.3200', '0.5000', '0.5000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2419, '2021-05-22', 2032, 2423, 322, 6418, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2420, '2021-05-22', 2327, 2424, 322, 5084, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2421, '2021-05-22', 1641, 2425, 323, 3266, '3.0000', '90.0000', '90.0000', '1.3000', '1.3000', '62.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2422, '2021-05-22', 1942, 2426, 323, 5600, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2423, '2021-05-22', 1670, 2427, 323, 10184, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2424, '2021-05-22', 1687, 2428, 323, 5899, '1.0000', '12.0000', '12.0000', '15.5000', '15.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2425, '2021-05-22', 1523, 2429, 323, 9574, '-1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2426, '2021-05-22', 1523, 2429, 323, 9574, '-1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2427, '2021-05-22', 1523, 2429, 323, 9574, '-1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2428, '2021-05-22', 1523, 2429, 323, 1528, '3.0000', '0.9300', '0.9300', '3.0000', '3.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2429, '2021-05-23', 1321, 2430, 324, 2490, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2430, '2021-05-23', 1841, 2431, 324, 4974, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '63.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2431, '2021-05-23', 2289, 2432, 324, 3129, '2.0000', '0.2300', '0.2300', '0.5000', '0.5000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2432, '2021-05-23', 2104, 2433, 324, 6016, '1.0000', '0.2000', '0.2000', '1.0000', '1.0000', '146.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2433, '2021-05-23', 1381, 2434, 324, 3424, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2434, '2021-05-23', 2452, 2435, 324, 5372, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2435, '2021-05-23', 1602, 2436, 324, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2436, '2021-05-23', 1812, 2437, 324, 10182, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2437, '2021-05-23', 2384, 2438, 324, 4370, '4.0000', '0.4000', '0.4000', '0.5000', '0.5000', '82.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2438, '2021-05-23', 1819, 2439, 324, 4955, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2439, '2021-05-23', 2486, 2440, 324, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2440, '2021-05-23', 2487, 2441, 324, 5198, '1.0000', '30.0000', '30.0000', '35.0000', '35.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2441, '2021-05-23', 1501, 2442, 324, 1504, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2442, '2021-05-23', 2318, 2443, 324, NULL, '45.0000', '0.5000', '0.5000', '1.0000', '1.0000', '-45.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2443, '2021-05-23', 2319, 2444, 324, 10024, '10.0000', '3.5000', '3.5000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2444, '2021-05-23', 1399, 2445, 324, 9568, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2445, '2021-05-23', 1863, 2446, 324, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '53.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2446, '2021-05-23', 1406, 2447, 324, NULL, '2.0000', '16.8000', '16.8000', '22.0000', '22.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2447, '2021-05-23', 1677, 2448, 324, 3397, '1.0000', '7.8000', '7.8000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2448, '2021-05-23', 1630, 2449, 324, 9472, '1.0000', '16.7400', '16.7400', '22.0000', '22.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2449, '2021-05-23', 2412, 2450, 324, 4824, '1.0000', '0.5200', '0.5200', '1.0000', '1.0000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2450, '2021-05-23', 2136, 2451, 324, NULL, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2451, '2021-05-23', 1931, 2452, 324, NULL, '1.0000', '7.0000', '7.0000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2452, '2021-05-23', 1746, 2453, 324, NULL, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2453, '2021-05-23', 1386, 2454, 324, NULL, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2454, '2021-05-23', 2318, 2455, 324, NULL, '40.0000', '0.5000', '0.5000', '1.0000', '1.0000', '-40.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2455, '2021-05-23', 2368, 2456, 324, 4374, '1.0000', '13.0000', '13.0000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2456, '2021-05-23', 2144, 2457, 324, NULL, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2457, '2021-05-23', 2436, 2458, 324, 5820, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2458, '2021-05-23', 2315, 2459, 324, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '476.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2459, '2021-05-23', 2491, 2460, 324, 7114, '1.0000', '12.2000', '12.2000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2460, '2021-05-23', 1769, 2461, 324, 2197, '1.0000', '90.0000', '90.0000', '35.5000', '35.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2461, '2021-05-23', 2511, 2462, 324, 10083, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2462, '2021-05-23', 1854, 2463, 324, 4985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2463, '2021-05-23', 1499, 2464, 324, 1502, '3.0000', '0.4100', '0.4100', '0.6000', '0.6000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2464, '2021-05-23', 2570, 2465, 325, 7215, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2465, '2021-05-23', 1839, 2466, 325, 9420, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2466, '2021-05-23', 1646, 2467, 325, 3240, '1.0000', '4.5300', '4.5300', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2467, '2021-05-23', 2102, 2468, 325, 6014, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2468, '2021-05-23', 2237, 2469, 325, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2469, '2021-05-23', 2363, 2470, 325, 3868, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2470, '2021-05-23', 2226, 2471, 325, 1712, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2471, '2021-05-23', 2384, 2472, 325, 4370, '8.0000', '0.4000', '0.4000', '0.5000', '0.5000', '74.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2472, '2021-05-23', 2260, 2473, 325, 9549, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2473, '2021-05-23', 2260, 2473, 325, 3101, '3.0000', '4.2000', '4.2000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2474, '2021-05-23', 1837, 2474, 325, 4970, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2475, '2021-05-23', 1386, 2475, 325, NULL, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2476, '2021-05-23', 1519, 2476, 325, 1524, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2477, '2021-05-23', 1335, 2477, 325, 3374, '6.0000', '0.8500', '0.8500', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2478, '2021-05-23', 2027, 2478, 325, NULL, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2479, '2021-05-23', 1831, 2479, 325, 4966, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2480, '2021-05-23', 1744, 2480, 326, 9554, '1.0000', '90.0000', '90.0000', '33.0000', '33.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2481, '2021-05-23', 1531, 2481, 326, 1538, '3.0000', '0.9600', '0.9600', '1.5000', '1.5000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2482, '2021-05-24', 1306, 2482, 327, 5611, '5.0000', '2.1000', '2.1000', '3.0000', '3.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2483, '2021-05-24', 1761, 2483, 327, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2484, '2021-05-24', 1574, 2484, 327, 9451, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2485, '2021-05-24', 2169, 2485, 327, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2486, '2021-05-24', 2315, 2486, 327, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '474.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2487, '2021-05-24', 1316, 2487, 327, 2487, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2488, '2021-05-24', 2477, 2488, 327, 5190, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2489, '2021-05-24', 2485, 2489, 327, 5197, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2490, '2021-05-24', 2487, 2490, 327, 5198, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2491, '2021-05-24', 2479, 2491, 327, 5192, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2492, '2021-05-24', 2486, 2492, 327, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2493, '2021-05-24', 1688, 2493, 327, 4940, '1.0000', '16.9900', '16.9900', '24.0000', '24.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2494, '2021-05-24', 1410, 2494, 327, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2495, '2021-05-24', 1841, 2495, 327, 4974, '9.0000', '0.3700', '0.3700', '0.5000', '0.5000', '54.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2496, '2021-05-24', 2466, 2496, 327, 10089, '1.0000', '13.5900', '13.5900', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2497, '2021-05-24', 2247, 2497, 327, 3086, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2498, '2021-05-24', 1657, 2498, 327, 3251, '72.0000', '90.0000', '90.0000', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2499, '2021-05-24', 1657, 2498, 327, NULL, '28.0000', '90.0000', '90.0000', '0.5000', '0.5000', '-28.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2500, '2021-05-24', 2037, 2499, 327, 9941, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2501, '2021-05-24', 1311, 2500, 327, 5503, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '57.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2502, '2021-05-24', 2224, 2501, 327, 1714, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2503, '2021-05-24', 1420, 2502, 328, NULL, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2504, '2021-05-24', 1563, 2503, 328, 1670, '1.0000', '4.9000', '4.9000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2505, '2021-05-24', 1730, 2504, 328, 9564, '1.0000', '23.9100', '23.9100', '31.5000', '31.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2506, '2021-05-24', 2541, 2505, 328, 10088, '1.0000', '9.7500', '9.7500', '13.0000', '13.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2507, '2021-05-24', 1904, 2506, 328, 5508, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2508, '2021-05-24', 1756, 2507, 328, 3187, '2.0000', '4.9900', '4.9900', '6.5000', '6.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2509, '2021-05-24', 1772, 2508, 328, 8427, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2510, '2021-05-24', 1746, 2509, 328, NULL, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2511, '2021-05-24', 2037, 2510, 328, 9941, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2512, '2021-05-24', 2010, 2511, 328, 6435, '1.0000', '1.2500', '1.2500', '2.5000', '2.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2513, '2021-05-24', 2135, 2512, 328, 1523, '2.0000', '2.5000', '2.5000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2514, '2021-05-24', 1700, 2513, 328, 7116, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2515, '2021-05-24', 1425, 2514, 328, 10240, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2516, '2021-05-24', 1427, 2515, 328, 10238, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2517, '2021-05-24', 1806, 2516, 328, 4945, '1.0000', '90.0000', '90.0000', '74.0000', '74.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2518, '2021-05-24', 2614, 2517, 328, 10087, '1.0000', '52.5100', '52.5100', '70.0000', '70.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2519, '2021-05-24', 2543, 2518, 328, 9539, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2520, '2021-05-24', 1608, 2519, 328, 9426, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2521, '2021-05-24', 1514, 2520, 329, 1516, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2522, '2021-05-24', 1863, 2521, 329, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '52.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2523, '2021-05-24', 1602, 2522, 329, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2524, '2021-05-24', 1722, 2523, 329, 6809, '1.0000', '2.5900', '2.5900', '4.0000', '4.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2525, '2021-05-24', 2393, 2524, 329, 4806, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2526, '2021-05-24', 1427, 2525, 329, 10239, '2.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2527, '2021-05-24', 2119, 2526, 329, 2639, '1.0000', '30.0000', '30.0000', '60.0000', '60.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2528, '2021-05-24', 2120, 2527, 329, 2640, '1.0000', '5.0000', '5.0000', '15.0000', '15.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2529, '2021-05-24', 1700, 2528, 329, 7116, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2530, '2021-05-24', 1384, 2529, 329, 3427, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2531, '2021-05-24', 2250, 2530, 329, 3090, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2532, '2021-05-24', 1504, 2531, 329, 1507, '10.0000', '90.0000', '90.0000', '2.0000', '2.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2533, '2021-05-24', 2299, 2532, 329, NULL, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2534, '2021-05-24', 1863, 2533, 330, 4992, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '50.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2535, '2021-05-24', 1935, 2534, 330, 5607, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2536, '2021-05-24', 2169, 2535, 330, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2537, '2021-05-24', 1338, 2536, 330, 3377, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2538, '2021-05-24', 1780, 2537, 330, 10189, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2539, '2021-05-24', 1744, 2538, 330, 9554, '1.0000', '90.0000', '90.0000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2540, '2021-05-24', 1529, 2539, 330, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2541, '2021-05-24', 2634, 2540, 330, NULL, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2542, '2021-05-24', 2466, 2541, 331, 10089, '1.0000', '13.5900', '13.5900', '18.0000', '18.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2543, '2021-05-24', 2321, 2542, 331, 5085, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2544, '2021-05-24', 1657, 2543, 331, NULL, '100.0000', '90.0000', '90.0000', '0.5000', '0.5000', '-100.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2545, '2021-05-24', 2037, 2544, 331, 9941, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2546, '2021-05-24', 2635, 2545, 331, 10295, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2547, '2021-05-24', 1426, 2546, 331, 5877, '1.0000', '36.0000', '36.0000', '47.5000', '47.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2548, '2021-05-24', 1312, 2547, 332, 2482, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2549, '2021-05-24', 2144, 2548, 332, NULL, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2550, '2021-05-24', 2252, 2549, 332, 3092, '1.0000', '9.3000', '9.3000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2551, '2021-05-24', 1602, 2550, 332, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2552, '2021-05-24', 2015, 2551, 332, 6430, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2553, '2021-05-24', 1602, 2552, 332, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2554, '2021-05-24', 1372, 2553, 332, 3415, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2555, '2021-05-24', 2408, 2554, 332, 4817, '1.0000', '8.6200', '8.6200', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2556, '2021-05-24', 1831, 2555, 332, 4966, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2557, '2021-05-24', 1904, 2556, 332, 5508, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2558, '2021-05-24', 2169, 2557, 332, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2559, '2021-05-24', 1493, 2558, 332, 10069, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2560, '2021-05-24', 1533, 2559, 332, 1540, '1.0000', '3.0500', '3.0500', '4.5000', '4.5000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2561, '2021-05-24', 2294, 2560, 332, 3133, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2562, '2021-05-24', 1635, 2561, 332, 8421, '15.0000', '90.0000', '90.0000', '17.0000', '17.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2563, '2021-05-24', 1343, 2562, 332, 3382, '1.0000', '43.9000', '43.9000', '58.0000', '58.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2564, '2021-05-24', 2289, 2563, 332, 3129, '3.0000', '0.2300', '0.2300', '0.5000', '0.5000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2565, '2021-05-24', 1840, 2564, 332, 4973, '9.0000', '0.2400', '0.2400', '0.3000', '0.3000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2566, '2021-05-24', 2220, 2565, 332, 4395, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2567, '2021-05-24', 1839, 2566, 332, 9420, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2568, '2021-05-24', 2109, 2567, 332, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '141.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2569, '2021-05-25', 1580, 2568, 333, 9446, '2.0000', '0.9900', '0.9900', '1.5000', '1.5000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2570, '2021-05-25', 1986, 2569, 333, 6457, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2571, '2021-05-25', 1649, 2570, 333, 3259, '1.0000', '90.0000', '90.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2572, '2021-05-25', 2568, 2571, 333, 7213, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '81.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2573, '2021-05-25', 1738, 2572, 333, 6795, '1.0000', '7.1000', '7.1000', '9.5000', '9.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2574, '2021-05-25', 1519, 2573, 333, 1524, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2575, '2021-05-25', 1401, 2574, 333, 4360, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2576, '2021-05-25', 1763, 2575, 333, 3180, '1.0000', '4.6900', '4.6900', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2577, '2021-05-25', 1528, 2576, 333, 1535, '3.0000', '90.0000', '90.0000', '6.0000', '6.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2578, '2021-05-25', 2624, 2577, 333, 10031, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2579, '2021-05-25', 2379, 2578, 334, 4385, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2580, '2021-05-25', 2169, 2579, 334, NULL, '3.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2581, '2021-05-25', 2150, 2580, 334, NULL, '2.0000', '30.4100', '30.4100', '41.0000', '41.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2582, '2021-05-25', 1846, 2581, 334, 4978, '1.0000', '90.0000', '90.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2583, '2021-05-25', 2360, 2582, 334, 3872, '2.0000', '0.5200', '0.5200', '0.6900', '0.6900', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2584, '2021-05-25', 1735, 2583, 334, 3902, '28.0000', '4.6000', '4.6000', '6.0000', '6.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2585, '2021-05-25', 1669, 2584, 334, 2434, '2.0000', '90.0000', '90.0000', '8.8000', '8.8000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2586, '2021-05-25', 2570, 2585, 334, 7215, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2587, '2021-05-25', 2085, 2586, 334, 9463, '2.0000', '13.3400', '13.3400', '1.8000', '1.8000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2588, '2021-05-25', 1529, 2587, 334, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2589, '2021-05-25', 1602, 2588, 334, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2590, '2021-05-25', 2568, 2589, 335, 7213, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '79.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2591, '2021-05-25', 1523, 2590, 335, NULL, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2592, '2021-05-25', 2241, 2591, 335, 3067, '1.0000', '6.5900', '6.5900', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2593, '2021-05-25', 1837, 2592, 335, 4970, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2594, '2021-05-25', 2557, 2593, 335, 7127, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2595, '2021-05-25', 1812, 2594, 335, 10312, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2596, '2021-05-25', 1564, 2595, 335, 9458, '8.0000', '90.0000', '90.0000', '4.0000', '4.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2597, '2021-05-25', 1328, 2596, 335, 3366, '1.0000', '3.1500', '3.1500', '4.5000', '4.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2598, '2021-05-25', 1618, 2597, 335, 9417, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2599, '2021-05-25', 1610, 2598, 335, 9424, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2600, '2021-05-25', 1767, 2599, 335, 8430, '2.0000', '4.6000', '4.6000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2601, '2021-05-25', 1756, 2600, 335, 3187, '2.0000', '4.9900', '4.9900', '6.5000', '6.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2602, '2021-05-25', 1688, 2601, 335, 4940, '1.0000', '16.9900', '16.9900', '24.0000', '24.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2603, '2021-05-25', 1371, 2602, 335, 10300, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2604, '2021-05-25', 1905, 2603, 335, 5509, '1.0000', '0.4000', '0.4000', '1.0000', '1.0000', '94.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2605, '2021-05-25', 2022, 2604, 335, 4368, '1.0000', '3.5000', '3.5000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2606, '2021-05-25', 2392, 2605, 335, 4369, '1.0000', '3.2000', '3.2000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2607, '2021-05-25', 2169, 2606, 335, NULL, '2.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2608, '2021-05-25', 2237, 2607, 336, 3083, '2.0000', '1.0600', '1.0600', '1.5000', '1.5000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2609, '2021-05-25', 1863, 2608, 336, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2610, '2021-05-25', 2320, 2609, 336, NULL, '2.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2611, '2021-05-25', 1605, 2610, 336, NULL, '1.0000', '24.8500', '24.8500', '33.0000', '33.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2612, '2021-05-25', 1642, 2611, 336, 3265, '1.0000', '90.0000', '90.0000', '41.0000', '41.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2613, '2021-05-25', 1678, 2612, 336, 2443, '1.0000', '90.0000', '90.0000', '32.0000', '32.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2614, '2021-05-25', 2552, 2613, 336, NULL, '1.0000', '87.0000', '87.0000', '112.0000', '112.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2615, '2021-05-25', 2491, 2614, 336, 7114, '1.0000', '12.2000', '12.2000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2616, '2021-05-25', 1559, 2615, 336, 1663, '1.0000', '22.1000', '22.1000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2617, '2021-05-25', 2512, 2616, 336, 7520, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2618, '2021-05-25', 1519, 2617, 336, 1524, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2619, '2021-05-25', 2086, 2618, 336, 9423, '1.0000', '4.3200', '4.3200', '6.0000', '6.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2620, '2021-05-25', 1837, 2619, 336, 4970, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2621, '2021-05-25', 1687, 2620, 336, 5899, '1.0000', '12.0000', '12.0000', '15.5000', '15.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2622, '2021-05-25', 1721, 2621, 336, 6810, '1.0000', '8.6900', '8.6900', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2623, '2021-05-25', 1539, 2622, 337, 1544, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2624, '2021-05-25', 1602, 2623, 337, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2625, '2021-05-25', 2167, 2624, 337, NULL, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2626, '2021-05-25', 2327, 2625, 337, 5084, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2627, '2021-05-25', 2028, 2626, 337, 6422, '1.0000', '21.0000', '21.0000', '23.0000', '23.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2628, '2021-05-25', 2034, 2627, 337, 6416, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2629, '2021-05-25', 2142, 2628, 337, NULL, '1.0000', '57.0000', '57.0000', '76.0000', '76.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2630, '2021-05-25', 1800, 2629, 337, 4921, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2631, '2021-05-25', 1825, 2630, 337, 4960, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2632, '2021-05-25', 1667, 2631, 337, 10074, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2633, '2021-05-25', 1665, 2632, 337, 10081, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2634, '2021-05-25', 1871, 2633, 338, 9427, '10.0000', '90.0000', '90.0000', '2.6000', '2.6000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2635, '2021-05-25', 2636, 2634, 339, NULL, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2636, '2021-05-25', 2268, 2635, 340, 10310, '3.0000', '14.6000', '14.6000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2637, '2021-05-25', 1947, 2636, 341, 6003, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2638, '2021-05-25', 1619, 2637, 341, 10082, '2.0000', '9.8500', '9.8500', '13.0000', '13.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2639, '2021-05-25', 1533, 2638, 341, 1540, '1.0000', '3.0500', '3.0500', '4.5000', '4.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2640, '2021-05-25', 2242, 2639, 341, 3066, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2641, '2021-05-25', 1997, 2640, 341, 6446, '1.0000', '8.5000', '8.5000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2642, '2021-05-25', 2037, 2641, 341, 9941, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2643, '2021-05-25', 1546, 2642, 341, 1665, '10.0000', '90.0000', '90.0000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2644, '2021-05-25', 1388, 2643, 341, 10244, '1.0000', '5.3000', '5.3000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2645, '2021-05-26', 2286, 2644, 342, NULL, '2.0000', '4.3000', '4.3000', '6.0000', '6.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2646, '2021-05-26', 1307, 2645, 342, 1014, '1.0000', '94.4437', '94.4437', '2.5000', '2.5000', '26.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (2647, '2021-05-26', 1401, 2646, 342, NULL, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2648, '2021-05-26', 1831, 2647, 342, NULL, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2649, '2021-05-26', 2169, 2648, 342, 10411, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (2650, '2021-05-26', 1550, 2649, 342, NULL, '1.0000', '13.9000', '13.9000', '18.3500', '18.3500', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2651, '2021-05-26', 2430, 2650, 342, NULL, '3.0000', '7.0000', '7.0000', '10.0000', '10.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2652, '2021-05-26', 2038, 2651, 342, NULL, '3.0000', '10.0000', '10.0000', '13.0000', '13.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2653, '2021-05-26', 1629, 2652, 342, NULL, '1.0000', '90.0000', '90.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2654, '2021-05-26', 1470, 2653, 342, 120, '1.0000', '90.0000', '90.0000', '14.5000', '14.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (2655, '2021-05-26', 1398, 2654, 342, NULL, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2656, '2021-05-26', 2153, 2655, 343, 1368, '2.0000', '8.0000', '8.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (2657, '2021-05-26', 1383, 2656, 343, 283, '1.0000', '47.4000', '47.4000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (2658, '2021-05-26', 1928, 2657, 343, 6878, '1.0000', '68.7750', '68.7750', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (2659, '2021-05-26', 1432, 2658, 343, 10452, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (2660, '2021-05-26', 2260, 2659, 343, 10447, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (2661, '2021-05-26', 2281, 2660, 343, NULL, '4.0000', '3.0000', '3.0000', '4.0000', '4.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2662, '2021-05-26', 2463, 2661, 343, NULL, '1.0000', '2.8700', '2.8700', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2663, '2021-05-26', 2417, 2662, 344, 5816, '1.0000', '14.5000', '14.5000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2664, '2021-05-26', 1822, 2663, 344, 8279, '12.0000', '2.4000', '2.4000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2665, '2021-05-26', 1822, 2663, 344, 4957, '17.0000', '2.4000', '2.4000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2666, '2021-05-26', 1523, 2664, 344, 9574, '-1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2667, '2021-05-26', 1523, 2664, 344, 9574, '-1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2668, '2021-05-26', 1523, 2664, 344, 9574, '-1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2669, '2021-05-26', 1523, 2664, 344, 1528, '2.0000', '0.9300', '0.9300', '3.0000', '3.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2670, '2021-05-26', 2143, 2665, 344, NULL, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2671, '2021-05-26', 1621, 2666, 344, 9468, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2672, '2021-05-26', 1856, 2667, 344, 4987, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2673, '2021-05-26', 1450, 2668, 344, NULL, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2674, '2021-05-26', 2315, 2669, 344, 3069, '4.0000', '0.3300', '0.3300', '0.5000', '0.5000', '470.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2675, '2021-05-26', 1626, 2670, 344, 9413, '1.0000', '90.0000', '90.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2676, '2021-05-26', 1637, 2671, 344, 3270, '1.0000', '90.0000', '90.0000', '13.5000', '13.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2677, '2021-05-26', 1922, 2672, 344, 5617, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2678, '2021-05-26', 2261, 2673, 344, 3102, '1.0000', '18.9900', '18.9900', '25.0000', '25.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2679, '2021-05-26', 2167, 2674, 344, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2680, '2021-05-26', 1621, 2675, 344, 9468, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2681, '2021-05-26', 2511, 2676, 344, 10083, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2682, '2021-05-26', 2016, 2677, 344, 6431, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2683, '2021-05-26', 1488, 2678, 344, 1491, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2684, '2021-05-26', 2003, 2679, 344, 6817, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2685, '2021-05-26', 1452, 2680, 344, 5632, '1.0000', '1.2300', '1.2300', '2.0000', '2.0000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2686, '2021-05-26', 2289, 2681, 344, 3129, '3.0000', '0.2300', '0.2300', '0.5000', '0.5000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2687, '2021-05-26', 1767, 2682, 344, 8430, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2688, '2021-05-26', 1876, 2683, 344, 9555, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2689, '2021-05-26', 1706, 2684, 344, 9473, '1.0000', '15.2700', '15.2700', '20.0000', '20.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2690, '2021-05-26', 1904, 2685, 344, 5508, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2691, '2021-05-26', 1670, 2686, 344, 10314, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2692, '2021-05-26', 1550, 2687, 344, 5878, '1.0000', '90.0000', '90.0000', '18.3500', '18.3500', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2693, '2021-05-26', 2105, 2688, 344, 6017, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2694, '2021-05-26', 2037, 2689, 344, 9941, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2695, '2021-05-26', 2283, 2690, 345, 3123, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2696, '2021-05-26', 1888, 2691, 345, 5013, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2697, '2021-05-26', 1562, 2692, 345, 1669, '1.0000', '5.1300', '5.1300', '7.0000', '7.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2698, '2021-05-26', 2221, 2693, 345, 4396, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2699, '2021-05-26', 2167, 2694, 345, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2700, '2021-05-26', 1368, 2695, 345, 3411, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2701, '2021-05-26', 1812, 2696, 345, 10312, '3.0000', '7.8900', '7.8900', '10.5000', '10.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2702, '2021-05-26', 1727, 2697, 345, 8413, '10.0000', '1.8000', '1.8000', '3.7000', '3.7000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2703, '2021-05-26', 2618, 2698, 345, 10094, '1.0000', '4.1000', '4.1000', '5.5000', '5.5000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2704, '2021-05-26', 1602, 2699, 345, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2705, '2021-05-26', 2355, 2700, 345, 4821, '2.0000', '53.3100', '53.3100', '7.1000', '7.1000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2706, '2021-05-26', 2355, 2700, 345, 3877, '2.0000', '53.3100', '53.3100', '7.1000', '7.1000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2707, '2021-05-26', 2355, 2700, 345, NULL, '10.0000', '53.3100', '53.3100', '7.1000', '7.1000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2708, '2021-05-26', 1727, 2701, 346, 6803, '10.0000', '1.8000', '1.8000', '3.7000', '3.7000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2709, '2021-05-27', 2285, 2702, 347, 2945, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2710, '2021-05-27', 2350, 2703, 347, 3853, '-1.0000', '10.3800', '10.3800', '13.5000', '13.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2711, '2021-05-27', 2350, 2703, 347, NULL, '2.0000', '10.3800', '10.3800', '13.5000', '13.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2712, '2021-05-27', 1523, 2704, 347, NULL, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2713, '2021-05-27', 2318, 2705, 347, 3474, '3.0000', '0.5000', '0.5000', '1.0000', '1.0000', '197.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2714, '2021-05-27', 1439, 2706, 347, 4702, '1.0000', '1.0000', '1.0000', '1.3000', '1.3000', '11.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (2715, '2021-05-27', 1519, 2707, 347, NULL, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2716, '2021-05-27', 1761, 2708, 347, NULL, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2717, '2021-05-27', 2135, 2709, 347, NULL, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2718, '2021-05-27', 1736, 2710, 347, 9313, '4.0000', '26.9366', '26.9366', '38.0000', '38.0000', '2.0000', 1, 0, NULL, 95);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2719, '2021-05-27', 2379, 2711, 347, NULL, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2720, '2021-05-27', 1608, 2712, 347, NULL, '1.0000', '-455.5340', '-455.5340', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2721, '2021-05-27', 1329, 2713, 348, NULL, '1.0000', '8.5000', '8.5000', '5.5000', '5.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2722, '2021-05-27', 2231, 2714, 349, 1706, '-1.0000', '33.0000', '33.0000', '36.0000', '36.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2723, '2021-05-27', 2231, 2714, 349, NULL, '2.0000', '33.0000', '33.0000', '36.0000', '36.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2724, '2021-05-27', 1371, 2715, 350, 10300, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2725, '2021-05-27', 1523, 2716, 350, NULL, '5.0000', '0.9300', '0.9300', '3.0000', '3.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2726, '2021-05-27', 2379, 2717, 350, 4385, '4.0000', '1.5900', '1.5900', '2.0000', '2.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2727, '2021-05-27', 1433, 2718, 350, 4802, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2728, '2021-05-27', 1641, 2719, 350, 3266, '3.0000', '90.0000', '90.0000', '1.3000', '1.3000', '59.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2729, '2021-05-27', 1609, 2720, 351, 9425, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2730, '2021-05-27', 1450, 2721, 351, NULL, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2731, '2021-05-27', 1604, 2722, 351, 9466, '2.0000', '70.6900', '70.6900', '46.5000', '46.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2732, '2021-05-27', 2277, 2723, 351, 3117, '5.0000', '0.7800', '0.7800', '1.0000', '1.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2733, '2021-05-27', 1863, 2724, 351, 4992, '10.0000', '1.2200', '1.2200', '2.0000', '2.0000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2734, '2021-05-27', 2570, 2725, 351, 7215, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2735, '2021-05-27', 2206, 2726, 351, 8180, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2736, '2021-05-27', 1859, 2727, 351, 8422, '1.0000', '90.0000', '90.0000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2737, '2021-05-27', 1860, 2728, 351, 4990, '1.0000', '90.0000', '90.0000', '28.0000', '28.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2738, '2021-05-27', 2463, 2729, 351, 4840, '3.0000', '2.8700', '2.8700', '4.0000', '4.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2739, '2021-05-27', 1624, 2730, 351, 10539, '2.0000', '90.0000', '90.0000', '39.0000', '39.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2740, '2021-05-27', 1773, 2731, 351, 4942, '1.0000', '90.0000', '90.0000', '59.0000', '59.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2741, '2021-05-27', 1663, 2732, 351, 9787, '1.0000', '90.0000', '90.0000', '115.0000', '115.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2742, '2021-05-27', 1667, 2733, 352, 10533, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2743, '2021-05-27', 1592, 2734, 352, 8285, '1.0000', '90.0000', '90.0000', '44.0000', '44.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2744, '2021-05-27', 1422, 2735, 352, NULL, '1.0000', '21.0000', '21.0000', '28.0000', '28.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2745, '2021-05-27', 1574, 2736, 352, 9451, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2746, '2021-05-27', 1690, 2737, 353, 5868, '1.0000', '90.0000', '90.0000', '8.5000', '8.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2747, '2021-05-27', 1426, 2738, 353, 5877, '1.0000', '36.0000', '36.0000', '47.5000', '47.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2748, '2021-05-27', 2355, 2739, 353, NULL, '10.0000', '53.3100', '53.3100', '7.1000', '7.1000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2749, '2021-05-27', 2252, 2740, 353, 3092, '1.0000', '9.3000', '9.3000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2750, '2021-05-27', 1947, 2741, 353, 6003, '2.0000', '5.0000', '5.0000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2751, '2021-05-27', 2562, 2742, 353, 7207, '1.0000', '30.0000', '30.0000', '80.0000', '80.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2752, '2021-05-27', 2557, 2743, 353, 7127, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2753, '2021-05-27', 2360, 2744, 353, 3872, '4.0000', '0.5200', '0.5200', '0.6900', '0.6900', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2754, '2021-05-28', 1641, 2745, 354, 3266, '12.0000', '90.0000', '90.0000', '1.3000', '1.3000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2755, '2021-05-28', 2222, 2746, 354, 1496, '2.0000', '13.5000', '13.5000', '16.0000', '16.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2756, '2021-05-28', 1863, 2747, 354, 4992, '3.0000', '1.2200', '1.2200', '2.0000', '2.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2757, '2021-05-28', 2281, 2748, 354, 3121, '2.0000', '3.0000', '3.0000', '4.0000', '4.0000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2758, '2021-05-28', 2279, 2749, 354, 3119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2759, '2021-05-28', 2088, 2750, 354, 9570, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2760, '2021-05-28', 2068, 2751, 355, 10532, '1.0000', '11.8000', '11.8000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2761, '2021-05-28', 2167, 2752, 355, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2762, '2021-05-28', 1863, 2753, 355, 4992, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2763, '2021-05-28', 2607, 2754, 355, 9786, '3.0000', '1.4000', '1.4000', '1.7000', '1.7000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2764, '2021-05-28', 1935, 2755, 355, 5607, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2765, '2021-05-28', 2280, 2756, 355, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2766, '2021-05-28', 1493, 2757, 355, 10528, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2767, '2021-05-28', 2317, 2758, 355, 8617, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2768, '2021-05-28', 2144, 2759, 355, 10322, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2769, '2021-05-28', 2038, 2760, 355, 9939, '2.0000', '10.0000', '10.0000', '13.0000', '13.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2770, '2021-05-28', 2433, 2761, 355, 9460, '80.0000', '0.3200', '0.3200', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2771, '2021-05-28', 2363, 2762, 355, 3868, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2772, '2021-05-28', 1574, 2763, 355, 9451, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2773, '2021-05-28', 1413, 2764, 355, NULL, '1.0000', '16.0000', '16.0000', '21.0000', '21.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2774, '2021-05-28', 2357, 2765, 355, 3875, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2775, '2021-05-28', 1714, 2766, 355, 9481, '1.0000', '90.0000', '90.0000', '22.0000', '22.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2776, '2021-05-28', 2001, 2767, 355, 6442, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2777, '2021-05-28', 1433, 2768, 355, 4802, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2778, '2021-05-28', 1960, 2769, 355, 5832, '1.0000', '3.5600', '3.5600', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2779, '2021-05-28', 2294, 2770, 355, 3133, '1.0000', '3.5000', '3.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2780, '2021-05-28', 1493, 2771, 355, 10528, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2781, '2021-05-28', 1574, 2772, 355, 9451, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2782, '2021-05-28', 2285, 2773, 355, 10529, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2783, '2021-05-28', 2285, 2773, 355, 9582, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2784, '2021-05-28', 2071, 2774, 356, NULL, '2.0000', '5.0000', '5.0000', '6.5000', '6.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2785, '2021-05-28', 1495, 2775, 356, 1498, '1.0000', '90.0000', '90.0000', '22.5000', '22.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2786, '2021-05-28', 1610, 2776, 356, 10391, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2787, '2021-05-28', 1346, 2777, 356, NULL, '10.0000', '0.9300', '0.9300', '1.2000', '1.2000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2788, '2021-05-28', 1576, 2778, 356, 9449, '2.0000', '7.0500', '7.0500', '9.5000', '9.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2789, '2021-05-28', 2302, 2779, 356, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2790, '2021-05-28', 2317, 2780, 356, 8617, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2791, '2021-05-28', 1812, 2781, 356, 10312, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2792, '2021-05-28', 2005, 2782, 356, 6441, '1.0000', '2.3300', '2.3300', '3.5000', '3.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2793, '2021-05-28', 2234, 2783, 356, 10534, '1.0000', '13.6000', '13.6000', '18.8800', '18.8800', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2794, '2021-05-28', 1676, 2784, 356, 3396, '1.0000', '7.9000', '7.9000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2795, '2021-05-28', 2320, 2785, 356, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2796, '2021-05-28', 1809, 2786, 356, 10313, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2797, '2021-05-28', 1863, 2787, 356, 4992, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2798, '2021-05-28', 2457, 2788, 356, NULL, '1.0000', '23.0000', '23.0000', '30.0000', '30.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2799, '2021-05-28', 1346, 2789, 356, NULL, '5.0000', '0.9300', '0.9300', '1.2000', '1.2000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2800, '2021-05-28', 2477, 2790, 356, 5190, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2801, '2021-05-28', 1955, 2791, 356, 3409, '1.0000', '35.0000', '35.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2802, '2021-05-28', 1371, 2792, 356, 10300, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2803, '2021-05-28', 1409, 2793, 356, NULL, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2804, '2021-05-28', 2055, 2794, 356, 4357, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2805, '2021-05-28', 1876, 2795, 356, 5004, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2806, '2021-05-28', 1529, 2796, 356, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2807, '2021-05-28', 1300, 2797, 356, 2471, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2808, '2021-05-28', 1760, 2798, 356, 3183, '2.0000', '1.5900', '1.5900', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2809, '2021-05-28', 1760, 2798, 356, 6783, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (2810, '2021-05-28', 1746, 2799, 356, NULL, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2811, '2021-05-28', 2085, 2800, 357, 9463, '10.0000', '13.3400', '13.3400', '1.8000', '1.8000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2812, '2021-05-28', 2511, 2801, 358, NULL, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2813, '2021-05-28', 1839, 2802, 358, 9420, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2814, '2021-05-28', 2169, 2803, 358, NULL, '2.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2815, '2021-05-28', 2135, 2804, 358, 1523, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2816, '2021-05-28', 1665, 2805, 358, 10540, '3.0000', '1.3000', '1.3000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2817, '2021-05-28', 2486, 2806, 358, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2818, '2021-05-28', 1736, 2807, 358, 8410, '3.0000', '26.7000', '26.7000', '38.0000', '38.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2819, '2021-05-28', 1812, 2808, 358, 10312, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2820, '2021-05-28', 2327, 2809, 358, 5084, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2821, '2021-05-28', 1769, 2810, 358, 2197, '1.0000', '90.0000', '90.0000', '35.5000', '35.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2822, '2021-05-28', 1961, 2811, 358, NULL, '1.0000', '16.3900', '16.3900', '26.0000', '26.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2823, '2021-05-28', 1904, 2812, 358, 5508, '5.0000', '90.0000', '90.0000', '1.0000', '1.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2824, '2021-05-28', 1846, 2813, 358, 4978, '1.0000', '90.0000', '90.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2825, '2021-05-28', 1863, 2814, 358, 4992, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2826, '2021-05-28', 1523, 2815, 358, 9574, '-5.0000', '0.9300', '0.9300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2827, '2021-05-28', 1523, 2815, 358, 9574, '-5.0000', '0.9300', '0.9300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2828, '2021-05-28', 1523, 2815, 358, 9574, '-5.0000', '0.9300', '0.9300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2829, '2021-05-28', 1523, 2815, 358, 1528, '7.0000', '0.9300', '0.9300', '3.0000', '3.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2830, '2021-05-28', 2556, 2816, 358, 7130, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2831, '2021-05-29', 2317, 2817, 359, 8617, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2832, '2021-05-29', 2232, 2818, 359, 3078, '1.0000', '27.0000', '27.0000', '36.0000', '36.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2833, '2021-05-29', 1675, 2819, 359, 2440, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2834, '2021-05-29', 2003, 2820, 359, 6817, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2835, '2021-05-29', 2222, 2821, 359, 1496, '2.0000', '13.5000', '13.5000', '16.0000', '16.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2836, '2021-05-29', 1525, 2822, 359, 1532, '5.0000', '90.0000', '90.0000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2837, '2021-05-29', 1666, 2823, 359, 7115, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2838, '2021-05-29', 2384, 2824, 359, 4370, '4.0000', '0.4000', '0.4000', '0.5000', '0.5000', '70.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2839, '2021-05-29', 1502, 2825, 359, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2840, '2021-05-29', 2324, 2826, 359, 5089, '1.0000', '10.5000', '10.5000', '14.5000', '14.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2841, '2021-05-29', 2007, 2827, 359, 6438, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2842, '2021-05-29', 2005, 2828, 359, 6441, '1.0000', '2.3300', '2.3300', '3.5000', '3.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2843, '2021-05-29', 2038, 2829, 359, 9939, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2844, '2021-05-29', 1349, 2830, 359, 10318, '1.0000', '32.5000', '32.5000', '43.0000', '43.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2845, '2021-05-29', 2220, 2831, 359, 4395, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2846, '2021-05-29', 1706, 2832, 359, 9473, '1.0000', '15.2700', '15.2700', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2847, '2021-05-29', 1602, 2833, 359, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2848, '2021-05-29', 1646, 2834, 359, 3240, '1.0000', '4.5300', '4.5300', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2849, '2021-05-29', 1839, 2835, 359, 9420, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2850, '2021-05-29', 2381, 2836, 359, NULL, '1.0000', '10.8700', '10.8700', '14.0000', '14.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2851, '2021-05-29', 2410, 2837, 359, 4820, '1.0000', '4.3200', '4.3200', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2852, '2021-05-29', 1320, 2838, 359, 2489, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2853, '2021-05-29', 2567, 2839, 359, 7200, '1.0000', '33.0000', '33.0000', '37.0000', '37.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2854, '2021-05-29', 1989, 2840, 359, 6454, '1.0000', '3.5000', '3.5000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2855, '2021-05-29', 1819, 2841, 359, 4955, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2856, '2021-05-29', 1863, 2842, 359, 4992, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2857, '2021-05-29', 2643, 2843, 359, 10577, '2.0000', '0.8700', '0.8700', '1.0000', '1.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2858, '2021-05-29', 2072, 2844, 359, 5613, '1.0000', '7.3800', '7.3800', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2859, '2021-05-29', 1381, 2845, 359, 3424, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2860, '2021-05-29', 1445, 2846, 359, 7112, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2861, '2021-05-29', 1464, 2847, 359, NULL, '2.0000', '90.0000', '90.0000', '17.5000', '17.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2862, '2021-05-29', 1548, 2848, 359, 1664, '15.0000', '90.0000', '90.0000', '3.6000', '3.6000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2863, '2021-05-29', 1763, 2849, 359, 3180, '1.0000', '4.6900', '4.6900', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2864, '2021-05-29', 2565, 2850, 359, 7198, '2.0000', '0.8100', '0.8100', '1.5000', '1.5000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2865, '2021-05-29', 2169, 2851, 359, NULL, '3.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2866, '2021-05-29', 2221, 2852, 359, 10580, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2867, '2021-05-29', 2315, 2853, 360, 3069, '4.0000', '0.3300', '0.3300', '0.5000', '0.5000', '466.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2868, '2021-05-29', 1912, 2854, 360, 9575, '-1.0000', '0.3100', '0.3100', '0.8000', '0.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2869, '2021-05-29', 1912, 2854, 360, 9575, '-1.0000', '0.3100', '0.3100', '0.8000', '0.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2870, '2021-05-29', 1912, 2854, 360, 9575, '-1.0000', '0.3100', '0.3100', '0.8000', '0.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2871, '2021-05-29', 1912, 2854, 360, 1503, '2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '81.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2872, '2021-05-29', 1561, 2855, 361, 8432, '1.0000', '27.0000', '27.0000', '35.5000', '35.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2873, '2021-05-29', 2643, 2856, 361, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2874, '2021-05-29', 2588, 2857, 362, 8277, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2875, '2021-05-29', 2296, 2858, 362, 3135, '1.0000', '13.2900', '13.2900', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2876, '2021-05-29', 2405, 2859, 362, NULL, '6.0000', '1.2000', '1.2000', '1.6000', '1.6000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2877, '2021-05-29', 2399, 2860, 363, 5373, '1.0000', '8.5000', '8.5000', '11.0000', '11.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2878, '2021-05-29', 1521, 2861, 363, 1526, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2879, '2021-05-29', 2379, 2862, 363, 4385, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2880, '2021-05-29', 1756, 2863, 363, 3187, '2.0000', '4.9900', '4.9900', '6.5000', '6.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2881, '2021-05-29', 1912, 2864, 363, NULL, '2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2882, '2021-05-29', 2144, 2865, 363, 10322, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2883, '2021-05-29', 2285, 2866, 363, 10948, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2884, '2021-05-29', 1371, 2867, 363, 10300, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2885, '2021-05-29', 2521, 2868, 363, 7522, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2886, '2021-05-29', 1904, 2869, 363, 5508, '2.0000', '90.0000', '90.0000', '1.0000', '1.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2887, '2021-05-29', 1863, 2870, 363, 10936, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2888, '2021-05-29', 1602, 2871, 363, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2889, '2021-05-29', 1756, 2872, 363, 3187, '2.0000', '4.9900', '4.9900', '6.5000', '6.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2890, '2021-05-29', 1610, 2873, 363, 10391, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2891, '2021-05-29', 2492, 2874, 363, 10394, '1.0000', '21.9900', '21.9900', '30.0000', '30.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2892, '2021-05-29', 2302, 2875, 363, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2893, '2021-05-29', 1311, 2876, 363, 5503, '10.0000', '0.3700', '0.3700', '0.5000', '0.5000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2894, '2021-05-29', 2598, 2877, 364, 9066, '1.0000', '5.4300', '5.4300', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2895, '2021-05-29', 1574, 2878, 365, 9451, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2896, '2021-05-29', 2642, 2879, 365, 10574, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2897, '2021-05-29', 1807, 2880, 365, 4946, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2898, '2021-05-29', 1807, 2880, 365, 3540, '9.0000', '1.8000', '1.8000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (2899, '2021-05-29', 2169, 2881, 365, 11023, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2900, '2021-05-29', 1321, 2882, 365, 2490, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2901, '2021-05-29', 2327, 2883, 365, 5084, '3.0000', '4.5000', '4.5000', '6.0000', '6.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2902, '2021-05-29', 2362, 2884, 365, 10388, '10.0000', '82.0200', '82.0200', '11.0000', '11.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2903, '2021-05-29', 1523, 2885, 365, 11081, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2904, '2021-05-29', 2169, 2886, 365, 11023, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2905, '2021-05-29', 1812, 2887, 365, 10312, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2906, '2021-05-29', 2568, 2888, 365, 7213, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '77.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2907, '2021-05-29', 1532, 2889, 366, 1539, '3.0000', '90.0000', '90.0000', '1.5000', '1.5000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2908, '2021-05-29', 2545, 2890, 366, 11013, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2909, '2021-05-29', 2237, 2891, 366, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2910, '2021-05-29', 2302, 2892, 366, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2911, '2021-05-29', 1772, 2893, 366, 8427, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2912, '2021-05-29', 1346, 2894, 366, 11100, '10.0000', '0.9300', '0.9300', '1.2000', '1.2000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2913, '2021-05-29', 1651, 2895, 366, 11101, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2914, '2021-05-29', 1602, 2896, 366, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2915, '2021-05-29', 1785, 2897, 366, 11033, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2916, '2021-05-29', 2315, 2898, 366, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '464.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2917, '2021-05-29', 1499, 2899, 366, 1502, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2918, '2021-05-29', 2015, 2900, 367, 6430, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2919, '2021-05-29', 1665, 2901, 367, 10540, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2920, '2021-05-29', 2232, 2902, 367, 3078, '1.0000', '27.0000', '27.0000', '36.0000', '36.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2921, '2021-05-29', 2003, 2903, 367, 6817, '2.0000', '4.0000', '4.0000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2922, '2021-05-29', 1799, 2904, 368, NULL, '1.0000', '22.8000', '22.8000', '30.0000', '30.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2923, '2021-05-29', 2281, 2905, 368, 3121, '2.0000', '3.0000', '3.0000', '4.0000', '4.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2924, '2021-05-29', 1807, 2906, 368, 3540, '4.0000', '1.8000', '1.8000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (2925, '2021-05-29', 2546, 2907, 368, 11071, '1.0000', '13.6300', '13.6300', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2926, '2021-05-29', 1863, 2908, 368, 11026, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2927, '2021-05-30', 1481, 2909, 369, 1487, '1.0000', '90.0000', '90.0000', '33.0000', '33.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2928, '2021-05-30', 2272, 2910, 369, 11031, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2929, '2021-05-30', 1666, 2911, 369, 7115, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2930, '2021-05-30', 2362, 2912, 369, 10388, '10.0000', '82.0200', '82.0200', '11.0000', '11.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2931, '2021-05-30', 1602, 2913, 369, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2932, '2021-05-30', 2315, 2914, 369, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '463.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2933, '2021-05-30', 2028, 2915, 369, 6422, '1.0000', '21.0000', '21.0000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2934, '2021-05-30', 1822, 2916, 369, 11077, '10.0000', '2.4000', '2.4000', '3.0000', '3.0000', '70.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2935, '2021-05-30', 1670, 2917, 369, 11040, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2936, '2021-05-30', 2216, 2918, 369, 8162, '1.0000', '12.0000', '12.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2937, '2021-05-30', 2342, 2919, 369, 11042, '5.0000', '1.8600', '1.8600', '2.5000', '2.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2938, '2021-05-30', 1871, 2920, 369, 10384, '10.0000', '90.0000', '90.0000', '3.0000', '3.0000', '50.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2939, '2021-05-30', 2280, 2921, 369, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2940, '2021-05-30', 1947, 2922, 369, 6003, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2941, '2021-05-30', 1602, 2923, 369, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2942, '2021-05-30', 2487, 2924, 369, 5198, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2943, '2021-05-30', 1358, 2925, 369, NULL, '1.0000', '7.7800', '7.7800', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2944, '2021-05-30', 1574, 2926, 369, 9451, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2945, '2021-05-30', 1701, 2927, 369, 2464, '1.0000', '14.7800', '14.7800', '19.5000', '19.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2946, '2021-05-30', 2420, 2928, 369, 5806, '1.0000', '21.5000', '21.5000', '28.0000', '28.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2947, '2021-05-30', 2617, 2929, 369, 10536, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2948, '2021-05-30', 2056, 2930, 369, NULL, '1.0000', '5.4100', '5.4100', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2949, '2021-05-30', 2568, 2931, 369, 7213, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '75.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2950, '2021-05-30', 1647, 2932, 369, 3261, '1.0000', '4.7200', '4.7200', '6.5000', '6.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2951, '2021-05-30', 2568, 2933, 369, 7213, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '75.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2952, '2021-05-30', 2036, 2934, 369, 4401, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2953, '2021-05-30', 1342, 2935, 369, 3381, '2.0000', '43.9000', '43.9000', '7.5000', '7.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2954, '2021-05-30', 2435, 2936, 369, 5839, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2955, '2021-05-30', 1310, 2937, 369, NULL, '7.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2956, '2021-05-30', 2618, 2938, 369, 10553, '1.0000', '4.1000', '4.1000', '5.5000', '5.5000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2957, '2021-05-30', 1839, 2939, 369, 4972, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2958, '2021-05-30', 1839, 2940, 369, 4972, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2959, '2021-05-30', 1651, 2941, 369, 11101, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2960, '2021-05-30', 2352, 2942, 369, 10317, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2961, '2021-05-30', 1313, 2943, 369, 3075, '1.0000', '0.4200', '0.4200', '3.0000', '3.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2962, '2021-05-30', 1523, 2944, 370, 11081, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2963, '2021-05-30', 1580, 2945, 370, 9446, '3.0000', '0.9900', '0.9900', '1.5000', '1.5000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2964, '2021-05-30', 1800, 2946, 370, 11099, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2965, '2021-05-30', 1825, 2947, 370, 4960, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2966, '2021-05-30', 2521, 2948, 370, 7522, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2967, '2021-05-30', 2502, 2949, 370, 5842, '1.0000', '43.2000', '43.2000', '55.5000', '55.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2968, '2021-05-30', 1411, 2950, 370, 9047, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2969, '2021-05-30', 2617, 2951, 370, 10536, '2.0000', '4.4000', '4.4000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2970, '2021-05-30', 2336, 2952, 370, 3895, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2971, '2021-05-30', 2617, 2953, 370, 10536, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2972, '2021-05-30', 1782, 2954, 370, 10301, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2973, '2021-05-30', 1626, 2955, 370, 11078, '1.0000', '90.0000', '90.0000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2974, '2021-05-30', 1641, 2956, 371, 3266, '2.0000', '90.0000', '90.0000', '1.3000', '1.3000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2975, '2021-05-30', 1454, 2957, 371, 5621, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2976, '2021-05-30', 2236, 2958, 371, 3082, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2977, '2021-05-30', 2260, 2959, 372, 11021, '4.0000', '4.2000', '4.2000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2978, '2021-05-30', 2506, 2960, 373, 5867, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2979, '2021-05-30', 1557, 2961, 373, 1661, '1.0000', '7.8800', '7.8800', '10.5000', '10.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2980, '2021-05-31', 2497, 2962, 374, 11172, '1.0000', '34.0000', '34.0000', '48.0000', '48.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2981, '2021-05-31', 2539, 2963, 374, 6123, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2982, '2021-05-31', 2539, 2964, 374, 6123, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2983, '2021-05-31', 2088, 2965, 374, NULL, '2.0000', '1.3800', '1.3800', '5.0000', '5.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2984, '2021-05-31', 2280, 2966, 374, 3120, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2985, '2021-05-31', 1783, 2967, 374, 11011, '6.0000', '90.0000', '90.0000', '11.0000', '11.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2986, '2021-05-31', 2576, 2968, 374, 11181, '1.0000', '107.9300', '107.9300', '71.0000', '71.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2987, '2021-05-31', 1783, 2969, 374, 11011, '3.0000', '90.0000', '90.0000', '11.0000', '11.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2988, '2021-05-31', 1976, 2970, 374, 6464, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2989, '2021-05-31', 2020, 2971, 374, 10311, '1.0000', '7.5000', '7.5000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2990, '2021-05-31', 2248, 2972, 374, 3087, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2991, '2021-05-31', 2247, 2973, 374, 3086, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2992, '2021-05-31', 1567, 2974, 374, 9455, '1.0000', '13.3000', '13.3000', '17.5000', '17.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2993, '2021-05-31', 1935, 2975, 374, 5607, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2994, '2021-05-31', 2348, 2976, 374, 8414, '1.0000', '22.0300', '22.0300', '29.0000', '29.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2995, '2021-05-31', 2169, 2977, 374, 11023, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2996, '2021-05-31', 1499, 2978, 374, 1502, '4.0000', '0.4100', '0.4100', '0.6000', '0.6000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2997, '2021-05-31', 2280, 2979, 374, 3120, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2998, '2021-05-31', 2402, 2980, 374, 4359, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (2999, '2021-05-31', 2327, 2981, 374, 5084, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3000, '2021-05-31', 2252, 2982, 374, 3092, '1.0000', '9.3000', '9.3000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3001, '2021-05-31', 1863, 2983, 374, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '124.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3002, '2021-05-31', 2384, 2984, 375, 4370, '4.0000', '0.4000', '0.4000', '0.5000', '0.5000', '66.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3003, '2021-05-31', 2414, 2985, 376, 4826, '2.0000', '3.4000', '3.4000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3004, '2021-05-31', 2362, 2986, 377, 10388, '10.0000', '82.0200', '82.0200', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3005, '2021-05-31', 1426, 2987, 377, 5877, '1.0000', '36.0000', '36.0000', '47.5000', '47.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3006, '2021-05-31', 1346, 2988, 377, 11100, '7.0000', '0.9300', '0.9300', '1.2000', '1.2000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3007, '2021-05-31', 1346, 2988, 377, NULL, '23.0000', '0.9300', '0.9300', '1.2000', '1.2000', '-23.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3008, '2021-05-31', 2318, 2989, 377, NULL, '6.0000', '0.5000', '0.5000', '1.0000', '1.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3009, '2021-05-31', 2094, 2990, 378, 6002, '1.0000', '2.9000', '2.9000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3010, '2021-05-31', 2366, 2991, 378, 8415, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3011, '2021-05-31', 1518, 2992, 378, 9533, '1.0000', '90.0000', '90.0000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3012, '2021-05-31', 2582, 2993, 378, 10527, '1.0000', '11.5000', '11.5000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3013, '2021-05-31', 1567, 2994, 378, 9455, '1.0000', '13.3000', '13.3000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3014, '2021-05-31', 1629, 2995, 378, 3276, '1.0000', '13.7900', '13.7900', '18.0000', '18.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3015, '2021-05-31', 2320, 2996, 378, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3016, '2021-05-31', 1409, 2997, 378, 11025, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3017, '2021-05-31', 1411, 2998, 378, 9047, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3018, '2021-05-31', 1863, 2999, 378, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '123.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3019, '2021-05-31', 1574, 3000, 378, 9451, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3020, '2021-05-31', 2353, 3001, 378, 3878, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3021, '2021-05-31', 1602, 3002, 378, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3022, '2021-05-31', 2237, 3003, 378, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3023, '2021-05-31', 1307, 3004, 378, 4984, '1.0000', '1.9000', '1.9000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3024, '2021-05-31', 2169, 3005, 378, 11023, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3025, '2021-05-31', 2317, 3006, 378, 8617, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3026, '2021-05-31', 1435, 3007, 378, 10235, '1.0000', '18.5000', '18.5000', '28.0000', '28.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3027, '2021-05-31', 1301, 3008, 378, 2472, '1.0000', '1.6800', '1.6800', '2.0000', '2.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3028, '2021-05-31', 2527, 3009, 378, 8613, '1.0000', '40.0000', '40.0000', '48.0000', '48.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3029, '2021-05-31', 2487, 3010, 378, 5198, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3030, '2021-05-31', 1419, 3011, 378, 9051, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3031, '2021-05-31', 1812, 3012, 378, 10312, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3032, '2021-05-31', 2169, 3013, 378, 11023, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3033, '2021-05-31', 2294, 3014, 378, 11045, '1.0000', '3.5000', '3.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3034, '2021-05-31', 1371, 3015, 378, 10300, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3035, '2021-05-31', 2299, 3016, 378, NULL, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3036, '2021-05-31', 1537, 3017, 379, 1542, '1.0000', '40.2700', '40.2700', '53.0000', '53.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3037, '2021-05-31', 2597, 3018, 379, 9056, '1.0000', '3.8200', '3.8200', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3038, '2021-05-31', 1347, 3019, 379, NULL, '3.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3039, '2021-05-31', 1585, 3020, 379, 9442, '1.0000', '8.9900', '8.9900', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3040, '2021-05-31', 1319, 3021, 379, 2488, '1.0000', '3.0000', '3.0000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3041, '2021-05-31', 2159, 3022, 379, NULL, '2.0000', '15.0000', '15.0000', '19.5000', '19.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3042, '2021-05-31', 1440, 3023, 380, 7233, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3043, '2021-05-31', 2221, 3024, 380, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3044, '2021-05-31', 2254, 3025, 380, 3094, '1.0000', '17.9400', '17.9400', '24.0000', '24.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3045, '2021-05-31', 2073, 3026, 380, 5612, '5.0000', '2.3000', '2.3000', '3.0000', '3.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3046, '2021-05-31', 2154, 3027, 380, NULL, '2.0000', '10.5000', '10.5000', '14.0000', '14.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3047, '2021-05-31', 2131, 3028, 380, 10576, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3048, '2021-05-31', 1863, 3029, 380, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '122.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3049, '2021-05-31', 2568, 3030, 380, 7213, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '69.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3050, '2021-05-31', 1730, 3031, 380, 9564, '1.0000', '23.9100', '23.9100', '31.5000', '31.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3051, '2021-05-31', 1346, 3032, 380, NULL, '10.0000', '0.9300', '0.9300', '1.2000', '1.2000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3052, '2021-06-01', 1432, 3033, 381, 11016, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3053, '2021-06-01', 1621, 3034, 381, 9468, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3054, '2021-06-01', 1856, 3035, 381, 4987, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3055, '2021-06-01', 2315, 3036, 381, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '462.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3056, '2021-06-01', 2259, 3037, 381, 11039, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3057, '2021-06-01', 2391, 3038, 381, 4398, '4.0000', '2.7000', '2.7000', '3.5000', '3.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3058, '2021-06-01', 1812, 3039, 381, 10312, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3059, '2021-06-01', 2242, 3040, 381, 3066, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3060, '2021-06-01', 1868, 3041, 381, 4997, '1.0000', '4.0300', '4.0300', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3061, '2021-06-01', 1381, 3042, 381, 3424, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3062, '2021-06-01', 1837, 3043, 381, 4970, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3063, '2021-06-01', 1767, 3044, 381, 8430, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3064, '2021-06-01', 1602, 3045, 381, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3065, '2021-06-01', 1342, 3046, 381, 11295, '2.0000', '43.9000', '43.9000', '7.5000', '7.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3066, '2021-06-01', 2233, 3047, 381, 10305, '1.0000', '19.0200', '19.0200', '26.5000', '26.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3067, '2021-06-01', 1574, 3048, 381, 9451, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3068, '2021-06-01', 2568, 3049, 381, 7213, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '67.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3069, '2021-06-01', 1947, 3050, 382, 6003, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3070, '2021-06-01', 1704, 3051, 382, 9551, '1.0000', '90.0000', '90.0000', '35.5000', '35.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3071, '2021-06-01', 2254, 3052, 382, 3094, '1.0000', '17.9400', '17.9400', '24.0000', '24.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3072, '2021-06-01', 1440, 3053, 383, 7233, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3073, '2021-06-01', 2320, 3054, 383, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3074, '2021-06-01', 1406, 3055, 383, 11018, '1.0000', '16.8000', '16.8000', '23.0000', '23.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3075, '2021-06-01', 1925, 3056, 384, 5615, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3076, '2021-06-01', 1608, 3057, 384, 9426, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3077, '2021-06-01', 2568, 3058, 384, 7213, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '63.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3078, '2021-06-01', 2014, 3059, 384, 6432, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3079, '2021-06-01', 1371, 3060, 384, 11286, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3080, '2021-06-01', 1602, 3061, 384, 9553, '2.0000', '6.9900', '6.9900', '9.5000', '9.5000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3081, '2021-06-01', 2233, 3062, 384, 10305, '1.0000', '19.0200', '19.0200', '26.5000', '26.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3082, '2021-06-01', 1487, 3063, 384, 10030, '1.0000', '90.0000', '90.0000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3083, '2021-06-01', 1863, 3064, 384, 11171, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '120.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3084, '2021-06-01', 1809, 3065, 384, 10313, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3085, '2021-06-01', 2381, 3066, 384, 11289, '1.0000', '10.8700', '10.8700', '14.5000', '14.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3086, '2021-06-01', 1306, 3067, 384, 5611, '2.0000', '2.1000', '2.1000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3087, '2021-06-01', 1488, 3068, 384, 1491, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3088, '2021-06-01', 2051, 3069, 384, 6405, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3089, '2021-06-01', 2360, 3070, 384, 3872, '1.0000', '0.5200', '0.5200', '0.6900', '0.6900', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3090, '2021-06-01', 1810, 3071, 384, 4949, '2.0000', '8.0500', '8.0500', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3091, '2021-06-01', 2233, 3072, 384, 10305, '1.0000', '19.0200', '19.0200', '26.5000', '26.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3092, '2021-06-01', 1863, 3073, 384, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '121.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3093, '2021-06-01', 1618, 3074, 384, 9417, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3094, '2021-06-01', 1602, 3075, 384, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3095, '2021-06-01', 1863, 3076, 384, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '121.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3096, '2021-06-01', 2169, 3077, 385, 11023, '2.0000', '0.9800', '0.9800', '1.5000', '1.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3097, '2021-06-01', 2327, 3078, 385, 5084, '2.0000', '4.5000', '4.5000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3098, '2021-06-01', 1730, 3079, 385, 9564, '1.0000', '23.9100', '23.9100', '31.5000', '31.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3099, '2021-06-01', 2071, 3080, 385, NULL, '3.0000', '5.0000', '5.0000', '6.5000', '6.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3100, '2021-06-01', 2233, 3081, 385, 4813, '1.0000', '19.0200', '19.0200', '26.5000', '26.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3101, '2021-06-01', 1809, 3082, 385, 10313, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3102, '2021-06-01', 1856, 3083, 385, 4987, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3103, '2021-06-01', 1863, 3084, 385, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '117.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3104, '2021-06-01', 2388, 3085, 385, 4393, '1.0000', '52.8500', '52.8500', '70.0000', '70.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3105, '2021-06-01', 1604, 3086, 385, 8407, '2.0000', '70.6900', '70.6900', '46.5000', '46.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3106, '2021-06-01', 2333, 3087, 385, 3898, '1.0000', '33.0000', '33.0000', '43.5000', '43.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3107, '2021-06-01', 1837, 3088, 385, 4970, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3108, '2021-06-01', 1787, 3089, 385, 4930, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3109, '2021-06-01', 2104, 3090, 385, 6016, '1.0000', '0.2000', '0.2000', '1.0000', '1.0000', '145.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3110, '2021-06-01', 2057, 3091, 385, NULL, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3111, '2021-06-01', 2472, 3092, 386, 5093, '1.0000', '9.5000', '9.5000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3112, '2021-06-01', 2295, 3093, 386, 3134, '3.0000', '0.7000', '0.7000', '1.5000', '1.5000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3113, '2021-06-01', 2247, 3094, 386, 3086, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3114, '2021-06-01', 2642, 3095, 387, 10574, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3115, '2021-06-01', 2448, 3096, 387, 5802, '1.0000', '5.0000', '5.0000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3116, '2021-06-01', 1602, 3097, 387, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3117, '2021-06-01', 2068, 3098, 387, 10532, '1.0000', '11.8000', '11.8000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3118, '2021-06-01', 1574, 3099, 387, 9451, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3119, '2021-06-01', 1523, 3100, 387, 11169, '3.0000', '0.9300', '0.9300', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3120, '2021-06-01', 2131, 3101, 387, 10576, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3121, '2021-06-01', 2317, 3102, 387, 8617, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3122, '2021-06-01', 1428, 3103, 387, NULL, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3123, '2021-06-01', 1605, 3104, 387, 11103, '1.0000', '24.8500', '24.8500', '39.0000', '39.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3124, '2021-06-01', 2259, 3105, 387, 11039, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3125, '2021-06-01', 1639, 3106, 388, 9550, '1.0000', '6.6300', '6.6300', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3126, '2021-06-01', 2280, 3107, 388, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3127, '2021-06-01', 2548, 3108, 388, 7125, '1.0000', '6.7200', '6.7200', '9.0000', '9.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3128, '2021-06-01', 1349, 3109, 388, 10318, '1.0000', '32.5000', '32.5000', '43.0000', '43.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3129, '2021-06-01', 2381, 3110, 388, 11404, '1.0000', '10.8700', '10.8700', '14.5000', '14.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3130, '2021-06-01', 2649, 3111, 389, 11177, '1.0000', '71.0000', '71.0000', '94.0000', '94.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3131, '2021-06-01', 2020, 3112, 389, 10311, '1.0000', '7.5000', '7.5000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3132, '2021-06-01', 1810, 3113, 389, NULL, '1.0000', '8.0500', '8.0500', '11.0000', '11.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3133, '2021-06-01', 1485, 3114, 389, 1483, '1.0000', '90.0000', '90.0000', '30.5000', '30.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3134, '2021-06-01', 1574, 3115, 389, 9451, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3135, '2021-06-01', 1831, 3116, 389, 4966, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3136, '2021-06-01', 1812, 3117, 389, 10312, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3137, '2021-06-01', 1811, 3118, 389, 9543, '1.0000', '14.5300', '14.5300', '19.0000', '19.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3138, '2021-06-01', 1578, 3119, 389, 9447, '1.0000', '1.9700', '1.9700', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3139, '2021-06-01', 1608, 3120, 389, 9426, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3140, '2021-06-01', 2655, 3121, 389, 11194, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3141, '2021-06-02', 2167, 3122, 390, NULL, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3142, '2021-06-02', 2273, 3123, 390, 3113, '1.0000', '2.6700', '2.6700', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3143, '2021-06-02', 1647, 3124, 390, 11390, '1.0000', '4.7200', '4.7200', '6.5000', '6.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3144, '2021-06-02', 2220, 3125, 390, 11396, '1.0000', '5.2800', '5.2800', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3145, '2021-06-02', 1302, 3126, 390, 3071, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3146, '2021-06-02', 2544, 3127, 390, 11020, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3147, '2021-06-02', 2655, 3128, 390, 11194, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3148, '2021-06-02', 1432, 3129, 390, 11017, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3149, '2021-06-02', 2255, 3130, 390, 10549, '1.0000', '17.4900', '17.4900', '24.0000', '24.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3150, '2021-06-02', 1300, 3131, 390, 2471, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3151, '2021-06-02', 1577, 3132, 390, 9448, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3152, '2021-06-02', 2235, 3133, 390, 10315, '1.0000', '17.8000', '17.8000', '24.0000', '24.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3153, '2021-06-02', 1884, 3134, 390, 5010, '1.0000', '4.8500', '4.8500', '6.5000', '6.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3154, '2021-06-02', 1647, 3135, 390, 11390, '1.0000', '4.7200', '4.7200', '6.5000', '6.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3155, '2021-06-02', 1305, 3136, 390, 3072, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3156, '2021-06-02', 1954, 3137, 390, 3408, '3.0000', '25.0000', '25.0000', '1.0000', '1.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3157, '2021-06-02', 2568, 3138, 390, 7213, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '61.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3158, '2021-06-02', 1608, 3139, 390, 9426, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3159, '2021-06-02', 1761, 3140, 390, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3160, '2021-06-02', 1828, 3141, 390, 4963, '2.0000', '0.7300', '0.7300', '1.0000', '1.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3161, '2021-06-02', 1748, 3142, 390, 1527, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3162, '2021-06-02', 2063, 3143, 390, 2174, '1.0000', '1.9900', '1.9900', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3163, '2021-06-02', 1901, 3144, 390, 5505, '2.0000', '2.0100', '2.0100', '3.0000', '3.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3164, '2021-06-02', 1426, 3145, 390, 5877, '1.0000', '36.0000', '36.0000', '47.5000', '47.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3165, '2021-06-02', 2244, 3146, 390, NULL, '1.0000', '7.3600', '7.3600', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3166, '2021-06-02', 2263, 3147, 390, 9567, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3167, '2021-06-02', 1602, 3148, 390, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3168, '2021-06-02', 1646, 3149, 390, 11391, '1.0000', '4.5300', '4.5300', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3169, '2021-06-02', 1839, 3150, 390, 11402, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3170, '2021-06-02', 2220, 3151, 390, 11396, '1.0000', '5.2800', '5.2800', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3171, '2021-06-02', 2512, 3152, 390, 7520, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3172, '2021-06-02', 2346, 3153, 390, 3885, '1.0000', '5.5000', '5.5000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3173, '2021-06-02', 2231, 3154, 391, 7201, '2.0000', '33.0000', '33.0000', '36.0000', '36.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3174, '2021-06-02', 1726, 3155, 391, 6804, '1.0000', '90.0000', '90.0000', '17.0000', '17.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3175, '2021-06-02', 2011, 3156, 391, 6434, '1.0000', '0.5300', '0.5300', '1.0000', '1.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3176, '2021-06-02', 1980, 3157, 391, 7514, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3177, '2021-06-02', 2031, 3158, 391, 6419, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3178, '2021-06-02', 2417, 3159, 391, 11193, '4.0000', '14.5000', '14.5000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3179, '2021-06-02', 2525, 3160, 392, 8615, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3180, '2021-06-02', 2580, 3161, 392, 7525, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3181, '2021-06-02', 2384, 3162, 392, 4370, '2.0000', '0.4000', '0.4000', '0.5000', '0.5000', '64.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3182, '2021-06-02', 2169, 3163, 393, 11023, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3183, '2021-06-02', 2458, 3164, 393, 4829, '1.0000', '9.9000', '9.9000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3184, '2021-06-02', 1353, 3165, 393, 3392, '1.0000', '20.5000', '20.5000', '27.0000', '27.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3185, '2021-06-02', 1529, 3166, 393, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3186, '2021-06-02', 2057, 3167, 393, NULL, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3187, '2021-06-02', 2545, 3168, 393, 11013, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3188, '2021-06-02', 1602, 3169, 393, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3189, '2021-06-02', 1485, 3170, 393, 1483, '1.0000', '90.0000', '90.0000', '30.5000', '30.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3190, '2021-06-02', 2541, 3171, 394, 10547, '1.0000', '9.7500', '9.7500', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3191, '2021-06-02', 2492, 3172, 394, 10394, '1.0000', '21.9900', '21.9900', '30.0000', '30.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3192, '2021-06-02', 1904, 3173, 394, 11463, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3193, '2021-06-02', 2259, 3174, 394, 7122, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3194, '2021-06-02', 2241, 3175, 394, 3067, '1.0000', '6.5900', '6.5900', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3195, '2021-06-02', 1837, 3176, 394, 4970, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3196, '2021-06-02', 2382, 3177, 394, 4388, '1.0000', '15.6600', '15.6600', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3197, '2021-06-02', 1523, 3178, 394, 11169, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3198, '2021-06-02', 2385, 3179, 394, 4390, '1.0000', '7.8800', '7.8800', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3199, '2021-06-02', 1307, 3180, 394, 4984, '1.0000', '1.9000', '1.9000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3200, '2021-06-02', 1307, 3181, 394, 4984, '1.0000', '1.9000', '1.9000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3201, '2021-06-02', 1300, 3182, 394, 2471, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3202, '2021-06-02', 2392, 3183, 394, 10405, '2.0000', '3.2000', '3.2000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3203, '2021-06-02', 1912, 3184, 394, 9575, '-2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3204, '2021-06-02', 1912, 3184, 394, 9575, '-2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3205, '2021-06-02', 1912, 3184, 394, 9575, '-2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3206, '2021-06-02', 1912, 3184, 394, 1503, '4.0000', '0.3100', '0.3100', '0.8000', '0.8000', '77.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3207, '2021-06-02', 1765, 3185, 394, 3178, '1.0000', '5.3900', '5.3900', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3208, '2021-06-02', 1338, 3186, 394, 3377, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3209, '2021-06-02', 1863, 3187, 394, 11171, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '115.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3210, '2021-06-02', 2661, 3188, 395, NULL, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3211, '2021-06-02', 1346, 3189, 395, NULL, '5.0000', '0.9300', '0.9300', '1.2000', '1.2000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3212, '2021-06-02', 1523, 3190, 395, 11169, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3213, '2021-06-02', 2241, 3191, 395, 3067, '1.0000', '6.5900', '6.5900', '9.0000', '9.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3214, '2021-06-02', 1533, 3192, 395, 10385, '1.0000', '3.0500', '3.0500', '4.5000', '4.5000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3215, '2021-06-02', 1780, 3193, 395, NULL, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3216, '2021-06-02', 2460, 3194, 395, 4832, '1.0000', '32.7700', '32.7700', '43.0000', '43.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3217, '2021-06-02', 2020, 3195, 395, 10311, '1.0000', '7.5000', '7.5000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3218, '2021-06-02', 1529, 3196, 395, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3219, '2021-06-02', 1523, 3197, 395, 11169, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3220, '2021-06-02', 2289, 3198, 395, 3129, '3.0000', '0.2300', '0.2300', '0.5000', '0.5000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3221, '2021-06-02', 1349, 3199, 395, NULL, '1.0000', '32.5000', '32.5000', '43.0000', '43.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3222, '2021-06-02', 1533, 3200, 395, 10385, '1.0000', '3.0500', '3.0500', '4.5000', '4.5000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3223, '2021-06-02', 1596, 3201, 395, 9433, '1.0000', '2.5700', '2.5700', '4.0000', '4.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3224, '2021-06-02', 1689, 3202, 395, 4939, '1.0000', '12.3500', '12.3500', '16.5000', '16.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3225, '2021-06-02', 1811, 3203, 395, 9543, '2.0000', '14.5300', '14.5300', '19.0000', '19.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3226, '2021-06-02', 1502, 3204, 395, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3227, '2021-06-02', 1432, 3205, 395, 11140, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3228, '2021-06-02', 1658, 3206, 395, 3250, '1.0000', '90.0000', '90.0000', '36.0000', '36.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3229, '2021-06-02', 2228, 3207, 396, 7203, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3230, '2021-06-02', 1694, 3208, 396, 11036, '1.0000', '7.1900', '7.1900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3231, '2021-06-02', 2251, 3209, 396, 9552, '1.0000', '11.6400', '11.6400', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3232, '2021-06-02', 1333, 3210, 396, 3372, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3233, '2021-06-02', 2235, 3211, 396, 10316, '1.0000', '17.8000', '17.8000', '24.0000', '24.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3234, '2021-06-02', 2597, 3212, 396, 9056, '1.0000', '3.8200', '3.8200', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3235, '2021-06-02', 1596, 3213, 396, 9433, '1.0000', '2.5700', '2.5700', '4.0000', '4.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3236, '2021-06-02', 1376, 3214, 396, 3419, '1.0000', '90.0000', '90.0000', '45.0000', '45.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3237, '2021-06-02', 2546, 3215, 396, 11180, '1.0000', '13.6300', '13.6300', '18.0000', '18.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3238, '2021-06-02', 1367, 3216, 396, 11043, '10.0000', '4.9000', '4.9000', '6.5000', '6.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3239, '2021-06-02', 1935, 3217, 396, 5607, '4.0000', '90.0000', '90.0000', '1.5000', '1.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3240, '2021-06-02', 1311, 3218, 396, 5503, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3241, '2021-06-02', 2059, 3219, 397, NULL, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3242, '2021-06-02', 1599, 3220, 398, 9431, '2.0000', '12.8100', '12.8100', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3243, '2021-06-02', 1599, 3220, 398, NULL, '1.0000', '12.8100', '12.8100', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3244, '2021-06-02', 1863, 3221, 399, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '114.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3245, '2021-06-02', 2281, 3222, 399, 3121, '2.0000', '3.0000', '3.0000', '4.0000', '4.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3246, '2021-06-02', 2159, 3223, 399, NULL, '1.0000', '15.0000', '15.0000', '19.5000', '19.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3247, '2021-06-02', 1846, 3224, 399, 4978, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3248, '2021-06-02', 1300, 3225, 399, 2471, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3249, '2021-06-02', 1618, 3226, 399, 9417, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3250, '2021-06-02', 1612, 3227, 399, 9422, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3251, '2021-06-02', 1529, 3228, 399, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3252, '2021-06-02', 2302, 3229, 399, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3253, '2021-06-02', 1427, 3230, 399, 11015, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3254, '2021-06-02', 1812, 3231, 400, 10312, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3255, '2021-06-03', 2479, 3232, 401, 5192, '2.0000', '10.0000', '10.0000', '13.0000', '13.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3256, '2021-06-03', 1700, 3233, 401, 7116, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3257, '2021-06-03', 2645, 3234, 401, 10599, '1.0000', '21.0000', '21.0000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3258, '2021-06-03', 2642, 3235, 401, 10574, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3259, '2021-06-03', 2379, 3236, 401, 11399, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3260, '2021-06-03', 1527, 3237, 401, 1534, '1.0000', '90.0000', '90.0000', '17.5000', '17.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3261, '2021-06-03', 1761, 3238, 401, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3262, '2021-06-03', 1427, 3239, 401, 11015, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3263, '2021-06-03', 2255, 3240, 401, 10549, '1.0000', '17.4900', '17.4900', '24.0000', '24.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3264, '2021-06-03', 2255, 3240, 401, 3095, '1.0000', '17.4900', '17.4900', '24.0000', '24.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3265, '2021-06-03', 2047, 3241, 401, NULL, '1.0000', '25.0000', '25.0000', '35.0000', '35.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3266, '2021-06-03', 2315, 3242, 401, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '460.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3267, '2021-06-03', 2169, 3243, 401, 11023, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3268, '2021-06-03', 2342, 3244, 402, 11401, '10.0000', '1.8600', '1.8600', '2.5000', '2.5000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3269, '2021-06-03', 2568, 3245, 402, 7213, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '59.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3270, '2021-06-03', 1371, 3246, 402, 11403, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3271, '2021-06-03', 2379, 3247, 403, 11399, '2.0000', '1.5900', '1.5900', '2.0000', '2.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3272, '2021-06-03', 1592, 3248, 403, 8285, '1.0000', '90.0000', '90.0000', '44.0000', '44.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3273, '2021-06-03', 1720, 3249, 403, NULL, '3.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3274, '2021-06-03', 1518, 3250, 403, 1520, '1.0000', '90.0000', '90.0000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3275, '2021-06-03', 1533, 3251, 403, 10385, '1.0000', '3.0500', '3.0500', '4.5000', '4.5000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3276, '2021-06-03', 1888, 3252, 403, 5013, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3277, '2021-06-03', 1602, 3253, 403, 9553, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3278, '2021-06-03', 1371, 3254, 403, 11403, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3279, '2021-06-03', 1736, 3255, 403, 8410, '3.0000', '26.7000', '26.7000', '38.0000', '38.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3280, '2021-06-03', 1736, 3255, 403, NULL, '3.0000', '26.7000', '26.7000', '38.0000', '38.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3281, '2021-06-03', 2576, 3256, 403, 11181, '1.0000', '107.9300', '107.9300', '71.0000', '71.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3282, '2021-06-03', 2250, 3257, 403, 11008, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3283, '2021-06-03', 1904, 3258, 403, 11502, '3.0000', '90.0000', '90.0000', '1.0000', '1.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3284, '2021-06-03', 2411, 3259, 403, 4823, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3285, '2021-06-03', 2360, 3260, 403, 3872, '1.0000', '0.5200', '0.5200', '0.6900', '0.6900', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3286, '2021-06-03', 1567, 3261, 403, 9455, '1.0000', '13.3000', '13.3000', '17.5000', '17.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3287, '2021-06-03', 1641, 3262, 403, 3266, '6.0000', '90.0000', '90.0000', '1.3000', '1.3000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3288, '2021-06-03', 2318, 3263, 403, NULL, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3289, '2021-06-03', 2558, 3264, 403, 7128, '2.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3290, '2021-06-03', 2366, 3265, 403, 8415, '4.0000', '3.7500', '3.7500', '6.0000', '6.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3291, '2021-06-03', 1779, 3266, 404, 4938, '7.0000', '0.3100', '0.3100', '1.0000', '1.0000', '80.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3292, '2021-06-03', 2248, 3267, 404, 3087, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3293, '2021-06-03', 2380, 3268, 404, 9578, '2.0000', '37.9000', '37.9000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3294, '2021-06-03', 1863, 3269, 404, 11171, '5.0000', '1.2200', '1.2200', '2.0000', '2.0000', '109.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3295, '2021-06-03', 2144, 3270, 404, 10322, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3296, '2021-06-03', 1812, 3271, 404, 10312, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3297, '2021-06-03', 1908, 3272, 404, 5510, '1.0000', '1.7500', '1.7500', '1.0000', '1.0000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3298, '2021-06-03', 1331, 3273, 404, 3370, '1.0000', '4.2000', '4.2000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3299, '2021-06-03', 1340, 3274, 404, 10208, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3300, '2021-06-03', 2588, 3275, 404, 8277, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3301, '2021-06-03', 2298, 3276, 404, 3137, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3302, '2021-06-03', 2130, 3277, 405, 4402, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3303, '2021-06-03', 1797, 3278, 405, 4923, '1.0000', '90.0000', '90.0000', '68.0000', '68.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3304, '2021-06-03', 1702, 3279, 405, 4819, '1.0000', '90.0000', '90.0000', '19.5000', '19.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3305, '2021-06-03', 1813, 3280, 405, 4952, '2.0000', '90.0000', '90.0000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3306, '2021-06-03', 2037, 3281, 405, 9941, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3307, '2021-06-03', 2298, 3282, 405, 3137, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3308, '2021-06-03', 2514, 3283, 405, 7518, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3309, '2021-06-03', 1711, 3284, 405, 9478, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3310, '2021-06-03', 2167, 3285, 405, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3311, '2021-06-03', 2598, 3286, 405, 9066, '1.0000', '5.4300', '5.4300', '7.0000', '7.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3312, '2021-06-03', 1440, 3287, 405, 7233, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3313, '2021-06-03', 1542, 3288, 405, 1547, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3314, '2021-06-03', 1523, 3289, 405, 11169, '2.0000', '0.9300', '0.9300', '3.0000', '3.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3315, '2021-06-03', 1602, 3290, 405, 9553, '2.0000', '6.9900', '6.9900', '9.5000', '9.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3316, '2021-06-03', 2568, 3291, 405, 7213, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '55.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3317, '2021-06-03', 1894, 3292, 405, 5499, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3318, '2021-06-03', 2221, 3293, 406, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3319, '2021-06-03', 2568, 3294, 406, 7213, '8.0000', '0.3300', '0.3300', '0.2500', '0.2500', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3320, '2021-06-03', 1328, 3295, 406, 3366, '1.0000', '3.1500', '3.1500', '4.5000', '4.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3321, '2021-06-03', 1912, 3296, 406, NULL, '1.0000', '0.3100', '0.3100', '0.8000', '0.8000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3322, '2021-06-03', 1666, 3297, 406, 7115, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3323, '2021-06-04', 1528, 3298, 407, NULL, '10.0000', '90.0000', '90.0000', '6.0000', '6.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3324, '2021-06-04', 1342, 3299, 407, 238, '1.0000', '5.5300', '5.5300', '7.5000', '7.5000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3325, '2021-06-04', 1574, 3300, 407, 7593, '-2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3326, '2021-06-04', 1574, 3300, 407, NULL, '3.0000', '90.0000', '90.0000', '2.5000', '2.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3327, '2021-06-04', 1935, 3301, 407, 11490, '2.0000', '0.7200', '0.7200', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3328, '2021-06-04', 1501, 3302, 407, NULL, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3329, '2021-06-04', 2660, 3303, 407, NULL, '12.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-12.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3330, '2021-06-04', 1629, 3304, 407, 3204, '-1.0000', '90.0000', '90.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3331, '2021-06-04', 1629, 3304, 407, NULL, '2.0000', '90.0000', '90.0000', '18.0000', '18.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3332, '2021-06-04', 2515, 3305, 407, NULL, '1.0000', '16.0000', '16.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3333, '2021-06-04', 2602, 3306, 407, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3334, '2021-06-04', 2660, 3307, 407, NULL, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3335, '2021-06-04', 2568, 3308, 407, NULL, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3336, '2021-06-04', 1905, 3309, 407, NULL, '2.0000', '0.4000', '0.4000', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3337, '2021-06-04', 2656, 3310, 407, NULL, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3338, '2021-06-04', 1800, 3311, 407, NULL, '1.0000', '20.2400', '20.2400', '27.0000', '27.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3339, '2021-06-04', 1574, 3312, 407, 7593, '-2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3340, '2021-06-04', 1574, 3312, 407, NULL, '3.0000', '90.0000', '90.0000', '2.5000', '2.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3341, '2021-06-04', 2169, 3313, 407, 11629, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3342, '2021-06-04', 2511, 3314, 407, NULL, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3343, '2021-06-04', 1602, 3315, 407, 11621, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3344, '2021-06-04', 2643, 3316, 407, NULL, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3345, '2021-06-04', 1523, 3317, 407, NULL, '4.0000', '0.9300', '0.9300', '3.0000', '3.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3346, '2021-06-04', 1912, 3318, 407, NULL, '1.0000', '0.3200', '0.3200', '0.8000', '0.8000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3347, '2021-06-04', 2642, 3319, 407, NULL, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3348, '2021-06-04', 1871, 3320, 408, 10384, '10.0000', '90.0000', '90.0000', '3.0000', '3.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3349, '2021-06-04', 1649, 3321, 408, 3259, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3350, '2021-06-04', 1602, 3322, 409, 11621, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3351, '2021-06-04', 2135, 3323, 409, NULL, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3352, '2021-06-04', 1331, 3324, 409, NULL, '1.0000', '4.2000', '4.2000', '5.5000', '5.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3353, '2021-06-04', 2228, 3325, 409, NULL, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3354, '2021-06-04', 1968, 3326, 409, NULL, '1.0000', '55.1600', '55.1600', '73.0000', '73.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3355, '2021-06-04', 1409, 3327, 409, NULL, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3356, '2021-06-04', 1300, 3328, 410, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3357, '2021-06-04', 1574, 3329, 410, 7593, '-4.0000', '90.0000', '90.0000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3358, '2021-06-04', 1574, 3329, 410, NULL, '6.0000', '90.0000', '90.0000', '2.5000', '2.5000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3359, '2021-06-04', 2074, 3330, 410, 202, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3360, '2021-06-04', 2007, 3331, 410, NULL, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3361, '2021-06-04', 2610, 3332, 410, NULL, '1.0000', '40.0000', '40.0000', '52.0000', '52.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3362, '2021-06-04', 1837, 3333, 410, NULL, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3363, '2021-06-04', 2086, 3334, 410, NULL, '1.0000', '4.3200', '4.3200', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3364, '2021-06-04', 1799, 3335, 410, NULL, '1.0000', '90.0000', '90.0000', '30.0000', '30.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3365, '2021-06-04', 1595, 3336, 410, NULL, '1.0000', '20.6900', '20.6900', '28.0000', '28.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3366, '2021-06-04', 1947, 3337, 410, 1037, '1.0000', '0.1809', '0.1809', '5.0000', '5.0000', '59.0000', 1, 0, NULL, 57);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3367, '2021-06-04', 1733, 3338, 410, 68, '1.0000', '59.5838', '59.5838', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 13);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3368, '2021-06-04', 1953, 3339, 410, 264, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3369, '2021-06-04', 2270, 3340, 410, NULL, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3370, '2021-06-04', 2649, 3341, 410, NULL, '1.0000', '71.0000', '71.0000', '94.0000', '94.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3371, '2021-06-04', 2285, 3342, 410, 11474, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3372, '2021-06-04', 2281, 3343, 410, 2941, '-4.0000', '3.0000', '3.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3373, '2021-06-04', 2281, 3343, 410, NULL, '9.0000', '3.0000', '3.0000', '4.0000', '4.0000', '-9.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3374, '2021-06-04', 2656, 3344, 411, NULL, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3375, '2021-06-04', 2272, 3345, 411, 11478, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3376, '2021-06-04', 1305, 3346, 411, NULL, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3377, '2021-06-04', 2403, 3347, 411, NULL, '1.0000', '17.8000', '17.8000', '24.0000', '24.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3378, '2021-06-04', 1812, 3348, 411, NULL, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3379, '2021-06-04', 1712, 3349, 411, NULL, '2.0000', '90.0000', '90.0000', '13.0000', '13.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3380, '2021-06-04', 1812, 3350, 411, NULL, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3381, '2021-06-04', 1822, 3351, 411, NULL, '20.0000', '2.4000', '2.4000', '3.0000', '3.0000', '-20.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3382, '2021-06-04', 1424, 3352, 411, NULL, '1.0000', '30.0000', '30.0000', '39.5000', '39.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3383, '2021-06-04', 2655, 3353, 412, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3384, '2021-06-04', 2425, 3354, 412, NULL, '1.0000', '24.0000', '24.0000', '27.0000', '27.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3385, '2021-06-04', 1520, 3355, 412, NULL, '1.0000', '1.4700', '1.4700', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3386, '2021-06-04', 2360, 3356, 412, NULL, '1.0000', '0.5200', '0.5200', '0.6900', '0.6900', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3387, '2021-06-04', 2597, 3357, 412, NULL, '1.0000', '3.8200', '3.8200', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3388, '2021-06-04', 1961, 3358, 412, 4744, '1.0000', '15.3587', '15.3587', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3389, '2021-06-04', 1478, 3359, 412, NULL, '1.0000', '90.0000', '90.0000', '28.0000', '28.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3390, '2021-06-04', 1533, 3360, 412, NULL, '1.0000', '3.1500', '3.1500', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3391, '2021-06-04', 1809, 3361, 412, NULL, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3392, '2021-06-04', 1574, 3362, 412, 7593, '-6.0000', '90.0000', '90.0000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3393, '2021-06-04', 1574, 3362, 412, NULL, '7.0000', '90.0000', '90.0000', '2.5000', '2.5000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3394, '2021-06-04', 2320, 3363, 412, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3395, '2021-06-04', 1904, 3364, 412, 164, '1.0000', '0.3197', '0.3197', '1.0000', '1.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3396, '2021-06-04', 1931, 3365, 412, 5582, '1.0000', '6205.2715', '6205.2715', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3397, '2021-06-04', 2351, 3366, 412, NULL, '1.0000', '17.7000', '17.7000', '23.0000', '23.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3398, '2021-06-04', 1947, 3367, 412, 1037, '1.0000', '0.1809', '0.1809', '5.0000', '5.0000', '58.0000', 1, 0, NULL, 57);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3399, '2021-06-04', 1529, 3368, 412, NULL, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3400, '2021-06-04', 2342, 3369, 413, NULL, '10.0000', '1.8600', '1.8600', '2.5000', '2.5000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3401, '2021-06-04', 1504, 3370, 413, NULL, '10.0000', '1.5000', '1.5000', '2.0000', '2.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3402, '2021-06-04', 2660, 3371, 413, NULL, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3403, '2021-06-04', 2095, 3372, 413, 1039, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '59.0000', 1, 0, NULL, 57);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3404, '2021-06-05', 1632, 3373, 414, 3274, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3405, '2021-06-05', 1744, 3374, 414, 12059, '1.0000', '90.0000', '90.0000', '34.0000', '34.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3406, '2021-06-05', 1602, 3375, 414, 11891, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3407, '2021-06-05', 2477, 3376, 414, 5190, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3408, '2021-06-05', 2527, 3377, 414, 8613, '2.0000', '40.0000', '40.0000', '48.0000', '48.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3409, '2021-06-05', 2318, 3378, 414, NULL, '15.0000', '0.5000', '0.5000', '1.0000', '1.0000', '-15.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3410, '2021-06-05', 1677, 3379, 414, 3397, '1.0000', '7.8000', '7.8000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3411, '2021-06-05', 1596, 3380, 414, 9433, '1.0000', '2.5700', '2.5700', '4.0000', '4.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3412, '2021-06-05', 2455, 3381, 414, 8423, '1.0000', '7.5300', '7.5300', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3413, '2021-06-05', 1639, 3382, 414, 9550, '1.0000', '6.6300', '6.6300', '9.0000', '9.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3414, '2021-06-05', 2136, 3383, 414, NULL, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3415, '2021-06-05', 1608, 3384, 414, 11876, '1.0000', '3.3500', '3.3500', '5.5000', '5.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3416, '2021-06-05', 2335, 3385, 414, 3896, '2.0000', '13.9000', '13.9000', '18.5000', '18.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3417, '2021-06-05', 1505, 3386, 414, 10395, '2.0000', '90.0000', '90.0000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3418, '2021-06-05', 1574, 3387, 414, 9451, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3419, '2021-06-05', 2491, 3388, 414, 7114, '1.0000', '12.2000', '12.2000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3420, '2021-06-05', 1669, 3389, 414, 11168, '2.0000', '90.0000', '90.0000', '8.8000', '8.8000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3421, '2021-06-05', 1843, 3390, 414, 4975, '3.0000', '3.9000', '3.9000', '5.6000', '5.6000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3422, '2021-06-05', 1523, 3391, 414, 11169, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3423, '2021-06-05', 1822, 3392, 415, 11174, '20.0000', '2.4000', '2.4000', '3.0000', '3.0000', '50.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3424, '2021-06-05', 1871, 3393, 416, 10384, '10.0000', '90.0000', '90.0000', '3.0000', '3.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3425, '2021-06-05', 1966, 3394, 416, NULL, '1.0000', '2.7100', '2.7100', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3426, '2021-06-05', 2556, 3395, 416, 7130, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3427, '2021-06-05', 2524, 3396, 416, 8616, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3428, '2021-06-05', 1602, 3397, 416, 11891, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3429, '2021-06-05', 2038, 3398, 416, 9939, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3430, '2021-06-05', 1999, 3399, 416, 6444, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3431, '2021-06-05', 2169, 3400, 416, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3432, '2021-06-05', 2360, 3401, 416, 3872, '1.0000', '0.5200', '0.5200', '0.6900', '0.6900', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3433, '2021-06-05', 2379, 3402, 416, 11399, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3434, '2021-06-05', 1863, 3403, 416, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '108.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3435, '2021-06-05', 1433, 3404, 416, 11142, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3436, '2021-06-05', 1450, 3405, 416, NULL, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3437, '2021-06-05', 1811, 3406, 416, 9543, '1.0000', '14.5300', '14.5300', '19.0000', '19.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3438, '2021-06-05', 1825, 3407, 416, 11397, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3439, '2021-06-05', 2656, 3408, 416, 11195, '7.0000', '1.5000', '1.5000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3440, '2021-06-05', 1831, 3409, 416, 4966, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3441, '2021-06-05', 1310, 3410, 416, 12051, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3442, '2021-06-05', 2169, 3411, 416, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3443, '2021-06-05', 2251, 3412, 416, 11884, '1.0000', '11.6400', '11.6400', '16.0000', '16.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3444, '2021-06-05', 2104, 3413, 416, 6016, '2.0000', '0.2000', '0.2000', '1.0000', '1.0000', '143.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3445, '2021-06-05', 1961, 3414, 416, NULL, '1.0000', '16.3900', '16.3900', '26.0000', '26.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3446, '2021-06-05', 2568, 3415, 416, 7213, '8.0000', '0.3300', '0.3300', '0.2500', '0.2500', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3447, '2021-06-05', 2131, 3416, 416, 10576, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3448, '2021-06-05', 1730, 3417, 417, 11872, '1.0000', '23.9100', '23.9100', '32.0000', '32.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3449, '2021-06-05', 2169, 3418, 417, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3450, '2021-06-05', 1863, 3419, 417, 11171, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '106.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3451, '2021-06-05', 2272, 3420, 417, 12061, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3452, '2021-06-05', 2308, 3421, 417, 3142, '1.0000', '20.0000', '20.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3453, '2021-06-05', 1426, 3422, 417, 11880, '1.0000', '36.0000', '36.0000', '47.5000', '47.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3454, '2021-06-05', 2317, 3423, 417, 8617, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3455, '2021-06-05', 1761, 3424, 417, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3456, '2021-06-05', 1499, 3425, 417, 1502, '3.0000', '0.4100', '0.4100', '0.6000', '0.6000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3457, '2021-06-05', 1581, 3426, 417, 4958, '1.0000', '12.0500', '12.0500', '16.0000', '16.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3458, '2021-06-05', 1763, 3427, 417, 3180, '1.0000', '4.6900', '4.6900', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3459, '2021-06-05', 1521, 3428, 417, 1526, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3460, '2021-06-05', 1638, 3429, 417, 8424, '16.0000', '5.8200', '5.8200', '8.0000', '8.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3461, '2021-06-05', 2234, 3430, 417, 11898, '1.0000', '13.6000', '13.6000', '19.0000', '19.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3462, '2021-06-05', 2220, 3431, 417, 11396, '1.0000', '5.2800', '5.2800', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3463, '2021-06-05', 2104, 3432, 417, 6016, '1.0000', '0.2000', '0.2000', '1.0000', '1.0000', '142.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3464, '2021-06-05', 1665, 3433, 417, 12185, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3465, '2021-06-05', 1884, 3434, 417, 5010, '1.0000', '4.8500', '4.8500', '6.5000', '6.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3466, '2021-06-05', 2556, 3435, 418, 7130, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3467, '2021-06-05', 2655, 3436, 418, 11194, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3468, '2021-06-05', 2582, 3437, 418, 10527, '1.0000', '11.5000', '11.5000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3469, '2021-06-05', 1432, 3438, 418, 11140, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3470, '2021-06-05', 2060, 3439, 418, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3471, '2021-06-05', 1667, 3440, 418, 10533, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3472, '2021-06-05', 1303, 3441, 418, NULL, '4.0000', '1.3800', '1.3800', '4.0000', '4.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3473, '2021-06-05', 1723, 3442, 418, 6808, '1.0000', '6.4800', '6.4800', '8.5000', '8.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3474, '2021-06-05', 2302, 3443, 418, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3475, '2021-06-05', 1904, 3444, 418, 12070, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3476, '2021-06-05', 1519, 3445, 418, 11166, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3477, '2021-06-05', 2556, 3446, 418, 7130, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3478, '2021-06-05', 1620, 3447, 418, 12193, '4.0000', '90.0000', '90.0000', '3.0000', '3.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3479, '2021-06-05', 1311, 3448, 418, 5503, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3480, '2021-06-05', 1432, 3449, 418, 11140, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3481, '2021-06-05', 2237, 3450, 418, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3482, '2021-06-05', 1935, 3451, 418, 12045, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3483, '2021-06-05', 1667, 3452, 418, 10533, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3484, '2021-06-05', 2676, 3453, 418, 12174, '10.0000', '2.4000', '2.4000', '3.0000', '3.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3485, '2021-06-05', 1717, 3454, 418, 6812, '1.0000', '90.0000', '90.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3486, '2021-06-05', 2005, 3455, 418, 6441, '2.0000', '2.3300', '2.3300', '3.5000', '3.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3487, '2021-06-05', 2440, 3456, 418, 5824, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3488, '2021-06-05', 2604, 3457, 418, 8626, '1.0000', '90.0000', '90.0000', '120.0000', '120.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3489, '2021-06-06', 1912, 3458, 419, 9575, '-1.0000', '0.3100', '0.3100', '0.8000', '0.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3490, '2021-06-06', 1912, 3458, 419, 9575, '-1.0000', '0.3100', '0.3100', '0.8000', '0.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3491, '2021-06-06', 1912, 3458, 419, 9575, '-1.0000', '0.3100', '0.3100', '0.8000', '0.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3492, '2021-06-06', 1912, 3458, 419, 1503, '2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '75.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3493, '2021-06-06', 1755, 3459, 419, 3188, '1.0000', '5.5900', '5.5900', '7.5000', '7.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3494, '2021-06-06', 1863, 3460, 419, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '105.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3495, '2021-06-06', 2657, 3461, 419, 11393, '1.0000', '5.4200', '5.4200', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3496, '2021-06-06', 2293, 3462, 419, 3064, '3.0000', '1.4400', '1.4400', '2.0000', '2.0000', '88.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3497, '2021-06-06', 2635, 3463, 419, 10298, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3498, '2021-06-06', 2379, 3464, 419, 11399, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3499, '2021-06-06', 1646, 3465, 419, 11391, '1.0000', '4.5300', '4.5300', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3500, '2021-06-06', 1546, 3466, 419, 12050, '2.0000', '90.0000', '90.0000', '4.0000', '4.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3501, '2021-06-06', 1667, 3467, 419, 4837, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3502, '2021-06-06', 2036, 3468, 419, 4401, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3503, '2021-06-06', 2169, 3469, 419, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3504, '2021-06-06', 1529, 3470, 419, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3505, '2021-06-06', 1602, 3471, 419, 11891, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3506, '2021-06-06', 1863, 3472, 419, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '105.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3507, '2021-06-06', 1452, 3473, 419, 5632, '1.0000', '1.2300', '1.2300', '2.0000', '2.0000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3508, '2021-06-06', 2169, 3474, 419, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3509, '2021-06-06', 2228, 3475, 419, 7203, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3510, '2021-06-06', 1307, 3476, 419, 4984, '1.0000', '1.9000', '1.9000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3511, '2021-06-06', 2287, 3477, 419, 3127, '4.0000', '1.8000', '1.8000', '2.5000', '2.5000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3512, '2021-06-06', 2318, 3478, 419, NULL, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3513, '2021-06-06', 1904, 3479, 419, 12070, '2.0000', '90.0000', '90.0000', '1.0000', '1.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3514, '2021-06-06', 1666, 3480, 419, 11871, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3515, '2021-06-06', 1380, 3481, 419, 3423, '3.0000', '90.0000', '90.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3516, '2021-06-06', 1779, 3482, 419, 4938, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '79.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3517, '2021-06-06', 2135, 3483, 419, 1523, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3518, '2021-06-06', 1602, 3484, 419, 11891, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3519, '2021-06-06', 1806, 3485, 420, 12069, '1.0000', '90.0000', '90.0000', '37.0000', '37.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3520, '2021-06-06', 1621, 3486, 420, 9468, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3521, '2021-06-06', 1863, 3487, 420, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '103.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3522, '2021-06-06', 1619, 3488, 420, 10541, '1.0000', '9.8500', '9.8500', '13.0000', '13.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3523, '2021-06-06', 2280, 3489, 421, 3120, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3524, '2021-06-06', 2016, 3490, 421, 6431, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3525, '2021-06-06', 1935, 3491, 422, 12045, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3526, '2021-06-06', 2633, 3492, 423, 10245, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3527, '2021-06-06', 2393, 3493, 423, 4806, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3528, '2021-06-06', 1665, 3494, 423, 12234, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3529, '2021-06-07', 2011, 3495, 424, 6434, '1.0000', '0.5300', '0.5300', '1.0000', '1.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3530, '2021-06-07', 1666, 3496, 424, 11871, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3531, '2021-06-07', 1665, 3497, 424, 12234, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3532, '2021-06-07', 2568, 3498, 424, 7213, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3533, '2021-06-07', 1432, 3499, 424, 11141, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3534, '2021-06-07', 1602, 3500, 424, 11891, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3535, '2021-06-07', 2327, 3501, 424, 12241, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3536, '2021-06-07', 1872, 3502, 424, 5002, '1.0000', '9.0500', '9.0500', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3537, '2021-06-07', 2360, 3503, 424, 3872, '2.0000', '0.5200', '0.5200', '0.6900', '0.6900', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3538, '2021-06-07', 2599, 3504, 424, 9055, '1.0000', '45.0000', '45.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3539, '2021-06-07', 1608, 3505, 424, 11876, '1.0000', '3.3500', '3.3500', '5.5000', '5.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3540, '2021-06-07', 2655, 3506, 425, 11194, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3541, '2021-06-07', 2135, 3507, 426, 1523, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3542, '2021-06-07', 1559, 3508, 426, 1663, '1.0000', '22.1000', '22.1000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3543, '2021-06-07', 1871, 3509, 426, 10384, '10.0000', '90.0000', '90.0000', '3.0000', '3.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3544, '2021-06-07', 2221, 3510, 426, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3545, '2021-06-07', 2437, 3511, 426, 10595, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3546, '2021-06-07', 2118, 3512, 426, 2631, '1.0000', '8.5000', '8.5000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3547, '2021-06-07', 2005, 3513, 426, 6441, '1.0000', '2.3300', '2.3300', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3548, '2021-06-07', 2005, 3514, 426, 6441, '1.0000', '2.3300', '2.3300', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3549, '2021-06-07', 2007, 3515, 426, 6438, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3550, '2021-06-07', 2024, 3516, 426, NULL, '1.0000', '14.0000', '14.0000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3551, '2021-06-07', 1586, 3517, 426, 9441, '1.0000', '90.0000', '90.0000', '65.0000', '65.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3552, '2021-06-07', 2037, 3518, 426, 9941, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3553, '2021-06-07', 2048, 3519, 426, 6406, '1.0000', '35.0000', '35.0000', '45.0000', '45.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3554, '2021-06-07', 2426, 3520, 426, 5811, '1.0000', '12.5000', '12.5000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3555, '2021-06-07', 1523, 3521, 426, 11169, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3556, '2021-06-07', 2487, 3522, 426, 5198, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3557, '2021-06-07', 2479, 3523, 426, 5192, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3558, '2021-06-07', 2215, 3524, 426, 8160, '1.0000', '12.0000', '12.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3559, '2021-06-07', 1928, 3525, 426, 5630, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3560, '2021-06-07', 1446, 3526, 426, 5627, '1.0000', '4.1000', '4.1000', '5.5000', '5.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3561, '2021-06-07', 1488, 3527, 426, 12042, '2.0000', '90.0000', '90.0000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3562, '2021-06-07', 2228, 3528, 426, 7203, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3563, '2021-06-07', 1812, 3529, 426, 11857, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3564, '2021-06-07', 2268, 3530, 426, 8431, '2.0000', '14.6000', '14.6000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3565, '2021-06-07', 2268, 3530, 426, 3108, '1.0000', '14.6000', '14.6000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3566, '2021-06-07', 1682, 3531, 426, 2447, '1.0000', '10.6700', '10.6700', '14.0000', '14.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3567, '2021-06-07', 1672, 3532, 426, 10302, '10.0000', '90.0000', '90.0000', '3.8000', '3.8000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3568, '2021-06-07', 2270, 3533, 426, 3110, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3569, '2021-06-07', 2105, 3534, 426, 6017, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3570, '2021-06-07', 1863, 3535, 427, 11171, '9.0000', '1.2200', '1.2200', '2.0000', '2.0000', '94.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3571, '2021-06-07', 2341, 3536, 427, 3890, '1.0000', '5.5900', '5.5900', '7.5000', '7.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3572, '2021-06-07', 2302, 3537, 427, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3573, '2021-06-07', 1722, 3538, 427, 6809, '1.0000', '2.5900', '2.5900', '4.0000', '4.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3574, '2021-06-07', 1841, 3539, 427, 4974, '3.0000', '0.3700', '0.3700', '0.5000', '0.5000', '51.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3575, '2021-06-07', 2060, 3540, 427, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3576, '2021-06-07', 1754, 3541, 427, 2172, '1.0000', '90.0000', '90.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3577, '2021-06-07', 2221, 3542, 427, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3578, '2021-06-07', 2086, 3543, 427, 9423, '1.0000', '4.3200', '4.3200', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3579, '2021-06-07', 1602, 3544, 427, 11891, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3580, '2021-06-07', 2660, 3545, 427, 12038, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3581, '2021-06-07', 1642, 3546, 427, 3265, '1.0000', '90.0000', '90.0000', '41.0000', '41.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3582, '2021-06-07', 2220, 3547, 427, 4395, '1.0000', '5.2800', '5.2800', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3583, '2021-06-07', 2546, 3548, 427, 9548, '1.0000', '13.6300', '13.6300', '18.0000', '18.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3584, '2021-06-07', 1641, 3549, 427, 12047, '9.0000', '90.0000', '90.0000', '1.3000', '1.3000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3585, '2021-06-07', 1573, 3550, 427, NULL, '1.0000', '90.0000', '90.0000', '32.5000', '32.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3586, '2021-06-07', 2565, 3551, 427, 7198, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3587, '2021-06-07', 2660, 3552, 427, 12038, '10.0000', '0.7000', '0.7000', '1.0000', '1.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3588, '2021-06-07', 2465, 3553, 427, 11009, '1.0000', '7.8200', '7.8200', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3589, '2021-06-07', 1779, 3554, 427, 4938, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '78.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3590, '2021-06-07', 1310, 3555, 427, 12051, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3591, '2021-06-07', 1812, 3556, 427, 11857, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3592, '2021-06-07', 1811, 3557, 427, 9543, '1.0000', '14.5300', '14.5300', '19.0000', '19.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3593, '2021-06-07', 2167, 3558, 427, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3594, '2021-06-07', 1659, 3559, 427, 3249, '1.0000', '90.0000', '90.0000', '55.0000', '55.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3595, '2021-06-07', 1783, 3560, 427, 11011, '3.0000', '90.0000', '90.0000', '11.0000', '11.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3596, '2021-06-07', 1678, 3561, 428, 2443, '1.0000', '90.0000', '90.0000', '32.0000', '32.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3597, '2021-06-07', 2280, 3562, 428, 3120, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3598, '2021-06-07', 1499, 3563, 428, 1502, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3599, '2021-06-07', 1311, 3564, 428, 5503, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3600, '2021-06-07', 1596, 3565, 428, 9433, '1.0000', '2.5700', '2.5700', '4.0000', '4.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3601, '2021-06-07', 1863, 3566, 428, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '93.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3602, '2021-06-07', 2520, 3567, 428, 7521, '1.0000', '18.6000', '18.6000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3603, '2021-06-07', 2167, 3568, 428, NULL, '3.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3604, '2021-06-07', 1785, 3569, 428, 12040, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3605, '2021-06-07', 1304, 3570, 428, 2475, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3606, '2021-06-07', 1674, 3571, 428, 2439, '1.0000', '90.0000', '90.0000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3607, '2021-06-07', 2318, 3572, 428, NULL, '15.0000', '0.5000', '0.5000', '1.0000', '1.0000', '-15.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3608, '2021-06-07', 1783, 3573, 428, 11011, '3.0000', '90.0000', '90.0000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3609, '2021-06-07', 2382, 3574, 429, 4388, '1.0000', '15.6600', '15.6600', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3610, '2021-06-07', 1904, 3575, 429, 12070, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3611, '2021-06-08', 1310, 3576, 430, 12051, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3612, '2021-06-08', 2142, 3577, 430, NULL, '1.0000', '57.0000', '57.0000', '76.0000', '76.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3613, '2021-06-08', 1621, 3578, 430, 9468, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3614, '2021-06-08', 2005, 3579, 430, 6441, '1.0000', '2.3300', '2.3300', '3.5000', '3.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3615, '2021-06-08', 2441, 3580, 430, 5826, '1.0000', '4.6000', '4.6000', '6.5000', '6.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3616, '2021-06-08', 2259, 3581, 430, 7122, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3617, '2021-06-08', 1311, 3582, 430, 5503, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3618, '2021-06-08', 2391, 3583, 430, 4398, '1.0000', '2.7000', '2.7000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3619, '2021-06-08', 2135, 3584, 430, 1523, '2.0000', '2.5000', '2.5000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3620, '2021-06-08', 2105, 3585, 430, 6017, '2.0000', '1.3500', '1.3500', '3.0000', '3.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3621, '2021-06-08', 2038, 3586, 430, 9939, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3622, '2021-06-08', 2212, 3587, 430, 8167, '1.0000', '10.0000', '10.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3623, '2021-06-08', 2169, 3588, 430, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3624, '2021-06-08', 2247, 3589, 430, 11862, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3625, '2021-06-08', 2072, 3590, 430, 5613, '1.0000', '7.3800', '7.3800', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3626, '2021-06-08', 1346, 3591, 430, NULL, '10.0000', '0.9300', '0.9300', '1.2000', '1.2000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3627, '2021-06-08', 2482, 3592, 430, 5194, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3628, '2021-06-08', 2302, 3593, 430, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3629, '2021-06-08', 1409, 3594, 430, 12291, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3630, '2021-06-08', 2399, 3595, 430, 5373, '1.0000', '8.5000', '8.5000', '11.0000', '11.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3631, '2021-06-08', 2660, 3596, 430, 12038, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3632, '2021-06-08', 2416, 3597, 430, 4827, '3.0000', '1.2000', '1.2000', '1.5000', '1.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3633, '2021-06-08', 1863, 3598, 430, 11171, '4.0000', '1.2200', '1.2200', '2.0000', '2.0000', '89.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3634, '2021-06-08', 1744, 3599, 430, 12059, '1.0000', '90.0000', '90.0000', '34.0000', '34.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3635, '2021-06-08', 2135, 3600, 430, 1523, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3636, '2021-06-08', 1831, 3601, 430, 12318, '1.0000', '90.0000', '90.0000', '11.5000', '11.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3637, '2021-06-08', 1667, 3602, 430, 4837, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3638, '2021-06-08', 1863, 3603, 430, 11171, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '91.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3639, '2021-06-08', 1689, 3604, 430, 4939, '1.0000', '12.3500', '12.3500', '16.5000', '16.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3640, '2021-06-08', 2656, 3605, 430, 11195, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3641, '2021-06-08', 1886, 3606, 431, 12349, '1.0000', '227.7500', '227.7500', '100.0000', '100.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3642, '2021-06-08', 2280, 3607, 431, 3120, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3643, '2021-06-08', 2512, 3608, 431, 7520, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3644, '2021-06-08', 2515, 3609, 431, 7517, '1.0000', '16.0000', '16.0000', '20.0000', '20.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3645, '2021-06-08', 1305, 3610, 431, 3072, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3646, '2021-06-08', 2233, 3611, 431, 11861, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3647, '2021-06-08', 2478, 3612, 431, 5191, '2.0000', '3.0000', '3.0000', '4.0000', '4.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3648, '2021-06-08', 2486, 3613, 431, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3649, '2021-06-08', 2479, 3614, 431, 5192, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3650, '2021-06-08', 2482, 3615, 431, 5194, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3651, '2021-06-08', 2153, 3616, 431, NULL, '1.0000', '8.0000', '8.0000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3652, '2021-06-08', 1646, 3617, 431, 11391, '1.0000', '4.5300', '4.5300', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3653, '2021-06-08', 2482, 3618, 431, 5194, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3654, '2021-06-08', 2481, 3619, 431, 5193, '1.0000', '3.5000', '3.5000', '4.5000', '4.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3655, '2021-06-08', 2154, 3620, 431, NULL, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3656, '2021-06-08', 1585, 3621, 431, 9442, '1.0000', '8.9900', '8.9900', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3657, '2021-06-08', 2527, 3622, 431, 8613, '1.0000', '40.0000', '40.0000', '48.0000', '48.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3658, '2021-06-08', 2655, 3623, 431, 11194, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3659, '2021-06-08', 1863, 3624, 431, 11171, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '85.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3660, '2021-06-08', 2221, 3625, 431, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3661, '2021-06-08', 2169, 3626, 431, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3662, '2021-06-08', 1602, 3627, 431, 11891, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3663, '2021-06-08', 2088, 3628, 431, 9570, '-2.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3664, '2021-06-08', 2088, 3628, 431, 9570, '-2.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3665, '2021-06-08', 2088, 3628, 431, 6006, '3.0000', '1.3800', '1.3800', '5.0000', '5.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3666, '2021-06-08', 2280, 3629, 431, 3120, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3667, '2021-06-08', 2696, 3630, 432, NULL, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3668, '2021-06-09', 1605, 3631, 433, NULL, '1.0000', '24.8500', '24.8500', '39.0000', '39.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3669, '2021-06-09', 1592, 3632, 433, 8285, '1.0000', '90.0000', '90.0000', '44.0000', '44.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3670, '2021-06-09', 1410, 3633, 433, 11138, '1.0000', '2.2000', '2.2000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3671, '2021-06-09', 2504, 3634, 433, 6119, '1.0000', '35.0000', '35.0000', '44.0000', '44.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3672, '2021-06-09', 1728, 3635, 433, 6802, '4.0000', '90.0000', '90.0000', '2.5000', '2.5000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3673, '2021-06-09', 1635, 3636, 433, 8421, '15.0000', '90.0000', '90.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3674, '2021-06-09', 1863, 3637, 433, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '84.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3675, '2021-06-09', 2279, 3638, 433, 3119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3676, '2021-06-09', 1837, 3639, 433, 4970, '4.0000', '0.5500', '0.5500', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3677, '2021-06-09', 1837, 3639, 433, NULL, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3678, '2021-06-09', 1310, 3640, 433, 12051, '8.0000', '0.3700', '0.3700', '0.5000', '0.5000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3679, '2021-06-09', 1502, 3641, 433, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3680, '2021-06-09', 1386, 3642, 433, NULL, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3681, '2021-06-09', 1845, 3643, 433, 7121, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3682, '2021-06-09', 2154, 3644, 434, NULL, '5.0000', '10.5000', '10.5000', '14.0000', '14.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3683, '2021-06-09', 1759, 3645, 434, 6816, '5.0000', '63.8334', '63.8334', '15.0000', '15.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3684, '2021-06-09', 2001, 3646, 434, 6442, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3685, '2021-06-09', 1616, 3647, 435, 9419, '1.0000', '4.0000', '4.0000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3686, '2021-06-09', 1579, 3648, 435, 5597, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3687, '2021-06-09', 1647, 3649, 435, 11390, '1.0000', '4.7200', '4.7200', '6.5000', '6.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3688, '2021-06-09', 2660, 3650, 436, 12038, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3689, '2021-06-09', 1644, 3651, 437, 3263, '1.0000', '90.0000', '90.0000', '44.0000', '44.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3690, '2021-06-09', 1783, 3652, 438, 10551, '3.0000', '90.0000', '90.0000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3691, '2021-06-09', 2403, 3653, 438, 9064, '1.0000', '17.8000', '17.8000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3692, '2021-06-09', 2358, 3654, 438, 3874, '1.0000', '27.2100', '27.2100', '36.0000', '36.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3693, '2021-06-09', 2468, 3655, 438, NULL, '1.0000', '4.8200', '4.8200', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3694, '2021-06-09', 1371, 3656, 438, 11403, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3695, '2021-06-09', 1700, 3657, 438, 7116, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3696, '2021-06-09', 2232, 3658, 438, 12055, '1.0000', '27.0000', '27.0000', '36.0000', '36.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3697, '2021-06-09', 1825, 3659, 438, 11397, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3698, '2021-06-09', 1369, 3660, 438, 8433, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3699, '2021-06-09', 2556, 3661, 438, 7130, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3700, '2021-06-09', 2366, 3662, 438, 8415, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3701, '2021-06-09', 1651, 3663, 438, 11101, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3702, '2021-06-09', 2250, 3664, 438, 11008, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3703, '2021-06-09', 1300, 3665, 438, 2471, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3704, '2021-06-09', 2250, 3666, 438, 11008, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3705, '2021-06-09', 1947, 3667, 438, 6003, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3706, '2021-06-09', 2062, 3668, 438, 2178, '1.0000', '5.8900', '5.8900', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3707, '2021-06-09', 1800, 3669, 438, 11099, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3708, '2021-06-09', 2662, 3670, 438, 12037, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3709, '2021-06-09', 1549, 3671, 438, 1552, '1.0000', '90.0000', '90.0000', '28.0000', '28.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3710, '2021-06-09', 2251, 3672, 438, 11884, '1.0000', '11.6400', '11.6400', '16.0000', '16.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3711, '2021-06-09', 2238, 3673, 438, 11104, '2.0000', '39.0000', '39.0000', '51.0000', '51.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3712, '2021-06-09', 1411, 3674, 438, 11406, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3713, '2021-06-09', 1942, 3675, 438, 5600, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3714, '2021-06-09', 1985, 3676, 439, 6458, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3715, '2021-06-09', 1603, 3677, 439, 10027, '1.0000', '55.1600', '55.1600', '73.0000', '73.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3716, '2021-06-09', 1851, 3678, 439, 9462, '1.0000', '11.5600', '11.5600', '16.0000', '16.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3717, '2021-06-09', 2643, 3679, 439, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3718, '2021-06-09', 1826, 3680, 439, 4961, '2.0000', '0.2100', '0.2100', '0.5000', '0.5000', '98.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3719, '2021-06-09', 1814, 3681, 439, NULL, '1.0000', '13.6000', '13.6000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3720, '2021-06-09', 1432, 3682, 439, 11141, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3721, '2021-06-09', 1831, 3683, 439, 12344, '1.0000', '90.0000', '90.0000', '11.5000', '11.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3722, '2021-06-09', 2665, 3684, 439, 11866, '1.0000', '23.7600', '23.7600', '32.0000', '32.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3723, '2021-06-09', 1876, 3685, 439, 11176, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3724, '2021-06-09', 2211, 3686, 439, NULL, '1.0000', '10.0000', '10.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3725, '2021-06-09', 1519, 3687, 439, 11166, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3726, '2021-06-09', 2487, 3688, 439, 5198, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3727, '2021-06-09', 1384, 3689, 439, 12391, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3728, '2021-06-09', 1529, 3690, 439, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3729, '2021-06-09', 1863, 3691, 439, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '83.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3730, '2021-06-09', 1426, 3692, 439, 11880, '1.0000', '36.0000', '36.0000', '47.5000', '47.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3731, '2021-06-09', 2442, 3693, 439, 5827, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3732, '2021-06-09', 1573, 3694, 439, NULL, '1.0000', '90.0000', '90.0000', '32.5000', '32.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3733, '2021-06-09', 1602, 3695, 439, 11891, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3734, '2021-06-09', 2656, 3696, 439, 11195, '2.0000', '1.5000', '1.5000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3735, '2021-06-09', 1665, 3697, 439, 12234, '3.0000', '1.3000', '1.3000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3736, '2021-06-09', 1302, 3698, 439, 3071, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3737, '2021-06-09', 2568, 3699, 439, 7213, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3738, '2021-06-10', 2493, 3700, 440, 7117, '1.0000', '6.5000', '6.5000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3739, '2021-06-10', 1811, 3701, 440, 9543, '1.0000', '14.5300', '14.5300', '19.0000', '19.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3740, '2021-06-10', 1766, 3702, 440, 3177, '1.0000', '2.6900', '2.6900', '4.0000', '4.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3741, '2021-06-10', 2315, 3703, 440, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '458.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3742, '2021-06-10', 2327, 3704, 440, 12241, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3743, '2021-06-10', 2228, 3705, 440, 7203, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3744, '2021-06-10', 2237, 3706, 440, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3745, '2021-06-10', 2169, 3707, 440, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3746, '2021-06-10', 1912, 3708, 440, NULL, '2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3747, '2021-06-10', 1602, 3709, 440, 11891, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3748, '2021-06-10', 2556, 3710, 440, 7130, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3749, '2021-06-10', 1695, 3711, 440, 2458, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3750, '2021-06-10', 2068, 3712, 440, 10532, '1.0000', '11.8000', '11.8000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3751, '2021-06-10', 1854, 3713, 440, 4985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3752, '2021-06-10', 1839, 3714, 440, 11402, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3753, '2021-06-10', 1646, 3715, 440, 11391, '1.0000', '4.5300', '4.5300', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3754, '2021-06-10', 1602, 3716, 440, 11891, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3755, '2021-06-10', 1959, 3717, 440, 6807, '1.0000', '81.4000', '81.4000', '107.0000', '107.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3756, '2021-06-10', 1636, 3718, 440, 10308, '6.0000', '90.0000', '90.0000', '13.0000', '13.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3757, '2021-06-10', 1912, 3719, 440, NULL, '2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3758, '2021-06-10', 2293, 3720, 440, 3064, '3.0000', '1.4400', '1.4400', '2.0000', '2.0000', '85.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3759, '2021-06-10', 2289, 3721, 440, 3129, '3.0000', '0.2300', '0.2300', '0.5000', '0.5000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3760, '2021-06-10', 1841, 3722, 440, 4974, '3.0000', '0.3700', '0.3700', '0.5000', '0.5000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3761, '2021-06-10', 1682, 3723, 440, 2447, '1.0000', '10.6700', '10.6700', '14.0000', '14.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3762, '2021-06-10', 1874, 3724, 440, NULL, '1.0000', '6.1000', '6.1000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3763, '2021-06-10', 1545, 3725, 440, 10550, '1.0000', '90.0000', '90.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3764, '2021-06-10', 1812, 3726, 440, 11857, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3765, '2021-06-10', 2655, 3727, 441, 11194, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3766, '2021-06-10', 2656, 3728, 441, 11195, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3767, '2021-06-10', 2169, 3729, 442, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3768, '2021-06-10', 2315, 3730, 442, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '457.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3769, '2021-06-10', 1409, 3731, 442, 12291, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3770, '2021-06-10', 1871, 3732, 442, 10384, '10.0000', '90.0000', '90.0000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3771, '2021-06-10', 1523, 3733, 442, 11170, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3772, '2021-06-10', 2149, 3734, 442, NULL, '1.0000', '14.0000', '14.0000', '18.5000', '18.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3773, '2021-06-10', 1430, 3735, 442, 10237, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3774, '2021-06-10', 2511, 3736, 442, 11863, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3775, '2021-06-10', 2280, 3737, 442, 3120, '4.0000', '1.9000', '1.9000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3776, '2021-06-10', 2169, 3738, 442, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3777, '2021-06-10', 2009, 3739, 442, 6436, '1.0000', '18.0000', '18.0000', '20.0000', '20.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3778, '2021-06-10', 2366, 3740, 442, 8415, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3779, '2021-06-10', 2272, 3741, 442, 12346, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3780, '2021-06-10', 2136, 3742, 442, NULL, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3781, '2021-06-10', 1851, 3743, 442, 9462, '1.0000', '11.5600', '11.5600', '16.0000', '16.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3782, '2021-06-10', 1605, 3744, 442, NULL, '1.0000', '24.8500', '24.8500', '39.0000', '39.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3783, '2021-06-10', 1809, 3745, 442, 11860, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3784, '2021-06-10', 1300, 3746, 442, 2471, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3785, '2021-06-10', 1733, 3747, 442, 12620, '1.0000', '8.8900', '8.8900', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3786, '2021-06-10', 1523, 3748, 442, 11170, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3787, '2021-06-10', 1665, 3749, 442, 12234, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3788, '2021-06-10', 2411, 3750, 442, 4823, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3789, '2021-06-10', 2359, 3751, 442, 3873, '1.0000', '16.2200', '16.2200', '21.5000', '21.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3790, '2021-06-10', 2352, 3752, 442, 10317, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3791, '2021-06-10', 1609, 3753, 442, 9425, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3792, '2021-06-10', 2109, 3754, 442, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '140.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3793, '2021-06-10', 1863, 3755, 442, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '82.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3794, '2021-06-10', 2360, 3756, 442, 3872, '3.0000', '0.5200', '0.5200', '0.6900', '0.6900', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3795, '2021-06-10', 2644, 3757, 442, 10596, '1.0000', '50.0000', '50.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3796, '2021-06-10', 1756, 3758, 442, 3187, '2.0000', '4.9900', '4.9900', '6.5000', '6.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3797, '2021-06-10', 2679, 3759, 442, 12228, '1.0000', '32.3500', '32.3500', '43.0000', '43.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3798, '2021-06-10', 2556, 3760, 442, 7130, '2.0000', '0.5800', '0.5800', '1.0000', '1.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3799, '2021-06-10', 2568, 3761, 442, 7213, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3800, '2021-06-10', 2465, 3762, 442, 11009, '1.0000', '7.8200', '7.8200', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3801, '2021-06-10', 1810, 3763, 442, 12233, '1.0000', '8.0500', '8.0500', '11.0000', '11.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3802, '2021-06-10', 2665, 3764, 442, 11866, '1.0000', '23.7600', '23.7600', '32.0000', '32.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3803, '2021-06-10', 1935, 3765, 442, 12045, '2.0000', '90.0000', '90.0000', '1.5000', '1.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3804, '2021-06-10', 2702, 3766, 442, 12595, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3805, '2021-06-10', 1876, 3767, 442, 12597, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3806, '2021-06-10', 1767, 3768, 442, 8430, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3807, '2021-06-10', 1863, 3769, 442, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '82.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3808, '2021-06-10', 2487, 3770, 442, 5198, '2.0000', '30.0000', '30.0000', '30.0000', '30.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3809, '2021-06-10', 2601, 3771, 442, 8612, '2.0000', '16.0000', '16.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3810, '2021-06-10', 2699, 3772, 442, 12621, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3811, '2021-06-10', 2221, 3773, 442, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3812, '2021-06-10', 2557, 3774, 442, 12606, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3813, '2021-06-10', 2279, 3775, 442, 3119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3814, '2021-06-10', 1665, 3776, 442, 12234, '6.0000', '1.3000', '1.3000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3815, '2021-06-10', 2699, 3777, 442, 12621, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3816, '2021-06-11', 1651, 3778, 443, NULL, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3817, '2021-06-11', 1409, 3779, 443, NULL, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3818, '2021-06-11', 1863, 3780, 443, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3819, '2021-06-11', 2251, 3781, 443, NULL, '1.0000', '11.6400', '11.6400', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3820, '2021-06-11', 1533, 3782, 443, 10381, '-1.0000', '3.1500', '3.1500', '4.5000', '4.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3821, '2021-06-11', 1533, 3782, 443, NULL, '2.0000', '3.1500', '3.1500', '4.5000', '4.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3822, '2021-06-11', 2511, 3783, 443, NULL, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3823, '2021-06-11', 1641, 3784, 443, NULL, '1.0000', '0.9800', '0.9800', '1.3000', '1.3000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3824, '2021-06-11', 2681, 3785, 443, NULL, '1.0000', '12.4000', '12.4000', '16.5000', '16.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3825, '2021-06-11', 2405, 3786, 443, NULL, '3.0000', '1.2000', '1.2000', '1.6000', '1.6000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3826, '2021-06-11', 1703, 3787, 443, NULL, '1.0000', '7.5900', '7.5900', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3827, '2021-06-11', 2384, 3788, 443, 12014, '4.0000', '0.4000', '0.4000', '0.5000', '0.5000', '91.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3828, '2021-06-11', 2135, 3789, 443, NULL, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3829, '2021-06-11', 1575, 3790, 443, NULL, '2.0000', '66.8966', '66.8966', '14.0000', '14.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3830, '2021-06-11', 2315, 3791, 443, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3831, '2021-06-11', 2315, 3792, 443, NULL, '4.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3832, '2021-06-11', 1851, 3793, 443, 651, '1.0000', '11.5600', '11.5600', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 54);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3833, '2021-06-11', 2318, 3794, 444, NULL, '15.0000', '0.5000', '0.5000', '1.0000', '1.0000', '-15.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3834, '2021-06-11', 2144, 3795, 445, 1359, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3835, '2021-06-11', 1602, 3796, 445, 5897, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3836, '2021-06-11', 1377, 3797, 445, 277, '1.0000', '62.7350', '62.7350', '47.0000', '47.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3837, '2021-06-11', 1702, 3798, 445, 4499, '-1.0000', '14.9700', '14.9700', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3838, '2021-06-11', 1702, 3798, 445, NULL, '2.0000', '14.9700', '14.9700', '20.0000', '20.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3839, '2021-06-11', 2543, 3799, 445, 6304, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3840, '2021-06-11', 2701, 3800, 445, NULL, '1.0000', '31.9800', '31.9800', '42.0000', '42.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3841, '2021-06-11', 1416, 3801, 445, NULL, '1.0000', '90.0000', '90.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3842, '2021-06-11', 2484, 3802, 445, NULL, '2.0000', '17.0000', '17.0000', '20.0000', '20.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3843, '2021-06-11', 1464, 3803, 445, NULL, '1.0000', '10.8900', '10.8900', '17.5000', '17.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3844, '2021-06-11', 2683, 3804, 445, NULL, '1.0000', '49.0000', '49.0000', '64.0000', '64.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3845, '2021-06-11', 2702, 3805, 445, NULL, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3846, '2021-06-11', 2602, 3806, 445, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3847, '2021-06-11', 1519, 3807, 445, NULL, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3848, '2021-06-11', 2235, 3808, 445, NULL, '1.0000', '17.8000', '17.8000', '24.0000', '24.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3849, '2021-06-11', 2492, 3809, 445, NULL, '1.0000', '21.9900', '21.9900', '30.0000', '30.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3850, '2021-06-11', 1346, 3810, 445, 3319, '5.0000', '0.9300', '0.9300', '1.2000', '1.2000', '48.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3851, '2021-06-11', 1756, 3811, 445, NULL, '2.0000', '90.0000', '90.0000', '6.5000', '6.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3852, '2021-06-11', 2693, 3812, 445, NULL, '1.0000', '25.0100', '25.0100', '33.0000', '33.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3853, '2021-06-11', 2221, 3813, 445, 4334, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3854, '2021-06-11', 1631, 3814, 445, NULL, '1.0000', '90.0000', '90.0000', '48.0000', '48.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3855, '2021-06-11', 1687, 3815, 445, NULL, '1.0000', '90.0000', '90.0000', '15.5000', '15.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3856, '2021-06-11', 2541, 3816, 445, NULL, '1.0000', '9.7500', '9.7500', '14.5000', '14.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3857, '2021-06-11', 2263, 3817, 445, NULL, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3858, '2021-06-11', 2612, 3818, 445, NULL, '1.0000', '7.1600', '7.1600', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3859, '2021-06-11', 1805, 3819, 445, 612, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 51);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3860, '2021-06-11', 1533, 3820, 445, 10381, '-2.0000', '3.1500', '3.1500', '4.5000', '4.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3861, '2021-06-11', 1533, 3820, 445, NULL, '3.0000', '3.1500', '3.1500', '4.5000', '4.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3862, '2021-06-11', 2662, 3821, 445, NULL, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3863, '2021-06-11', 1384, 3822, 445, 284, '1.0000', '39.0000', '39.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3864, '2021-06-11', 1499, 3823, 445, NULL, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3865, '2021-06-11', 1665, 3824, 445, NULL, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3866, '2021-06-11', 2252, 3825, 445, NULL, '1.0000', '9.3000', '9.3000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3867, '2021-06-11', 1935, 3826, 445, NULL, '2.0000', '0.7200', '0.7200', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3868, '2021-06-11', 2511, 3827, 445, 9740, '-1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3869, '2021-06-11', 2511, 3827, 445, NULL, '2.0000', '8.6000', '8.6000', '12.0000', '12.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3870, '2021-06-11', 2167, 3828, 446, 1603, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '38.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3871, '2021-06-11', 1523, 3829, 446, NULL, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3872, '2021-06-11', 1454, 3830, 446, NULL, '1.0000', '90.0000', '90.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3873, '2021-06-11', 1599, 3831, 446, NULL, '1.0000', '1.2800', '1.2800', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3874, '2021-06-11', 1839, 3832, 446, NULL, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3875, '2021-06-11', 2444, 3833, 446, NULL, '1.0000', '6.0000', '6.0000', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3876, '2021-06-11', 1342, 3834, 446, 238, '1.0000', '5.5300', '5.5300', '7.5000', '7.5000', '17.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (3877, '2021-06-11', 1666, 3835, 446, NULL, '1.0000', '2.7100', '2.7100', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3878, '2021-06-11', 2280, 3836, 446, NULL, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3879, '2021-06-11', 1782, 3837, 446, NULL, '1.0000', '2.9900', '2.9900', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3880, '2021-06-11', 1523, 3838, 446, NULL, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3881, '2021-06-12', 1480, 3839, 447, 10393, '1.0000', '90.0000', '90.0000', '38.0000', '38.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3882, '2021-06-12', 1478, 3840, 447, 1490, '1.0000', '90.0000', '90.0000', '28.0000', '28.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3883, '2021-06-12', 2568, 3841, 447, 7213, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3884, '2021-06-12', 1631, 3842, 447, 3275, '1.0000', '90.0000', '90.0000', '48.0000', '48.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3885, '2021-06-12', 1814, 3843, 447, NULL, '1.0000', '13.6000', '13.6000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3886, '2021-06-12', 1493, 3844, 447, 10528, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3887, '2021-06-12', 1695, 3845, 447, 2458, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3888, '2021-06-12', 1349, 3846, 447, 12615, '1.0000', '32.5000', '32.5000', '39.0000', '39.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3889, '2021-06-12', 2697, 3847, 447, NULL, '1.0000', '3.0000', '3.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3890, '2021-06-12', 1590, 3848, 447, 9437, '3.0000', '1.7100', '1.7100', '2.2000', '2.2000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3891, '2021-06-12', 2506, 3849, 447, 5867, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3892, '2021-06-12', 1398, 3850, 447, 9050, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3893, '2021-06-12', 2693, 3851, 447, 12287, '1.0000', '25.0100', '25.0100', '33.0000', '33.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3894, '2021-06-12', 2071, 3852, 447, NULL, '3.0000', '5.0000', '5.0000', '6.5000', '6.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3895, '2021-06-12', 1511, 3853, 447, 1514, '1.0000', '90.0000', '90.0000', '34.0000', '34.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3896, '2021-06-12', 1401, 3854, 447, 4360, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3897, '2021-06-12', 1602, 3855, 448, 11891, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3898, '2021-06-12', 2655, 3856, 448, 12623, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3899, '2021-06-12', 1863, 3857, 448, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '80.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3900, '2021-06-12', 1480, 3858, 449, 10393, '1.0000', '90.0000', '90.0000', '38.0000', '38.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3901, '2021-06-12', 2144, 3859, 449, 10322, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3902, '2021-06-12', 2169, 3860, 449, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3903, '2021-06-12', 1999, 3861, 449, 6444, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3904, '2021-06-12', 1665, 3862, 449, 12234, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3905, '2021-06-12', 2238, 3863, 449, 11104, '2.0000', '39.0000', '39.0000', '51.0000', '51.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3906, '2021-06-12', 2238, 3863, 449, 10303, '2.0000', '39.0000', '39.0000', '51.0000', '51.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3907, '2021-06-12', 2524, 3864, 449, 8616, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3908, '2021-06-12', 1935, 3865, 449, 12045, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3909, '2021-06-12', 2327, 3866, 449, 12241, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3910, '2021-06-12', 1947, 3867, 449, 6003, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3911, '2021-06-12', 2221, 3868, 449, 10594, '2.0000', '15.0000', '15.0000', '25.0000', '25.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3912, '2021-06-12', 1525, 3869, 449, 1532, '2.0000', '90.0000', '90.0000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3913, '2021-06-12', 2565, 3870, 449, 7198, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3914, '2021-06-12', 1602, 3871, 449, 11891, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3915, '2021-06-12', 2568, 3872, 449, 7213, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3916, '2021-06-12', 2557, 3873, 449, 12606, '2.0000', '1.0000', '1.0000', '1.5000', '1.5000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3917, '2021-06-12', 2706, 3874, 449, 12614, '1.0000', '6.5900', '6.5900', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3918, '2021-06-12', 1599, 3875, 449, 12071, '1.0000', '12.8100', '12.8100', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3919, '2021-06-12', 1574, 3876, 449, 9451, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3920, '2021-06-12', 2514, 3877, 449, 7518, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3921, '2021-06-12', 2560, 3878, 450, 7205, '1.0000', '17.0000', '17.0000', '21.0000', '21.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3922, '2021-06-12', 1935, 3879, 450, 12046, '2.0000', '90.0000', '90.0000', '1.5000', '1.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3923, '2021-06-12', 2317, 3880, 450, 8617, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3924, '2021-06-12', 2020, 3881, 450, 11873, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3925, '2021-06-12', 2679, 3882, 450, 12228, '1.0000', '32.3500', '32.3500', '43.0000', '43.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3926, '2021-06-12', 1543, 3883, 450, 11178, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3927, '2021-06-12', 1371, 3884, 450, 11403, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3928, '2021-06-12', 1381, 3885, 450, 3424, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3929, '2021-06-12', 2237, 3886, 450, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3930, '2021-06-12', 2511, 3887, 450, 11863, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3931, '2021-06-12', 1828, 3888, 450, 4963, '2.0000', '0.7300', '0.7300', '1.0000', '1.0000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3932, '2021-06-12', 1841, 3889, 450, 4974, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3933, '2021-06-12', 1840, 3890, 450, 4973, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3934, '2021-06-12', 2289, 3891, 450, 3129, '1.0000', '0.2300', '0.2300', '0.5000', '0.5000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3935, '2021-06-12', 2385, 3892, 450, 4390, '1.0000', '7.8800', '7.8800', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3936, '2021-06-12', 2169, 3893, 450, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3937, '2021-06-12', 1935, 3894, 450, 12046, '2.0000', '90.0000', '90.0000', '1.5000', '1.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3938, '2021-06-12', 1816, 3895, 450, 4953, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3939, '2021-06-12', 2544, 3896, 450, 12617, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3940, '2021-06-12', 2281, 3897, 450, 3121, '2.0000', '3.0000', '3.0000', '4.0000', '4.0000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3941, '2021-06-12', 1602, 3898, 450, 11891, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3942, '2021-06-12', 2167, 3899, 450, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3943, '2021-06-12', 2060, 3900, 450, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3944, '2021-06-12', 1651, 3901, 450, 11101, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3945, '2021-06-12', 1651, 3902, 451, 11101, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3946, '2021-06-12', 2463, 3903, 451, 4840, '5.0000', '2.8700', '2.8700', '4.0000', '4.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3947, '2021-06-12', 1426, 3904, 451, 11880, '2.0000', '36.0000', '36.0000', '47.5000', '47.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3948, '2021-06-12', 2465, 3905, 451, 11009, '1.0000', '7.8200', '7.8200', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3949, '2021-06-12', 2512, 3906, 451, 7520, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3950, '2021-06-12', 2169, 3907, 451, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3951, '2021-06-12', 1863, 3908, 451, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '79.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3952, '2021-06-12', 1507, 3909, 451, 1510, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3953, '2021-06-12', 1812, 3910, 451, 11857, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3954, '2021-06-12', 2327, 3911, 451, 12241, '10.0000', '4.5000', '4.5000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3955, '2021-06-12', 2565, 3912, 451, 7198, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3956, '2021-06-12', 2556, 3913, 451, 7130, '2.0000', '0.5800', '0.5800', '1.0000', '1.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3957, '2021-06-12', 2320, 3914, 451, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3958, '2021-06-12', 1662, 3915, 452, 3246, '1.0000', '90.0000', '90.0000', '66.0000', '66.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3959, '2021-06-12', 2660, 3916, 452, 12038, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3960, '2021-06-12', 1651, 3917, 452, 11101, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3961, '2021-06-12', 2660, 3918, 452, 12038, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3962, '2021-06-12', 1310, 3919, 452, 12051, '5.0000', '0.3700', '0.3700', '0.5000', '0.5000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3963, '2021-06-12', 2656, 3920, 453, 12625, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3964, '2021-06-12', 1650, 3921, 454, 3258, '1.0000', '14.5800', '14.5800', '19.0000', '19.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3965, '2021-06-12', 1667, 3922, 454, 4837, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3966, '2021-06-12', 1505, 3923, 454, 12387, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3967, '2021-06-13', 1665, 3924, 455, 12234, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3968, '2021-06-13', 1577, 3925, 455, 9448, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3969, '2021-06-13', 1771, 3926, 455, 3410, '1.0000', '3.3900', '3.3900', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3970, '2021-06-13', 1621, 3927, 455, 9468, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3971, '2021-06-13', 2167, 3928, 455, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3972, '2021-06-13', 1751, 3929, 455, 2175, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3973, '2021-06-13', 1310, 3930, 455, 12051, '5.0000', '0.3700', '0.3700', '0.5000', '0.5000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3974, '2021-06-13', 1306, 3931, 455, 5611, '2.0000', '2.1000', '2.1000', '3.0000', '3.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3975, '2021-06-13', 2279, 3932, 455, 3119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3976, '2021-06-13', 2478, 3933, 455, 5191, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3977, '2021-06-13', 1905, 3934, 455, 5509, '1.0000', '0.4000', '0.4000', '1.0000', '1.0000', '93.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3978, '2021-06-13', 2220, 3935, 455, 4395, '1.0000', '5.2800', '5.2800', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3979, '2021-06-13', 2314, 3936, 455, 3070, '1.0000', '3.9000', '3.9000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3980, '2021-06-13', 2095, 3937, 455, 6007, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3981, '2021-06-13', 2169, 3938, 455, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3982, '2021-06-13', 2235, 3939, 455, 12599, '1.0000', '17.8000', '17.8000', '24.0000', '24.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3983, '2021-06-13', 1863, 3940, 455, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '78.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3984, '2021-06-13', 1912, 3941, 455, 9575, '-4.0000', '0.3100', '0.3100', '0.8000', '0.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3985, '2021-06-13', 1912, 3941, 455, 9575, '-4.0000', '0.3100', '0.3100', '0.8000', '0.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3986, '2021-06-13', 1912, 3941, 455, 9575, '-4.0000', '0.3100', '0.3100', '0.8000', '0.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3987, '2021-06-13', 1912, 3941, 455, 1503, '6.0000', '0.3100', '0.3100', '0.8000', '0.8000', '69.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3988, '2021-06-13', 2283, 3942, 455, 3123, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3989, '2021-06-13', 2221, 3943, 455, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3990, '2021-06-13', 1301, 3944, 455, 2472, '1.0000', '1.6800', '1.6800', '2.0000', '2.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3991, '2021-06-13', 1672, 3945, 455, 10302, '10.0000', '90.0000', '90.0000', '3.8000', '3.8000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3992, '2021-06-13', 1812, 3946, 455, 11857, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3993, '2021-06-13', 2482, 3947, 455, 5194, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3994, '2021-06-13', 1533, 3948, 455, 10385, '1.0000', '3.0500', '3.0500', '4.5000', '4.5000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3995, '2021-06-13', 1411, 3949, 455, 11406, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3996, '2021-06-13', 1761, 3950, 455, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3997, '2021-06-13', 2487, 3951, 455, 5198, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3998, '2021-06-13', 2272, 3952, 455, 12673, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (3999, '2021-06-13', 2071, 3953, 455, NULL, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4000, '2021-06-13', 1356, 3954, 455, 3395, '1.0000', '51.9800', '51.9800', '68.5000', '68.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4001, '2021-06-13', 2091, 3955, 455, 9530, '1.0000', '28.0000', '28.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4002, '2021-06-13', 1636, 3956, 455, 10308, '2.0000', '90.0000', '90.0000', '13.0000', '13.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4003, '2021-06-13', 2511, 3957, 455, 11863, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4004, '2021-06-13', 1828, 3958, 455, 4963, '6.0000', '0.7300', '0.7300', '1.0000', '1.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4005, '2021-06-13', 2254, 3959, 455, 11888, '1.0000', '17.9400', '17.9400', '24.0000', '24.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4006, '2021-06-13', 1519, 3960, 455, 11166, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4007, '2021-06-13', 2237, 3961, 455, 3083, '1.0000', '1.0600', '1.0600', '1.5000', '1.5000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4008, '2021-06-13', 1863, 3962, 455, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '78.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4009, '2021-06-13', 1687, 3963, 455, 5899, '1.0000', '12.0000', '12.0000', '15.5000', '15.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4010, '2021-06-13', 1612, 3964, 455, 9422, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4011, '2021-06-13', 1428, 3965, 455, NULL, '2.0000', '13.0000', '13.0000', '17.0000', '17.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4012, '2021-06-13', 2302, 3966, 455, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4013, '2021-06-13', 1310, 3967, 455, 12051, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4014, '2021-06-13', 2568, 3968, 455, 7213, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4015, '2021-06-13', 2221, 3969, 455, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4016, '2021-06-13', 1602, 3970, 455, 11891, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4017, '2021-06-13', 2648, 3971, 456, 10607, '2.0000', '5.4000', '5.4000', '6.5000', '6.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4018, '2021-06-13', 2655, 3972, 456, 12623, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4019, '2021-06-13', 2537, 3973, 457, 6121, '1.0000', '80.0000', '80.0000', '105.0000', '105.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4020, '2021-06-14', 2169, 3974, 458, 11899, '2.0000', '0.9800', '0.9800', '1.5000', '1.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4021, '2021-06-14', 2167, 3975, 458, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4022, '2021-06-14', 1602, 3976, 458, 11891, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4023, '2021-06-14', 2232, 3977, 458, 12056, '1.0000', '27.0000', '27.0000', '36.0000', '36.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4024, '2021-06-14', 1727, 3978, 458, 6803, '1.0000', '1.8000', '1.8000', '3.7000', '3.7000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4025, '2021-06-14', 1727, 3979, 458, 6803, '2.0000', '1.8000', '1.8000', '3.7000', '3.7000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4026, '2021-06-14', 1905, 3980, 458, 5509, '1.0000', '0.4000', '0.4000', '1.0000', '1.0000', '92.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4027, '2021-06-14', 1839, 3981, 458, 11402, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4028, '2021-06-14', 1839, 3982, 458, 11402, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4029, '2021-06-14', 2410, 3983, 458, 4820, '1.0000', '4.3200', '4.3200', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4030, '2021-06-14', 2096, 3984, 458, 6008, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4031, '2021-06-14', 2315, 3985, 458, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '455.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4032, '2021-06-14', 1519, 3986, 458, 11166, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4033, '2021-06-14', 2603, 3987, 458, 8622, '1.0000', '1.0000', '1.0000', '1.3000', '1.3000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4034, '2021-06-14', 1857, 3988, 458, 4988, '1.0000', '90.0000', '90.0000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4035, '2021-06-14', 1857, 3989, 458, 4988, '1.0000', '90.0000', '90.0000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4036, '2021-06-14', 2072, 3990, 458, 5613, '1.0000', '7.3800', '7.3800', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4037, '2021-06-14', 2366, 3991, 458, 8415, '4.0000', '3.7500', '3.7500', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4038, '2021-06-14', 2359, 3992, 458, 3873, '1.0000', '16.2200', '16.2200', '21.5000', '21.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4039, '2021-06-14', 1310, 3993, 458, 12051, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4040, '2021-06-14', 1425, 3994, 459, 10406, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4041, '2021-06-14', 1579, 3995, 460, 5597, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4042, '2021-06-14', 1579, 3995, 460, NULL, '3.0000', '9.3600', '9.3600', '12.5000', '12.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4043, '2021-06-14', 1331, 3996, 461, 3370, '1.0000', '4.2000', '4.2000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4044, '2021-06-14', 1333, 3997, 461, 3372, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4045, '2021-06-14', 1602, 3998, 461, 11891, '1.0000', '6.9900', '6.9900', '9.5000', '9.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4046, '2021-06-14', 2416, 3999, 461, 4827, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4047, '2021-06-14', 2353, 4000, 461, 11892, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4048, '2021-06-14', 1574, 4001, 461, 9451, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4049, '2021-06-14', 2557, 4002, 461, 12740, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4050, '2021-06-14', 1816, 4003, 461, 4953, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4051, '2021-06-14', 2656, 4004, 461, 12721, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4052, '2021-06-14', 2353, 4005, 461, 11892, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4053, '2021-06-14', 1311, 4006, 461, 5503, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4054, '2021-06-14', 1411, 4007, 461, NULL, '3.0000', '25.0000', '25.0000', '34.0000', '34.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4055, '2021-06-14', 2548, 4008, 461, 7125, '1.0000', '6.7200', '6.7200', '9.0000', '9.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4056, '2021-06-14', 2568, 4009, 461, 7213, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4057, '2021-06-14', 1935, 4010, 461, 12046, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4058, '2021-06-14', 1839, 4011, 461, 11402, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4059, '2021-06-14', 2167, 4012, 461, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4060, '2021-06-14', 1746, 4013, 461, NULL, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4061, '2021-06-14', 2089, 4014, 461, 11034, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4062, '2021-06-14', 1599, 4015, 461, 12071, '1.0000', '12.8100', '12.8100', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4063, '2021-06-14', 1905, 4016, 461, 5509, '1.0000', '0.4000', '0.4000', '1.0000', '1.0000', '91.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4064, '2021-06-14', 1530, 4017, 461, 8429, '1.0000', '90.0000', '90.0000', '38.0000', '38.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4065, '2021-06-14', 1339, 4018, 461, 3378, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4066, '2021-06-14', 2253, 4019, 461, 3093, '1.0000', '9.2500', '9.2500', '12.0000', '12.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4067, '2021-06-14', 2028, 4020, 461, 6422, '1.0000', '21.0000', '21.0000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4068, '2021-06-14', 1800, 4021, 461, 11099, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4069, '2021-06-14', 2710, 4022, 461, 12756, '1.0000', '40.3000', '40.3000', '53.0000', '53.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4070, '2021-06-14', 2266, 4023, 461, 3106, '1.0000', '6.4900', '6.4900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4071, '2021-06-14', 2123, 4024, 461, 2645, '1.0000', '20.0000', '20.0000', '45.0000', '45.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4072, '2021-06-15', 1844, 4025, 462, 4976, '3.0000', '1.5000', '1.5000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4073, '2021-06-15', 2565, 4026, 462, 7198, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4074, '2021-06-15', 2237, 4027, 462, 3083, '3.0000', '1.0600', '1.0600', '1.5000', '1.5000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4075, '2021-06-15', 2167, 4028, 462, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4076, '2021-06-15', 2556, 4029, 462, 7130, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4077, '2021-06-15', 1728, 4030, 462, 6802, '8.0000', '90.0000', '90.0000', '2.5000', '2.5000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4078, '2021-06-15', 1333, 4031, 462, 3372, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4079, '2021-06-15', 1386, 4032, 462, NULL, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4080, '2021-06-15', 2408, 4033, 462, 4817, '1.0000', '8.6200', '8.6200', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4081, '2021-06-15', 1518, 4034, 462, 1520, '1.0000', '90.0000', '90.0000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4082, '2021-06-15', 1351, 4035, 462, 3390, '1.0000', '35.0000', '35.0000', '46.0000', '46.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4083, '2021-06-15', 2027, 4036, 462, NULL, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4084, '2021-06-15', 1981, 4037, 462, 10211, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4085, '2021-06-15', 1982, 4038, 462, 10212, '1.0000', '4.5000', '4.5000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4086, '2021-06-15', 1872, 4039, 462, 12746, '1.0000', '9.0500', '9.0500', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4087, '2021-06-15', 2327, 4040, 462, 12241, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4088, '2021-06-15', 1464, 4041, 462, NULL, '2.0000', '90.0000', '90.0000', '17.5000', '17.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4089, '2021-06-15', 1904, 4042, 462, 12070, '4.0000', '90.0000', '90.0000', '1.0000', '1.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4090, '2021-06-15', 2220, 4043, 463, 4395, '1.0000', '5.2800', '5.2800', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4091, '2021-06-15', 2250, 4044, 463, 11030, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4092, '2021-06-15', 2506, 4045, 463, 5867, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4093, '2021-06-15', 1533, 4046, 463, 10385, '1.0000', '3.0500', '3.0500', '4.5000', '4.5000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4094, '2021-06-15', 2242, 4047, 463, 3066, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4095, '2021-06-15', 1772, 4048, 464, 11893, '2.0000', '6.0500', '6.0500', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4096, '2021-06-15', 2317, 4049, 464, 8617, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4097, '2021-06-15', 1523, 4050, 464, 11170, '1.0000', '0.9300', '0.9300', '3.0000', '3.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4098, '2021-06-15', 2683, 4051, 464, 12223, '1.0000', '49.0000', '49.0000', '64.0000', '64.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4099, '2021-06-15', 1846, 4052, 464, 12060, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4100, '2021-06-15', 2681, 4053, 464, 12231, '1.0000', '12.4000', '12.4000', '16.5000', '16.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4101, '2021-06-15', 1863, 4054, 464, 11171, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '75.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4102, '2021-06-15', 2708, 4055, 464, 12725, '1.0000', '33.9600', '33.9600', '45.0000', '45.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4103, '2021-06-15', 1599, 4056, 464, 12071, '1.0000', '12.8100', '12.8100', '3.0000', '3.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4104, '2021-06-15', 1785, 4057, 464, 12040, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4105, '2021-06-15', 1347, 4058, 464, NULL, '10.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4106, '2021-06-15', 2618, 4059, 464, 10553, '2.0000', '4.1000', '4.1000', '5.5000', '5.5000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4107, '2021-06-15', 2021, 4060, 464, NULL, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4108, '2021-06-15', 2221, 4061, 464, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4109, '2021-06-15', 2568, 4062, 464, 7213, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4110, '2021-06-15', 1630, 4063, 464, 9472, '1.0000', '16.7400', '16.7400', '22.0000', '22.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4111, '2021-06-15', 1574, 4064, 464, 9451, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4112, '2021-06-15', 1702, 4065, 464, 12677, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4113, '2021-06-15', 1350, 4066, 464, 3389, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4114, '2021-06-15', 1316, 4067, 465, 11885, '1.0000', '6.3000', '6.3000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4115, '2021-06-15', 2703, 4068, 465, 12749, '1.0000', '4.3600', '4.3600', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4116, '2021-06-15', 1637, 4069, 465, 3270, '1.0000', '90.0000', '90.0000', '13.5000', '13.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4117, '2021-06-15', 1785, 4070, 465, 11033, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4118, '2021-06-15', 1416, 4071, 465, NULL, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4119, '2021-06-15', 1863, 4072, 465, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '74.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4120, '2021-06-15', 2315, 4073, 465, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '454.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4121, '2021-06-15', 1682, 4074, 465, 2447, '1.0000', '10.6700', '10.6700', '14.0000', '14.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4122, '2021-06-15', 2678, 4075, 465, 12224, '1.0000', '37.0000', '37.0000', '48.0000', '48.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4123, '2021-06-15', 1313, 4076, 465, 12048, '5.0000', '0.4200', '0.4200', '3.0000', '3.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4124, '2021-06-15', 1486, 4077, 465, 1482, '1.0000', '90.0000', '90.0000', '23.0000', '23.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4125, '2021-06-15', 1346, 4078, 465, NULL, '1.0000', '0.9300', '0.9300', '1.2000', '1.2000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4126, '2021-06-15', 2132, 4079, 465, 4404, '1.0000', '22.0000', '22.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4127, '2021-06-15', 2250, 4080, 465, 13188, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4128, '2021-06-15', 2379, 4081, 465, 11400, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4129, '2021-06-15', 2315, 4082, 465, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '454.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4130, '2021-06-15', 1908, 4083, 465, 5510, '5.0000', '1.7500', '1.7500', '1.0000', '1.0000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4131, '2021-06-15', 1644, 4084, 466, 3263, '1.0000', '90.0000', '90.0000', '44.0000', '44.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4132, '2021-06-15', 1961, 4085, 466, 12728, '1.0000', '16.3900', '16.3900', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4133, '2021-06-15', 1651, 4086, 466, 11101, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4134, '2021-06-15', 1464, 4087, 466, NULL, '1.0000', '90.0000', '90.0000', '17.5000', '17.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4135, '2021-06-16', 2136, 4088, 467, NULL, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4136, '2021-06-16', 2491, 4089, 467, 12239, '1.0000', '12.2000', '12.2000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4137, '2021-06-16', 1302, 4090, 467, 3071, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4138, '2021-06-16', 1706, 4091, 467, 9473, '1.0000', '15.2700', '15.2700', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4139, '2021-06-16', 1342, 4092, 467, 11398, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4140, '2021-06-16', 1574, 4093, 467, 9451, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4141, '2021-06-16', 1900, 4094, 467, 3537, '10.0000', '2.4600', '2.4600', '3.3000', '3.3000', '80.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4142, '2021-06-16', 1812, 4095, 467, 11857, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4143, '2021-06-16', 2010, 4096, 467, 10597, '2.0000', '1.2500', '1.2500', '2.5000', '2.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4144, '2021-06-16', 2285, 4097, 467, 12065, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4145, '2021-06-16', 1602, 4098, 467, 13216, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4146, '2021-06-16', 1501, 4099, 467, 12679, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4147, '2021-06-16', 2320, 4100, 467, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4148, '2021-06-16', 2656, 4101, 467, 12721, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4149, '2021-06-16', 1533, 4102, 467, 10385, '1.0000', '3.0500', '3.0500', '4.5000', '4.5000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4150, '2021-06-16', 1620, 4103, 467, 12226, '4.0000', '90.0000', '90.0000', '3.0000', '3.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4151, '2021-06-16', 1521, 4104, 467, 1526, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4152, '2021-06-16', 2444, 4105, 467, 5829, '1.0000', '6.0000', '6.0000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4153, '2021-06-16', 1329, 4106, 467, 3369, '1.0000', '4.2000', '4.2000', '5.5000', '5.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4154, '2021-06-16', 1339, 4107, 467, 13170, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4155, '2021-06-16', 1330, 4108, 467, 3367, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4156, '2021-06-16', 1837, 4109, 467, NULL, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4157, '2021-06-16', 1771, 4110, 467, 3410, '1.0000', '3.3900', '3.3900', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4158, '2021-06-16', 2615, 4111, 467, 10538, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4159, '2021-06-16', 1306, 4112, 467, 5611, '2.0000', '2.1000', '2.1000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4160, '2021-06-16', 2228, 4113, 467, 7203, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4161, '2021-06-16', 1880, 4114, 467, 5006, '1.0000', '4.6000', '4.6000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4162, '2021-06-16', 2109, 4115, 467, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '139.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4163, '2021-06-16', 1841, 4116, 467, 4974, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4164, '2021-06-16', 2635, 4117, 467, 10298, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4165, '2021-06-16', 1337, 4118, 467, 11029, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4166, '2021-06-16', 2238, 4119, 468, 10303, '1.0000', '39.0000', '39.0000', '51.0000', '51.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4167, '2021-06-16', 2689, 4120, 469, 12776, '1.0000', '17.0000', '17.0000', '22.0000', '22.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4168, '2021-06-16', 2095, 4121, 470, 6007, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4169, '2021-06-16', 1743, 4122, 471, 6814, '1.0000', '3.9800', '3.9800', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4170, '2021-06-16', 1612, 4123, 472, 9422, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4171, '2021-06-16', 2315, 4124, 472, 3069, '3.0000', '0.3300', '0.3300', '0.5000', '0.5000', '450.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4172, '2021-06-16', 2169, 4125, 472, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4173, '2021-06-16', 1701, 4126, 472, 11395, '1.0000', '14.7800', '14.7800', '19.5000', '19.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4174, '2021-06-16', 1411, 4127, 472, 13570, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4175, '2021-06-16', 2132, 4128, 472, 4404, '1.0000', '22.0000', '22.0000', '25.0000', '25.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4176, '2021-06-16', 1700, 4129, 472, 7116, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4177, '2021-06-16', 2699, 4130, 472, 12726, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4178, '2021-06-16', 1999, 4131, 472, 6444, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4179, '2021-06-16', 2020, 4132, 472, 13560, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4180, '2021-06-16', 2455, 4133, 472, 13628, '1.0000', '7.5300', '7.5300', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4181, '2021-06-16', 1647, 4134, 472, 11390, '1.0000', '4.7200', '4.7200', '6.5000', '6.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4182, '2021-06-16', 2109, 4135, 472, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '138.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4183, '2021-06-16', 2622, 4136, 472, 12243, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4184, '2021-06-16', 1763, 4137, 472, 12738, '1.0000', '4.6900', '4.6900', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4185, '2021-06-16', 1912, 4138, 472, NULL, '1.0000', '0.3100', '0.3100', '0.8000', '0.8000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4186, '2021-06-16', 1912, 4139, 472, NULL, '2.0000', '0.3100', '0.3100', '0.8000', '0.8000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4187, '2021-06-16', 2659, 4140, 472, 12043, '1.0000', '25.4800', '25.4800', '33.5000', '33.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4188, '2021-06-16', 2280, 4141, 472, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4189, '2021-06-16', 1863, 4142, 472, 11171, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '72.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4190, '2021-06-16', 1863, 4143, 472, 11171, '3.0000', '1.2200', '1.2200', '2.0000', '2.0000', '71.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4191, '2021-06-16', 2315, 4144, 472, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '451.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4192, '2021-06-16', 2289, 4145, 472, 3129, '2.0000', '0.2300', '0.2300', '0.5000', '0.5000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4193, '2021-06-16', 1840, 4146, 472, 4973, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4194, '2021-06-16', 2169, 4147, 472, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4195, '2021-06-16', 1519, 4148, 472, 11166, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4196, '2021-06-16', 1666, 4149, 472, 11871, '2.0000', '90.0000', '90.0000', '3.5000', '3.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4197, '2021-06-16', 1665, 4150, 472, 12234, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4198, '2021-06-16', 1641, 4151, 472, 12047, '6.0000', '90.0000', '90.0000', '1.3000', '1.3000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4199, '2021-06-16', 1873, 4152, 472, 5001, '1.0000', '90.0000', '90.0000', '15.5000', '15.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4200, '2021-06-16', 2460, 4153, 472, 13564, '1.0000', '32.7700', '32.7700', '43.0000', '43.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4201, '2021-06-16', 1760, 4154, 472, 6783, '2.0000', '1.5900', '1.5900', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4202, '2021-06-16', 2050, 4155, 473, NULL, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4203, '2021-06-16', 2034, 4156, 473, 6416, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4204, '2021-06-17', 1831, 4157, 474, 12674, '1.0000', '90.0000', '90.0000', '11.5000', '11.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4205, '2021-06-17', 2234, 4158, 474, 11898, '1.0000', '13.6000', '13.6000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4206, '2021-06-17', 1828, 4159, 474, 4963, '2.0000', '0.7300', '0.7300', '1.0000', '1.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4207, '2021-06-17', 2163, 4160, 474, NULL, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4208, '2021-06-17', 2396, 4161, 474, 4365, '2.0000', '11.5000', '11.5000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4209, '2021-06-17', 2642, 4162, 474, 10574, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4210, '2021-06-17', 2444, 4163, 474, 5829, '1.0000', '6.0000', '6.0000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4211, '2021-06-17', 1382, 4164, 474, 3425, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4212, '2021-06-17', 2003, 4165, 474, 6817, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4213, '2021-06-17', 2622, 4166, 474, 12243, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4214, '2021-06-17', 2604, 4167, 474, 8626, '1.0000', '90.0000', '90.0000', '120.0000', '120.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4215, '2021-06-17', 2068, 4168, 474, 5625, '1.0000', '11.8000', '11.8000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4216, '2021-06-17', 2681, 4169, 474, 12231, '1.0000', '12.4000', '12.4000', '16.5000', '16.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4217, '2021-06-17', 2253, 4170, 474, 3093, '1.0000', '9.2500', '9.2500', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4218, '2021-06-17', 2221, 4171, 474, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4219, '2021-06-17', 2233, 4172, 474, 11861, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4220, '2021-06-17', 1657, 4173, 474, NULL, '3.0000', '90.0000', '90.0000', '0.5000', '0.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4221, '2021-06-17', 1579, 4174, 474, NULL, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4222, '2021-06-17', 1866, 4175, 474, 4995, '1.0000', '4.7500', '4.7500', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4223, '2021-06-17', 2656, 4176, 474, 12721, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4224, '2021-06-17', 2519, 4177, 475, NULL, '1.0000', '11.0000', '11.0000', '14.5000', '14.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4225, '2021-06-17', 2358, 4178, 476, 13546, '1.0000', '27.2100', '27.2100', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4226, '2021-06-17', 2695, 4179, 477, 12681, '2.0000', '2.0000', '2.0000', '2.7000', '2.7000', '58.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4227, '2021-06-17', 1610, 4180, 477, 11874, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4228, '2021-06-17', 1694, 4181, 477, 11036, '1.0000', '7.1900', '7.1900', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4229, '2021-06-17', 1694, 4181, 477, 2457, '1.0000', '7.1900', '7.1900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4230, '2021-06-17', 1337, 4182, 477, 11029, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4231, '2021-06-17', 1841, 4183, 477, 4974, '9.0000', '0.3700', '0.3700', '0.5000', '0.5000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4232, '2021-06-17', 2612, 4184, 477, 10526, '2.0000', '7.1600', '7.1600', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4233, '2021-06-17', 2296, 4185, 477, 11027, '1.0000', '13.2900', '13.2900', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4234, '2021-06-17', 2545, 4186, 477, 12735, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4235, '2021-06-17', 2381, 4187, 477, NULL, '1.0000', '10.8700', '10.8700', '14.5000', '14.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4236, '2021-06-17', 1608, 4188, 477, 11876, '1.0000', '3.3500', '3.3500', '5.5000', '5.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4237, '2021-06-17', 2433, 4189, 477, 10598, '80.0000', '0.3200', '0.3200', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4238, '2021-06-17', 2548, 4190, 477, 7125, '1.0000', '6.7200', '6.7200', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4239, '2021-06-17', 2699, 4191, 477, 12726, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4240, '2021-06-17', 1481, 4192, 477, 1487, '1.0000', '90.0000', '90.0000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4241, '2021-06-17', 1528, 4193, 477, 1535, '2.0000', '90.0000', '90.0000', '6.0000', '6.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4242, '2021-06-17', 2280, 4194, 477, 3120, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4243, '2021-06-17', 2714, 4195, 477, 12783, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4244, '2021-06-17', 2268, 4196, 477, NULL, '1.0000', '14.6000', '14.6000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4245, '2021-06-17', 1682, 4197, 477, 2447, '1.0000', '10.6700', '10.6700', '14.0000', '14.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4246, '2021-06-17', 1922, 4198, 477, 5617, '2.0000', '90.0000', '90.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4247, '2021-06-17', 1782, 4199, 477, 10301, '2.0000', '2.5000', '2.5000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4248, '2021-06-17', 1427, 4200, 477, 11881, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4249, '2021-06-17', 1708, 4201, 477, 10383, '1.0000', '20.1900', '20.1900', '28.0000', '28.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4250, '2021-06-17', 1851, 4202, 477, 9462, '1.0000', '11.5600', '11.5600', '16.5000', '16.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4251, '2021-06-17', 2345, 4203, 477, 10554, '1.0000', '7.6400', '7.6400', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4252, '2021-06-17', 1427, 4204, 478, 11881, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4253, '2021-06-17', 1922, 4205, 478, 5617, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4254, '2021-06-17', 1871, 4206, 478, 10384, '10.0000', '90.0000', '90.0000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4255, '2021-06-17', 1428, 4207, 478, NULL, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4256, '2021-06-17', 1863, 4208, 478, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '68.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4257, '2021-06-17', 2511, 4209, 478, 14044, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4258, '2021-06-17', 1519, 4210, 478, 11166, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4259, '2021-06-17', 1620, 4211, 478, 12226, '4.0000', '90.0000', '90.0000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4260, '2021-06-17', 1908, 4212, 478, 5510, '2.0000', '1.7500', '1.7500', '1.0000', '1.0000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4261, '2021-06-17', 1570, 4213, 478, 12290, '1.0000', '90.0000', '90.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4262, '2021-06-17', 2259, 4214, 478, 12382, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4263, '2021-06-17', 2360, 4215, 478, 3872, '2.0000', '0.5200', '0.5200', '0.6900', '0.6900', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4264, '2021-06-18', 1667, 4216, 479, 2432, '1.0000', '5.9400', '5.9400', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 47);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4265, '2021-06-18', 2242, 4217, 479, 3059, '-1.0000', '0.4800', '0.4800', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4266, '2021-06-18', 2242, 4217, 479, NULL, '4.0000', '0.4800', '0.4800', '1.0000', '1.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4267, '2021-06-18', 1837, 4218, 479, NULL, '9.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-9.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4268, '2021-06-18', 1787, 4219, 479, NULL, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4269, '2021-06-18', 2331, 4220, 479, NULL, '1.0000', '12.0700', '12.0700', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4270, '2021-06-18', 1837, 4221, 479, NULL, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4271, '2021-06-18', 1629, 4222, 479, NULL, '1.0000', '13.7900', '13.7900', '18.5000', '18.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4272, '2021-06-18', 2636, 4223, 479, NULL, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4273, '2021-06-18', 1935, 4224, 479, 5586, '-2.0000', '0.7200', '0.7200', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4274, '2021-06-18', 1935, 4224, 479, NULL, '3.0000', '0.7200', '0.7200', '1.5000', '1.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4275, '2021-06-18', 1873, 4225, 479, 13465, '1.0000', '11.9500', '11.9500', '15.5000', '15.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4276, '2021-06-18', 1863, 4226, 479, 10808, '-1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4277, '2021-06-18', 1863, 4226, 479, NULL, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4278, '2021-06-18', 1837, 4227, 479, NULL, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4279, '2021-06-18', 1622, 4228, 479, NULL, '1.0000', '65.9500', '65.9500', '43.5000', '43.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4280, '2021-06-18', 2233, 4229, 479, 4351, '1.0000', '19.0206', '19.0206', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4281, '2021-06-18', 1369, 4230, 479, 269, '1.0000', '6.0487', '6.0487', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4282, '2021-06-18', 1577, 4231, 479, NULL, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4283, '2021-06-18', 2136, 4232, 479, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '117.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4284, '2021-06-18', 2001, 4233, 479, 6820, '-3.0000', '2.5000', '2.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 59);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4285, '2021-06-18', 2001, 4233, 479, NULL, '5.0000', '2.5000', '2.5000', '4.0000', '4.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4286, '2021-06-18', 1863, 4234, 479, 10808, '-1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4287, '2021-06-18', 1863, 4234, 479, NULL, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4288, '2021-06-18', 1674, 4235, 479, NULL, '2.0000', '90.0000', '90.0000', '4.0000', '4.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4289, '2021-06-18', 2250, 4236, 479, NULL, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4290, '2021-06-18', 1925, 4237, 479, NULL, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4291, '2021-06-18', 1430, 4238, 479, NULL, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4292, '2021-06-18', 2487, 4239, 479, NULL, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4293, '2021-06-18', 2512, 4240, 479, NULL, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4294, '2021-06-18', 2485, 4241, 479, NULL, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4295, '2021-06-18', 2656, 4242, 479, NULL, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4296, '2021-06-18', 2109, 4243, 479, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '147.0000', 1, 0, NULL, 57);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4297, '2021-06-18', 1629, 4244, 480, 14589, '1.0000', '13.7900', '13.7900', '18.5000', '18.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4298, '2021-06-18', 1573, 4245, 480, 13554, '1.0000', '90.0000', '90.0000', '32.5000', '32.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4299, '2021-06-18', 1935, 4246, 480, 12046, '2.0000', '90.0000', '90.0000', '1.5000', '1.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4300, '2021-06-18', 2277, 4247, 480, 3117, '1.0000', '0.7800', '0.7800', '1.0000', '1.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4301, '2021-06-18', 1426, 4248, 480, 13526, '1.0000', '36.0000', '36.0000', '47.5000', '47.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4302, '2021-06-18', 2169, 4249, 480, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4303, '2021-06-18', 2520, 4250, 480, 7521, '2.0000', '18.6000', '18.6000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4304, '2021-06-18', 1602, 4251, 480, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4305, '2021-06-18', 2640, 4252, 480, 11044, '1.0000', '7.0400', '7.0400', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4306, '2021-06-18', 2124, 4253, 480, 2641, '1.0000', '25.0000', '25.0000', '40.0000', '40.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4307, '2021-06-18', 2567, 4254, 480, 7200, '1.0000', '33.0000', '33.0000', '36.0000', '36.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4308, '2021-06-18', 1647, 4255, 480, 11390, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4309, '2021-06-18', 2237, 4256, 480, 3083, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4310, '2021-06-18', 1992, 4257, 480, 6451, '1.0000', '1.5000', '1.5000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4311, '2021-06-18', 1401, 4258, 480, 4360, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4312, '2021-06-18', 1665, 4259, 480, 12234, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4313, '2021-06-18', 2334, 4260, 480, 12225, '1.0000', '16.0000', '16.0000', '21.0000', '21.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4314, '2021-06-18', 1346, 4261, 480, 13630, '3.0000', '0.9300', '0.9300', '1.5000', '1.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4315, '2021-06-18', 1557, 4262, 480, 1661, '1.0000', '7.8800', '7.8800', '10.5000', '10.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4316, '2021-06-18', 2342, 4263, 480, 13625, '4.0000', '1.8600', '1.8600', '2.5000', '2.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4317, '2021-06-18', 1450, 4264, 480, NULL, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4318, '2021-06-18', 1863, 4265, 480, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '67.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4319, '2021-06-18', 1760, 4266, 480, 6783, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4320, '2021-06-18', 1992, 4267, 480, 6451, '1.0000', '1.5000', '1.5000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4321, '2021-06-18', 2168, 4268, 480, 10309, '1.0000', '26.0000', '26.0000', '38.0000', '38.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4322, '2021-06-18', 2713, 4269, 480, 12782, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4323, '2021-06-18', 1935, 4270, 480, 12046, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4324, '2021-06-18', 2387, 4271, 480, 4392, '1.0000', '14.0700', '14.0700', '18.5000', '18.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4325, '2021-06-18', 1645, 4272, 480, 11392, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4326, '2021-06-18', 1368, 4273, 480, 3411, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4327, '2021-06-18', 2454, 4274, 480, 5657, '1.0000', '7.5400', '7.5400', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4328, '2021-06-18', 1377, 4275, 480, 3420, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4329, '2021-06-18', 1871, 4276, 481, 8283, '10.0000', '90.0000', '90.0000', '3.0000', '3.0000', '50.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4330, '2021-06-19', 2473, 4277, 482, 10575, '2.0000', '12.0000', '12.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4331, '2021-06-19', 2100, 4278, 482, 6012, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4332, '2021-06-19', 1651, 4279, 482, 11101, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4333, '2021-06-19', 2525, 4280, 482, 8615, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4334, '2021-06-19', 2059, 4281, 482, NULL, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4335, '2021-06-19', 1332, 4282, 482, 3371, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4336, '2021-06-19', 2296, 4283, 482, 11027, '1.0000', '13.2900', '13.2900', '18.0000', '18.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4337, '2021-06-19', 2099, 4284, 482, 6011, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4338, '2021-06-19', 2314, 4285, 482, 3070, '1.0000', '3.9000', '3.9000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4339, '2021-06-19', 1616, 4286, 482, 9419, '1.0000', '4.0000', '4.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4340, '2021-06-19', 2169, 4287, 482, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4341, '2021-06-19', 2217, 4288, 482, 8168, '1.0000', '12.0000', '12.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4342, '2021-06-19', 2247, 4289, 482, 11862, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4343, '2021-06-19', 1430, 4290, 482, 10237, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4344, '2021-06-19', 2484, 4291, 482, 5196, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4345, '2021-06-19', 2656, 4292, 482, 12721, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4346, '2021-06-19', 1337, 4293, 482, 11029, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4347, '2021-06-19', 1340, 4294, 482, 13569, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4348, '2021-06-19', 1863, 4295, 482, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '66.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4349, '2021-06-19', 2109, 4296, 482, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '137.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4350, '2021-06-19', 1602, 4297, 482, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4351, '2021-06-19', 2105, 4298, 482, 6017, '4.0000', '1.3500', '1.3500', '3.0000', '3.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4352, '2021-06-19', 2232, 4299, 483, 13635, '1.0000', '27.0000', '27.0000', '38.0000', '38.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4353, '2021-06-19', 2656, 4300, 483, 12721, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4354, '2021-06-19', 2699, 4301, 483, 12726, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4355, '2021-06-19', 1863, 4302, 483, 11171, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '64.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4356, '2021-06-19', 1935, 4303, 484, 12046, '2.0000', '90.0000', '90.0000', '1.5000', '1.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4357, '2021-06-19', 1893, 4304, 485, 5498, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4358, '2021-06-19', 2511, 4305, 485, 14576, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4359, '2021-06-19', 2660, 4306, 485, 12038, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4360, '2021-06-19', 2237, 4307, 485, 3083, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4361, '2021-06-19', 2334, 4308, 485, 12225, '1.0000', '16.0000', '16.0000', '21.0000', '21.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4362, '2021-06-19', 1557, 4309, 485, 1661, '1.0000', '7.8800', '7.8800', '10.5000', '10.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4363, '2021-06-19', 1904, 4310, 485, 12070, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4364, '2021-06-19', 2280, 4311, 485, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4365, '2021-06-19', 2250, 4312, 485, 13550, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4366, '2021-06-19', 2228, 4313, 485, 1710, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4367, '2021-06-19', 1346, 4314, 485, 13630, '5.0000', '0.9300', '0.9300', '1.5000', '1.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4368, '2021-06-19', 2656, 4315, 485, 12721, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4369, '2021-06-19', 1502, 4316, 485, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4370, '2021-06-19', 1602, 4317, 485, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4371, '2021-06-19', 2643, 4318, 485, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4372, '2021-06-19', 2660, 4319, 485, 12038, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4373, '2021-06-19', 1772, 4320, 485, 11893, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4374, '2021-06-19', 2304, 4321, 485, 3063, '5.0000', '1.3300', '1.3300', '2.0000', '2.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4375, '2021-06-19', 2350, 4322, 485, 3881, '1.0000', '10.3800', '10.3800', '13.5000', '13.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4376, '2021-06-19', 1347, 4323, 485, NULL, '2.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4377, '2021-06-19', 2304, 4324, 485, 3063, '4.0000', '1.3300', '1.3300', '2.0000', '2.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4378, '2021-06-19', 1314, 4325, 485, 3076, '1.0000', '1.2000', '1.2000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4379, '2021-06-19', 2556, 4326, 485, 7130, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4380, '2021-06-19', 2273, 4327, 486, 3113, '1.0000', '2.6700', '2.6700', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4381, '2021-06-19', 2763, 4328, 487, 15805, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4382, '2021-06-19', 1616, 4329, 487, NULL, '1.0000', '4.0000', '4.0000', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4383, '2021-06-20', 2302, 4330, 488, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4384, '2021-06-20', 1388, 4331, 488, 7226, '1.0000', '5.3000', '5.3000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4385, '2021-06-20', 2633, 4332, 488, 10245, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4386, '2021-06-20', 1645, 4333, 488, 11392, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4387, '2021-06-20', 2169, 4334, 488, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4388, '2021-06-20', 2068, 4335, 488, 5625, '1.0000', '11.8000', '11.8000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4389, '2021-06-20', 2135, 4336, 488, 1523, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4390, '2021-06-20', 1602, 4337, 488, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4391, '2021-06-20', 1875, 4338, 488, 10392, '10.0000', '90.0000', '90.0000', '3.4000', '3.4000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4392, '2021-06-20', 2263, 4339, 488, 13623, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4393, '2021-06-20', 1643, 4340, 488, 3264, '1.0000', '90.0000', '90.0000', '53.0000', '53.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4394, '2021-06-20', 2714, 4341, 488, 12783, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4395, '2021-06-20', 1409, 4342, 488, 12683, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4396, '2021-06-20', 2732, 4343, 488, NULL, '1.0000', '29.8900', '29.8900', '40.0000', '40.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4397, '2021-06-20', 2592, 4344, 488, 11035, '3.0000', '7.8400', '7.8400', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4398, '2021-06-20', 1398, 4345, 488, 9050, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4399, '2021-06-20', 1950, 4346, 488, 6005, '1.0000', '10.0000', '10.0000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4400, '2021-06-20', 1947, 4347, 488, 6003, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4401, '2021-06-20', 1863, 4348, 488, 11171, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '62.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4402, '2021-06-20', 1706, 4349, 488, 9473, '1.0000', '15.2700', '15.2700', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4403, '2021-06-20', 1501, 4350, 488, 12679, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4404, '2021-06-20', 1666, 4351, 488, 11871, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4405, '2021-06-20', 2699, 4352, 488, 12726, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4406, '2021-06-20', 1586, 4353, 488, 9441, '1.0000', '90.0000', '90.0000', '65.0000', '65.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4407, '2021-06-20', 1658, 4354, 488, 12734, '1.0000', '90.0000', '90.0000', '37.0000', '37.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4408, '2021-06-20', 2250, 4355, 488, 13550, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4409, '2021-06-20', 2655, 4356, 488, 12723, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4410, '2021-06-20', 1534, 4357, 488, 1667, '4.0000', '9.8500', '9.8500', '1.3000', '1.3000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4411, '2021-06-20', 1863, 4358, 488, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '63.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4412, '2021-06-20', 2135, 4359, 488, 1523, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4413, '2021-06-20', 2135, 4359, 488, NULL, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4414, '2021-06-20', 2221, 4360, 489, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4415, '2021-06-20', 1668, 4361, 489, 10387, '1.0000', '90.0000', '90.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4416, '2021-06-20', 1888, 4362, 489, 5013, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4417, '2021-06-20', 2655, 4363, 489, 12723, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4418, '2021-06-20', 1863, 4364, 489, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '60.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4419, '2021-06-20', 2430, 4365, 489, 10603, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4420, '2021-06-20', 1602, 4366, 489, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4421, '2021-06-20', 1602, 4367, 489, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4422, '2021-06-21', 1888, 4368, 490, NULL, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4423, '2021-06-21', 1843, 4369, 490, 4975, '7.0000', '3.9000', '3.9000', '5.6000', '5.6000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4424, '2021-06-21', 2443, 4370, 490, 5828, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4425, '2021-06-21', 1917, 4371, 490, 5512, '1.0000', '4.3600', '4.3600', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4426, '2021-06-21', 1316, 4372, 490, 11885, '1.0000', '6.3000', '6.3000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4427, '2021-06-21', 2220, 4373, 490, 13618, '1.0000', '5.2800', '5.2800', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4428, '2021-06-21', 1339, 4374, 490, 13568, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4429, '2021-06-21', 2549, 4375, 490, 9534, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4430, '2021-06-21', 2379, 4376, 490, 11400, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4431, '2021-06-21', 1394, 4377, 490, 11024, '1.0000', '6.5000', '6.5000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4432, '2021-06-21', 1393, 4378, 490, NULL, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4433, '2021-06-21', 2169, 4379, 490, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4434, '2021-06-21', 1318, 4380, 490, 5491, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4435, '2021-06-21', 1666, 4381, 490, 11871, '2.0000', '90.0000', '90.0000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4436, '2021-06-21', 1374, 4382, 490, 11007, '1.0000', '55.5900', '55.5900', '26.0000', '26.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4437, '2021-06-21', 1349, 4383, 490, 13532, '1.0000', '32.5000', '32.5000', '46.0000', '46.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4438, '2021-06-21', 1825, 4384, 490, 13549, '1.0000', '4.5000', '4.5000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4439, '2021-06-21', 1542, 4385, 490, 1547, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4440, '2021-06-21', 2699, 4386, 490, 12726, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4441, '2021-06-21', 2656, 4387, 490, 12721, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4442, '2021-06-21', 2169, 4388, 490, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4443, '2021-06-21', 2565, 4389, 490, 7198, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4444, '2021-06-21', 1602, 4390, 490, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4445, '2021-06-21', 1687, 4391, 490, 5899, '2.0000', '12.0000', '12.0000', '15.5000', '15.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4446, '2021-06-21', 1499, 4392, 490, 1502, '8.0000', '0.4100', '0.4100', '0.6000', '0.6000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4447, '2021-06-21', 1863, 4393, 490, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '59.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4448, '2021-06-21', 2088, 4394, 490, NULL, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4449, '2021-06-21', 1342, 4395, 490, 11398, '2.0000', '43.9000', '43.9000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4450, '2021-06-21', 2007, 4396, 490, 6438, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4451, '2021-06-21', 2523, 4397, 490, 7524, '3.0000', '4.8000', '4.8000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4452, '2021-06-21', 2524, 4398, 490, 15800, '2.0000', '10.0000', '10.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4453, '2021-06-21', 2520, 4399, 490, 7521, '1.0000', '18.6000', '18.6000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4454, '2021-06-21', 2521, 4400, 490, 7522, '1.0000', '8.8000', '8.8000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4455, '2021-06-21', 2441, 4401, 490, 5826, '2.0000', '4.6000', '4.6000', '6.5000', '6.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4456, '2021-06-21', 2610, 4402, 490, 10025, '1.0000', '40.0000', '40.0000', '52.0000', '52.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4457, '2021-06-21', 2486, 4403, 490, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4458, '2021-06-21', 2487, 4404, 490, 5198, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4459, '2021-06-21', 2483, 4405, 490, 5195, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4460, '2021-06-21', 2127, 4406, 490, 2648, '1.0000', '10.0000', '10.0000', '35.0000', '35.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4461, '2021-06-21', 2655, 4407, 490, 12723, '2.0000', '6.5000', '6.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4462, '2021-06-21', 2656, 4408, 490, 12721, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4463, '2021-06-21', 1839, 4409, 490, 4972, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4464, '2021-06-21', 2475, 4410, 491, 5825, '1.0000', '7.0000', '7.0000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4465, '2021-06-21', 2391, 4411, 491, 4398, '2.0000', '2.7000', '2.7000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4466, '2021-06-21', 2249, 4412, 491, 3088, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4467, '2021-06-21', 1822, 4413, 491, 12671, '7.0000', '2.4000', '2.4000', '3.0000', '3.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4468, '2021-06-21', 1863, 4414, 491, 11171, '3.0000', '1.2200', '1.2200', '2.0000', '2.0000', '56.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4469, '2021-06-21', 1349, 4415, 492, 13532, '1.0000', '32.5000', '32.5000', '46.0000', '46.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4470, '2021-06-21', 1541, 4416, 492, 1546, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4471, '2021-06-21', 1668, 4417, 493, 10387, '1.0000', '90.0000', '90.0000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4472, '2021-06-21', 1807, 4418, 494, 3540, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4473, '2021-06-21', 1592, 4419, 494, 13553, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4474, '2021-06-21', 2676, 4420, 494, 12245, '20.0000', '2.4000', '2.4000', '3.0000', '3.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4475, '2021-06-21', 1912, 4421, 494, NULL, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4476, '2021-06-21', 2135, 4422, 494, NULL, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4477, '2021-06-21', 2656, 4423, 494, 12721, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4478, '2021-06-21', 2233, 4424, 494, 11861, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4479, '2021-06-21', 1953, 4425, 494, 3407, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4480, '2021-06-21', 1520, 4426, 494, 11038, '1.0000', '1.4700', '1.4700', '2.0000', '2.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4481, '2021-06-21', 1728, 4427, 494, 6802, '20.0000', '90.0000', '90.0000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4482, '2021-06-21', 2618, 4428, 494, 10553, '2.0000', '4.1000', '4.1000', '5.5000', '5.5000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4483, '2021-06-21', 2342, 4429, 494, 13625, '10.0000', '1.8600', '1.8600', '2.5000', '2.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4484, '2021-06-21', 1419, 4430, 494, 9051, '1.0000', '10.5000', '10.5000', '14.5000', '14.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4485, '2021-06-21', 1941, 4431, 494, 5601, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4486, '2021-06-21', 1619, 4432, 494, 10541, '2.0000', '9.8500', '9.8500', '13.0000', '13.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4487, '2021-06-21', 2545, 4433, 494, 12735, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4488, '2021-06-21', 1550, 4434, 494, 11855, '1.0000', '90.0000', '90.0000', '18.3500', '18.3500', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4489, '2021-06-21', 1386, 4435, 494, NULL, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4490, '2021-06-21', 1519, 4436, 494, 11166, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4491, '2021-06-21', 1782, 4437, 494, 10301, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4492, '2021-06-21', 2331, 4438, 495, 12385, '1.0000', '12.0700', '12.0700', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4493, '2021-06-21', 2254, 4439, 495, 14574, '2.0000', '17.9400', '17.9400', '24.0000', '24.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4494, '2021-06-21', 2254, 4439, 495, 11888, '1.0000', '17.9400', '17.9400', '24.0000', '24.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4495, '2021-06-21', 2163, 4440, 495, NULL, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4496, '2021-06-21', 1912, 4441, 495, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4497, '2021-06-21', 1912, 4441, 495, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4498, '2021-06-21', 1912, 4441, 495, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4499, '2021-06-21', 1912, 4441, 495, 1503, '2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '64.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4500, '2021-06-21', 1529, 4442, 495, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4501, '2021-06-21', 1905, 4443, 495, 5509, '1.0000', '0.4000', '0.4000', '1.0000', '1.0000', '90.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4502, '2021-06-21', 2726, 4444, 495, 13621, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4503, '2021-06-21', 2068, 4445, 495, 5625, '1.0000', '11.8000', '11.8000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4504, '2021-06-21', 2345, 4446, 495, 10554, '2.0000', '7.6400', '7.6400', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4505, '2021-06-21', 1529, 4447, 495, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4506, '2021-06-21', 1854, 4448, 495, 4985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4507, '2021-06-21', 1411, 4449, 495, 13570, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4508, '2021-06-21', 2037, 4450, 495, 9941, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4509, '2021-06-21', 1839, 4451, 496, 4972, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4510, '2021-06-21', 2360, 4452, 496, 3872, '3.0000', '0.5200', '0.5200', '0.6900', '0.6900', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4511, '2021-06-21', 1812, 4453, 496, 11857, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4512, '2021-06-21', 1523, 4454, 496, 11170, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4513, '2021-06-21', 1651, 4455, 496, 11101, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4514, '2021-06-21', 1780, 4456, 496, NULL, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4515, '2021-06-21', 1824, 4457, 496, 4959, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4516, '2021-06-21', 2233, 4458, 496, 11861, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4517, '2021-06-21', 1647, 4459, 496, 3261, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4518, '2021-06-21', 1533, 4460, 496, 10385, '1.0000', '3.0500', '3.0500', '4.5000', '4.5000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4519, '2021-06-21', 2250, 4461, 496, 11030, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4520, '2021-06-21', 1529, 4462, 496, 1536, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4521, '2021-06-21', 1300, 4463, 496, 2471, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4522, '2021-06-21', 2302, 4464, 496, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4523, '2021-06-21', 1497, 4465, 496, 1500, '1.0000', '11.0000', '11.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4524, '2021-06-21', 1523, 4466, 496, 11170, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4525, '2021-06-21', 2713, 4467, 496, 12782, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4526, '2021-06-21', 1712, 4468, 496, 9479, '1.0000', '9.6500', '9.6500', '13.0000', '13.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4527, '2021-06-21', 2106, 4469, 496, 6018, '1.0000', '0.9900', '0.9900', '4.0000', '4.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4528, '2021-06-22', 2037, 4470, 497, 6414, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4529, '2021-06-22', 1810, 4471, 497, 13541, '1.0000', '8.0500', '8.0500', '11.0000', '11.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4530, '2021-06-22', 1863, 4472, 497, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '55.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4531, '2021-06-22', 2020, 4473, 497, 13560, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4532, '2021-06-22', 1670, 4474, 497, 11394, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4533, '2021-06-22', 2279, 4475, 497, 3119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4534, '2021-06-22', 2237, 4476, 497, 3083, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4535, '2021-06-22', 1912, 4477, 497, NULL, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4536, '2021-06-22', 1950, 4478, 497, 6005, '1.0000', '10.0000', '10.0000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4537, '2021-06-22', 2138, 4479, 497, NULL, '1.0000', '12.0500', '12.0500', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4538, '2021-06-22', 2423, 4480, 497, 5808, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4539, '2021-06-22', 2662, 4481, 497, 12037, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4540, '2021-06-22', 1854, 4482, 497, 4985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4541, '2021-06-22', 2511, 4483, 497, 14577, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4542, '2021-06-22', 2332, 4484, 497, 3899, '1.0000', '5.0900', '5.0900', '8.0000', '8.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4543, '2021-06-22', 2021, 4485, 497, NULL, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4544, '2021-06-22', 2049, 4486, 497, NULL, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4545, '2021-06-22', 2703, 4487, 497, 12749, '1.0000', '4.3600', '4.3600', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4546, '2021-06-22', 1967, 4488, 497, 9410, '2.0000', '19.5900', '19.5900', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4547, '2021-06-22', 2656, 4489, 497, 12721, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4548, '2021-06-22', 2104, 4490, 497, 6016, '3.0000', '0.2000', '0.2000', '1.0000', '1.0000', '139.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4549, '2021-06-22', 2619, 4491, 497, 10557, '7.0000', '31.5000', '31.5000', '41.5000', '41.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4550, '2021-06-22', 2655, 4492, 497, 12723, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4551, '2021-06-22', 2699, 4493, 497, 12726, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4552, '2021-06-22', 2656, 4494, 497, 12721, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4553, '2021-06-22', 2713, 4495, 497, 12782, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4554, '2021-06-22', 2714, 4496, 497, 12783, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4555, '2021-06-22', 2237, 4497, 497, 3083, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4556, '2021-06-22', 1654, 4498, 497, 14583, '1.0000', '90.0000', '90.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4557, '2021-06-22', 1771, 4499, 497, 3410, '1.0000', '3.3900', '3.3900', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4558, '2021-06-22', 1863, 4500, 497, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '55.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4559, '2021-06-22', 2713, 4501, 497, 12782, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4560, '2021-06-22', 2786, 4502, 498, 16169, '1.0000', '40.4400', '40.4400', '80.0000', '80.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4561, '2021-06-22', 1593, 4503, 499, 9435, '28.0000', '5.9000', '5.9000', '8.7000', '8.7000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4562, '2021-06-22', 2655, 4504, 499, 12724, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4563, '2021-06-22', 2713, 4505, 499, 12782, '2.0000', '1.5000', '1.5000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4564, '2021-06-22', 2642, 4506, 499, 10574, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4565, '2021-06-22', 1771, 4507, 500, 3410, '1.0000', '3.3900', '3.3900', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4566, '2021-06-22', 2642, 4508, 500, 10574, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4567, '2021-06-22', 1744, 4509, 501, 13556, '1.0000', '90.0000', '90.0000', '34.0000', '34.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4568, '2021-06-22', 2655, 4510, 502, 12724, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4569, '2021-06-22', 1912, 4511, 502, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4570, '2021-06-22', 1912, 4511, 502, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4571, '2021-06-22', 1912, 4511, 502, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4572, '2021-06-22', 1912, 4511, 502, 1503, '2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '62.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4573, '2021-06-22', 2020, 4512, 502, 13560, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4574, '2021-06-22', 2167, 4513, 502, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4575, '2021-06-22', 1602, 4514, 502, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4576, '2021-06-22', 1668, 4515, 502, 10387, '1.0000', '90.0000', '90.0000', '17.5000', '17.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4577, '2021-06-22', 2618, 4516, 502, 10553, '2.0000', '4.1000', '4.1000', '5.5000', '5.5000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4578, '2021-06-22', 1812, 4517, 502, 11857, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4579, '2021-06-22', 1589, 4518, 502, 9438, '1.0000', '90.0000', '90.0000', '8.5000', '8.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4580, '2021-06-22', 2568, 4519, 502, 7213, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4581, '2021-06-22', 2655, 4520, 502, 12724, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4582, '2021-06-22', 1684, 4521, 502, 7124, '1.0000', '90.0000', '90.0000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4583, '2021-06-22', 1528, 4522, 502, 1535, '2.0000', '90.0000', '90.0000', '6.0000', '6.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4584, '2021-06-22', 1935, 4523, 502, 12046, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4585, '2021-06-22', 2225, 4524, 502, 1713, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4586, '2021-06-22', 1347, 4525, 502, NULL, '3.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4587, '2021-06-22', 2168, 4526, 502, 10309, '1.0000', '26.0000', '26.0000', '38.0000', '38.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4588, '2021-06-22', 2281, 4527, 502, 3121, '6.0000', '3.0000', '3.0000', '4.0000', '4.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4589, '2021-06-22', 2557, 4528, 502, 12740, '2.0000', '1.0000', '1.0000', '1.5000', '1.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4590, '2021-06-22', 2250, 4529, 502, 11030, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4591, '2021-06-22', 2135, 4530, 502, NULL, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4592, '2021-06-22', 1871, 4531, 502, 8283, '15.0000', '90.0000', '90.0000', '3.0000', '3.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4593, '2021-06-22', 1782, 4532, 502, 10301, '2.0000', '2.5000', '2.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4594, '2021-06-22', 1922, 4533, 502, 5617, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4595, '2021-06-22', 1700, 4534, 502, 14580, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4596, '2021-06-22', 1420, 4535, 502, NULL, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4597, '2021-06-22', 2712, 4536, 503, 12781, '6.0000', '0.2600', '0.2600', '0.5000', '0.5000', '74.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4598, '2021-06-22', 1812, 4537, 504, 11857, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4599, '2021-06-22', 2315, 4538, 504, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '447.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4600, '2021-06-22', 1381, 4539, 504, 3424, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4601, '2021-06-22', 2619, 4540, 504, 10557, '7.0000', '31.5000', '31.5000', '41.5000', '41.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4602, '2021-06-22', 2656, 4541, 504, 12722, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4603, '2021-06-22', 1620, 4542, 504, 12226, '4.0000', '90.0000', '90.0000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4604, '2021-06-22', 2315, 4543, 505, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '446.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4605, '2021-06-22', 2253, 4544, 505, 3093, '1.0000', '9.2500', '9.2500', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4606, '2021-06-22', 1596, 4545, 505, 9433, '1.0000', '2.5700', '2.5700', '4.0000', '4.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4607, '2021-06-22', 2352, 4546, 505, 10317, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4608, '2021-06-23', 2384, 4547, 506, 4370, '4.0000', '0.4000', '0.4000', '0.5000', '0.5000', '60.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4609, '2021-06-23', 2279, 4548, 506, 3119, '5.0000', '2.6000', '2.6000', '3.5000', '3.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4610, '2021-06-23', 1318, 4549, 506, 5491, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4611, '2021-06-23', 1783, 4550, 506, 14570, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4612, '2021-06-23', 2379, 4551, 506, 11400, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4613, '2021-06-23', 1905, 4552, 506, 5509, '1.0000', '0.4000', '0.4000', '1.0000', '1.0000', '89.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4614, '2021-06-23', 1519, 4553, 506, 11166, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4615, '2021-06-23', 1695, 4554, 506, 13533, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4616, '2021-06-23', 1781, 4555, 506, 4936, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4617, '2021-06-23', 2643, 4556, 506, 10577, '2.0000', '0.8700', '0.8700', '1.0000', '1.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4618, '2021-06-23', 2178, 4557, 506, NULL, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4619, '2021-06-23', 2295, 4558, 506, 3134, '3.0000', '0.7000', '0.7000', '1.5000', '1.5000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4620, '2021-06-23', 2242, 4559, 506, 3066, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4621, '2021-06-23', 2506, 4560, 506, 16265, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4622, '2021-06-23', 2379, 4561, 506, 11400, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4623, '2021-06-23', 1905, 4562, 506, 5509, '2.0000', '0.4000', '0.4000', '1.0000', '1.0000', '88.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4624, '2021-06-23', 2545, 4563, 506, 12735, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4625, '2021-06-23', 2228, 4564, 506, NULL, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4626, '2021-06-23', 1620, 4565, 506, 12226, '4.0000', '90.0000', '90.0000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4627, '2021-06-23', 1822, 4566, 506, 12671, '3.0000', '2.4000', '2.4000', '3.0000', '3.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4628, '2021-06-23', 1579, 4567, 506, NULL, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4629, '2021-06-23', 2167, 4568, 506, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4630, '2021-06-23', 2656, 4569, 506, 12722, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4631, '2021-06-23', 1602, 4570, 507, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4632, '2021-06-23', 2699, 4571, 507, 12726, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4633, '2021-06-23', 1311, 4572, 507, 5503, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4634, '2021-06-23', 1910, 4573, 507, NULL, '1.0000', '1.0200', '1.0200', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4635, '2021-06-23', 2061, 4574, 507, 11010, '1.0000', '10.9800', '10.9800', '15.0000', '15.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4636, '2021-06-23', 1347, 4575, 507, NULL, '2.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4637, '2021-06-23', 1657, 4576, 507, NULL, '4.0000', '90.0000', '90.0000', '0.6000', '0.6000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4638, '2021-06-23', 1310, 4577, 507, 12051, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4639, '2021-06-23', 2290, 4578, 507, 4830, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4640, '2021-06-23', 2315, 4579, 507, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '444.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4641, '2021-06-23', 1647, 4580, 507, 16261, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4642, '2021-06-23', 2726, 4581, 507, 13621, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4643, '2021-06-23', 1523, 4582, 507, 11170, '2.0000', '0.9300', '0.9300', '5.0000', '5.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4644, '2021-06-23', 1619, 4583, 507, 10541, '2.0000', '9.8500', '9.8500', '13.0000', '13.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4645, '2021-06-23', 1519, 4584, 507, 11166, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4646, '2021-06-23', 1682, 4585, 507, 2447, '1.0000', '10.6700', '10.6700', '14.0000', '14.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4647, '2021-06-23', 1447, 4586, 507, 5626, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4648, '2021-06-23', 2655, 4587, 507, 11194, '2.0000', '6.5000', '6.5000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4649, '2021-06-23', 1610, 4588, 507, 11874, '1.0000', '90.0000', '90.0000', '21.0000', '21.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4650, '2021-06-23', 2285, 4589, 507, 12065, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4651, '2021-06-23', 2168, 4590, 507, 10309, '1.0000', '26.0000', '26.0000', '38.0000', '38.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4652, '2021-06-23', 2463, 4591, 507, 4840, '6.0000', '2.8700', '2.8700', '4.0000', '4.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4653, '2021-06-23', 2511, 4592, 507, 11041, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4654, '2021-06-23', 2617, 4593, 507, 10536, '1.0000', '4.4000', '4.4000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4655, '2021-06-23', 2302, 4594, 507, 3143, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4656, '2021-06-23', 1791, 4595, 507, 4926, '1.0000', '90.0000', '90.0000', '18.5000', '18.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4657, '2021-06-23', 1493, 4596, 507, 13563, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4658, '2021-06-23', 2571, 4597, 507, 7234, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4659, '2021-06-23', 2262, 4598, 507, 3103, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4660, '2021-06-23', 1310, 4599, 507, 12051, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4661, '2021-06-23', 2544, 4600, 507, 12730, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4662, '2021-06-23', 1518, 4601, 507, 1520, '1.0000', '90.0000', '90.0000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4663, '2021-06-23', 1701, 4602, 507, 11395, '1.0000', '14.7800', '14.7800', '19.5000', '19.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4664, '2021-06-23', 1876, 4603, 508, 12750, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4665, '2021-06-23', 2353, 4604, 509, 11892, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4666, '2021-06-23', 2135, 4605, 509, NULL, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4667, '2021-06-23', 1672, 4606, 509, 13633, '10.0000', '90.0000', '90.0000', '3.8000', '3.8000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4668, '2021-06-23', 1363, 4607, 509, 3403, '1.0000', '81.4000', '81.4000', '107.5000', '107.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4669, '2021-06-23', 1385, 4608, 509, 3428, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4670, '2021-06-23', 1900, 4609, 509, 3537, '10.0000', '2.4600', '2.4600', '3.3000', '3.3000', '70.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4671, '2021-06-23', 1851, 4610, 509, 14581, '1.0000', '11.5600', '11.5600', '16.5000', '16.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4672, '2021-06-23', 1346, 4611, 509, 13630, '3.0000', '0.9300', '0.9300', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4673, '2021-06-23', 1346, 4611, 509, NULL, '2.0000', '0.9300', '0.9300', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4674, '2021-06-23', 1532, 4612, 509, 1539, '3.0000', '90.0000', '90.0000', '1.5000', '1.5000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4675, '2021-06-23', 1501, 4613, 509, 12679, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4676, '2021-06-23', 2256, 4614, 509, 3096, '1.0000', '12.7400', '12.7400', '17.0000', '17.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4677, '2021-06-23', 1394, 4615, 509, 11024, '1.0000', '6.5000', '6.5000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4678, '2021-06-23', 1521, 4616, 509, 1526, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4679, '2021-06-23', 2637, 4617, 509, 10398, '1.0000', '10.0000', '10.0000', '13.5000', '13.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4680, '2021-06-23', 1682, 4618, 509, 2447, '1.0000', '10.6700', '10.6700', '14.0000', '14.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4681, '2021-06-23', 2808, 4619, 510, 16353, '1.0000', '39.0000', '39.0000', '51.0000', '51.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4682, '2021-06-23', 1504, 4620, 511, 1507, '10.0000', '90.0000', '90.0000', '2.0000', '2.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4683, '2021-06-23', 2332, 4621, 511, 3899, '1.0000', '5.0900', '5.0900', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4684, '2021-06-23', 1640, 4622, 511, 3267, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4685, '2021-06-23', 1411, 4623, 512, 16334, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4686, '2021-06-24', 2593, 4624, 513, NULL, '3.0000', '14.4000', '14.4000', '19.0000', '19.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4687, '2021-06-24', 1527, 4625, 513, 1534, '3.0000', '90.0000', '90.0000', '17.5000', '17.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4688, '2021-06-24', 2388, 4626, 513, 4393, '1.0000', '52.8500', '52.8500', '70.0000', '70.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4689, '2021-06-24', 2366, 4627, 513, 14571, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4690, '2021-06-24', 2699, 4628, 513, 12726, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4691, '2021-06-24', 2656, 4629, 513, 12722, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4692, '2021-06-24', 1349, 4630, 513, 16350, '1.0000', '32.5000', '32.5000', '46.0000', '46.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4693, '2021-06-24', 1425, 4631, 513, 10406, '3.0000', '6.5000', '6.5000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4694, '2021-06-24', 2142, 4632, 513, NULL, '1.0000', '57.0000', '57.0000', '76.0000', '76.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4695, '2021-06-24', 1863, 4633, 513, 11171, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '52.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4696, '2021-06-24', 2699, 4634, 513, 12726, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4697, '2021-06-24', 1499, 4635, 513, 1502, '3.0000', '0.4100', '0.4100', '0.6000', '0.6000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4698, '2021-06-24', 2713, 4636, 513, 12782, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4699, '2021-06-24', 2405, 4637, 513, 9571, '-6.0000', '1.2000', '1.2000', '1.6000', '1.6000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4700, '2021-06-24', 2405, 4637, 513, 9571, '-6.0000', '1.2000', '1.2000', '1.6000', '1.6000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4701, '2021-06-24', 2405, 4637, 513, 4811, '9.0000', '1.2000', '1.2000', '1.6000', '1.6000', '78.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4702, '2021-06-24', 2169, 4638, 513, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4703, '2021-06-24', 1875, 4639, 513, 10392, '10.0000', '90.0000', '90.0000', '3.4000', '3.4000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4704, '2021-06-24', 2635, 4640, 513, 10298, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4705, '2021-06-24', 2643, 4641, 513, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4706, '2021-06-24', 1415, 4642, 513, 7227, '1.0000', '14.5000', '14.5000', '19.0000', '19.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4707, '2021-06-24', 2572, 4643, 513, 7230, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4708, '2021-06-24', 1666, 4644, 513, 11871, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4709, '2021-06-24', 2167, 4645, 514, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4710, '2021-06-24', 1863, 4646, 514, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '51.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4711, '2021-06-24', 1935, 4647, 514, 12046, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4712, '2021-06-24', 1533, 4648, 514, 10385, '1.0000', '3.0500', '3.0500', '4.5000', '4.5000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4713, '2021-06-24', 1677, 4649, 514, 3397, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4714, '2021-06-24', 1430, 4650, 514, 16276, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4715, '2021-06-24', 1427, 4651, 514, 11881, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4716, '2021-06-24', 2650, 4652, 514, 12049, '1.0000', '7.3200', '7.3200', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4717, '2021-06-24', 1390, 4653, 515, NULL, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4718, '2021-06-24', 2318, 4654, 515, NULL, '25.0000', '0.5000', '0.5000', '1.0000', '1.0000', '-25.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4719, '2021-06-24', 2622, 4655, 515, 12243, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4720, '2021-06-24', 2230, 4656, 515, 1708, '1.0000', '43.5000', '43.5000', '46.0000', '46.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4721, '2021-06-24', 2360, 4657, 515, 3872, '1.0000', '0.5200', '0.5200', '0.6900', '0.6900', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4722, '2021-06-24', 2237, 4658, 515, 3083, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4723, '2021-06-24', 2085, 4659, 515, 12053, '5.0000', '13.3400', '13.3400', '1.8000', '1.8000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4724, '2021-06-24', 2003, 4660, 515, 6817, '2.0000', '4.0000', '4.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4725, '2021-06-24', 1875, 4661, 515, 10392, '10.0000', '90.0000', '90.0000', '3.4000', '3.4000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4726, '2021-06-24', 2135, 4662, 515, NULL, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4727, '2021-06-24', 1871, 4663, 516, 8283, '10.0000', '90.0000', '90.0000', '3.0000', '3.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4728, '2021-06-24', 2680, 4664, 516, 12229, '1.0000', '11.8600', '11.8600', '15.5000', '15.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4729, '2021-06-24', 2058, 4665, 516, 7513, '1.0000', '10.0000', '10.0000', '40.0000', '40.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4730, '2021-06-24', 1812, 4666, 516, 11857, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4731, '2021-06-24', 1812, 4666, 516, 11858, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4732, '2021-06-24', 1811, 4667, 517, 9543, '3.0000', '14.5300', '14.5300', '19.0000', '19.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4733, '2021-06-24', 1811, 4668, 518, 9543, '1.0000', '14.5300', '14.5300', '19.0000', '19.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4734, '2021-06-24', 1811, 4668, 518, 4950, '2.0000', '14.5300', '14.5300', '19.0000', '19.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4735, '2021-06-24', 1830, 4669, 518, 4965, '3.0000', '90.0000', '90.0000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4736, '2021-06-24', 2348, 4670, 518, 11887, '1.0000', '22.0300', '22.0300', '29.0000', '29.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4737, '2021-06-24', 1689, 4671, 519, 4939, '1.0000', '12.3500', '12.3500', '16.5000', '16.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4738, '2021-06-24', 2281, 4672, 519, 3121, '6.0000', '3.0000', '3.0000', '4.0000', '4.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4739, '2021-06-24', 2320, 4673, 519, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4740, '2021-06-24', 1342, 4674, 519, 11398, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4754, '2021-06-24', 2019, 4688, 520, 6427, '1.0000', '10.0000', '10.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4755, '2021-06-24', 1488, 4689, 520, 13561, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4756, '2021-06-24', 2221, 4690, 520, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4757, '2021-06-24', 1863, 4691, 520, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '50.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4758, '2021-06-24', 2486, 4692, 520, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4759, '2021-06-24', 1839, 4693, 520, 16340, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4760, '2021-06-24', 1646, 4694, 520, 11391, '1.0000', '4.5300', '4.5300', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4761, '2021-06-24', 2726, 4695, 520, 13621, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4762, '2021-06-24', 2649, 4696, 520, 12236, '1.0000', '71.0000', '71.0000', '94.0000', '94.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4763, '2021-06-24', 1640, 4697, 520, 3267, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4764, '2021-06-24', 2656, 4698, 520, 12722, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4765, '2021-06-24', 2261, 4699, 520, 3102, '1.0000', '18.9900', '18.9900', '25.0000', '25.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4766, '2021-06-24', 2430, 4700, 520, 10605, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4767, '2021-06-25', 1863, 4701, 521, 15830, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '70.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4768, '2021-06-25', 2237, 4702, 521, NULL, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4769, '2021-06-25', 2253, 4703, 521, NULL, '1.0000', '9.2500', '9.2500', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4770, '2021-06-25', 2622, 4704, 521, NULL, '2.0000', '19.0000', '19.0000', '25.0000', '25.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4771, '2021-06-25', 2589, 4705, 521, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4772, '2021-06-25', 2554, 4706, 521, NULL, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4773, '2021-06-25', 1603, 4707, 521, 15881, '1.0000', '59.4600', '59.4600', '78.5000', '78.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4774, '2021-06-25', 1643, 4708, 521, NULL, '1.0000', '90.0000', '90.0000', '53.0000', '53.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4775, '2021-06-25', 2221, 4709, 521, 4334, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4776, '2021-06-25', 2655, 4710, 521, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4777, '2021-06-25', 1863, 4711, 521, 15830, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '71.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4778, '2021-06-25', 1602, 4712, 521, 15831, '1.0000', '6.9978', '6.9978', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4779, '2021-06-25', 1904, 4713, 521, 164, '2.0000', '0.3200', '0.3200', '1.0000', '1.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4780, '2021-06-25', 1494, 4714, 521, 97, '1.0000', '6.7681', '6.7681', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4781, '2021-06-25', 1339, 4715, 521, 235, '1.0000', '1.6012', '1.6012', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4782, '2021-06-25', 1546, 4716, 521, 12689, '12.0000', '2.3000', '2.3000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4783, '2021-06-25', 2035, 4717, 521, NULL, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4784, '2021-06-25', 2567, 4718, 521, 7177, '-1.0000', '33.0000', '33.0000', '36.0000', '36.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4785, '2021-06-25', 2567, 4718, 521, NULL, '2.0000', '33.0000', '33.0000', '36.0000', '36.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4786, '2021-06-25', 1863, 4719, 521, 15830, '3.0000', '1.2200', '1.2200', '2.0000', '2.0000', '69.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4787, '2021-06-25', 1638, 4720, 521, 15966, '16.0000', '5.2260', '5.2260', '8.0000', '8.0000', '32.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4788, '2021-06-25', 2656, 4721, 521, NULL, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4789, '2021-06-25', 2167, 4722, 522, 15914, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4790, '2021-06-25', 2481, 4723, 522, NULL, '1.0000', '3.5000', '3.5000', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4791, '2021-06-25', 2712, 4724, 522, NULL, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4792, '2021-06-25', 2713, 4725, 522, 12768, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4793, '2021-06-25', 1665, 4726, 522, 3235, '-1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4794, '2021-06-25', 1665, 4726, 522, NULL, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4795, '2021-06-25', 1387, 4727, 522, 15988, '1.0000', '11.3000', '11.3000', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4796, '2021-06-25', 2345, 4728, 523, 15856, '1.0000', '7.6400', '7.6400', '10.5000', '10.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4797, '2021-06-25', 1630, 4729, 524, 14592, '1.0000', '16.7400', '16.7400', '22.5000', '22.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4798, '2021-06-25', 2131, 4730, 524, 10576, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4799, '2021-06-25', 2497, 4731, 524, 11172, '1.0000', '34.0000', '34.0000', '48.0000', '48.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4800, '2021-06-25', 1570, 4732, 524, 12290, '1.0000', '90.0000', '90.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4801, '2021-06-25', 2656, 4733, 524, 12722, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4802, '2021-06-25', 1785, 4734, 524, 14585, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4803, '2021-06-25', 2486, 4735, 524, NULL, '3.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4804, '2021-06-25', 1871, 4736, 524, 8283, '15.0000', '90.0000', '90.0000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4805, '2021-06-25', 2649, 4737, 524, 12236, '1.0000', '71.0000', '71.0000', '94.0000', '94.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4806, '2021-06-25', 2505, 4738, 524, 12751, '1.0000', '68.5900', '68.5900', '130.0000', '130.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4807, '2021-06-25', 1863, 4739, 524, 11171, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4808, '2021-06-25', 2285, 4740, 524, 12066, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4809, '2021-06-25', 1651, 4741, 524, 11101, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4810, '2021-06-25', 1519, 4742, 524, 11166, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4811, '2021-06-25', 1822, 4743, 524, 12671, '20.0000', '2.4000', '2.4000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4812, '2021-06-25', 1342, 4744, 524, 11398, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4813, '2021-06-25', 2463, 4745, 524, 4840, '6.0000', '2.8700', '2.8700', '4.0000', '4.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4814, '2021-06-25', 1523, 4746, 525, 11170, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4815, '2021-06-25', 1432, 4747, 525, 13527, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4816, '2021-06-25', 1744, 4748, 525, 13556, '1.0000', '90.0000', '90.0000', '34.0000', '34.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4817, '2021-06-25', 2622, 4749, 525, 12243, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4818, '2021-06-25', 2168, 4750, 525, 9562, '1.0000', '26.0000', '26.0000', '38.0000', '38.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4819, '2021-06-25', 2679, 4751, 525, 13617, '1.0000', '32.3500', '32.3500', '43.0000', '43.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4820, '2021-06-25', 2286, 4752, 525, 3126, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4821, '2021-06-25', 2288, 4753, 525, 9544, '2.0000', '7.5900', '7.5900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4822, '2021-06-25', 1904, 4754, 525, 12070, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4823, '2021-06-25', 1690, 4755, 525, 5868, '1.0000', '90.0000', '90.0000', '8.5000', '8.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4824, '2021-06-25', 1381, 4756, 525, 3424, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4825, '2021-06-25', 2699, 4757, 525, 12726, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4826, '2021-06-25', 1846, 4758, 525, 12060, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4827, '2021-06-25', 1935, 4759, 525, 12046, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4828, '2021-06-25', 2281, 4760, 525, 3121, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4829, '2021-06-25', 1863, 4761, 525, 11171, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4830, '2021-06-25', 2315, 4762, 525, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '443.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4831, '2021-06-25', 2655, 4763, 525, 11194, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4832, '2021-06-25', 2566, 4764, 525, 7202, '1.0000', '16.0000', '16.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4833, '2021-06-25', 2259, 4765, 525, 12382, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4834, '2021-06-25', 1665, 4766, 526, 12234, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4835, '2021-06-25', 2713, 4767, 526, 12782, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4836, '2021-06-25', 2363, 4768, 526, 3868, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4837, '2021-06-25', 2810, 4769, 527, 16712, '1.0000', '2.2000', '2.2000', '2.9000', '2.9000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4838, '2021-06-25', 2810, 4770, 528, 16712, '9.0000', '2.2000', '2.2000', '2.9000', '2.9000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4839, '2021-06-26', 1839, 4771, 529, 16472, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4840, '2021-06-26', 1579, 4772, 529, NULL, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4841, '2021-06-26', 1863, 4773, 529, 11171, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4842, '2021-06-26', 2440, 4774, 529, 5824, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4843, '2021-06-26', 1602, 4775, 529, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4844, '2021-06-26', 1672, 4776, 529, 13633, '10.0000', '90.0000', '90.0000', '3.8000', '3.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4845, '2021-06-26', 1672, 4776, 529, 10302, '10.0000', '90.0000', '90.0000', '3.8000', '3.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4846, '2021-06-26', 1672, 4776, 529, 9560, '2.0000', '90.0000', '90.0000', '3.8000', '3.8000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4847, '2021-06-26', 1409, 4777, 529, 12683, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4848, '2021-06-26', 2633, 4778, 529, 10245, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4849, '2021-06-26', 2700, 4779, 529, 12754, '1.0000', '27.9700', '27.9700', '37.0000', '37.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4850, '2021-06-26', 2324, 4780, 529, 5089, '1.0000', '10.5000', '10.5000', '14.5000', '14.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4851, '2021-06-26', 1519, 4781, 529, 11167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4852, '2021-06-26', 1667, 4782, 529, 13562, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4853, '2021-06-26', 2169, 4783, 529, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4854, '2021-06-26', 1302, 4784, 529, 3071, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4855, '2021-06-26', 2274, 4785, 529, 3114, '1.0000', '3.9800', '3.9800', '6.5000', '6.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4856, '2021-06-26', 1665, 4786, 529, 12234, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4857, '2021-06-26', 2713, 4787, 529, 12782, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4858, '2021-06-26', 2643, 4788, 529, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4859, '2021-06-26', 2161, 4789, 529, NULL, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4860, '2021-06-26', 1730, 4790, 529, 14566, '2.0000', '23.9100', '23.9100', '32.0000', '32.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4861, '2021-06-26', 1813, 4791, 529, 12729, '1.0000', '90.0000', '90.0000', '38.0000', '38.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4862, '2021-06-26', 2660, 4792, 529, 12038, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4863, '2021-06-26', 2681, 4793, 529, 12231, '1.0000', '12.4000', '12.4000', '16.5000', '16.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4864, '2021-06-26', 2810, 4794, 530, NULL, '10.0000', '2.2000', '2.2000', '2.9000', '2.9000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4865, '2021-06-26', 1426, 4795, 531, 11880, '1.0000', '36.0000', '36.0000', '47.5000', '47.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4866, '2021-06-26', 1433, 4796, 531, 13531, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4867, '2021-06-26', 2511, 4797, 531, 16706, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4868, '2021-06-26', 1425, 4798, 531, 16688, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4869, '2021-06-26', 2458, 4799, 531, 4829, '1.0000', '9.9000', '9.9000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4870, '2021-06-26', 2641, 4800, 531, 11032, '2.0000', '9.3600', '9.3600', '12.5000', '12.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4871, '2021-06-26', 2811, 4801, 531, 16713, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4872, '2021-06-26', 1410, 4802, 531, 11138, '1.0000', '2.2000', '2.2000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4873, '2021-06-26', 2279, 4803, 531, 3119, '3.0000', '2.6000', '2.6000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4874, '2021-06-26', 2655, 4804, 531, 11194, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4875, '2021-06-26', 2655, 4804, 531, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4876, '2021-06-26', 1667, 4805, 531, 13562, '2.0000', '90.0000', '90.0000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4877, '2021-06-26', 1785, 4806, 531, 14585, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4878, '2021-06-26', 2327, 4807, 531, 12241, '3.0000', '4.5000', '4.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4879, '2021-06-26', 1689, 4808, 531, 4939, '1.0000', '12.3500', '12.3500', '16.5000', '16.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4880, '2021-06-26', 1528, 4809, 531, 1535, '2.0000', '90.0000', '90.0000', '6.0000', '6.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4881, '2021-06-26', 2613, 4810, 531, 10535, '1.0000', '29.4500', '29.4500', '39.0000', '39.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4882, '2021-06-26', 1665, 4811, 531, 12234, '4.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4883, '2021-06-26', 2037, 4812, 531, NULL, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4884, '2021-06-26', 1608, 4813, 531, 11876, '1.0000', '3.3500', '3.3500', '5.5000', '5.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4885, '2021-06-26', 2221, 4814, 531, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4886, '2021-06-26', 1863, 4815, 531, 11171, '4.0000', '1.2200', '1.2200', '2.0000', '2.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4887, '2021-06-26', 2315, 4816, 531, 3069, '5.0000', '0.3300', '0.3300', '0.5000', '0.5000', '438.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4888, '2021-06-26', 1310, 4817, 531, 12051, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4889, '2021-06-26', 1415, 4818, 531, 7227, '1.0000', '14.5000', '14.5000', '19.0000', '19.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4890, '2021-06-26', 1592, 4819, 531, 13553, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4891, '2021-06-26', 2708, 4820, 531, 12725, '1.0000', '33.9600', '33.9600', '45.0000', '45.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4892, '2021-06-26', 2142, 4821, 531, NULL, '1.0000', '57.0000', '57.0000', '76.0000', '76.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4893, '2021-06-26', 2710, 4822, 531, 13629, '1.0000', '40.3000', '40.3000', '53.0000', '53.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4894, '2021-06-26', 1666, 4823, 532, 11871, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4895, '2021-06-26', 2712, 4824, 532, 12781, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '73.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4896, '2021-06-26', 1670, 4825, 532, 11394, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4897, '2021-06-26', 2270, 4826, 532, 3110, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4898, '2021-06-26', 1412, 4827, 532, 10242, '2.0000', '14.0000', '14.0000', '18.5000', '18.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4899, '2021-06-26', 1864, 4828, 532, 8425, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4900, '2021-06-26', 2256, 4829, 532, NULL, '1.0000', '12.7400', '12.7400', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4901, '2021-06-26', 2302, 4830, 532, 16711, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4902, '2021-06-26', 2372, 4831, 532, 4377, '1.0000', '17.0000', '17.0000', '22.0000', '22.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4903, '2021-06-27', 1894, 4832, 533, 5499, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4904, '2021-06-27', 1394, 4833, 533, 11024, '1.0000', '6.5000', '6.5000', '10.5000', '10.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4905, '2021-06-27', 1644, 4834, 533, 14596, '1.0000', '90.0000', '90.0000', '45.0000', '45.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4906, '2021-06-27', 1863, 4835, 533, 11171, '3.0000', '1.2200', '1.2200', '2.0000', '2.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4907, '2021-06-27', 1621, 4836, 533, 13614, '2.0000', '90.0000', '90.0000', '7.0000', '7.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4908, '2021-06-27', 2481, 4837, 533, 5193, '2.0000', '3.5000', '3.5000', '4.5000', '4.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4909, '2021-06-27', 1621, 4838, 533, 13614, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4910, '2021-06-27', 1935, 4839, 533, 16697, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4911, '2021-06-27', 2353, 4840, 533, 3878, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4912, '2021-06-27', 2545, 4841, 533, 9541, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4913, '2021-06-27', 1337, 4842, 533, 11029, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4914, '2021-06-27', 2714, 4843, 533, 12783, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4915, '2021-06-27', 1812, 4844, 533, 11858, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4916, '2021-06-27', 2034, 4845, 533, 6416, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4917, '2021-06-27', 2277, 4846, 533, 3117, '1.0000', '0.7800', '0.7800', '1.0000', '1.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4918, '2021-06-27', 2712, 4847, 533, 12781, '8.0000', '0.2600', '0.2600', '0.5000', '0.5000', '65.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4919, '2021-06-27', 2714, 4848, 533, 12783, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4920, '2021-06-27', 1736, 4849, 533, 12755, '2.0000', '26.7000', '26.7000', '38.0000', '38.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4921, '2021-06-27', 1484, 4850, 533, 1484, '1.0000', '90.0000', '90.0000', '35.0000', '35.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4922, '2021-06-27', 1411, 4851, 533, 16466, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4923, '2021-06-27', 1812, 4852, 533, 11858, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4924, '2021-06-27', 1546, 4853, 533, 12737, '2.0000', '90.0000', '90.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4925, '2021-06-27', 1546, 4853, 533, 12050, '2.0000', '90.0000', '90.0000', '4.0000', '4.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4926, '2021-06-27', 1337, 4854, 533, 11029, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4927, '2021-06-27', 1339, 4855, 533, 13568, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4928, '2021-06-27', 1650, 4856, 533, 3258, '1.0000', '14.5800', '14.5800', '19.5000', '19.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4929, '2021-06-27', 1621, 4857, 533, 13614, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4930, '2021-06-27', 2655, 4858, 534, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4931, '2021-06-27', 2712, 4859, 534, 12781, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '63.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4932, '2021-06-27', 2236, 4860, 534, 16473, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4933, '2021-06-27', 1335, 4861, 534, 12064, '5.0000', '0.8500', '0.8500', '2.0000', '2.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4934, '2021-06-27', 1649, 4862, 534, 13627, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4935, '2021-06-27', 1746, 4863, 534, NULL, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4936, '2021-06-27', 2487, 4864, 534, 5198, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4937, '2021-06-27', 2135, 4865, 534, 16486, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4938, '2021-06-27', 2104, 4866, 534, 6016, '1.0000', '0.2000', '0.2000', '1.0000', '1.0000', '138.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4939, '2021-06-27', 1910, 4867, 535, NULL, '1.0000', '1.0200', '1.0200', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4940, '2021-06-27', 2389, 4868, 535, 4394, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4941, '2021-06-27', 2687, 4869, 535, 12778, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4942, '2021-06-27', 2440, 4870, 535, 5824, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4943, '2021-06-27', 2037, 4871, 535, NULL, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4944, '2021-06-27', 2013, 4872, 535, 6433, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4945, '2021-06-27', 2013, 4872, 535, NULL, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4946, '2021-06-27', 2143, 4873, 535, NULL, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4947, '2021-06-27', 2557, 4874, 536, 12740, '2.0000', '1.0000', '1.0000', '1.5000', '1.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4948, '2021-06-27', 1635, 4875, 536, 13540, '10.0000', '90.0000', '90.0000', '17.0000', '17.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4949, '2021-06-27', 1863, 4876, 536, 11171, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4950, '2021-06-27', 2008, 4877, 536, 6439, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4951, '2021-06-27', 2005, 4878, 536, 6441, '1.0000', '2.3300', '2.3300', '3.5000', '3.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4952, '2021-06-27', 2315, 4879, 536, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '436.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4953, '2021-06-27', 2472, 4880, 536, 5093, '1.0000', '9.5000', '9.5000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4954, '2021-06-27', 2295, 4881, 537, 3134, '3.0000', '0.7000', '0.7000', '1.5000', '1.5000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4955, '2021-06-27', 2242, 4882, 537, 3066, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4956, '2021-06-27', 1999, 4883, 537, 6444, '2.0000', '6.0000', '6.0000', '7.5000', '7.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4957, '2021-06-27', 2036, 4884, 537, 4401, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4958, '2021-06-27', 2135, 4885, 537, 16486, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4959, '2021-06-27', 2425, 4886, 537, 5810, '1.0000', '24.0000', '24.0000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4960, '2021-06-27', 1502, 4887, 538, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4961, '2021-06-27', 1342, 4888, 538, 11398, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4962, '2021-06-27', 2167, 4889, 538, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4963, '2021-06-27', 2712, 4890, 539, 12781, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '61.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4964, '2021-06-27', 2713, 4891, 539, 12782, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4965, '2021-06-27', 1807, 4892, 539, 16469, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4966, '2021-06-27', 2393, 4893, 540, 4806, '2.0000', '2.0000', '2.0000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4967, '2021-06-27', 1386, 4894, 540, NULL, '2.0000', '90.0000', '90.0000', '6.0000', '6.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4968, '2021-06-28', 2681, 4895, 541, 12231, '2.0000', '12.4000', '12.4000', '16.5000', '16.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4969, '2021-06-28', 2473, 4896, 541, 10575, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4970, '2021-06-28', 2809, 4897, 541, 16386, '1.0000', '28.0000', '28.0000', '35.0000', '35.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4971, '2021-06-28', 2362, 4898, 541, 11886, '10.0000', '82.0200', '82.0200', '12.0000', '12.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4972, '2021-06-28', 1837, 4899, 541, NULL, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4973, '2021-06-28', 1310, 4900, 541, 12051, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4974, '2021-06-28', 2384, 4901, 541, 4370, '2.0000', '0.4000', '0.4000', '0.5000', '0.5000', '58.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4975, '2021-06-28', 2660, 4902, 541, 12038, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4976, '2021-06-28', 2136, 4903, 541, NULL, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4977, '2021-06-28', 2279, 4904, 541, 3119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4978, '2021-06-28', 1337, 4905, 541, NULL, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4979, '2021-06-28', 1493, 4906, 541, 13563, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4980, '2021-06-28', 1333, 4907, 541, 3372, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4981, '2021-06-28', 1905, 4908, 541, 5509, '2.0000', '0.4000', '0.4000', '1.0000', '1.0000', '85.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4982, '2021-06-28', 1807, 4909, 541, 3540, '4.0000', '1.8000', '1.8000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (4983, '2021-06-28', 2655, 4910, 541, NULL, '2.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4984, '2021-06-28', 2643, 4911, 541, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4985, '2021-06-28', 1420, 4912, 541, NULL, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4986, '2021-06-28', 1302, 4913, 541, 3071, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4987, '2021-06-28', 2274, 4914, 541, 3114, '1.0000', '3.9800', '3.9800', '6.5000', '6.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4988, '2021-06-28', 2318, 4915, 541, NULL, '20.0000', '0.5000', '0.5000', '1.0000', '1.0000', '-20.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4989, '2021-06-28', 1812, 4916, 541, 11858, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4990, '2021-06-28', 1910, 4917, 541, NULL, '1.0000', '1.0200', '1.0200', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4991, '2021-06-28', 1432, 4918, 541, 13527, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4992, '2021-06-28', 1995, 4919, 542, 6448, '1.0000', '8.5000', '8.5000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4993, '2021-06-28', 2249, 4920, 542, 3088, '2.0000', '2.5000', '2.5000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4994, '2021-06-28', 2428, 4921, 542, 5814, '1.0000', '11.0000', '11.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4995, '2021-06-28', 2169, 4922, 542, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4996, '2021-06-28', 1365, 4923, 542, 3405, '1.0000', '38.9800', '38.9800', '51.5000', '51.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4997, '2021-06-28', 2302, 4924, 542, 16711, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4998, '2021-06-28', 2169, 4925, 542, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (4999, '2021-06-28', 1580, 4926, 542, 9446, '3.0000', '0.9900', '0.9900', '1.5000', '1.5000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5000, '2021-06-28', 1324, 4927, 543, 3363, '1.0000', '90.0000', '90.0000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5001, '2021-06-28', 1904, 4928, 544, 12070, '3.0000', '90.0000', '90.0000', '1.0000', '1.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5002, '2021-06-28', 1305, 4929, 544, 3072, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5003, '2021-06-28', 1810, 4930, 544, 13541, '1.0000', '8.0500', '8.0500', '11.0000', '11.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5004, '2021-06-28', 2714, 4931, 544, 12783, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5005, '2021-06-28', 2693, 4932, 544, 13615, '1.0000', '25.0100', '25.0100', '33.0000', '33.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5006, '2021-06-28', 1831, 4933, 544, 12674, '1.0000', '90.0000', '90.0000', '11.5000', '11.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5007, '2021-06-28', 2643, 4934, 544, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5008, '2021-06-28', 2263, 4935, 544, 13623, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5009, '2021-06-28', 1440, 4936, 544, 11882, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5010, '2021-06-28', 2713, 4937, 544, 12782, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5011, '2021-06-28', 1499, 4938, 544, 1502, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5012, '2021-06-28', 1839, 4939, 544, 16472, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5013, '2021-06-28', 1837, 4940, 544, NULL, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5014, '2021-06-28', 2262, 4941, 544, 3103, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5015, '2021-06-28', 1672, 4942, 544, 9560, '6.0000', '90.0000', '90.0000', '3.8000', '3.8000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5016, '2021-06-28', 2512, 4943, 544, 7520, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5017, '2021-06-28', 2233, 4944, 544, 16470, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5018, '2021-06-28', 1791, 4945, 544, 4926, '1.0000', '90.0000', '90.0000', '18.5000', '18.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5019, '2021-06-28', 1371, 4946, 544, 11403, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5020, '2021-06-28', 2655, 4947, 544, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5021, '2021-06-28', 2713, 4948, 544, 12782, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5022, '2021-06-28', 2230, 4949, 545, 1708, '1.0000', '43.5000', '43.5000', '46.0000', '46.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5023, '2021-06-28', 2343, 4950, 545, 3888, '1.0000', '36.2500', '36.2500', '51.0000', '51.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5024, '2021-06-28', 1961, 4951, 545, 12728, '1.0000', '16.3900', '16.3900', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5025, '2021-06-28', 2302, 4952, 545, 16711, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5026, '2021-06-28', 2660, 4953, 545, 12038, '10.0000', '0.7000', '0.7000', '1.0000', '1.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5027, '2021-06-28', 1381, 4954, 545, 3424, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5028, '2021-06-28', 2461, 4955, 545, NULL, '1.0000', '8.6400', '8.6400', '11.0000', '11.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5029, '2021-06-28', 1529, 4956, 545, 16468, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5030, '2021-06-28', 1710, 4957, 545, 9477, '1.0000', '3.4300', '3.4300', '4.5000', '4.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5031, '2021-06-28', 2272, 4958, 545, 14563, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5032, '2021-06-28', 2622, 4959, 545, 12243, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5033, '2021-06-28', 1605, 4960, 545, NULL, '1.0000', '24.8500', '24.8500', '39.0000', '39.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5034, '2021-06-28', 1958, 4961, 545, 4919, '1.0000', '54.0000', '54.0000', '71.0000', '71.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5035, '2021-06-28', 1504, 4962, 545, 16696, '2.0000', '90.0000', '90.0000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5036, '2021-06-28', 1504, 4962, 545, 1507, '18.0000', '90.0000', '90.0000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5037, '2021-06-28', 2240, 4963, 545, 3144, '1.0000', '33.0000', '33.0000', '49.0000', '49.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5038, '2021-06-28', 1602, 4964, 545, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5039, '2021-06-28', 1700, 4965, 545, 14580, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5040, '2021-06-28', 1863, 4966, 545, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5041, '2021-06-28', 1585, 4967, 545, 12381, '1.0000', '8.9900', '8.9900', '17.5000', '17.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5042, '2021-06-28', 1605, 4968, 545, NULL, '1.0000', '24.8500', '24.8500', '39.0000', '39.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5043, '2021-06-28', 2726, 4969, 545, 13621, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5044, '2021-06-28', 1640, 4970, 545, 3267, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5045, '2021-06-28', 2655, 4971, 545, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5046, '2021-06-28', 1863, 4972, 545, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5047, '2021-06-28', 2380, 4973, 545, 13528, '2.0000', '37.9000', '37.9000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5048, '2021-06-28', 2285, 4974, 545, 16761, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5049, '2021-06-28', 2803, 4975, 545, 16756, '1.0000', '8.0200', '8.0200', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5050, '2021-06-28', 2726, 4976, 546, 13621, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5051, '2021-06-28', 2643, 4977, 546, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5052, '2021-06-28', 2622, 4978, 546, 12243, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5053, '2021-06-28', 2487, 4979, 546, 5198, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5054, '2021-06-28', 1339, 4980, 546, 13568, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5055, '2021-06-28', 2643, 4981, 546, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5056, '2021-06-28', 1314, 4982, 546, 3076, '2.0000', '1.2000', '1.2000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5057, '2021-06-28', 1941, 4983, 546, 5601, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5058, '2021-06-28', 2315, 4984, 546, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '434.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5059, '2021-06-28', 2302, 4985, 546, 16711, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5060, '2021-06-28', 1876, 4986, 546, 11176, '1.0000', '90.0000', '90.0000', '34.0000', '34.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5061, '2021-06-28', 2422, 4987, 547, 5807, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5062, '2021-06-28', 1665, 4988, 548, 10540, '3.0000', '1.3000', '1.3000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5063, '2021-06-29', 2307, 4989, 549, 3140, '1.0000', '140.0000', '140.0000', '180.0000', '180.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5064, '2021-06-29', 1595, 4990, 549, 10320, '1.0000', '18.6100', '18.6100', '28.0000', '28.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5065, '2021-06-29', 2570, 4991, 549, 7215, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5066, '2021-06-29', 2269, 4992, 549, 3109, '1.0000', '4.9800', '4.9800', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5067, '2021-06-29', 1452, 4993, 549, 5632, '1.0000', '1.2300', '1.2300', '2.0000', '2.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5068, '2021-06-29', 2824, 4994, 549, 16930, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5069, '2021-06-29', 1365, 4995, 549, 16917, '1.0000', '38.9800', '38.9800', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5070, '2021-06-29', 2569, 4996, 549, 7214, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5071, '2021-06-29', 1603, 4997, 549, 16916, '1.0000', '55.1600', '55.1600', '78.5000', '78.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5072, '2021-06-29', 1505, 4998, 549, 12387, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5073, '2021-06-29', 2713, 4999, 549, 12782, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5074, '2021-06-29', 1668, 5000, 549, 16913, '1.0000', '90.0000', '90.0000', '17.5000', '17.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5075, '2021-06-29', 1867, 5001, 549, 4996, '1.0000', '10.0500', '10.0500', '13.0000', '13.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5076, '2021-06-29', 1368, 5002, 549, 3411, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5077, '2021-06-29', 1523, 5003, 549, 11170, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5078, '2021-06-29', 1592, 5004, 549, 13553, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5079, '2021-06-29', 1790, 5005, 549, 4927, '1.0000', '90.0000', '90.0000', '22.0000', '22.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5080, '2021-06-29', 2825, 5006, 549, 16939, '20.0000', '12.0000', '12.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5081, '2021-06-29', 1783, 5007, 549, 14570, '3.0000', '90.0000', '90.0000', '11.0000', '11.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5082, '2021-06-29', 1620, 5008, 549, NULL, '4.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5083, '2021-06-29', 2167, 5009, 549, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5084, '2021-06-29', 2662, 5010, 549, 12037, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5085, '2021-06-29', 1501, 5011, 549, 12679, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5086, '2021-06-29', 2104, 5012, 549, 6016, '1.0000', '0.2000', '0.2000', '1.0000', '1.0000', '137.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5087, '2021-06-29', 1592, 5013, 549, 13553, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5088, '2021-06-29', 1574, 5014, 549, 9451, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5089, '2021-06-29', 2452, 5015, 549, 11137, '2.0000', '2.5000', '2.5000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5090, '2021-06-29', 1396, 5016, 549, NULL, '3.0000', '2.7000', '2.7000', '3.5000', '3.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5091, '2021-06-29', 1342, 5017, 550, 11398, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5092, '2021-06-29', 1851, 5018, 550, 14581, '1.0000', '11.5600', '11.5600', '16.5000', '16.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5093, '2021-06-29', 2169, 5019, 550, 11899, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5094, '2021-06-29', 2435, 5020, 550, 5839, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5095, '2021-06-29', 1678, 5021, 550, 12389, '1.0000', '90.0000', '90.0000', '34.0000', '34.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5096, '2021-06-29', 1602, 5022, 550, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5097, '2021-06-29', 1523, 5023, 550, 11170, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5098, '2021-06-29', 1347, 5024, 550, NULL, '6.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5099, '2021-06-29', 2089, 5025, 550, 11034, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5100, '2021-06-29', 1670, 5026, 550, 11394, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5101, '2021-06-29', 2582, 5027, 550, 13544, '1.0000', '11.5000', '11.5000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5102, '2021-06-29', 2086, 5028, 550, 9423, '1.0000', '4.3200', '4.3200', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5103, '2021-06-29', 2491, 5029, 550, 12239, '1.0000', '12.2000', '12.2000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5104, '2021-06-29', 1787, 5030, 550, 4930, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5105, '2021-06-29', 1837, 5031, 550, NULL, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5106, '2021-06-29', 2085, 5032, 550, 12053, '10.0000', '13.3400', '13.3400', '1.8000', '1.8000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5107, '2021-06-29', 1863, 5033, 550, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5108, '2021-06-29', 1347, 5034, 550, NULL, '4.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5109, '2021-06-29', 2135, 5035, 550, 16893, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5110, '2021-06-29', 1340, 5036, 550, 13569, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5111, '2021-06-29', 2660, 5037, 550, 12038, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5112, '2021-06-29', 1533, 5038, 550, 10385, '1.0000', '3.0500', '3.0500', '4.5000', '4.5000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5113, '2021-06-29', 1650, 5039, 550, 3258, '1.0000', '14.5800', '14.5800', '19.5000', '19.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5114, '2021-06-29', 2315, 5040, 550, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '432.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5115, '2021-06-29', 2280, 5041, 550, 3120, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5116, '2021-06-29', 1591, 5042, 550, 13634, '1.0000', '90.0000', '90.0000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5117, '2021-06-29', 2673, 5043, 550, 11868, '1.0000', '11.0000', '11.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5118, '2021-06-29', 2336, 5044, 550, 3895, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5119, '2021-06-29', 2004, 5045, 550, NULL, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5120, '2021-06-29', 1695, 5046, 551, 13533, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5121, '2021-06-29', 2265, 5047, 551, 3105, '1.0000', '28.0000', '28.0000', '38.0000', '38.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5122, '2021-06-29', 1846, 5048, 551, 16760, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5123, '2021-06-29', 2486, 5049, 551, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5124, '2021-06-29', 1863, 5050, 551, 11171, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5125, '2021-06-29', 1908, 5051, 551, 5510, '2.0000', '1.7500', '1.7500', '1.0000', '1.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5126, '2021-06-29', 1812, 5052, 551, 11858, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5127, '2021-06-29', 1368, 5053, 551, 3411, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5128, '2021-06-29', 2660, 5054, 551, 12038, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5129, '2021-06-29', 1505, 5055, 551, 12387, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5130, '2021-06-29', 1506, 5056, 552, 1509, '1.0000', '90.0000', '90.0000', '21.5000', '21.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5131, '2021-06-29', 2233, 5057, 552, 16910, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5132, '2021-06-29', 1863, 5058, 552, 17076, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5133, '2021-06-29', 1602, 5059, 552, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5134, '2021-06-29', 2325, 5060, 552, 5088, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5135, '2021-06-29', 1642, 5061, 552, 2177, '1.0000', '90.0000', '90.0000', '41.0000', '41.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5136, '2021-06-29', 1640, 5062, 552, 6789, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5137, '2021-06-29', 2248, 5063, 552, 3087, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5138, '2021-06-30', 1504, 5064, 553, 1507, '2.0000', '90.0000', '90.0000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5139, '2021-06-30', 1649, 5065, 553, 13627, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5140, '2021-06-30', 2566, 5066, 553, 7202, '1.0000', '16.0000', '16.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5141, '2021-06-30', 1303, 5067, 553, 9576, '-4.0000', '1.3800', '1.3800', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5142, '2021-06-30', 1303, 5067, 553, 9576, '-4.0000', '1.3800', '1.3800', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5143, '2021-06-30', 1303, 5067, 553, 2657, '8.0000', '1.3800', '1.3800', '4.0000', '4.0000', '138.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5144, '2021-06-30', 2622, 5068, 554, 12243, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5145, '2021-06-30', 1504, 5069, 555, 1507, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5146, '2021-06-30', 1649, 5070, 555, 13627, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5147, '2021-06-30', 2566, 5071, 555, 7202, '1.0000', '16.0000', '16.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5148, '2021-06-30', 1303, 5072, 555, NULL, '4.0000', '1.3800', '1.3800', '4.0000', '4.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5149, '2021-06-30', 2622, 5073, 555, 12243, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5150, '2021-06-30', 2399, 5074, 555, 5373, '1.0000', '8.5000', '8.5000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5151, '2021-06-30', 2277, 5075, 555, 3117, '2.0000', '0.7800', '0.7800', '1.0000', '1.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5152, '2021-06-30', 1754, 5076, 555, 17309, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5153, '2021-06-30', 2092, 5077, 555, 4982, '1.0000', '4.1500', '4.1500', '5.5000', '5.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5154, '2021-06-30', 2615, 5078, 555, 14562, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5155, '2021-06-30', 2036, 5079, 555, 4401, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5156, '2021-06-30', 1630, 5080, 555, 14592, '1.0000', '16.7400', '16.7400', '22.5000', '22.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5157, '2021-06-30', 1812, 5081, 555, 17047, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5158, '2021-06-30', 1621, 5082, 555, 13614, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5159, '2021-06-30', 2135, 5083, 555, 16893, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5160, '2021-06-30', 1425, 5084, 555, 16688, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5161, '2021-06-30', 2169, 5085, 555, 17316, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5162, '2021-06-30', 1473, 5086, 555, NULL, '1.0000', '90.0000', '90.0000', '30.0000', '30.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5163, '2021-06-30', 1916, 5087, 555, 5511, '1.0000', '8.2300', '8.2300', '11.0000', '11.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5164, '2021-06-30', 2284, 5088, 555, 3124, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5165, '2021-06-30', 1779, 5089, 555, 4938, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '77.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5166, '2021-06-30', 2254, 5090, 555, 16707, '1.0000', '17.9400', '17.9400', '24.0000', '24.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5167, '2021-06-30', 1765, 5091, 555, 3178, '1.0000', '5.3900', '5.3900', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5168, '2021-06-30', 2651, 5092, 555, 11102, '1.0000', '10.7500', '10.7500', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5169, '2021-06-30', 2346, 5093, 555, 3885, '1.0000', '5.5000', '5.5000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5170, '2021-06-30', 2603, 5094, 555, 15794, '1.0000', '1.0000', '1.0000', '1.3000', '1.3000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5171, '2021-06-30', 2362, 5095, 556, 11886, '10.0000', '82.0200', '82.0200', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5172, '2021-06-30', 2362, 5095, 556, 9545, '2.0000', '82.0200', '82.0200', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5173, '2021-06-30', 2362, 5095, 556, 9559, '2.0000', '82.0200', '82.0200', '12.0000', '12.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5174, '2021-06-30', 2285, 5096, 556, 16761, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5175, '2021-06-30', 2479, 5097, 556, 5192, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5176, '2021-06-30', 2317, 5098, 556, 15799, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5177, '2021-06-30', 2157, 5099, 556, 5900, '2.0000', '0.9800', '0.9800', '2.5000', '2.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5178, '2021-06-30', 2221, 5100, 556, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5179, '2021-06-30', 1374, 5101, 557, 11007, '2.0000', '55.5900', '55.5900', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5180, '2021-06-30', 2221, 5102, 557, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5181, '2021-06-30', 1875, 5103, 557, 17320, '20.0000', '90.0000', '90.0000', '3.6000', '3.6000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5182, '2021-06-30', 1688, 5104, 557, 4940, '1.0000', '16.9900', '16.9900', '24.0000', '24.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5183, '2021-06-30', 2342, 5105, 557, 13625, '6.0000', '1.8600', '1.8600', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5184, '2021-06-30', 2342, 5105, 557, 13626, '4.0000', '1.8600', '1.8600', '2.5000', '2.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5185, '2021-06-30', 1701, 5106, 557, 2464, '1.0000', '14.7800', '14.7800', '19.5000', '19.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5186, '2021-06-30', 2283, 5107, 557, 3123, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5187, '2021-06-30', 2512, 5108, 557, 7520, '1.0000', '20.0000', '20.0000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5188, '2021-06-30', 2625, 5109, 557, 11870, '1.0000', '17.0000', '17.0000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5189, '2021-06-30', 1656, 5110, 557, 3252, '1.0000', '90.0000', '90.0000', '19.0000', '19.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5190, '2021-06-30', 1450, 5111, 557, NULL, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5191, '2021-06-30', 1620, 5112, 557, NULL, '4.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5192, '2021-06-30', 2026, 5113, 557, 6424, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5193, '2021-06-30', 2476, 5114, 557, 5189, '1.0000', '10.0000', '10.0000', '12.0000', '12.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5194, '2021-06-30', 2240, 5115, 557, 3144, '1.0000', '33.0000', '33.0000', '49.0000', '49.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5195, '2021-06-30', 1585, 5116, 557, 12381, '1.0000', '8.9900', '8.9900', '17.5000', '17.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5196, '2021-06-30', 2379, 5117, 557, 11400, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5197, '2021-06-30', 1863, 5118, 557, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '74.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5198, '2021-06-30', 2584, 5119, 557, 8156, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5199, '2021-06-30', 2567, 5120, 557, 7200, '1.0000', '33.0000', '33.0000', '36.0000', '36.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5200, '2021-06-30', 1342, 5121, 557, 11398, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5201, '2021-06-30', 2342, 5122, 557, 13625, '6.0000', '1.8600', '1.8600', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5202, '2021-06-30', 2342, 5122, 557, 13626, '4.0000', '1.8600', '1.8600', '2.5000', '2.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5203, '2021-06-30', 2808, 5123, 557, 16895, '2.0000', '39.0000', '39.0000', '51.0000', '51.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5204, '2021-06-30', 1888, 5124, 557, NULL, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5205, '2021-06-30', 1371, 5125, 557, 17072, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5206, '2021-06-30', 1310, 5126, 557, 12051, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5207, '2021-06-30', 1942, 5127, 557, 5600, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5208, '2021-06-30', 1704, 5128, 557, 11889, '1.0000', '90.0000', '90.0000', '35.5000', '35.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5209, '2021-06-30', 1523, 5129, 557, 11170, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5210, '2021-06-30', 1620, 5130, 557, NULL, '4.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5211, '2021-06-30', 1336, 5131, 557, 3375, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5212, '2021-06-30', 2662, 5132, 557, 12037, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5213, '2021-06-30', 2714, 5133, 557, 12783, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5214, '2021-06-30', 1411, 5134, 557, 16914, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5215, '2021-06-30', 1863, 5135, 558, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '73.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5216, '2021-06-30', 2815, 5136, 558, 16763, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5217, '2021-06-30', 1654, 5137, 558, 14583, '1.0000', '90.0000', '90.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5218, '2021-06-30', 1310, 5138, 558, 12051, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5219, '2021-06-30', 2565, 5139, 558, 7198, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5220, '2021-06-30', 1618, 5140, 558, 17040, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5221, '2021-06-30', 2105, 5141, 558, 6017, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5222, '2021-06-30', 2270, 5142, 558, 3110, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5223, '2021-06-30', 1672, 5143, 559, 17044, '14.0000', '90.0000', '90.0000', '3.9000', '3.9000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5224, '2021-06-30', 1349, 5144, 560, 16898, '1.0000', '32.5000', '32.5000', '46.0000', '46.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5225, '2021-06-30', 1812, 5145, 561, 17047, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5226, '2021-06-30', 2660, 5146, 561, 12038, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5227, '2021-06-30', 1504, 5147, 561, 1507, '9.0000', '90.0000', '90.0000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5228, '2021-06-30', 1504, 5147, 561, NULL, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5229, '2021-06-30', 1935, 5148, 561, 16697, '2.0000', '90.0000', '90.0000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5230, '2021-07-01', 1665, 5149, 562, 17035, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5231, '2021-07-01', 1640, 5150, 562, 6789, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5232, '2021-07-01', 2288, 5151, 562, 9544, '1.0000', '7.5900', '7.5900', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5233, '2021-07-01', 1905, 5152, 562, 5509, '1.0000', '0.4000', '0.4000', '1.0000', '1.0000', '84.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5234, '2021-07-01', 2854, 5153, 562, 17370, '1.0000', '8.9500', '8.9500', '12.0000', '12.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5235, '2021-07-01', 1819, 5154, 562, 4955, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5236, '2021-07-01', 2237, 5155, 562, 3083, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5237, '2021-07-01', 2697, 5156, 562, NULL, '2.0000', '3.0000', '3.0000', '5.0000', '5.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5238, '2021-07-01', 1935, 5157, 562, 16697, '2.0000', '90.0000', '90.0000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5239, '2021-07-01', 1935, 5157, 562, 16698, '3.0000', '90.0000', '90.0000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5240, '2021-07-01', 2221, 5158, 562, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5241, '2021-07-01', 1371, 5159, 562, 17072, '2.0000', '90.0000', '90.0000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5242, '2021-07-01', 1562, 5160, 562, 1669, '2.0000', '5.1300', '5.1300', '7.0000', '7.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5243, '2021-07-01', 2384, 5161, 562, 4370, '2.0000', '0.4000', '0.4000', '0.5000', '0.5000', '56.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5244, '2021-07-01', 1602, 5162, 562, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5245, '2021-07-01', 1954, 5163, 562, 3408, '2.0000', '25.0000', '25.0000', '1.0000', '1.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5246, '2021-07-01', 2352, 5164, 562, 17324, '6.0000', '20.0000', '20.0000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5247, '2021-07-01', 2352, 5164, 562, 17082, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5248, '2021-07-01', 1303, 5165, 562, 9576, '-4.0000', '1.3800', '1.3800', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5249, '2021-07-01', 1303, 5165, 562, 9576, '-4.0000', '1.3800', '1.3800', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5250, '2021-07-01', 1303, 5165, 562, 2657, '16.0000', '1.3800', '1.3800', '4.0000', '4.0000', '122.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5251, '2021-07-01', 2442, 5166, 562, 5827, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5252, '2021-07-01', 1602, 5167, 562, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5253, '2021-07-01', 2169, 5168, 562, 17316, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5254, '2021-07-01', 2286, 5169, 562, 3126, '2.0000', '4.3000', '4.3000', '6.0000', '6.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5255, '2021-07-01', 2414, 5170, 562, 4826, '2.0000', '3.4000', '3.4000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5256, '2021-07-01', 2340, 5171, 562, 4841, '1.0000', '4.2000', '4.2000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5257, '2021-07-01', 2545, 5172, 562, NULL, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5258, '2021-07-01', 2298, 5173, 562, 12736, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5259, '2021-07-01', 1337, 5174, 562, 17039, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5260, '2021-07-01', 2215, 5175, 562, 8160, '1.0000', '12.0000', '12.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5261, '2021-07-01', 1602, 5176, 563, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5262, '2021-07-01', 2714, 5177, 564, 12783, '6.0000', '0.9000', '0.9000', '1.5000', '1.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5263, '2021-07-01', 1303, 5178, 564, NULL, '2.0000', '1.3800', '1.3800', '4.0000', '4.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5264, '2021-07-01', 2221, 5179, 565, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5265, '2021-07-01', 1748, 5180, 565, 1527, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5266, '2021-07-01', 1841, 5181, 565, 4974, '3.0000', '0.3700', '0.3700', '0.5000', '0.5000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5267, '2021-07-01', 1701, 5182, 565, 2464, '1.0000', '14.7800', '14.7800', '19.5000', '19.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5268, '2021-07-01', 2169, 5183, 565, 17316, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5269, '2021-07-01', 2259, 5184, 565, 12382, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5270, '2021-07-01', 1761, 5185, 565, 3182, '2.0000', '1.8200', '1.8200', '3.0000', '3.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5271, '2021-07-01', 2557, 5186, 565, 12740, '2.0000', '1.0000', '1.0000', '1.5000', '1.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5272, '2021-07-01', 1589, 5187, 565, 9438, '1.0000', '90.0000', '90.0000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5273, '2021-07-01', 1415, 5188, 565, 7227, '1.0000', '14.5000', '14.5000', '19.0000', '19.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5274, '2021-07-01', 2142, 5189, 565, NULL, '1.0000', '57.0000', '57.0000', '76.0000', '76.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5275, '2021-07-01', 1839, 5190, 565, 17317, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5276, '2021-07-01', 1602, 5191, 565, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5277, '2021-07-01', 1678, 5192, 565, 12389, '1.0000', '90.0000', '90.0000', '34.0000', '34.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5278, '2021-07-01', 2250, 5193, 565, 16902, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5279, '2021-07-01', 1424, 5194, 565, NULL, '1.0000', '30.0000', '30.0000', '39.5000', '39.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5280, '2021-07-01', 2178, 5195, 566, NULL, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5281, '2021-07-01', 1619, 5196, 566, 10541, '2.0000', '9.8500', '9.8500', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5282, '2021-07-01', 1504, 5197, 566, NULL, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5283, '2021-07-01', 2315, 5198, 566, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '430.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5284, '2021-07-01', 2167, 5199, 566, 17315, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5285, '2021-07-01', 1943, 5200, 566, 5599, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5286, '2021-07-01', 1665, 5201, 566, 17035, '5.0000', '1.3000', '1.3000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5287, '2021-07-01', 1863, 5202, 566, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '72.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5288, '2021-07-01', 1602, 5203, 566, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5289, '2021-07-01', 1505, 5204, 566, 10395, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5290, '2021-07-01', 1695, 5205, 566, 13533, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5291, '2021-07-01', 2759, 5206, 566, NULL, '1.0000', '3.9500', '3.9500', '5.5000', '5.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5292, '2021-07-01', 1900, 5207, 566, 3537, '10.0000', '2.4600', '2.4600', '3.3000', '3.3000', '60.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5293, '2021-07-02', 2445, 5208, 567, 10602, '10.0000', '3.2000', '3.2000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5294, '2021-07-02', 2285, 5209, 567, 17360, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5295, '2021-07-02', 1511, 5210, 568, 13620, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5296, '2021-07-02', 1347, 5211, 568, NULL, '10.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5297, '2021-07-02', 2780, 5212, 568, 16174, '1.0000', '52.0200', '52.0200', '110.0000', '110.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5298, '2021-07-02', 2285, 5213, 568, 17360, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5299, '2021-07-02', 1371, 5214, 568, 17072, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5300, '2021-07-02', 1555, 5215, 568, 4920, '1.0000', '90.0000', '90.0000', '29.0000', '29.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5301, '2021-07-02', 2681, 5216, 568, 12231, '1.0000', '12.4000', '12.4000', '16.5000', '16.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5302, '2021-07-02', 1670, 5217, 568, 11040, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5303, '2021-07-02', 1347, 5218, 568, NULL, '3.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5304, '2021-07-02', 2712, 5219, 568, 12781, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '60.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5305, '2021-07-02', 1406, 5220, 568, 11018, '1.0000', '16.8000', '16.8000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5306, '2021-07-02', 1407, 5221, 568, 10404, '1.0000', '16.8000', '16.8000', '22.5000', '22.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5307, '2021-07-02', 2260, 5222, 568, 12238, '6.0000', '4.2000', '4.2000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5308, '2021-07-02', 1602, 5223, 568, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5309, '2021-07-02', 1822, 5224, 568, 12682, '4.0000', '2.4000', '2.4000', '3.0000', '3.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5310, '2021-07-02', 1851, 5225, 568, 9462, '1.0000', '11.5600', '11.5600', '16.5000', '16.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5311, '2021-07-02', 1368, 5226, 568, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5312, '2021-07-02', 2169, 5227, 568, 17316, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5313, '2021-07-02', 1630, 5228, 568, 14592, '1.0000', '16.7400', '16.7400', '22.5000', '22.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5314, '2021-07-02', 1650, 5229, 568, 3258, '1.0000', '14.5800', '14.5800', '19.5000', '19.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5315, '2021-07-02', 1368, 5230, 568, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5316, '2021-07-02', 2485, 5231, 568, 5197, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5317, '2021-07-02', 2352, 5232, 568, 17082, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5318, '2021-07-02', 2851, 5233, 568, 17329, '2.0000', '44.0000', '44.0000', '58.0000', '58.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5319, '2021-07-02', 2058, 5234, 568, 7513, '1.0000', '10.0000', '10.0000', '40.0000', '40.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5320, '2021-07-02', 1665, 5235, 569, 17016, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5321, '2021-07-02', 1602, 5236, 569, 15831, '1.0000', '6.9978', '6.9978', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5322, '2021-07-02', 2657, 5237, 569, NULL, '1.0000', '5.4200', '5.4200', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5323, '2021-07-02', 2289, 5238, 569, NULL, '2.0000', '0.2300', '0.2300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5324, '2021-07-02', 2083, 5239, 570, 1662, '2.0000', '0.5800', '0.5800', '1.0000', '1.0000', '98.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5325, '2021-07-02', 2855, 5240, 571, 17385, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5326, '2021-07-02', 2135, 5241, 572, NULL, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5327, '2021-07-02', 2712, 5242, 572, NULL, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5328, '2021-07-02', 2272, 5243, 572, NULL, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5329, '2021-07-02', 1501, 5244, 572, 15939, '1.0000', '2.0500', '2.0500', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5330, '2021-07-02', 2777, 5245, 572, NULL, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5331, '2021-07-02', 2816, 5246, 572, NULL, '6.0000', '0.8000', '0.8000', '1.0000', '1.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5332, '2021-07-02', 2302, 5247, 572, NULL, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5333, '2021-07-02', 1523, 5248, 572, 13487, '1.0000', '60.5025', '60.5025', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5334, '2021-07-02', 1310, 5249, 572, NULL, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5335, '2021-07-02', 1620, 5250, 572, 17299, '4.0000', '351.1827', '351.1827', '3.0000', '3.0000', '46.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5336, '2021-07-02', 1665, 5251, 572, 17016, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5337, '2021-07-02', 2280, 5252, 572, 2940, '-1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5338, '2021-07-02', 2280, 5252, 572, NULL, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5339, '2021-07-02', 1863, 5253, 572, 10808, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '62.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5340, '2021-07-02', 2511, 5254, 572, NULL, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5341, '2021-07-02', 2352, 5255, 572, NULL, '7.0000', '20.0000', '20.0000', '26.0000', '26.0000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5342, '2021-07-02', 1479, 5256, 572, NULL, '1.0000', '90.0000', '90.0000', '56.0000', '56.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5343, '2021-07-02', 2360, 5257, 572, 16891, '1.0000', '0.5200', '0.5200', '0.6900', '0.6900', '13.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5344, '2021-07-02', 1756, 5258, 572, 3166, '-2.0000', '90.0000', '90.0000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5345, '2021-07-02', 1756, 5258, 572, NULL, '4.0000', '90.0000', '90.0000', '6.5000', '6.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5346, '2021-07-02', 2314, 5259, 572, NULL, '1.0000', '3.9000', '3.9000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5347, '2021-07-02', 1864, 5260, 572, NULL, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5348, '2021-07-02', 1616, 5261, 572, 15915, '1.0000', '6.8900', '6.8900', '7.5000', '7.5000', '99.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5349, '2021-07-02', 2655, 5262, 572, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5350, '2021-07-02', 1307, 5263, 572, 15936, '1.0000', '75.1637', '75.1637', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5351, '2021-07-02', 1519, 5264, 572, 15941, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5352, '2021-07-02', 2712, 5265, 572, NULL, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5353, '2021-07-02', 2411, 5266, 572, 15913, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5354, '2021-07-02', 1425, 5267, 572, NULL, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5355, '2021-07-02', 2342, 5268, 572, 3845, '-10.0000', '1.8600', '1.8600', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5356, '2021-07-02', 2342, 5268, 572, NULL, '20.0000', '1.8600', '1.8600', '2.5000', '2.5000', '-20.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5357, '2021-07-02', 1700, 5269, 572, 15863, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5358, '2021-07-02', 2315, 5270, 572, 2735, '-1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5359, '2021-07-02', 2315, 5270, 572, NULL, '7.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5360, '2021-07-02', 1837, 5271, 572, NULL, '2.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5361, '2021-07-02', 2228, 5272, 572, NULL, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5362, '2021-07-02', 2816, 5273, 572, NULL, '6.0000', '0.8000', '0.8000', '1.0000', '1.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5363, '2021-07-02', 2020, 5274, 573, 16689, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5364, '2021-07-02', 2294, 5275, 573, 11045, '1.0000', '3.5000', '3.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5365, '2021-07-02', 2439, 5276, 573, 5823, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5366, '2021-07-02', 2577, 5277, 573, 7495, '1.0000', '20.0000', '20.0000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5367, '2021-07-02', 2405, 5278, 573, NULL, '2.0000', '1.2000', '1.2000', '1.6000', '1.6000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5368, '2021-07-02', 2007, 5279, 573, 6438, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5369, '2021-07-02', 2286, 5280, 573, 3126, '2.0000', '4.3000', '4.3000', '6.5000', '6.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5370, '2021-07-02', 1987, 5281, 573, 6456, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5371, '2021-07-02', 2685, 5282, 574, NULL, '1.0000', '35.0000', '35.0000', '45.0000', '45.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5372, '2021-07-02', 2712, 5283, 575, NULL, '4.0000', '0.2600', '0.2600', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5373, '2021-07-02', 2568, 5284, 575, NULL, '6.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5374, '2021-07-02', 2714, 5285, 575, 12769, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5375, '2021-07-03', 1812, 5286, 576, 17047, '5.0000', '7.8900', '7.8900', '10.5000', '10.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5376, '2021-07-03', 1863, 5287, 576, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '71.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5377, '2021-07-03', 1483, 5288, 576, 1485, '1.0000', '90.0000', '90.0000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5378, '2021-07-03', 2316, 5289, 576, 17381, '1.0000', '44.0000', '44.0000', '48.0000', '48.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5379, '2021-07-03', 2714, 5290, 576, 12783, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5380, '2021-07-03', 2259, 5291, 576, 12382, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5381, '2021-07-03', 2260, 5292, 576, 12238, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5382, '2021-07-03', 1539, 5293, 576, 1544, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5383, '2021-07-03', 2766, 5294, 576, NULL, '1.0000', '16.0000', '16.0000', '21.0000', '21.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5384, '2021-07-03', 1409, 5295, 576, 12683, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5385, '2021-07-03', 1420, 5296, 577, NULL, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5386, '2021-07-03', 1863, 5297, 577, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '70.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5387, '2021-07-03', 2850, 5298, 577, 17313, '2.0000', '10.0000', '10.0000', '13.0000', '13.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5388, '2021-07-03', 1541, 5299, 577, 17050, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5389, '2021-07-03', 2243, 5300, 577, 3065, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5390, '2021-07-03', 2105, 5301, 577, 6017, '3.0000', '1.3500', '1.3500', '3.0000', '3.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5391, '2021-07-03', 1543, 5302, 577, 11178, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5392, '2021-07-03', 1863, 5303, 577, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '70.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5393, '2021-07-03', 2662, 5304, 577, 12037, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5394, '2021-07-03', 2060, 5305, 577, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5395, '2021-07-03', 1411, 5306, 577, 13570, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5396, '2021-07-03', 2568, 5307, 577, 7213, '9.0000', '0.3300', '0.3300', '0.2500', '0.2500', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5397, '2021-07-03', 2568, 5307, 577, NULL, '11.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-11.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5398, '2021-07-03', 2741, 5308, 577, 16783, '1.0000', '40.6400', '40.6400', '64.0000', '64.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5399, '2021-07-03', 1620, 5309, 577, NULL, '8.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-8.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5400, '2021-07-03', 1695, 5310, 577, 17449, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5401, '2021-07-03', 1399, 5311, 577, 9568, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5402, '2021-07-03', 1310, 5312, 577, 12051, '10.0000', '0.3700', '0.3700', '0.5000', '0.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5403, '2021-07-03', 2221, 5313, 577, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5404, '2021-07-03', 2829, 5314, 577, 16965, '1.0000', '23.8700', '23.8700', '32.0000', '32.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5405, '2021-07-03', 2481, 5315, 577, 5193, '1.0000', '3.5000', '3.5000', '4.5000', '4.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5406, '2021-07-03', 1641, 5316, 577, 17454, '6.0000', '90.0000', '90.0000', '1.3000', '1.3000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5407, '2021-07-03', 1812, 5317, 577, 17047, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5408, '2021-07-03', 2302, 5318, 577, 17328, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5409, '2021-07-03', 2714, 5319, 577, 12783, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5410, '2021-07-03', 1310, 5320, 577, 12051, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5411, '2021-07-03', 1411, 5321, 577, 13570, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5412, '2021-07-03', 2442, 5322, 577, 5827, '2.0000', '4.8000', '4.8000', '6.5000', '6.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5413, '2021-07-03', 2169, 5323, 577, 17316, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5414, '2021-07-03', 2167, 5324, 577, 17315, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5415, '2021-07-03', 2485, 5325, 577, 5197, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5416, '2021-07-03', 1602, 5326, 577, 13523, '2.0000', '6.9900', '6.9900', '10.0000', '10.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5417, '2021-07-03', 1702, 5327, 577, 14578, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5418, '2021-07-03', 1574, 5328, 577, 17030, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5419, '2021-07-03', 2315, 5329, 577, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '428.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5420, '2021-07-03', 2167, 5330, 577, 17315, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5421, '2021-07-03', 2020, 5331, 577, 16689, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5422, '2021-07-03', 2020, 5332, 577, 16689, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5423, '2021-07-03', 1978, 5333, 577, 6462, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5424, '2021-07-03', 1980, 5334, 577, 6461, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5425, '2021-07-03', 1863, 5335, 577, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '70.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5426, '2021-07-03', 1394, 5336, 577, NULL, '1.0000', '6.5000', '6.5000', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5427, '2021-07-03', 1425, 5337, 577, 16688, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5428, '2021-07-03', 2641, 5338, 577, 11032, '1.0000', '9.3600', '9.3600', '12.5000', '12.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5429, '2021-07-03', 1863, 5339, 577, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '70.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5430, '2021-07-03', 2623, 5340, 577, 10524, '1.0000', '4.3000', '4.3000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5431, '2021-07-03', 2366, 5341, 577, 14571, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5432, '2021-07-03', 1602, 5342, 577, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5433, '2021-07-03', 1311, 5343, 577, 5503, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5434, '2021-07-03', 1851, 5344, 577, 9462, '1.0000', '11.5600', '11.5600', '16.5000', '16.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5435, '2021-07-03', 2061, 5345, 577, 11010, '1.0000', '10.9800', '10.9800', '15.0000', '15.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5436, '2021-07-03', 1483, 5346, 577, 1485, '1.0000', '90.0000', '90.0000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5437, '2021-07-03', 1330, 5347, 577, 3367, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5438, '2021-07-03', 1954, 5348, 577, 3408, '2.0000', '25.0000', '25.0000', '1.0000', '1.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5439, '2021-07-03', 2109, 5349, 577, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '136.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5440, '2021-07-03', 1900, 5350, 577, 3537, '10.0000', '2.4600', '2.4600', '3.3000', '3.3000', '50.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5441, '2021-07-03', 1541, 5351, 577, 17050, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5442, '2021-07-03', 1674, 5352, 577, 2439, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5443, '2021-07-03', 2105, 5353, 577, 6017, '2.0000', '1.3500', '1.3500', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5444, '2021-07-03', 1670, 5354, 577, 17450, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5445, '2021-07-03', 2681, 5355, 577, 12231, '1.0000', '12.4000', '12.4000', '16.5000', '16.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5446, '2021-07-03', 1386, 5356, 577, NULL, '2.0000', '90.0000', '90.0000', '6.0000', '6.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5447, '2021-07-03', 1863, 5357, 577, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '70.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5448, '2021-07-03', 1543, 5358, 577, 11178, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5449, '2021-07-03', 2020, 5359, 577, 16689, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5450, '2021-07-03', 2105, 5360, 577, 6017, '2.0000', '1.3500', '1.3500', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5451, '2021-07-03', 1944, 5361, 577, 5598, '1.0000', '5.0000', '5.0000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5452, '2021-07-03', 2307, 5362, 577, 17451, '1.0000', '140.0000', '140.0000', '180.0000', '180.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5453, '2021-07-03', 1787, 5363, 577, 4930, '3.0000', '0.8100', '0.8100', '2.0000', '2.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5454, '2021-07-03', 2221, 5364, 577, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5455, '2021-07-03', 2366, 5365, 577, 14571, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5456, '2021-07-03', 1571, 5366, 577, 9453, '4.0000', '90.0000', '90.0000', '2.5000', '2.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5457, '2021-07-03', 1863, 5367, 577, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '70.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5458, '2021-07-03', 1602, 5368, 577, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5459, '2021-07-03', 2825, 5369, 577, NULL, '1.0000', '12.0000', '12.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5460, '2021-07-03', 2654, 5370, 577, 11191, '1.0000', '18.0000', '18.0000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5461, '2021-07-03', 2036, 5371, 577, 4401, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5462, '2021-07-03', 2034, 5372, 577, 6416, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5463, '2021-07-03', 1695, 5373, 577, 17449, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5464, '2021-07-03', 1662, 5374, 577, 16693, '1.0000', '90.0000', '90.0000', '69.0000', '69.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5465, '2021-07-03', 2250, 5375, 577, 16902, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5466, '2021-07-03', 1478, 5376, 577, 1490, '1.0000', '90.0000', '90.0000', '28.0000', '28.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5467, '2021-07-03', 1493, 5377, 577, 13563, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5468, '2021-07-03', 2088, 5378, 577, 9570, '-1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5469, '2021-07-03', 2088, 5378, 577, 9570, '-1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5470, '2021-07-03', 2088, 5378, 577, 6006, '2.0000', '1.3800', '1.3800', '5.0000', '5.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5471, '2021-07-03', 2012, 5379, 577, 6437, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5472, '2021-07-03', 2427, 5380, 577, 5801, '1.0000', '5.8000', '5.8000', '7.0000', '7.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5473, '2021-07-03', 1812, 5381, 577, 17047, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5474, '2021-07-03', 2592, 5382, 577, 16710, '1.0000', '7.8400', '7.8400', '11.0000', '11.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5475, '2021-07-03', 1837, 5383, 577, NULL, '4.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5476, '2021-07-03', 2828, 5384, 577, 16963, '1.0000', '17.6500', '17.6500', '24.0000', '24.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5477, '2021-07-03', 1896, 5385, 577, 5500, '1.0000', '4.3600', '4.3600', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5478, '2021-07-03', 1863, 5386, 577, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '70.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5479, '2021-07-03', 2712, 5387, 577, 12781, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '59.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5480, '2021-07-03', 1831, 5388, 578, 17457, '1.0000', '90.0000', '90.0000', '11.5000', '11.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5481, '2021-07-03', 2234, 5389, 578, 14573, '1.0000', '13.6000', '13.6000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5482, '2021-07-03', 2085, 5390, 578, 12053, '10.0000', '13.3400', '13.3400', '1.8000', '1.8000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5483, '2021-07-03', 1411, 5391, 578, 13570, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5484, '2021-07-03', 2083, 5392, 578, 1662, '8.0000', '0.5800', '0.5800', '1.0000', '1.0000', '90.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5485, '2021-07-03', 1828, 5393, 578, 4963, '5.0000', '0.7300', '0.7300', '1.0000', '1.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5486, '2021-07-03', 2256, 5394, 578, 17359, '1.0000', '12.7400', '12.7400', '17.0000', '17.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5487, '2021-07-03', 1536, 5395, 578, 3538, '10.0000', '99.4596', '99.4596', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5488, '2021-07-04', 2384, 5396, 579, 4370, '2.0000', '0.4000', '0.4000', '0.5000', '0.5000', '54.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5489, '2021-07-04', 2108, 5397, 579, 6020, '3.0000', '4.7500', '4.7500', '6.5000', '6.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5490, '2021-07-04', 2315, 5398, 579, 3069, '6.0000', '0.3300', '0.3300', '0.5000', '0.5000', '422.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5491, '2021-07-04', 1905, 5399, 579, 5509, '3.0000', '0.4000', '0.4000', '1.0000', '1.0000', '81.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5492, '2021-07-04', 1846, 5400, 579, 17361, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5493, '2021-07-04', 1863, 5401, 579, 17319, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '62.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5494, '2021-07-04', 2817, 5402, 579, 16787, '10.0000', '1.8000', '1.8000', '2.2000', '2.2000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5495, '2021-07-04', 2741, 5403, 579, 16783, '1.0000', '40.6400', '40.6400', '64.0000', '64.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5496, '2021-07-04', 1504, 5404, 579, NULL, '10.0000', '90.0000', '90.0000', '2.0000', '2.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5497, '2021-07-04', 1947, 5405, 579, 6003, '6.0000', '5.0000', '5.0000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5498, '2021-07-04', 2714, 5406, 579, 12783, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5499, '2021-07-04', 1807, 5407, 579, 3540, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5500, '2021-07-04', 1647, 5408, 579, 16905, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5501, '2021-07-04', 1592, 5409, 579, 8285, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5502, '2021-07-04', 1986, 5410, 579, 6457, '2.0000', '5.0000', '5.0000', '6.5000', '6.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5503, '2021-07-04', 2208, 5411, 579, 8158, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5504, '2021-07-04', 2715, 5412, 579, 13566, '1.0000', '9.2600', '9.2600', '12.0000', '12.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5505, '2021-07-04', 2506, 5413, 579, 16909, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5506, '2021-07-04', 2560, 5414, 579, 7205, '1.0000', '17.0000', '17.0000', '21.0000', '21.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5507, '2021-07-04', 1826, 5415, 579, 4961, '6.0000', '0.2100', '0.2100', '0.5000', '0.5000', '92.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5508, '2021-07-04', 2670, 5416, 579, 11896, '5.0000', '0.3200', '0.3200', '1.0000', '1.0000', '95.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5509, '2021-07-04', 1651, 5417, 579, 17367, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5510, '2021-07-04', 1311, 5418, 579, 5503, '6.0000', '0.3700', '0.3700', '0.5000', '0.5000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5511, '2021-07-04', 1905, 5419, 579, 5509, '2.0000', '0.4000', '0.4000', '1.0000', '1.0000', '82.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5512, '2021-07-04', 1837, 5420, 579, NULL, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5513, '2021-07-04', 1342, 5421, 579, 3381, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5514, '2021-07-04', 2059, 5422, 579, NULL, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5515, '2021-07-04', 2031, 5423, 579, 6419, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5516, '2021-07-04', 1675, 5424, 579, 12057, '1.0000', '90.0000', '90.0000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5517, '2021-07-04', 1674, 5425, 579, 2439, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5518, '2021-07-04', 2703, 5426, 579, 12749, '1.0000', '4.3600', '4.3600', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5519, '2021-07-04', 2662, 5427, 579, 12037, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5520, '2021-07-04', 1863, 5428, 579, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '63.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5521, '2021-07-04', 1574, 5429, 579, 17030, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5522, '2021-07-04', 2568, 5430, 579, NULL, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5523, '2021-07-04', 2360, 5431, 579, 17042, '1.0000', '0.5200', '0.5200', '0.6900', '0.6900', '59.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5524, '2021-07-04', 2315, 5432, 579, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '426.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5525, '2021-07-04', 2169, 5433, 579, 17316, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5526, '2021-07-04', 1401, 5434, 579, 4360, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5527, '2021-07-04', 2221, 5435, 579, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5528, '2021-07-04', 1787, 5436, 579, 4930, '2.0000', '0.8100', '0.8100', '2.0000', '2.0000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5529, '2021-07-04', 1602, 5437, 579, 13523, '2.0000', '6.9900', '6.9900', '10.0000', '10.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5530, '2021-07-04', 2694, 5438, 579, 12289, '2.0000', '3.5000', '3.5000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5531, '2021-07-04', 1394, 5439, 579, NULL, '1.0000', '6.5000', '6.5000', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5532, '2021-07-04', 2302, 5440, 579, 17328, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5533, '2021-07-04', 2353, 5441, 579, NULL, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5534, '2021-07-04', 2460, 5442, 579, 13564, '1.0000', '32.7700', '32.7700', '43.0000', '43.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5535, '2021-07-04', 1859, 5443, 579, 12237, '1.0000', '90.0000', '90.0000', '32.0000', '32.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5536, '2021-07-04', 1863, 5444, 579, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '63.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5537, '2021-07-04', 2568, 5445, 579, NULL, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5538, '2021-07-04', 1310, 5446, 579, 12052, '5.0000', '0.3700', '0.3700', '0.5000', '0.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5539, '2021-07-04', 1807, 5447, 579, 3540, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5540, '2021-07-04', 1867, 5448, 579, 4996, '1.0000', '10.0500', '10.0500', '13.0000', '13.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5541, '2021-07-04', 2320, 5449, 579, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5542, '2021-07-04', 1629, 5450, 579, 14590, '1.0000', '13.7900', '13.7900', '18.5000', '18.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5543, '2021-07-04', 1839, 5451, 579, 17317, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5544, '2021-07-04', 1616, 5452, 579, NULL, '1.0000', '4.0000', '4.0000', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5545, '2021-07-04', 1399, 5453, 579, 9568, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5546, '2021-07-04', 2648, 5454, 579, 10607, '2.0000', '5.4000', '5.4000', '6.5000', '6.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5547, '2021-07-04', 1947, 5455, 579, 6003, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5548, '2021-07-04', 2277, 5456, 579, 3117, '1.0000', '0.7800', '0.7800', '1.0000', '1.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5549, '2021-07-05', 2104, 5457, 580, 6016, '1.0000', '0.2000', '0.2000', '1.0000', '1.0000', '136.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5550, '2021-07-05', 1855, 5458, 580, 4986, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5551, '2021-07-05', 2279, 5459, 580, 17312, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5552, '2021-07-05', 1947, 5460, 580, 4998, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5553, '2021-07-05', 1313, 5461, 580, 12048, '2.0000', '0.4200', '0.4200', '3.0000', '3.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5554, '2021-07-05', 2325, 5462, 580, 5088, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5555, '2021-07-05', 1811, 5463, 580, 4950, '1.0000', '14.5300', '14.5300', '19.0000', '19.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5556, '2021-07-05', 2768, 5464, 580, NULL, '3.0000', '0.9600', '0.9600', '1.5000', '1.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5557, '2021-07-05', 1928, 5465, 580, 5630, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5558, '2021-07-05', 2850, 5466, 580, 17313, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5559, '2021-07-05', 1629, 5467, 580, 14591, '1.0000', '13.7900', '13.7900', '18.5000', '18.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5560, '2021-07-05', 2236, 5468, 580, 16907, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5561, '2021-07-05', 2184, 5469, 580, 8185, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5562, '2021-07-05', 2008, 5470, 580, 6439, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5563, '2021-07-05', 1523, 5471, 580, 17403, '2.0000', '0.9300', '0.9300', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5564, '2021-07-05', 2106, 5472, 580, 6018, '1.0000', '0.9900', '0.9900', '4.0000', '4.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5565, '2021-07-05', 1783, 5473, 580, 14570, '3.0000', '90.0000', '90.0000', '11.0000', '11.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5566, '2021-07-05', 2311, 5474, 580, 3536, '1.0000', '46.2900', '46.2900', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5567, '2021-07-05', 1863, 5475, 580, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '59.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5568, '2021-07-05', 1620, 5476, 580, NULL, '4.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5569, '2021-07-05', 1935, 5477, 580, 16698, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5570, '2021-07-05', 1945, 5478, 581, 5559, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5571, '2021-07-05', 1651, 5479, 581, 3222, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5572, '2021-07-05', 1839, 5480, 581, NULL, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5573, '2021-07-05', 1647, 5481, 581, 3218, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5574, '2021-07-05', 1809, 5482, 581, NULL, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5575, '2021-07-05', 1783, 5483, 581, NULL, '3.0000', '7.8500', '7.8500', '11.0000', '11.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5576, '2021-07-05', 2169, 5484, 581, 10737, '1.0000', '0.8416', '0.8416', '1.5000', '1.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5577, '2021-07-05', 2712, 5485, 581, NULL, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5578, '2021-07-05', 1754, 5486, 581, NULL, '1.0000', '13.4800', '13.4800', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5579, '2021-07-05', 2816, 5487, 581, NULL, '10.0000', '0.8000', '0.8000', '1.0000', '1.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5580, '2021-07-05', 2314, 5488, 581, 2704, '-1.0000', '3.9000', '3.9000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5581, '2021-07-05', 2314, 5488, 581, NULL, '2.0000', '3.9000', '3.9000', '5.0000', '5.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5582, '2021-07-05', 2168, 5489, 581, 10165, '1.0000', '26.0845', '26.0845', '39.0000', '39.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5583, '2021-07-05', 2304, 5490, 581, NULL, '10.0000', '1.3300', '1.3300', '2.0000', '2.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5584, '2021-07-05', 2486, 5491, 581, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5585, '2021-07-05', 2671, 5492, 581, NULL, '1.0000', '28.8900', '28.8900', '38.0000', '38.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5586, '2021-07-05', 2251, 5493, 581, NULL, '1.0000', '11.6400', '11.6400', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5587, '2021-07-05', 2702, 5494, 581, NULL, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5588, '2021-07-05', 1573, 5495, 581, 436, '1.0000', '37.8305', '37.8305', '32.5000', '32.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5589, '2021-07-05', 2269, 5496, 581, NULL, '1.0000', '4.9800', '4.9800', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5590, '2021-07-05', 1640, 5497, 581, 16871, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5591, '2021-07-05', 2058, 5498, 581, 8122, '1.0000', '10.0000', '10.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5592, '2021-07-05', 2168, 5499, 581, 10165, '1.0000', '26.0845', '26.0845', '39.0000', '39.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5593, '2021-07-05', 2262, 5500, 581, NULL, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5594, '2021-07-05', 2045, 5501, 581, NULL, '1.0000', '6.5000', '6.5000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5595, '2021-07-05', 1481, 5502, 581, 1442, '1.0000', '24.9000', '24.9000', '36.5000', '36.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5596, '2021-07-05', 2592, 5503, 581, NULL, '1.0000', '8.2400', '8.2400', '11.0000', '11.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5597, '2021-07-05', 1946, 5504, 581, 740, '1.0000', '5.7750', '5.7750', '5.0000', '5.0000', '59.0000', 1, 0, NULL, 56);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5598, '2021-07-05', 1912, 5505, 582, NULL, '5.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5599, '2021-07-05', 1863, 5506, 582, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '58.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5600, '2021-07-05', 2083, 5507, 582, 1662, '12.0000', '0.5800', '0.5800', '1.0000', '1.0000', '78.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5601, '2021-07-05', 2680, 5508, 582, 12229, '1.0000', '11.8600', '11.8600', '15.5000', '15.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5602, '2021-07-05', 2285, 5509, 582, 17484, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5603, '2021-07-05', 2291, 5510, 582, 17452, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5604, '2021-07-05', 1863, 5511, 582, 17319, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '57.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5605, '2021-07-05', 1666, 5512, 582, 17033, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5606, '2021-07-05', 1520, 5513, 582, 11038, '1.0000', '1.4700', '1.4700', '2.0000', '2.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5607, '2021-07-05', 1670, 5514, 582, 17450, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5608, '2021-07-05', 1541, 5515, 582, 17050, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5609, '2021-07-05', 1674, 5516, 582, 17675, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5610, '2021-07-05', 1536, 5517, 582, 17485, '10.0000', '99.4596', '99.4596', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5611, '2021-07-05', 1342, 5518, 582, 3381, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5612, '2021-07-05', 1846, 5519, 582, 17361, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5613, '2021-07-05', 2320, 5520, 582, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5614, '2021-07-05', 2661, 5521, 582, 12386, '1.0000', '9.0000', '9.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5615, '2021-07-05', 2231, 5522, 582, 7201, '1.0000', '33.0000', '33.0000', '36.0000', '36.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5616, '2021-07-05', 1993, 5523, 582, 6450, '2.0000', '0.6000', '0.6000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5617, '2021-07-05', 2660, 5524, 582, 12039, '10.0000', '0.7000', '0.7000', '1.0000', '1.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5618, '2021-07-05', 1529, 5525, 582, 16912, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5619, '2021-07-05', 2714, 5526, 583, 12769, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5620, '2021-07-06', 1630, 5527, 584, 17673, '1.0000', '16.7400', '16.7400', '22.5000', '22.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5621, '2021-07-06', 2275, 5528, 584, 3115, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5622, '2021-07-06', 1313, 5529, 584, 12048, '2.0000', '0.4200', '0.4200', '3.0000', '3.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5623, '2021-07-06', 1696, 5530, 584, 2459, '1.0000', '10.2900', '10.2900', '13.5000', '13.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5624, '2021-07-06', 2221, 5531, 584, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5625, '2021-07-06', 2279, 5532, 584, 17312, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5626, '2021-07-06', 1863, 5533, 584, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '55.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5627, '2021-07-06', 1493, 5534, 584, 13563, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5628, '2021-07-06', 1406, 5535, 584, 17689, '1.0000', '16.8000', '16.8000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5629, '2021-07-06', 1689, 5536, 584, 4939, '1.0000', '12.3500', '12.3500', '16.5000', '16.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5630, '2021-07-06', 1612, 5537, 584, 9422, '2.0000', '1.6000', '1.6000', '3.0000', '3.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5631, '2021-07-06', 2565, 5538, 584, 7198, '1.0000', '0.8100', '0.8100', '1.5000', '1.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5632, '2021-07-06', 1401, 5539, 584, 4360, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5633, '2021-07-06', 2657, 5540, 584, 11407, '1.0000', '5.4200', '5.4200', '1.0000', '1.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5634, '2021-07-06', 2713, 5541, 584, 12782, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5635, '2021-07-06', 2463, 5542, 584, 4840, '1.0000', '2.8700', '2.8700', '4.0000', '4.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5636, '2021-07-06', 1620, 5543, 584, NULL, '4.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5637, '2021-07-06', 2646, 5544, 584, 10600, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5638, '2021-07-06', 2254, 5545, 584, 16707, '1.0000', '17.9400', '17.9400', '24.0000', '24.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5639, '2021-07-06', 1523, 5546, 584, 17403, '2.0000', '0.9300', '0.9300', '5.0000', '5.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5640, '2021-07-06', 1912, 5547, 584, 9575, '-5.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5641, '2021-07-06', 1912, 5547, 584, 9575, '-5.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5642, '2021-07-06', 1912, 5547, 584, 9575, '-5.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5643, '2021-07-06', 1912, 5547, 584, 1503, '6.0000', '0.3100', '0.3100', '1.0000', '1.0000', '56.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5644, '2021-07-06', 1904, 5548, 584, 12070, '3.0000', '90.0000', '90.0000', '1.0000', '1.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5645, '2021-07-06', 1432, 5549, 584, 13527, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5646, '2021-07-06', 2657, 5550, 585, NULL, '3.0000', '5.4200', '5.4200', '1.0000', '1.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5647, '2021-07-06', 1992, 5551, 585, NULL, '1.0000', '1.5000', '1.5000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5648, '2021-07-06', 1871, 5552, 585, NULL, '20.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-20.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5649, '2021-07-06', 2741, 5553, 585, NULL, '2.0000', '40.6400', '40.6400', '32.0000', '32.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5650, '2021-07-06', 2135, 5554, 585, NULL, '2.0000', '2.5000', '2.5000', '5.0000', '5.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5651, '2021-07-06', 1689, 5555, 585, NULL, '1.0000', '12.3500', '12.3500', '16.5000', '16.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5652, '2021-07-06', 2828, 5556, 585, NULL, '1.0000', '17.6500', '17.6500', '24.0000', '24.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5653, '2021-07-06', 2816, 5557, 585, NULL, '5.0000', '0.8000', '0.8000', '1.0000', '1.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5654, '2021-07-06', 2281, 5558, 585, NULL, '6.0000', '3.0000', '3.0000', '4.0000', '4.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5655, '2021-07-06', 1689, 5559, 585, NULL, '1.0000', '12.3500', '12.3500', '16.5000', '16.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5656, '2021-07-06', 2269, 5560, 585, NULL, '1.0000', '4.9800', '4.9800', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5657, '2021-07-06', 2658, 5561, 585, NULL, '8.0000', '0.9000', '0.9000', '1.5000', '1.5000', '-8.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5658, '2021-07-06', 1519, 5562, 585, NULL, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5659, '2021-07-06', 1411, 5563, 585, NULL, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5660, '2021-07-06', 1854, 5564, 586, 15937, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5661, '2021-07-06', 1871, 5565, 586, 15923, '10.0000', '18.5000', '18.5000', '3.0000', '3.0000', '50.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5662, '2021-07-06', 1867, 5566, 586, NULL, '1.0000', '10.0500', '10.0500', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5663, '2021-07-06', 2662, 5567, 586, 12036, '-1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5664, '2021-07-06', 2662, 5567, 586, NULL, '3.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5665, '2021-07-06', 1689, 5568, 586, 4897, '1.0000', '66.0220', '66.0220', '16.5000', '16.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5666, '2021-07-06', 2315, 5569, 586, 2735, '-7.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5667, '2021-07-06', 2315, 5569, 586, NULL, '11.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-11.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5668, '2021-07-06', 1828, 5570, 586, 16880, '2.0000', '-1070.8265', '-1070.8265', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5669, '2021-07-06', 1425, 5571, 586, NULL, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5670, '2021-07-06', 2221, 5572, 586, 4334, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5671, '2021-07-06', 1935, 5573, 586, NULL, '2.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5672, '2021-07-06', 1848, 5574, 586, NULL, '2.0000', '0.4200', '0.4200', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5673, '2021-07-06', 2771, 5575, 586, NULL, '2.0000', '0.6400', '0.6400', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5674, '2021-07-06', 2662, 5576, 586, 12036, '-1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5675, '2021-07-06', 2662, 5576, 586, NULL, '2.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5676, '2021-07-06', 1529, 5577, 586, NULL, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5677, '2021-07-06', 1841, 5578, 586, 15873, '6.0000', '25.0507', '25.0507', '0.5000', '0.5000', '44.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5678, '2021-07-06', 2712, 5579, 586, NULL, '4.0000', '0.2600', '0.2600', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5679, '2021-07-06', 1859, 5580, 586, 16023, '1.0000', '22.6600', '22.6600', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5680, '2021-07-06', 2169, 5581, 586, 10737, '1.0000', '0.8416', '0.8416', '1.5000', '1.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5681, '2021-07-06', 1863, 5582, 586, 10808, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '61.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5682, '2021-07-06', 1780, 5583, 586, 3867, '1.0000', '115.6491', '115.6491', '47.0000', '47.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5683, '2021-07-06', 1307, 5584, 586, 15936, '1.0000', '75.1637', '75.1637', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5684, '2021-07-06', 1642, 5585, 586, 82, '1.0000', '440.4303', '440.4303', '41.0000', '41.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5685, '2021-07-06', 2681, 5586, 586, 12164, '-1.0000', '12.4000', '12.4000', '16.5000', '16.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5686, '2021-07-06', 2681, 5586, 586, NULL, '2.0000', '12.4000', '12.4000', '16.5000', '16.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5687, '2021-07-06', 2825, 5587, 586, NULL, '1.0000', '12.0000', '12.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5688, '2021-07-06', 1400, 5588, 586, NULL, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5689, '2021-07-06', 1651, 5589, 586, 3222, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5690, '2021-07-06', 1809, 5590, 587, 7386, '-1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5691, '2021-07-06', 1809, 5590, 587, NULL, '2.0000', '9.2000', '9.2000', '12.0000', '12.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5692, '2021-07-06', 2662, 5591, 587, 12036, '-4.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5693, '2021-07-06', 2662, 5591, 587, NULL, '5.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5694, '2021-07-06', 1307, 5592, 587, 15936, '1.0000', '75.1637', '75.1637', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5695, '2021-07-06', 1841, 5593, 587, 15873, '6.0000', '25.0507', '25.0507', '0.5000', '0.5000', '38.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5696, '2021-07-06', 1917, 5594, 587, NULL, '1.0000', '4.3600', '4.3600', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5697, '2021-07-06', 2004, 5595, 587, 6822, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 59);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5698, '2021-07-06', 1651, 5596, 587, 3222, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5699, '2021-07-06', 2618, 5597, 587, NULL, '2.0000', '4.1000', '4.1000', '5.5000', '5.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5700, '2021-07-06', 2320, 5598, 587, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5701, '2021-07-06', 1863, 5599, 588, 10808, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '60.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5702, '2021-07-06', 2821, 5600, 589, NULL, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5703, '2021-07-06', 2543, 5601, 589, 6304, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5704, '2021-07-06', 1935, 5602, 589, 5586, '-2.0000', '0.7200', '0.7200', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5705, '2021-07-06', 1935, 5602, 589, NULL, '3.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5706, '2021-07-06', 1904, 5603, 589, 164, '2.0000', '0.3200', '0.3200', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5707, '2021-07-06', 2712, 5604, 589, NULL, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5708, '2021-07-06', 1530, 5605, 590, 15897, '1.0000', '28.7000', '28.7000', '38.0000', '38.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5709, '2021-07-06', 1670, 5606, 590, 15866, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5710, '2021-07-06', 1837, 5607, 590, NULL, '2.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5711, '2021-07-06', 2315, 5608, 590, 2735, '-11.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5712, '2021-07-06', 2315, 5608, 590, NULL, '13.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-13.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5713, '2021-07-06', 2352, 5609, 590, 17437, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5714, '2021-07-07', 2104, 5610, 591, 6016, '1.0000', '0.2000', '0.2000', '1.0000', '1.0000', '135.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5715, '2021-07-07', 2233, 5611, 591, 16910, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5716, '2021-07-07', 2109, 5612, 591, 6021, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '134.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5717, '2021-07-07', 1504, 5613, 591, 17723, '20.0000', '90.0000', '90.0000', '2.0000', '2.0000', '68.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5718, '2021-07-07', 2279, 5614, 591, 17312, '3.0000', '2.6000', '2.6000', '4.0000', '4.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5719, '2021-07-07', 1328, 5615, 591, 3366, '1.0000', '3.1500', '3.1500', '4.5000', '4.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5720, '2021-07-07', 1401, 5616, 591, 4360, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5721, '2021-07-07', 1418, 5617, 591, NULL, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5722, '2021-07-07', 2662, 5618, 591, 12037, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5723, '2021-07-07', 1328, 5619, 591, 3366, '1.0000', '3.1500', '3.1500', '4.5000', '4.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5724, '2021-07-07', 2657, 5620, 591, 11407, '1.0000', '5.4200', '5.4200', '1.0000', '1.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5725, '2021-07-07', 1657, 5621, 591, NULL, '20.0000', '90.0000', '90.0000', '0.6000', '0.6000', '-20.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5726, '2021-07-07', 1493, 5622, 591, 13563, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5727, '2021-07-07', 1412, 5623, 591, 10242, '1.0000', '14.0000', '14.0000', '18.5000', '18.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5728, '2021-07-07', 1761, 5624, 591, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5729, '2021-07-07', 1912, 5625, 591, NULL, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5730, '2021-07-07', 1342, 5626, 591, 3381, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5731, '2021-07-07', 1502, 5627, 591, 9542, '2.0000', '90.0000', '90.0000', '10.5000', '10.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5732, '2021-07-07', 2259, 5628, 591, 7122, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5733, '2021-07-07', 2384, 5629, 591, 4370, '2.0000', '0.4000', '0.4000', '0.5000', '0.5000', '52.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5734, '2021-07-07', 2589, 5630, 591, 8289, '2.0000', '4.0000', '4.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5735, '2021-07-07', 2302, 5631, 591, 17328, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5736, '2021-07-07', 1409, 5632, 591, 12683, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5737, '2021-07-07', 1409, 5633, 592, 16034, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5738, '2021-07-07', 2366, 5634, 592, NULL, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5739, '2021-07-07', 1578, 5635, 592, NULL, '1.0000', '1.9700', '1.9700', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5740, '2021-07-07', 1427, 5636, 593, 16042, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5741, '2021-07-07', 2290, 5637, 594, 4830, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5742, '2021-07-07', 2327, 5638, 594, 12241, '2.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5743, '2021-07-07', 2302, 5639, 594, 17328, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5744, '2021-07-07', 1375, 5640, 594, 14587, '1.0000', '90.0000', '90.0000', '35.0000', '35.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5745, '2021-07-07', 1581, 5641, 594, 4958, '1.0000', '12.0500', '12.0500', '16.0000', '16.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5746, '2021-07-07', 2233, 5642, 594, 16910, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5747, '2021-07-07', 1506, 5643, 594, 1509, '1.0000', '90.0000', '90.0000', '21.5000', '21.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5748, '2021-07-07', 2867, 5644, 594, NULL, '1.0000', '61.9200', '61.9200', '100.0000', '100.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5749, '2021-07-07', 2317, 5645, 594, 15799, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5750, '2021-07-07', 1595, 5646, 594, 17716, '1.0000', '18.6100', '18.6100', '28.0000', '28.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5751, '2021-07-07', 1557, 5647, 594, 1661, '1.0000', '7.8800', '7.8800', '10.5000', '10.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5752, '2021-07-07', 1754, 5648, 594, 17309, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5753, '2021-07-07', 1759, 5649, 594, 13567, '1.0000', '63.8334', '63.8334', '15.0000', '15.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5754, '2021-07-07', 1845, 5650, 594, 17486, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5755, '2021-07-07', 2169, 5651, 594, 17316, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5756, '2021-07-07', 1761, 5652, 594, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5757, '2021-07-07', 2741, 5653, 594, 16783, '2.0000', '40.6400', '40.6400', '32.0000', '32.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5758, '2021-07-07', 1528, 5654, 594, 1535, '2.0000', '90.0000', '90.0000', '6.0000', '6.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5759, '2021-07-07', 2167, 5655, 594, 17315, '3.0000', '2.2000', '2.2000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5760, '2021-07-07', 1528, 5656, 594, 1535, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5761, '2021-07-07', 1615, 5657, 594, 9467, '2.0000', '90.0000', '90.0000', '92.0000', '92.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5762, '2021-07-07', 2552, 5658, 594, NULL, '1.0000', '87.0000', '87.0000', '127.0000', '127.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5763, '2021-07-07', 1809, 5659, 594, 13542, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5764, '2021-07-07', 1837, 5660, 594, NULL, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5765, '2021-07-07', 1841, 5661, 594, 4974, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5766, '2021-07-07', 1840, 5662, 594, 4973, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5767, '2021-07-07', 2289, 5663, 594, 3129, '2.0000', '0.2300', '0.2300', '0.5000', '0.5000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5768, '2021-07-07', 2221, 5664, 594, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5769, '2021-07-07', 2169, 5665, 594, 17316, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5770, '2021-07-07', 2713, 5666, 594, 12782, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5771, '2021-07-07', 2602, 5667, 594, 15795, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5772, '2021-07-07', 2865, 5668, 594, 17693, '1.0000', '2.8000', '2.8000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5773, '2021-07-07', 2316, 5669, 594, 17381, '1.0000', '44.0000', '44.0000', '58.0000', '58.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5774, '2021-07-07', 1888, 5670, 594, NULL, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5775, '2021-07-07', 2815, 5671, 594, 17358, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5776, '2021-07-07', 2459, 5672, 594, 4831, '2.0000', '5.2800', '5.2800', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5777, '2021-07-07', 2089, 5673, 594, 9476, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5778, '2021-07-07', 1837, 5674, 594, NULL, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5779, '2021-07-07', 1347, 5675, 594, NULL, '1.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5780, '2021-07-07', 1347, 5676, 594, NULL, '2.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5781, '2021-07-07', 2714, 5677, 594, 12783, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5782, '2021-07-07', 2325, 5678, 594, 5088, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5783, '2021-07-07', 1514, 5679, 594, 16784, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5784, '2021-07-07', 1845, 5680, 594, 17486, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5785, '2021-07-07', 1754, 5681, 594, 17309, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5786, '2021-07-07', 2816, 5682, 594, 16785, '10.0000', '0.8000', '0.8000', '1.0000', '1.0000', '50.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5787, '2021-07-07', 2659, 5683, 594, 14569, '1.0000', '25.4800', '25.4800', '34.0000', '34.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5788, '2021-07-07', 1411, 5684, 594, 17697, '2.0000', '25.0000', '25.0000', '34.0000', '34.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5789, '2021-07-07', 2660, 5685, 594, 12039, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5790, '2021-07-07', 2390, 5686, 594, 4397, '1.0000', '7.4000', '7.4000', '9.0000', '9.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5791, '2021-07-07', 1418, 5687, 594, NULL, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5792, '2021-07-07', 1348, 5688, 594, 3387, '1.0000', '15.5000', '15.5000', '20.5000', '20.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5793, '2021-07-07', 2365, 5689, 594, 9561, '10.0000', '15.0000', '15.0000', '2.0000', '2.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5794, '2021-07-07', 1602, 5690, 594, 17715, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5795, '2021-07-07', 2259, 5691, 594, 7122, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5796, '2021-07-07', 1863, 5692, 594, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '54.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5797, '2021-07-07', 1434, 5693, 594, NULL, '1.0000', '14.5000', '14.5000', '19.0000', '19.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5798, '2021-07-07', 2302, 5694, 594, 17328, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5799, '2021-07-07', 2262, 5695, 595, 2798, '-1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5800, '2021-07-07', 2262, 5695, 595, NULL, '2.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5801, '2021-07-07', 2679, 5696, 595, NULL, '1.0000', '32.3500', '32.3500', '43.0000', '43.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5802, '2021-07-07', 2379, 5697, 595, NULL, '2.0000', '1.5900', '1.5900', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5803, '2021-07-07', 1863, 5698, 596, 10808, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '59.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5804, '2021-07-07', 1368, 5699, 596, 268, '1.0000', '47.0000', '47.0000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5805, '2021-07-07', 1567, 5700, 597, NULL, '1.0000', '13.3000', '13.3000', '17.5000', '17.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5806, '2021-07-07', 1387, 5701, 597, 15988, '1.0000', '11.3000', '11.3000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5807, '2021-07-07', 2031, 5702, 597, NULL, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5808, '2021-07-07', 2381, 5703, 597, 11263, '2.0000', '10.8700', '10.8700', '14.5000', '14.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5809, '2021-07-07', 2314, 5704, 597, 2704, '-2.0000', '3.9000', '3.9000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5810, '2021-07-07', 2314, 5704, 597, NULL, '3.0000', '3.9000', '3.9000', '5.0000', '5.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5811, '2021-07-08', 1493, 5705, 598, 13563, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5812, '2021-07-08', 1602, 5706, 598, 17715, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5813, '2021-07-08', 2604, 5707, 598, 14598, '3.0000', '90.0000', '90.0000', '120.0000', '120.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5814, '2021-07-08', 1532, 5708, 598, 1539, '6.0000', '90.0000', '90.0000', '1.5000', '1.5000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5815, '2021-07-08', 1748, 5709, 598, 1527, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5816, '2021-07-08', 2712, 5710, 598, 12781, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '58.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5817, '2021-07-08', 2324, 5711, 598, 5089, '1.0000', '10.5000', '10.5000', '14.5000', '14.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5818, '2021-07-08', 1557, 5712, 598, 1661, '1.0000', '7.8800', '7.8800', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5819, '2021-07-08', 2315, 5713, 599, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '419.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5820, '2021-07-08', 2315, 5714, 600, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '418.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5821, '2021-07-08', 1310, 5715, 601, 12052, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5822, '2021-07-08', 2680, 5716, 602, 12229, '1.0000', '11.8600', '11.8600', '15.5000', '15.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5823, '2021-07-08', 1602, 5717, 602, 17715, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5824, '2021-07-08', 1574, 5718, 602, 17030, '5.0000', '90.0000', '90.0000', '2.5000', '2.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5825, '2021-07-08', 2221, 5719, 602, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5826, '2021-07-08', 2068, 5720, 602, NULL, '1.0000', '11.8000', '11.8000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5827, '2021-07-08', 2384, 5721, 602, 4370, '2.0000', '0.4000', '0.4000', '0.5000', '0.5000', '50.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5828, '2021-07-08', 2366, 5722, 602, 14571, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5829, '2021-07-08', 2810, 5723, 603, 17713, '6.0000', '2.2000', '2.2000', '2.9000', '2.9000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5830, '2021-07-08', 1302, 5724, 603, 3071, '3.0000', '4.0000', '4.0000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5831, '2021-07-08', 1730, 5725, 603, 11872, '1.0000', '23.9100', '23.9100', '32.0000', '32.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5832, '2021-07-08', 1588, 5726, 603, 9439, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5833, '2021-07-08', 2535, 5727, 603, 6129, '1.0000', '20.0000', '20.0000', '24.0000', '24.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5834, '2021-07-08', 1446, 5728, 603, 5627, '1.0000', '4.1000', '4.1000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5835, '2021-07-08', 1809, 5729, 603, 13543, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5836, '2021-07-08', 2381, 5730, 603, 16900, '1.0000', '10.8700', '10.8700', '14.5000', '14.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5837, '2021-07-08', 2085, 5731, 603, 12053, '5.0000', '13.3400', '13.3400', '1.8000', '1.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5838, '2021-07-08', 2085, 5731, 603, 9463, '1.0000', '13.3400', '13.3400', '1.8000', '1.8000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5839, '2021-07-08', 1712, 5732, 603, 9479, '2.0000', '9.6500', '9.6500', '13.0000', '13.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5840, '2021-07-08', 2142, 5733, 603, NULL, '1.0000', '57.0000', '57.0000', '76.0000', '76.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5841, '2021-07-08', 1876, 5734, 603, 5004, '1.0000', '90.0000', '90.0000', '34.0000', '34.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5842, '2021-07-08', 1339, 5735, 603, 13568, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5843, '2021-07-08', 1406, 5736, 603, 17694, '1.0000', '16.8000', '16.8000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5844, '2021-07-08', 2693, 5737, 603, 13615, '1.0000', '25.0100', '25.0100', '33.0000', '33.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5845, '2021-07-08', 1349, 5738, 603, 16898, '1.0000', '32.5000', '32.5000', '46.0000', '46.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5846, '2021-07-08', 2240, 5739, 603, 17722, '1.0000', '33.0000', '33.0000', '49.0000', '49.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5847, '2021-07-08', 1954, 5740, 603, 3408, '1.0000', '25.0000', '25.0000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5848, '2021-07-08', 1954, 5740, 603, NULL, '1.0000', '25.0000', '25.0000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5849, '2021-07-08', 1999, 5741, 603, 6444, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5850, '2021-07-08', 1812, 5742, 603, 11858, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5851, '2021-07-08', 1449, 5743, 603, 5624, '1.0000', '0.6600', '0.6600', '2.5000', '2.5000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5852, '2021-07-08', 2478, 5744, 603, 5191, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5853, '2021-07-08', 2486, 5745, 603, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5854, '2021-07-08', 1446, 5746, 603, 5627, '1.0000', '4.1000', '4.1000', '5.5000', '5.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5855, '2021-07-08', 1689, 5747, 603, 4939, '1.0000', '12.3500', '12.3500', '16.5000', '16.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5856, '2021-07-08', 2085, 5748, 603, 12053, '5.0000', '13.3400', '13.3400', '1.8000', '1.8000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5857, '2021-07-08', 2085, 5748, 603, 9463, '1.0000', '13.3400', '13.3400', '1.8000', '1.8000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5858, '2021-07-08', 2858, 5749, 603, 17780, '4.0000', '1.0000', '1.0000', '5.0000', '5.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5859, '2021-07-08', 1529, 5750, 603, 16912, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5860, '2021-07-08', 1651, 5751, 603, 17367, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5861, '2021-07-08', 1501, 5752, 603, 12679, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5862, '2021-07-08', 2273, 5753, 603, 3113, '1.0000', '2.6700', '2.6700', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5863, '2021-07-08', 2642, 5754, 603, 16932, '1.0000', '7.5000', '7.5000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5864, '2021-07-08', 2237, 5755, 603, 3083, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5865, '2021-07-08', 1425, 5756, 603, 17696, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5866, '2021-07-08', 2477, 5757, 603, 5190, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5867, '2021-07-08', 2481, 5758, 603, 5193, '1.0000', '3.5000', '3.5000', '4.5000', '4.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5868, '2021-07-08', 1425, 5759, 603, 17696, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5869, '2021-07-08', 1593, 5760, 603, 16705, '14.0000', '5.9000', '5.9000', '8.7000', '8.7000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5870, '2021-07-08', 2315, 5761, 603, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '417.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5871, '2021-07-08', 2302, 5762, 603, 17328, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5872, '2021-07-08', 1772, 5763, 603, 11893, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5873, '2021-07-08', 2135, 5764, 603, 16893, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5874, '2021-07-08', 1935, 5765, 603, 16698, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5875, '2021-07-08', 1863, 5766, 603, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '53.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5876, '2021-07-08', 2315, 5767, 603, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '416.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5877, '2021-07-08', 2662, 5768, 603, 12037, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5878, '2021-07-08', 1935, 5769, 603, 16698, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5879, '2021-07-08', 2248, 5770, 603, 17464, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5880, '2021-07-08', 1675, 5771, 603, 12058, '1.0000', '90.0000', '90.0000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5881, '2021-07-08', 1837, 5772, 603, NULL, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5882, '2021-07-08', 1904, 5773, 604, 12070, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5883, '2021-07-09', 1912, 5774, 605, 15933, '2.0000', '0.3200', '0.3200', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5884, '2021-07-09', 2068, 5775, 605, NULL, '1.0000', '13.1000', '13.1000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5885, '2021-07-09', 1523, 5776, 605, 13487, '1.0000', '213.0405', '213.0405', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5886, '2021-07-09', 1813, 5777, 605, NULL, '1.0000', '28.2400', '28.2400', '38.0000', '38.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5887, '2021-07-09', 1810, 5778, 605, NULL, '1.0000', '8.0500', '8.0500', '11.0000', '11.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5888, '2021-07-09', 2104, 5779, 605, 1048, '2.0000', '0.2000', '0.2000', '1.0000', '1.0000', '348.0000', 1, 0, NULL, 57);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5889, '2021-07-09', 1841, 5780, 605, 15873, '2.0000', '25.0507', '25.0507', '0.5000', '0.5000', '36.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5890, '2021-07-09', 1840, 5781, 605, 17818, '1.0000', '108328.5150', '108328.5150', '0.3000', '0.3000', '98.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5891, '2021-07-09', 2289, 5782, 605, 2949, '-2.0000', '0.2300', '0.2300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5892, '2021-07-09', 2289, 5782, 605, NULL, '3.0000', '0.2300', '0.2300', '0.5000', '0.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5893, '2021-07-09', 2607, 5783, 605, 15808, '6.0000', '1.4000', '1.4000', '1.7000', '1.7000', '14.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5894, '2021-07-09', 2221, 5784, 605, 4334, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5895, '2021-07-09', 1480, 5785, 605, NULL, '1.0000', '29.5000', '29.5000', '38.0000', '38.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5896, '2021-07-09', 2056, 5786, 605, 1034, '1.0000', '5.4100', '5.4100', '7.5000', '7.5000', '11.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5897, '2021-07-09', 2169, 5787, 605, 10737, '1.0000', '0.8416', '0.8416', '1.5000', '1.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5898, '2021-07-09', 1605, 5788, 605, 17691, '1.0000', '26.8412', '26.8412', '39.0000', '39.0000', '11.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5899, '2021-07-09', 1826, 5789, 605, NULL, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5900, '2021-07-09', 1483, 5790, 605, 1444, '1.0000', '21.5250', '21.5250', '23.0000', '23.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5901, '2021-07-09', 2859, 5791, 605, 17444, '1.0000', '0.6700', '0.6700', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5902, '2021-07-09', 1813, 5792, 605, NULL, '1.0000', '28.2400', '28.2400', '38.0000', '38.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5903, '2021-07-09', 1785, 5793, 605, NULL, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5904, '2021-07-09', 1851, 5794, 605, 17815, '1.0000', '11.5600', '11.5600', '16.5000', '16.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5905, '2021-07-09', 2233, 5795, 605, 2777, '1.0000', '19.0201', '19.0201', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5906, '2021-07-09', 2284, 5796, 605, 15946, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5907, '2021-07-09', 2419, 5797, 605, NULL, '1.0000', '14.0000', '14.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5908, '2021-07-09', 2657, 5798, 605, 11267, '-1.0000', '5.4200', '5.4200', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5909, '2021-07-09', 2657, 5798, 605, NULL, '2.0000', '5.4200', '5.4200', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5910, '2021-07-09', 2144, 5799, 605, 1359, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5911, '2021-07-09', 2342, 5800, 605, 3845, '-20.0000', '1.8600', '1.8600', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5912, '2021-07-09', 2342, 5800, 605, NULL, '30.0000', '1.8600', '1.8600', '2.5000', '2.5000', '-30.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5913, '2021-07-09', 1665, 5801, 606, 17016, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5914, '2021-07-09', 2714, 5802, 606, 12769, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5915, '2021-07-09', 2307, 5803, 606, 15906, '1.0000', '140.0000', '140.0000', '190.0000', '190.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5916, '2021-07-09', 2221, 5804, 606, 4334, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5917, '2021-07-09', 1680, 5805, 606, 15832, '1.0000', '4.9200', '4.9200', '7.0000', '7.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5918, '2021-07-09', 1316, 5806, 607, NULL, '1.0000', '6.3000', '6.3000', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5919, '2021-07-09', 1825, 5807, 607, NULL, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5920, '2021-07-09', 2514, 5808, 607, NULL, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5921, '2021-07-09', 2712, 5809, 607, NULL, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5922, '2021-07-09', 2635, 5810, 607, NULL, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5923, '2021-07-09', 2167, 5811, 607, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '36.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5924, '2021-07-09', 2169, 5812, 607, 10737, '1.0000', '0.8416', '0.8416', '1.5000', '1.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5925, '2021-07-09', 1340, 5813, 607, 236, '1.0000', '2.7025', '2.7025', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5926, '2021-07-09', 1765, 5814, 607, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5927, '2021-07-09', 1574, 5815, 608, 7593, '-10.0000', '1.9600', '1.9600', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5928, '2021-07-09', 1574, 5815, 608, NULL, '11.0000', '1.9600', '1.9600', '2.5000', '2.5000', '-11.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5929, '2021-07-09', 1978, 5816, 608, NULL, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5930, '2021-07-09', 1665, 5817, 608, 17016, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5931, '2021-07-09', 2327, 5818, 608, NULL, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5932, '2021-07-09', 2463, 5819, 608, NULL, '2.0000', '2.8700', '2.8700', '4.0000', '4.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5933, '2021-07-09', 2260, 5820, 608, NULL, '2.0000', '4.2000', '4.2000', '6.0000', '6.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5934, '2021-07-09', 1544, 5821, 608, 10967, '1.0000', '17.9400', '17.9400', '25.0000', '25.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5935, '2021-07-09', 2589, 5822, 608, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5936, '2021-07-09', 1666, 5823, 608, NULL, '1.0000', '2.7100', '2.7100', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5937, '2021-07-09', 2055, 5824, 608, 1032, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5938, '2021-07-09', 2487, 5825, 608, NULL, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5939, '2021-07-09', 2485, 5826, 608, NULL, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5940, '2021-07-09', 2481, 5827, 608, NULL, '1.0000', '3.5000', '3.5000', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5941, '2021-07-09', 2513, 5828, 608, NULL, '1.0000', '40.0000', '40.0000', '50.0000', '50.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5942, '2021-07-09', 1762, 5829, 608, NULL, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5943, '2021-07-09', 2226, 5830, 608, NULL, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5944, '2021-07-09', 1303, 5831, 608, 32, '1.0000', '54.5520', '54.5520', '4.0000', '4.0000', '119.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5945, '2021-07-09', 2660, 5832, 608, NULL, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5946, '2021-07-09', 2829, 5833, 609, 17332, '-5.0000', '23.8700', '23.8700', '32.0000', '32.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5947, '2021-07-09', 2829, 5833, 609, NULL, '7.0000', '23.8700', '23.8700', '32.0000', '32.0000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5948, '2021-07-09', 1787, 5834, 609, 17827, '2.0000', '-69.6612', '-69.6612', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5949, '2021-07-09', 1688, 5835, 609, 548, '1.0000', '123.3776', '123.3776', '24.0000', '24.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5950, '2021-07-09', 2411, 5836, 609, 15913, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5951, '2021-07-09', 2398, 5837, 609, 15984, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5952, '2021-07-09', 2485, 5838, 609, NULL, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5953, '2021-07-09', 1962, 5839, 609, NULL, '2.0000', '29.1900', '29.1900', '38.5000', '38.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5954, '2021-07-09', 1432, 5840, 609, 16027, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5955, '2021-07-09', 2085, 5841, 609, 15917, '3.0000', '1.4000', '1.4000', '1.8000', '1.8000', '47.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5956, '2021-07-09', 1641, 5842, 609, NULL, '3.0000', '0.9800', '0.9800', '1.3000', '1.3000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5957, '2021-07-09', 2170, 5843, 609, NULL, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5958, '2021-07-09', 1665, 5844, 609, 17016, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5959, '2021-07-09', 1523, 5845, 609, 13487, '1.0000', '213.0405', '213.0405', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5960, '2021-07-09', 2167, 5846, 609, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '35.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5961, '2021-07-09', 2085, 5847, 609, 15917, '2.0000', '1.4000', '1.4000', '1.8000', '1.8000', '48.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5962, '2021-07-09', 1812, 5848, 609, 15829, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5963, '2021-07-09', 2088, 5849, 609, 742, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '53.0000', 1, 0, NULL, 56);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5964, '2021-07-09', 1481, 5850, 609, 1442, '1.0000', '24.9000', '24.9000', '36.5000', '36.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5965, '2021-07-09', 1530, 5851, 610, 15897, '1.0000', '28.7000', '28.7000', '38.0000', '38.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5966, '2021-07-09', 1912, 5852, 610, 15933, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5967, '2021-07-09', 1345, 5853, 610, 241, '1.0000', '44.0000', '44.0000', '65.0000', '65.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5968, '2021-07-09', 1554, 5854, 610, NULL, '1.0000', '90.0000', '90.0000', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5969, '2021-07-09', 2660, 5855, 610, NULL, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5970, '2021-07-09', 1616, 5856, 610, 15915, '1.0000', '6.8900', '6.8900', '7.5000', '7.5000', '98.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (5971, '2021-07-10', 1912, 5857, 611, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5972, '2021-07-10', 1912, 5857, 611, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5973, '2021-07-10', 1912, 5857, 611, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5974, '2021-07-10', 1912, 5857, 611, 1503, '2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '54.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5975, '2021-07-10', 2315, 5858, 611, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '414.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5976, '2021-07-10', 2633, 5859, 611, 17698, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5977, '2021-07-10', 2348, 5860, 611, 11887, '1.0000', '22.0300', '22.0300', '29.0000', '29.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5978, '2021-07-10', 1602, 5861, 611, 17715, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5979, '2021-07-10', 1394, 5862, 611, NULL, '1.0000', '6.5000', '6.5000', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5980, '2021-07-10', 2415, 5863, 611, NULL, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5981, '2021-07-10', 1432, 5864, 611, 13527, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5982, '2021-07-10', 1744, 5865, 611, 13556, '1.0000', '90.0000', '90.0000', '34.0000', '34.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5983, '2021-07-10', 2259, 5866, 611, 7122, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5984, '2021-07-10', 1651, 5867, 611, 17367, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5985, '2021-07-10', 2036, 5868, 611, 4401, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5986, '2021-07-10', 2662, 5869, 611, 12037, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5987, '2021-07-10', 1528, 5870, 611, 1535, '2.0000', '90.0000', '90.0000', '6.0000', '6.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5988, '2021-07-10', 2234, 5871, 611, 14573, '1.0000', '13.6000', '13.6000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5989, '2021-07-10', 2144, 5872, 611, NULL, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5990, '2021-07-10', 1863, 5873, 611, 17319, '5.0000', '1.2200', '1.2200', '2.0000', '2.0000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5991, '2021-07-10', 1856, 5874, 611, 4987, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5992, '2021-07-10', 1639, 5875, 611, 3268, '1.0000', '6.6300', '6.6300', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5993, '2021-07-10', 2088, 5876, 611, NULL, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5994, '2021-07-10', 2602, 5877, 611, 15795, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5995, '2021-07-10', 1871, 5878, 611, 8283, '10.0000', '90.0000', '90.0000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5996, '2021-07-10', 1871, 5878, 611, 5000, '17.0000', '90.0000', '90.0000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5997, '2021-07-10', 1619, 5879, 611, 10541, '1.0000', '9.8500', '9.8500', '13.0000', '13.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5998, '2021-07-10', 1619, 5879, 611, 9416, '1.0000', '9.8500', '9.8500', '13.0000', '13.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (5999, '2021-07-10', 2143, 5880, 611, NULL, '2.0000', '15.0000', '15.0000', '18.0000', '18.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6000, '2021-07-10', 2255, 5881, 611, 12676, '1.0000', '17.4900', '17.4900', '24.0000', '24.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6001, '2021-07-10', 2088, 5882, 611, NULL, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6002, '2021-07-10', 1578, 5883, 611, 9447, '1.0000', '1.9700', '1.9700', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6003, '2021-07-10', 1954, 5884, 611, NULL, '2.0000', '25.0000', '25.0000', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6004, '2021-07-10', 1894, 5885, 612, 5499, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6005, '2021-07-10', 1519, 5886, 612, 11167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6006, '2021-07-10', 2068, 5887, 612, NULL, '1.0000', '11.8000', '11.8000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6007, '2021-07-10', 1783, 5888, 613, 14570, '3.0000', '90.0000', '90.0000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6008, '2021-07-10', 2463, 5889, 613, 4840, '2.0000', '2.8700', '2.8700', '4.0000', '4.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6009, '2021-07-10', 2289, 5890, 613, 3129, '2.0000', '0.2300', '0.2300', '0.5000', '0.5000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6010, '2021-07-10', 1841, 5891, 613, 4974, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6011, '2021-07-10', 1840, 5892, 613, 4973, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6012, '2021-07-10', 2858, 5893, 613, 17780, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6013, '2021-07-10', 2041, 5894, 613, NULL, '1.0000', '12.0000', '12.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6014, '2021-07-10', 2676, 5895, 613, 12245, '20.0000', '2.4000', '2.4000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6015, '2021-07-10', 2676, 5895, 613, NULL, '1.0000', '2.4000', '2.4000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6016, '2021-07-10', 2120, 5896, 613, 2640, '1.0000', '5.0000', '5.0000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6017, '2021-07-10', 2167, 5897, 613, 17315, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6018, '2021-07-10', 2360, 5898, 613, 17042, '1.0000', '0.5200', '0.5200', '0.6900', '0.6900', '58.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6019, '2021-07-10', 2570, 5899, 613, 7215, '1.0000', '7.4900', '7.4900', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6020, '2021-07-10', 2864, 5900, 613, 17724, '2.0000', '1.5000', '1.5000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6021, '2021-07-10', 2068, 5901, 613, NULL, '1.0000', '11.8000', '11.8000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6022, '2021-07-10', 2486, 5902, 613, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6023, '2021-07-10', 2100, 5903, 613, 6012, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6024, '2021-07-10', 2250, 5904, 613, 17487, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6025, '2021-07-10', 2567, 5905, 613, 7200, '1.0000', '33.0000', '33.0000', '36.0000', '36.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6026, '2021-07-10', 1672, 5906, 613, 17725, '10.0000', '90.0000', '90.0000', '3.9000', '3.9000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6027, '2021-07-10', 1342, 5907, 613, 3381, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6028, '2021-07-10', 2816, 5908, 613, 16785, '3.0000', '0.8000', '0.8000', '1.0000', '1.0000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6029, '2021-07-10', 1816, 5909, 613, NULL, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6030, '2021-07-10', 1411, 5910, 613, 17697, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6031, '2021-07-10', 2254, 5911, 613, 16707, '1.0000', '17.9400', '17.9400', '24.0000', '24.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6032, '2021-07-10', 1809, 5912, 613, 13543, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6033, '2021-07-10', 2315, 5913, 613, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '413.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6034, '2021-07-10', 2268, 5914, 613, NULL, '1.0000', '14.6000', '14.6000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6035, '2021-07-10', 2320, 5915, 613, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6036, '2021-07-10', 1519, 5916, 613, 11167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6037, '2021-07-10', 2643, 5917, 613, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6038, '2021-07-10', 2315, 5918, 613, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '413.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6039, '2021-07-10', 1610, 5919, 613, 11874, '1.0000', '90.0000', '90.0000', '21.0000', '21.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6040, '2021-07-10', 2068, 5920, 613, NULL, '1.0000', '11.8000', '11.8000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6041, '2021-07-10', 1501, 5921, 613, 12680, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6042, '2021-07-10', 2072, 5922, 613, 13557, '1.0000', '7.3800', '7.3800', '11.0000', '11.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6043, '2021-07-10', 2289, 5923, 613, 3129, '1.0000', '0.2300', '0.2300', '0.5000', '0.5000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6044, '2021-07-10', 2556, 5924, 613, 7130, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6045, '2021-07-10', 1428, 5925, 613, NULL, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6046, '2021-07-10', 2169, 5926, 613, 17316, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6047, '2021-07-10', 1399, 5927, 613, 9568, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6048, '2021-07-10', 1863, 5928, 613, 17319, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6049, '2021-07-10', 2315, 5929, 613, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '413.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6050, '2021-07-10', 2443, 5930, 614, 5828, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6051, '2021-07-10', 2552, 5931, 614, NULL, '1.0000', '87.0000', '87.0000', '127.0000', '127.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6052, '2021-07-10', 2307, 5932, 614, 17451, '1.0000', '140.0000', '140.0000', '190.0000', '190.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6053, '2021-07-10', 2221, 5933, 614, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6054, '2021-07-10', 1604, 5934, 614, 11859, '2.0000', '70.6900', '70.6900', '51.5000', '51.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6055, '2021-07-10', 2815, 5935, 614, 17358, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6056, '2021-07-10', 2813, 5936, 614, 17368, '1.0000', '51.5300', '51.5300', '68.0000', '68.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6057, '2021-07-10', 2817, 5937, 614, 16787, '10.0000', '1.8000', '1.8000', '2.2000', '2.2000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6058, '2021-07-10', 1935, 5938, 614, 16698, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6059, '2021-07-10', 1523, 5939, 614, 17781, '2.0000', '0.9300', '0.9300', '5.0000', '5.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6060, '2021-07-10', 2546, 5940, 614, 17714, '1.0000', '13.6300', '13.6300', '18.0000', '18.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6061, '2021-07-10', 2085, 5941, 615, 9463, '10.0000', '13.3400', '13.3400', '1.8000', '1.8000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6062, '2021-07-10', 2359, 5942, 616, 13637, '1.0000', '16.2200', '16.2200', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6063, '2021-07-11', 2068, 5943, 617, NULL, '1.0000', '11.8000', '11.8000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6064, '2021-07-11', 1355, 5944, 617, 3394, '1.0000', '17.6200', '17.6200', '23.5000', '23.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6065, '2021-07-11', 1574, 5945, 617, 17030, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6066, '2021-07-11', 1796, 5946, 617, NULL, '2.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6067, '2021-07-11', 2274, 5947, 617, 3114, '1.0000', '3.9800', '3.9800', '6.5000', '6.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6068, '2021-07-11', 2096, 5948, 617, 6008, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6069, '2021-07-11', 1969, 5949, 617, 1522, '1.0000', '4.3300', '4.3300', '7.0000', '7.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6070, '2021-07-11', 2864, 5950, 617, 17839, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6071, '2021-07-11', 1839, 5951, 617, 17317, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6072, '2021-07-11', 1854, 5952, 617, 4985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6073, '2021-07-11', 1950, 5953, 617, 6005, '1.0000', '10.0000', '10.0000', '5.0000', '5.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6074, '2021-07-11', 1318, 5954, 617, 5491, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6075, '2021-07-11', 1533, 5955, 617, 10385, '1.0000', '3.0500', '3.0500', '4.5000', '4.5000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6076, '2021-07-11', 1935, 5956, 617, 16698, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6077, '2021-07-11', 2169, 5957, 617, 17316, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6078, '2021-07-11', 2157, 5958, 617, 5900, '2.0000', '0.9800', '0.9800', '2.5000', '2.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6079, '2021-07-11', 2221, 5959, 617, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6080, '2021-07-11', 1368, 5960, 617, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6081, '2021-07-11', 2102, 5961, 617, 6014, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6082, '2021-07-11', 2100, 5962, 617, 6012, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6083, '2021-07-11', 1863, 5963, 617, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6084, '2021-07-11', 2320, 5964, 617, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6085, '2021-07-11', 2136, 5965, 617, NULL, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6086, '2021-07-11', 2068, 5966, 617, NULL, '1.0000', '11.8000', '11.8000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6087, '2021-07-11', 1700, 5967, 617, 17844, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6088, '2021-07-11', 2088, 5968, 617, 9570, '-2.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6089, '2021-07-11', 2088, 5968, 617, 9570, '-2.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6090, '2021-07-11', 2088, 5968, 617, 6006, '3.0000', '1.3800', '1.3800', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6091, '2021-07-11', 2816, 5969, 617, 16785, '2.0000', '0.8000', '0.8000', '1.0000', '1.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6092, '2021-07-11', 1828, 5970, 617, 4963, '1.0000', '0.7300', '0.7300', '1.0000', '1.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6093, '2021-07-11', 2384, 5971, 617, 4370, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6094, '2021-07-11', 1812, 5972, 617, 11858, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6095, '2021-07-11', 1523, 5973, 617, 17781, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6096, '2021-07-11', 1620, 5974, 617, NULL, '4.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6097, '2021-07-11', 1621, 5975, 617, 13614, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6098, '2021-07-11', 1904, 5976, 617, 12070, '2.0000', '90.0000', '90.0000', '1.0000', '1.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6099, '2021-07-11', 1659, 5977, 617, 13632, '1.0000', '90.0000', '90.0000', '55.0000', '55.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6100, '2021-07-11', 1519, 5978, 617, 11167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6101, '2021-07-11', 2315, 5979, 617, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '410.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6102, '2021-07-11', 1863, 5980, 617, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6103, '2021-07-11', 2235, 5981, 617, 14572, '1.0000', '17.8000', '17.8000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6104, '2021-07-11', 2482, 5982, 617, 5194, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6105, '2021-07-11', 2807, 5983, 617, 16931, '3.0000', '1.0000', '1.0000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6106, '2021-07-11', 2313, 5984, 617, 5631, '1.0000', '8.7000', '8.7000', '12.0000', '12.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6107, '2021-07-11', 1649, 5985, 617, 17447, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6108, '2021-07-11', 1851, 5986, 617, NULL, '1.0000', '11.5600', '11.5600', '16.5000', '16.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6109, '2021-07-11', 2706, 5987, 617, 14584, '1.0000', '6.5900', '6.5900', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6110, '2021-07-11', 2821, 5988, 617, 17043, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6111, '2021-07-11', 1812, 5989, 617, 11858, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6112, '2021-07-11', 2325, 5990, 617, 5088, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6113, '2021-07-11', 1523, 5991, 617, 17781, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6114, '2021-07-11', 2713, 5992, 617, 12782, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6115, '2021-07-11', 1389, 5993, 617, NULL, '1.0000', '90.0000', '90.0000', '22.5000', '22.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6116, '2021-07-11', 2382, 5994, 617, 4388, '1.0000', '15.6600', '15.6600', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6117, '2021-07-11', 1938, 5995, 617, 5604, '1.0000', '11.0000', '11.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6118, '2021-07-11', 1452, 5996, 617, 5632, '1.0000', '1.2300', '1.2300', '2.0000', '2.0000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6119, '2021-07-11', 2228, 5997, 617, 17382, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6120, '2021-07-11', 2262, 5998, 617, 3103, '2.0000', '4.5000', '4.5000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6121, '2021-07-11', 1668, 5999, 617, 16913, '1.0000', '90.0000', '90.0000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6122, '2021-07-11', 2821, 6000, 617, 17043, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6123, '2021-07-11', 2088, 6001, 617, 9570, '-2.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6124, '2021-07-11', 2088, 6001, 617, 9570, '-2.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6125, '2021-07-11', 2088, 6001, 617, 6006, '3.0000', '1.3800', '1.3800', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6126, '2021-07-11', 2302, 6002, 617, 17328, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6127, '2021-07-11', 1450, 6003, 617, NULL, '5.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6128, '2021-07-11', 1947, 6004, 617, 4998, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6129, '2021-07-11', 2288, 6005, 617, 17858, '1.0000', '7.5900', '7.5900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6130, '2021-07-11', 1772, 6006, 617, 11893, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6131, '2021-07-11', 1640, 6007, 617, 6789, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (6132, '2021-07-11', 2346, 6008, 617, 3885, '1.0000', '5.5000', '5.5000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6133, '2021-07-11', 2569, 6009, 617, 7214, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6134, '2021-07-11', 2093, 6010, 617, 6001, '1.0000', '2.5500', '2.5500', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6135, '2021-07-11', 1351, 6011, 617, 14568, '1.0000', '35.0000', '35.0000', '47.0000', '47.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6136, '2021-07-11', 1946, 6012, 617, 6000, '1.0000', '10.0000', '10.0000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6137, '2021-07-11', 1409, 6013, 617, 12684, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6138, '2021-07-11', 2554, 6014, 617, NULL, '2.0000', '1.0000', '1.0000', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6139, '2021-07-11', 1687, 6015, 617, 16899, '1.0000', '12.0000', '12.0000', '15.5000', '15.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6140, '2021-07-11', 1700, 6016, 617, 17844, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6141, '2021-07-11', 2261, 6017, 617, 17843, '1.0000', '18.9900', '18.9900', '25.0000', '25.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6142, '2021-07-11', 1386, 6018, 617, 17862, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6143, '2021-07-11', 2892, 6019, 618, 18051, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6144, '2021-07-11', 2167, 6020, 619, 17315, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6145, '2021-07-11', 2331, 6021, 619, 12385, '1.0000', '12.0700', '12.0700', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6146, '2021-07-11', 1904, 6022, 619, 12070, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6147, '2021-07-11', 1831, 6023, 619, 17457, '1.0000', '90.0000', '90.0000', '11.5000', '11.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6148, '2021-07-11', 1651, 6024, 619, 17367, '2.0000', '6.8300', '6.8300', '10.5000', '10.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6149, '2021-07-11', 1904, 6025, 619, 12070, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6150, '2021-07-11', 2568, 6026, 619, NULL, '10.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6151, '2021-07-11', 1519, 6027, 619, 11167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6152, '2021-07-11', 2821, 6028, 620, 17043, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6153, '2021-07-12', 2097, 6029, 621, 6009, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6154, '2021-07-12', 2491, 6030, 621, 12239, '1.0000', '12.2000', '12.2000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6155, '2021-07-12', 2234, 6031, 621, 18174, '1.0000', '13.6000', '13.6000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6156, '2021-07-12', 2274, 6032, 621, 3114, '1.0000', '3.9800', '3.9800', '6.5000', '6.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6157, '2021-07-12', 2294, 6033, 621, 11045, '1.0000', '3.5000', '3.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6158, '2021-07-12', 2410, 6034, 621, 4820, '1.0000', '4.3200', '4.3200', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6159, '2021-07-12', 1863, 6035, 621, 17319, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6160, '2021-07-12', 2363, 6036, 621, 3868, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6161, '2021-07-12', 2643, 6037, 621, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6162, '2021-07-12', 2566, 6038, 621, NULL, '1.0000', '16.0000', '16.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6163, '2021-07-12', 2144, 6039, 621, NULL, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6164, '2021-07-12', 2416, 6040, 621, 4827, '2.0000', '1.2000', '1.2000', '1.5000', '1.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6165, '2021-07-12', 1872, 6041, 621, 12746, '1.0000', '9.0500', '9.0500', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6166, '2021-07-12', 1837, 6042, 621, NULL, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6167, '2021-07-12', 2289, 6043, 621, 3129, '3.0000', '0.2300', '0.2300', '0.5000', '0.5000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6168, '2021-07-12', 1841, 6044, 621, 4974, '3.0000', '0.3700', '0.3700', '0.5000', '0.5000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6169, '2021-07-12', 1662, 6045, 621, 16693, '1.0000', '90.0000', '90.0000', '69.0000', '69.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6170, '2021-07-12', 2238, 6046, 621, 14564, '1.0000', '39.0000', '39.0000', '51.0000', '51.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6171, '2021-07-12', 2238, 6046, 621, 14565, '3.0000', '39.0000', '39.0000', '51.0000', '51.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6172, '2021-07-12', 2631, 6047, 621, 10217, '2.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6173, '2021-07-12', 2088, 6048, 621, NULL, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6174, '2021-07-12', 1876, 6049, 621, NULL, '2.0000', '90.0000', '90.0000', '34.0000', '34.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6175, '2021-07-12', 2316, 6050, 621, 17381, '1.0000', '44.0000', '44.0000', '48.0000', '48.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6176, '2021-07-12', 1629, 6051, 621, 17851, '1.0000', '13.7900', '13.7900', '18.5000', '18.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6177, '2021-07-12', 2085, 6052, 621, 18175, '10.0000', '13.3400', '13.3400', '1.8000', '1.8000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6178, '2021-07-12', 1302, 6053, 621, 3071, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6179, '2021-07-12', 2096, 6054, 621, 6008, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6180, '2021-07-12', 2085, 6055, 621, 18175, '2.0000', '13.3400', '13.3400', '1.8000', '1.8000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6181, '2021-07-12', 2167, 6056, 621, 17315, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6182, '2021-07-12', 1978, 6057, 621, 6462, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6183, '2021-07-12', 1432, 6058, 622, 17924, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6184, '2021-07-12', 2315, 6059, 622, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '408.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6185, '2021-07-12', 1859, 6060, 622, 18059, '1.0000', '90.0000', '90.0000', '32.0000', '32.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6186, '2021-07-12', 2614, 6061, 622, 16703, '1.0000', '52.5100', '52.5100', '71.0000', '71.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6187, '2021-07-12', 2558, 6062, 622, 17779, '2.0000', '5.0000', '5.0000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6188, '2021-07-12', 1465, 6063, 622, 12744, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6189, '2021-07-12', 2236, 6064, 622, 16907, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6190, '2021-07-12', 1411, 6065, 622, 17866, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6191, '2021-07-12', 2168, 6066, 622, 18161, '1.0000', '26.0000', '26.0000', '39.0000', '39.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6192, '2021-07-12', 1519, 6067, 622, 11167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6193, '2021-07-12', 2633, 6068, 622, 17865, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6194, '2021-07-12', 1639, 6069, 622, 3268, '1.0000', '6.6300', '6.6300', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6195, '2021-07-12', 2643, 6070, 622, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6196, '2021-07-12', 2463, 6071, 622, 4840, '4.0000', '2.8700', '2.8700', '4.0000', '4.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6197, '2021-07-12', 2772, 6072, 622, 16691, '1.0000', '16.7000', '16.7000', '22.0000', '22.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6198, '2021-07-12', 2425, 6073, 622, 5810, '1.0000', '24.0000', '24.0000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6199, '2021-07-12', 2893, 6074, 622, 18181, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6200, '2021-07-12', 1624, 6075, 622, 12068, '1.0000', '90.0000', '90.0000', '39.0000', '39.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6201, '2021-07-12', 1754, 6076, 622, 17309, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6202, '2021-07-12', 2167, 6077, 622, 17315, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6203, '2021-07-12', 1425, 6078, 622, 17923, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6204, '2021-07-12', 1711, 6079, 622, 14579, '1.0000', '7.4900', '7.4900', '11.0000', '11.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6205, '2021-07-12', 2144, 6080, 622, NULL, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6206, '2021-07-12', 1761, 6081, 622, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6207, '2021-07-12', 2315, 6082, 622, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '408.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6208, '2021-07-12', 1863, 6083, 622, 17319, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6209, '2021-07-12', 1585, 6084, 622, 17845, '1.0000', '8.9900', '8.9900', '17.5000', '17.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6210, '2021-07-12', 2062, 6085, 622, 2178, '1.0000', '5.8900', '5.8900', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6211, '2021-07-12', 2703, 6086, 622, 12749, '1.0000', '4.3600', '4.3600', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6212, '2021-07-12', 2459, 6087, 622, 4831, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6213, '2021-07-12', 1432, 6088, 622, 17924, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6214, '2021-07-12', 1640, 6089, 622, 6789, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (6215, '2021-07-12', 1529, 6090, 622, 16912, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6216, '2021-07-12', 1596, 6091, 622, 18056, '1.0000', '2.5700', '2.5700', '3.8300', '3.8300', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6217, '2021-07-12', 1969, 6092, 622, 1522, '1.0000', '4.3300', '4.3300', '7.0000', '7.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6218, '2021-07-12', 1533, 6093, 622, 10385, '1.0000', '3.0500', '3.0500', '4.5000', '4.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6219, '2021-07-12', 1935, 6094, 622, 16698, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6220, '2021-07-12', 1375, 6095, 622, 14587, '1.0000', '90.0000', '90.0000', '35.0000', '35.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6221, '2021-07-12', 1645, 6096, 622, 11392, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6222, '2021-07-12', 1863, 6097, 622, 17319, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6223, '2021-07-12', 1533, 6098, 622, 10385, '1.0000', '3.0500', '3.0500', '4.5000', '4.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6224, '2021-07-12', 1935, 6099, 622, 16698, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6225, '2021-07-12', 1651, 6100, 622, 18183, '1.0000', '6.8300', '6.8300', '10.5000', '10.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6226, '2021-07-12', 2454, 6101, 622, 5657, '1.0000', '7.5400', '7.5400', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6227, '2021-07-12', 2434, 6102, 622, 5838, '1.0000', '5.2000', '5.2000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6228, '2021-07-12', 2259, 6103, 622, 18189, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6229, '2021-07-12', 2345, 6104, 622, 10554, '1.0000', '7.6400', '7.6400', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6230, '2021-07-12', 2169, 6105, 622, 17316, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6231, '2021-07-12', 1346, 6106, 622, NULL, '4.0000', '0.9300', '0.9300', '1.5000', '1.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6232, '2021-07-12', 1596, 6107, 622, 18056, '1.0000', '2.5700', '2.5700', '3.8300', '3.8300', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6233, '2021-07-12', 1800, 6108, 622, 18182, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6234, '2021-07-12', 2327, 6109, 622, 12241, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6235, '2021-07-12', 2327, 6109, 622, 12242, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6236, '2021-07-12', 2260, 6110, 622, 12238, '2.0000', '4.2000', '4.2000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6237, '2021-07-12', 2463, 6111, 622, 4840, '3.0000', '2.8700', '2.8700', '4.0000', '4.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6238, '2021-07-12', 1574, 6112, 622, 17030, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6239, '2021-07-12', 1432, 6113, 622, 17924, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6240, '2021-07-12', 2810, 6114, 622, 17850, '2.0000', '2.2000', '2.2000', '2.9000', '2.9000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6241, '2021-07-12', 2568, 6115, 622, NULL, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6242, '2021-07-12', 2817, 6116, 622, 16787, '10.0000', '1.8000', '1.8000', '2.2000', '2.2000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6243, '2021-07-12', 1504, 6117, 622, 17840, '10.0000', '90.0000', '90.0000', '2.0000', '2.0000', '58.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6244, '2021-07-12', 2866, 6118, 622, 17783, '10.0000', '0.8800', '0.8800', '1.5000', '1.5000', '190.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6245, '2021-07-12', 2240, 6119, 622, 17841, '1.0000', '33.0000', '33.0000', '49.0000', '49.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6246, '2021-07-12', 1499, 6120, 623, 1502, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6247, '2021-07-12', 2167, 6121, 623, 17315, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6248, '2021-07-12', 2237, 6122, 623, 3083, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6249, '2021-07-12', 2893, 6123, 623, 18181, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6250, '2021-07-12', 1349, 6124, 623, 18072, '1.0000', '32.5000', '32.5000', '46.0000', '46.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6251, '2021-07-12', 1533, 6125, 623, 10385, '1.0000', '3.0500', '3.0500', '4.5000', '4.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6252, '2021-07-12', 1645, 6126, 623, 11392, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6253, '2021-07-12', 1935, 6127, 623, 16698, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6254, '2021-07-12', 1666, 6128, 624, 17033, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6255, '2021-07-12', 1667, 6129, 624, 13562, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6256, '2021-07-12', 1666, 6130, 625, 17033, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6257, '2021-07-13', 1666, 6131, 626, 17033, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6258, '2021-07-13', 2104, 6132, 626, 6016, '1.0000', '0.2000', '0.2000', '1.0000', '1.0000', '134.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6259, '2021-07-13', 1999, 6133, 626, 6444, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6260, '2021-07-13', 2135, 6134, 626, 16893, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6261, '2021-07-13', 2036, 6135, 626, 4401, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6262, '2021-07-13', 1688, 6136, 626, 4940, '1.0000', '16.9900', '16.9900', '24.0000', '24.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6263, '2021-07-13', 2279, 6137, 626, 17312, '3.0000', '2.6000', '2.6000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6264, '2021-07-13', 1863, 6138, 626, 17319, '5.0000', '1.2200', '1.2200', '2.0000', '2.0000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6265, '2021-07-13', 1427, 6139, 626, 18247, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6266, '2021-07-13', 1851, 6140, 626, 18280, '1.0000', '11.5600', '11.5600', '16.5000', '16.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6267, '2021-07-13', 1637, 6141, 626, 17491, '1.0000', '90.0000', '90.0000', '14.0000', '14.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6268, '2021-07-13', 2317, 6142, 626, 15799, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6269, '2021-07-13', 2381, 6143, 626, 16900, '1.0000', '10.8700', '10.8700', '14.5000', '14.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6270, '2021-07-13', 1873, 6144, 626, 16904, '2.0000', '90.0000', '90.0000', '15.5000', '15.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6271, '2021-07-13', 1425, 6145, 626, 17923, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6272, '2021-07-13', 2237, 6146, 626, 3083, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6273, '2021-07-13', 1533, 6147, 626, 10385, '1.0000', '3.0500', '3.0500', '4.5000', '4.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6274, '2021-07-13', 2602, 6148, 626, 15795, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6275, '2021-07-13', 2068, 6149, 626, 18268, '1.0000', '11.8000', '11.8000', '17.0000', '17.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6276, '2021-07-13', 2326, 6150, 626, 5086, '1.0000', '18.0000', '18.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6277, '2021-07-13', 1324, 6151, 627, 3363, '1.0000', '90.0000', '90.0000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6278, '2021-07-13', 1783, 6152, 628, 14570, '2.0000', '90.0000', '90.0000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6279, '2021-07-13', 1783, 6152, 628, 10551, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6280, '2021-07-13', 1557, 6153, 628, 1661, '1.0000', '7.8800', '7.8800', '10.5000', '10.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6281, '2021-07-13', 1308, 6154, 628, 2479, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6282, '2021-07-13', 2859, 6155, 628, 17456, '1.0000', '0.6700', '0.6700', '2.0000', '2.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6283, '2021-07-13', 2662, 6156, 628, 12037, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6284, '2021-07-13', 2154, 6157, 628, 13638, '1.0000', '10.5000', '10.5000', '14.5000', '14.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6285, '2021-07-13', 1339, 6158, 628, 13568, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6286, '2021-07-13', 1425, 6159, 628, 17923, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6287, '2021-07-13', 2491, 6160, 628, 7114, '1.0000', '12.2000', '12.2000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6288, '2021-07-13', 1851, 6161, 628, 18410, '1.0000', '11.5600', '11.5600', '16.5000', '16.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6289, '2021-07-13', 2236, 6162, 628, 3082, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6290, '2021-07-13', 1961, 6163, 628, NULL, '1.0000', '16.3900', '16.3900', '26.0000', '26.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6291, '2021-07-13', 1304, 6164, 628, 2475, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6292, '2021-07-13', 1302, 6165, 628, 3071, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6293, '2021-07-13', 2342, 6166, 628, 17859, '10.0000', '1.8600', '1.8600', '2.5000', '2.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6294, '2021-07-13', 1386, 6167, 628, 17862, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6295, '2021-07-13', 1863, 6168, 628, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6296, '2021-07-13', 2245, 6169, 628, NULL, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6297, '2021-07-13', 2297, 6170, 628, 18055, '1.0000', '7.2000', '7.2000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6298, '2021-07-13', 1339, 6171, 628, 13568, '1.0000', '1.5000', '1.5000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6299, '2021-07-13', 1619, 6172, 628, NULL, '2.0000', '9.8500', '9.8500', '13.0000', '13.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6300, '2021-07-13', 1494, 6173, 628, NULL, '1.0000', '4.3900', '4.3900', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6301, '2021-07-13', 1908, 6174, 628, 5510, '2.0000', '1.7500', '1.7500', '1.0000', '1.0000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6302, '2021-07-13', 2032, 6175, 628, 6418, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6303, '2021-07-13', 2169, 6176, 628, 17316, '2.0000', '0.9800', '0.9800', '1.5000', '1.5000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6304, '2021-07-13', 2416, 6177, 628, 4827, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6305, '2021-07-13', 2315, 6178, 628, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '405.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6306, '2021-07-13', 2442, 6179, 628, 5827, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6307, '2021-07-13', 1602, 6180, 628, 17848, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6308, '2021-07-13', 1837, 6181, 628, NULL, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6309, '2021-07-13', 2544, 6182, 628, 12730, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6310, '2021-07-13', 1839, 6183, 628, 17318, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6311, '2021-07-13', 2020, 6184, 628, 16689, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6312, '2021-07-13', 1811, 6185, 628, 18067, '1.0000', '14.5300', '14.5300', '19.5000', '19.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6313, '2021-07-13', 1812, 6186, 628, 18423, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6314, '2021-07-13', 1619, 6187, 628, NULL, '1.0000', '9.8500', '9.8500', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6315, '2021-07-13', 1499, 6188, 628, 1502, '3.0000', '0.4100', '0.4100', '0.6000', '0.6000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6316, '2021-07-13', 2236, 6189, 628, 3082, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6317, '2021-07-13', 1621, 6190, 628, 13614, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6318, '2021-07-13', 2821, 6191, 628, 17043, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6319, '2021-07-13', 2713, 6192, 628, 12782, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6320, '2021-07-13', 1602, 6193, 628, 17848, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6321, '2021-07-13', 1602, 6194, 628, 17848, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6322, '2021-07-13', 2444, 6195, 628, 16934, '1.0000', '6.0000', '6.0000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6323, '2021-07-13', 2440, 6196, 628, 5824, '1.0000', '5.1000', '5.1000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6324, '2021-07-13', 1304, 6197, 628, 2475, '1.0000', '1.4500', '1.4500', '3.0000', '3.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6325, '2021-07-13', 2333, 6198, 628, 3898, '1.0000', '33.0000', '33.0000', '43.5000', '43.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6326, '2021-07-13', 1837, 6199, 628, NULL, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6327, '2021-07-13', 2167, 6200, 628, 17315, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6328, '2021-07-13', 2333, 6201, 628, 3898, '1.0000', '33.0000', '33.0000', '43.5000', '43.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6329, '2021-07-13', 1585, 6202, 628, 17845, '1.0000', '8.9900', '8.9900', '17.5000', '17.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6330, '2021-07-13', 1533, 6203, 628, 10385, '1.0000', '3.0500', '3.0500', '4.5000', '4.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6331, '2021-07-13', 1385, 6204, 628, 3428, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6332, '2021-07-13', 1934, 6205, 628, 5608, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6333, '2021-07-13', 1733, 6206, 628, 12727, '1.0000', '8.8900', '8.8900', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6334, '2021-07-13', 2270, 6207, 628, 18434, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6335, '2021-07-13', 1953, 6208, 628, 3407, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6336, '2021-07-13', 1521, 6209, 628, 18427, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6337, '2021-07-13', 1727, 6210, 628, 6803, '2.0000', '1.8000', '1.8000', '3.7000', '3.7000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6338, '2021-07-13', 1863, 6211, 628, 17319, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6339, '2021-07-13', 1386, 6212, 628, 17862, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6340, '2021-07-13', 2712, 6213, 628, 12781, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '57.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6341, '2021-07-13', 1655, 6214, 628, 9546, '1.0000', '90.0000', '90.0000', '45.0000', '45.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6342, '2021-07-13', 2821, 6215, 628, 17043, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6343, '2021-07-13', 2565, 6216, 629, 7198, '2.0000', '0.8100', '0.8100', '1.5000', '1.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6344, '2021-07-14', 1851, 6217, 630, NULL, '1.0000', '11.5600', '11.5600', '16.5000', '16.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6345, '2021-07-14', 1621, 6218, 630, 13614, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6346, '2021-07-14', 2485, 6219, 630, 5197, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6347, '2021-07-14', 1452, 6220, 630, 5632, '1.0000', '1.2300', '1.2300', '2.0000', '2.0000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6348, '2021-07-14', 1574, 6221, 630, 17030, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6349, '2021-07-14', 2272, 6222, 630, 18418, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6350, '2021-07-14', 1342, 6223, 630, 18420, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6351, '2021-07-14', 1577, 6224, 630, 9448, '1.0000', '2.1000', '2.1000', '3.5000', '3.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6352, '2021-07-14', 2277, 6225, 630, 3117, '1.0000', '0.7800', '0.7800', '1.0000', '1.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6353, '2021-07-14', 1935, 6226, 630, 16698, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6354, '2021-07-14', 2568, 6227, 630, NULL, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6355, '2021-07-14', 1760, 6228, 630, 6783, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (6356, '2021-07-14', 1342, 6229, 630, 18420, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6357, '2021-07-14', 1649, 6230, 630, 17447, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6358, '2021-07-14', 1519, 6231, 630, 11167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6359, '2021-07-14', 2635, 6232, 630, 10298, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6360, '2021-07-14', 1333, 6233, 630, 3372, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6361, '2021-07-14', 2298, 6234, 630, 12736, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6362, '2021-07-14', 2167, 6235, 630, 17315, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6363, '2021-07-14', 2635, 6236, 630, 10298, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6364, '2021-07-14', 1340, 6237, 630, 13569, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6365, '2021-07-14', 1493, 6238, 630, 18691, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6366, '2021-07-14', 1621, 6239, 631, 13614, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6367, '2021-07-14', 1570, 6240, 631, 10207, '1.0000', '90.0000', '90.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6368, '2021-07-14', 1570, 6240, 631, NULL, '1.0000', '90.0000', '90.0000', '60.0000', '60.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6369, '2021-07-14', 2131, 6241, 631, 10576, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6370, '2021-07-14', 1425, 6242, 631, 17923, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6371, '2021-07-14', 1748, 6243, 632, 1527, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6372, '2021-07-14', 1846, 6244, 632, 18409, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6373, '2021-07-14', 1574, 6245, 632, 17030, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6374, '2021-07-14', 1602, 6246, 632, 17848, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6375, '2021-07-14', 1616, 6247, 633, NULL, '2.0000', '4.0000', '4.0000', '7.5000', '7.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6376, '2021-07-14', 2506, 6248, 633, 16909, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6377, '2021-07-14', 1822, 6249, 633, 12682, '20.0000', '2.4000', '2.4000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6378, '2021-07-14', 1309, 6250, 633, 3074, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6379, '2021-07-14', 1596, 6251, 633, 18056, '1.0000', '2.5700', '2.5700', '3.8300', '3.8300', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6380, '2021-07-14', 2290, 6252, 633, 18062, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6381, '2021-07-14', 1730, 6253, 633, 18053, '1.0000', '23.9100', '23.9100', '32.0000', '32.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6382, '2021-07-14', 2854, 6254, 633, 17370, '1.0000', '8.9500', '8.9500', '12.0000', '12.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6383, '2021-07-14', 1592, 6255, 633, 17856, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6384, '2021-07-14', 2546, 6256, 633, 18669, '1.0000', '13.6300', '13.6300', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6385, '2021-07-14', 2360, 6257, 633, 17042, '2.0000', '0.5200', '0.5200', '0.6900', '0.6900', '56.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6386, '2021-07-14', 2315, 6258, 633, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '404.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6387, '2021-07-14', 1651, 6259, 633, 18433, '1.0000', '6.8300', '6.8300', '10.5000', '10.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6388, '2021-07-14', 1573, 6260, 633, NULL, '1.0000', '90.0000', '90.0000', '32.5000', '32.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6389, '2021-07-14', 1523, 6261, 633, 17781, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6390, '2021-07-14', 2892, 6262, 633, 18051, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6391, '2021-07-14', 2712, 6263, 633, 12781, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '56.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6392, '2021-07-14', 2279, 6264, 633, 17312, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6393, '2021-07-14', 1841, 6265, 633, 4974, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6394, '2021-07-14', 2289, 6266, 633, 3129, '3.0000', '0.2300', '0.2300', '0.5000', '0.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6395, '2021-07-14', 1837, 6267, 633, 18709, '3.0000', '0.5500', '0.5500', '1.0000', '1.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6396, '2021-07-14', 2603, 6268, 633, 15794, '1.0000', '1.0000', '1.0000', '1.3000', '1.3000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6397, '2021-07-14', 1730, 6269, 633, 18053, '1.0000', '23.9100', '23.9100', '32.0000', '32.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6398, '2021-07-14', 2332, 6270, 633, 3899, '1.0000', '5.0900', '5.0900', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6399, '2021-07-14', 2273, 6271, 633, 3113, '1.0000', '2.6700', '2.6700', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6400, '2021-07-14', 2316, 6272, 633, 17381, '1.0000', '44.0000', '44.0000', '48.0000', '48.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6401, '2021-07-14', 1409, 6273, 633, 18706, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6402, '2021-07-14', 1529, 6274, 633, 16912, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6403, '2021-07-14', 2437, 6275, 633, 10595, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6404, '2021-07-14', 1736, 6276, 633, 12755, '2.0000', '26.7000', '26.7000', '38.0000', '38.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6405, '2021-07-14', 1584, 6277, 633, 9443, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6406, '2021-07-14', 2649, 6278, 633, 11177, '1.0000', '71.0000', '71.0000', '94.0000', '94.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6407, '2021-07-14', 1306, 6279, 633, 5611, '5.0000', '2.1000', '2.1000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6408, '2021-07-14', 1651, 6280, 633, 18433, '1.0000', '6.8300', '6.8300', '10.5000', '10.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6409, '2021-07-14', 1420, 6281, 633, NULL, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6410, '2021-07-14', 2335, 6282, 633, 12240, '1.0000', '13.9000', '13.9000', '18.5000', '18.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6411, '2021-07-14', 2178, 6283, 633, NULL, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6412, '2021-07-14', 1604, 6284, 633, 11859, '2.0000', '70.6900', '70.6900', '51.5000', '51.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6413, '2021-07-14', 1863, 6285, 633, 17319, '10.0000', '1.2200', '1.2200', '2.0000', '2.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6414, '2021-07-14', 2665, 6286, 633, 11866, '1.0000', '23.7600', '23.7600', '32.0000', '32.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6415, '2021-07-14', 1574, 6287, 633, 17030, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6416, '2021-07-14', 1555, 6288, 633, 4920, '1.0000', '90.0000', '90.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6417, '2021-07-14', 2810, 6289, 633, 17850, '2.0000', '2.2000', '2.2000', '2.9000', '2.9000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6418, '2021-07-14', 2810, 6289, 633, NULL, '3.0000', '2.2000', '2.2000', '2.9000', '2.9000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6419, '2021-07-14', 2712, 6290, 634, 12781, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '54.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6420, '2021-07-14', 2285, 6291, 634, 17484, '2.0000', '35.8000', '35.8000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6421, '2021-07-14', 1935, 6292, 634, 16698, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6422, '2021-07-14', 1347, 6293, 634, NULL, '10.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6423, '2021-07-14', 1908, 6294, 634, 5510, '1.0000', '1.7500', '1.7500', '1.0000', '1.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6424, '2021-07-14', 2169, 6295, 634, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6425, '2021-07-14', 2859, 6296, 634, 17456, '1.0000', '0.6700', '0.6700', '2.0000', '2.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6426, '2021-07-14', 2916, 6297, 635, 18802, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6427, '2021-07-14', 2672, 6298, 635, 11890, '6.0000', '7.6200', '7.6200', '10.0000', '10.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6428, '2021-07-14', 2342, 6299, 636, 17859, '10.0000', '1.8600', '1.8600', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6429, '2021-07-14', 2342, 6299, 636, 17860, '4.0000', '1.8600', '1.8600', '2.5000', '2.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6430, '2021-07-14', 2288, 6300, 636, 17858, '1.0000', '7.5900', '7.5900', '11.0000', '11.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6431, '2021-07-15', 2104, 6301, 637, 6016, '2.0000', '0.2000', '0.2000', '1.0000', '1.0000', '132.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6432, '2021-07-15', 1432, 6302, 637, 17924, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6433, '2021-07-15', 2345, 6303, 637, 18656, '1.0000', '7.6400', '7.6400', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6434, '2021-07-15', 1854, 6304, 637, 4985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6435, '2021-07-15', 1596, 6305, 637, 18056, '1.0000', '2.5700', '2.5700', '3.8300', '3.8300', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6436, '2021-07-15', 2386, 6306, 637, 4391, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6437, '2021-07-15', 2274, 6307, 637, 3114, '1.0000', '3.9800', '3.9800', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6438, '2021-07-15', 1336, 6308, 637, 3375, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6439, '2021-07-15', 1504, 6309, 637, 17840, '10.0000', '90.0000', '90.0000', '2.0000', '2.0000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6440, '2021-07-15', 2056, 6310, 637, NULL, '1.0000', '5.4100', '5.4100', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6441, '2021-07-15', 1905, 6311, 637, 5509, '1.0000', '0.4000', '0.4000', '1.0000', '1.0000', '78.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6442, '2021-07-15', 1935, 6312, 637, 16698, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6443, '2021-07-15', 2830, 6313, 637, 16983, '1.0000', '20.5000', '20.5000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6444, '2021-07-15', 1626, 6314, 637, 11173, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6445, '2021-07-15', 2486, 6315, 637, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6446, '2021-07-15', 1667, 6316, 637, 18662, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6447, '2021-07-15', 1450, 6317, 637, NULL, '7.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6448, '2021-07-15', 2393, 6318, 637, 17864, '2.0000', '2.0000', '2.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6449, '2021-07-15', 1828, 6319, 637, 4963, '2.0000', '0.7300', '0.7300', '1.0000', '1.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6450, '2021-07-15', 2392, 6320, 637, 11879, '1.0000', '3.2000', '3.2000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6451, '2021-07-15', 2108, 6321, 637, 6020, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6452, '2021-07-15', 1912, 6322, 637, NULL, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6453, '2021-07-15', 2222, 6323, 637, 1496, '1.0000', '13.5000', '13.5000', '16.0000', '16.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6454, '2021-07-15', 1910, 6324, 637, NULL, '1.0000', '1.0200', '1.0200', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6455, '2021-07-15', 1999, 6325, 638, 6444, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6456, '2021-07-15', 1302, 6326, 638, 2658, '2.0000', '4.0000', '4.0000', '6.0000', '6.0000', '25.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (6457, '2021-07-15', 1837, 6327, 639, 18709, '4.0000', '0.5500', '0.5500', '1.0000', '1.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6458, '2021-07-15', 1310, 6328, 639, 12052, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6459, '2021-07-15', 1310, 6329, 639, 12052, '8.0000', '0.3700', '0.3700', '0.5000', '0.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6460, '2021-07-15', 2221, 6330, 639, 18681, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6461, '2021-07-15', 2237, 6331, 639, 3083, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6462, '2021-07-15', 1787, 6332, 639, 4930, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6463, '2021-07-15', 2416, 6333, 639, 4827, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6464, '2021-07-15', 1604, 6334, 639, 8407, '2.0000', '70.6900', '70.6900', '51.5000', '51.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6465, '2021-07-15', 1942, 6335, 639, 18704, '2.0000', '19.5000', '19.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6466, '2021-07-15', 2343, 6336, 639, 3888, '1.0000', '36.2500', '36.2500', '51.0000', '51.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6467, '2021-07-15', 1700, 6337, 639, 17844, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6468, '2021-07-15', 1573, 6338, 639, NULL, '1.0000', '90.0000', '90.0000', '32.5000', '32.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6469, '2021-07-15', 2272, 6339, 639, 18418, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6470, '2021-07-15', 2604, 6340, 639, 18405, '1.0000', '90.0000', '90.0000', '120.0000', '120.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6471, '2021-07-15', 2654, 6341, 639, 11191, '1.0000', '18.0000', '18.0000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6472, '2021-07-15', 1541, 6342, 639, 18054, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6473, '2021-07-15', 1337, 6343, 639, 17039, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6474, '2021-07-15', 2506, 6344, 639, 16909, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6475, '2021-07-15', 1314, 6345, 639, 3076, '1.0000', '1.2000', '1.2000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6476, '2021-07-15', 1452, 6346, 639, 5632, '1.0000', '1.2300', '1.2300', '2.0000', '2.0000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6477, '2021-07-15', 2394, 6347, 639, 10241, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6478, '2021-07-15', 2660, 6348, 639, 18686, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6479, '2021-07-15', 1425, 6349, 639, 17923, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6480, '2021-07-15', 1772, 6350, 639, 18695, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6481, '2021-07-15', 2600, 6351, 639, 9052, '1.0000', '56.5000', '56.5000', '74.5000', '74.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6482, '2021-07-15', 2061, 6352, 639, 11010, '1.0000', '10.9800', '10.9800', '15.0000', '15.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6483, '2021-07-15', 1904, 6353, 639, 12070, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6484, '2021-07-15', 1511, 6354, 639, 13620, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6485, '2021-07-15', 2270, 6355, 639, 18434, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6486, '2021-07-15', 1733, 6356, 639, 12727, '1.0000', '8.8900', '8.8900', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6487, '2021-07-15', 2316, 6357, 639, 17381, '1.0000', '44.0000', '44.0000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6488, '2021-07-15', 1519, 6358, 639, 11167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6489, '2021-07-15', 2390, 6359, 639, 4397, '4.0000', '7.4000', '7.4000', '9.0000', '9.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6490, '2021-07-15', 1668, 6360, 639, 18698, '1.0000', '90.0000', '90.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6491, '2021-07-15', 2557, 6361, 639, 12740, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6492, '2021-07-15', 2557, 6362, 639, 12740, '2.0000', '1.0000', '1.0000', '1.5000', '1.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6493, '2021-07-15', 1904, 6363, 639, 12070, '2.0000', '90.0000', '90.0000', '1.0000', '1.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6494, '2021-07-15', 2642, 6364, 640, 16932, '1.0000', '7.5000', '7.5000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6495, '2021-07-15', 1525, 6365, 640, 1532, '3.0000', '90.0000', '90.0000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6496, '2021-07-15', 1525, 6365, 640, NULL, '1.0000', '90.0000', '90.0000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6497, '2021-07-15', 2625, 6366, 640, 11870, '1.0000', '17.0000', '17.0000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6498, '2021-07-15', 2680, 6367, 640, 18073, '1.0000', '11.8600', '11.8600', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6499, '2021-07-15', 1502, 6368, 640, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6500, '2021-07-15', 1863, 6369, 640, 17319, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6501, '2021-07-15', 1602, 6370, 640, 17848, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6502, '2021-07-15', 1871, 6371, 640, 18052, '10.0000', '90.0000', '90.0000', '3.0000', '3.0000', '50.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6503, '2021-07-15', 1975, 6372, 640, 6465, '1.0000', '8.5000', '8.5000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6504, '2021-07-15', 1596, 6373, 640, 18056, '1.0000', '2.5700', '2.5700', '3.8300', '3.8300', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6505, '2021-07-15', 2854, 6374, 640, 17370, '1.0000', '8.9500', '8.9500', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6506, '2021-07-15', 2712, 6375, 640, 12781, '2.0000', '0.2600', '0.2600', '0.5000', '0.5000', '52.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6507, '2021-07-15', 2317, 6376, 640, 15799, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6508, '2021-07-15', 2923, 6377, 641, 18792, '1.0000', '11.1200', '11.1200', '14.6800', '14.6800', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6509, '2021-07-15', 1596, 6378, 641, 18056, '1.0000', '2.5700', '2.5700', '3.8300', '3.8300', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6510, '2021-07-15', 2390, 6379, 641, 4397, '3.0000', '7.4000', '7.4000', '9.0000', '9.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6511, '2021-07-15', 2557, 6380, 641, 12740, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6512, '2021-07-15', 2916, 6381, 642, 18802, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6513, '2021-07-15', 1557, 6382, 642, 1661, '1.0000', '7.8800', '7.8800', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6514, '2021-07-16', 1602, 6383, 643, 5897, '1.0000', '7.6435', '7.6435', '10.0000', '10.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6515, '2021-07-16', 2416, 6384, 643, NULL, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6516, '2021-07-16', 2068, 6385, 643, NULL, '1.0000', '13.1000', '13.1000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6517, '2021-07-16', 1574, 6386, 643, 7593, '-11.0000', '1.9600', '1.9600', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6518, '2021-07-16', 1574, 6386, 643, NULL, '12.0000', '1.9600', '1.9600', '2.5000', '2.5000', '-12.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6519, '2021-07-16', 1525, 6387, 643, NULL, '4.0000', '90.0000', '90.0000', '6.5000', '6.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6520, '2021-07-16', 1602, 6388, 643, 5897, '1.0000', '7.6435', '7.6435', '10.0000', '10.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6521, '2021-07-16', 1863, 6389, 643, 10808, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '58.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6522, '2021-07-16', 1528, 6390, 643, 18895, '6.0000', '38.6400', '38.6400', '6.0000', '6.0000', '14.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (6523, '2021-07-16', 2366, 6391, 643, 3833, '-2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6524, '2021-07-16', 2366, 6391, 643, NULL, '4.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6525, '2021-07-16', 2359, 6392, 643, 3861, '-1.0000', '16.2200', '16.2200', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6526, '2021-07-16', 2359, 6392, 643, NULL, '3.0000', '16.2200', '16.2200', '12.0000', '12.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6527, '2021-07-16', 2412, 6393, 643, 15955, '3.0000', '0.5200', '0.5200', '1.0000', '1.0000', '27.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (6528, '2021-07-16', 2609, 6394, 643, NULL, '2.0000', '2.8000', '2.8000', '4.0000', '4.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6529, '2021-07-16', 1668, 6395, 643, 3238, '1.0000', '12.8620', '12.8620', '17.0000', '17.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6530, '2021-07-16', 1785, 6396, 643, NULL, '1.0000', '15.1300', '15.1300', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6531, '2021-07-16', 2169, 6397, 643, 10737, '2.0000', '0.8207', '0.8207', '1.5000', '1.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6532, '2021-07-16', 2660, 6398, 643, NULL, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6533, '2021-07-16', 2908, 6399, 643, NULL, '4.0000', '0.2700', '0.2700', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6534, '2021-07-16', 1837, 6400, 643, 18643, '4.0000', '0.9642', '0.9642', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (6535, '2021-07-16', 2581, 6401, 643, NULL, '1.0000', '92.0000', '92.0000', '122.0000', '122.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6536, '2021-07-16', 2669, 6402, 643, NULL, '1.0000', '49.0000', '49.0000', '32.5000', '32.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6537, '2021-07-16', 2362, 6403, 643, NULL, '10.0000', '8.8300', '8.8300', '12.0000', '12.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6538, '2021-07-16', 1686, 6404, 643, NULL, '1.0000', '26.6000', '26.6000', '35.0000', '35.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6539, '2021-07-16', 1687, 6405, 643, 5785, '1.0000', '165.9024', '165.9024', '15.5000', '15.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6540, '2021-07-16', 1409, 6406, 643, NULL, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6541, '2021-07-16', 2283, 6407, 643, NULL, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6542, '2021-07-16', 2220, 6408, 643, 4333, '1.0000', '5.4170', '5.4170', '8.0000', '8.0000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (6543, '2021-07-16', 1689, 6409, 643, 4897, '1.0000', '60.7198', '60.7198', '17.0000', '17.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6544, '2021-07-16', 1450, 6410, 643, 18915, '10.0000', '61.1074', '61.1074', '1.2000', '1.2000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (6545, '2021-07-16', 2362, 6411, 643, NULL, '1.0000', '8.8300', '8.8300', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6546, '2021-07-16', 2242, 6412, 643, 15957, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (6547, '2021-07-16', 2105, 6413, 643, NULL, '2.0000', '1.3500', '1.3500', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6548, '2021-07-16', 2270, 6414, 643, 2930, '1.0000', '0.9880', '0.9880', '4.0000', '4.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6549, '2021-07-16', 2929, 6415, 644, 19007, '1.0000', '46.7300', '46.7300', '90.0000', '90.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6550, '2021-07-16', 1602, 6416, 645, 5897, '1.0000', '7.6435', '7.6435', '10.0000', '10.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6551, '2021-07-16', 2245, 6417, 645, NULL, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6552, '2021-07-16', 2285, 6418, 646, 17360, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6553, '2021-07-16', 1574, 6419, 646, 17030, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6554, '2021-07-16', 1513, 6420, 646, 11012, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6555, '2021-07-16', 2244, 6421, 646, NULL, '1.0000', '7.3600', '7.3600', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6556, '2021-07-16', 1478, 6422, 646, 1490, '1.0000', '90.0000', '90.0000', '28.0000', '28.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6557, '2021-07-16', 2712, 6423, 646, 12781, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '51.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6558, '2021-07-16', 1612, 6424, 646, 9422, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6559, '2021-07-16', 2543, 6425, 646, 9539, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6560, '2021-07-16', 1867, 6426, 646, 4996, '1.0000', '10.0500', '10.0500', '13.0000', '13.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6561, '2021-07-16', 2105, 6427, 646, 6017, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6562, '2021-07-16', 2270, 6428, 646, 18434, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6563, '2021-07-16', 1904, 6429, 646, 12070, '2.0000', '90.0000', '90.0000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6564, '2021-07-16', 2169, 6430, 646, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6565, '2021-07-16', 1846, 6431, 646, 18409, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6566, '2021-07-16', 2353, 6432, 646, 18680, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6567, '2021-07-16', 2487, 6433, 646, 5198, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6568, '2021-07-16', 2659, 6434, 646, 14569, '1.0000', '25.4800', '25.4800', '34.0000', '34.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6569, '2021-07-17', 1523, 6435, 647, 17781, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6570, '2021-07-17', 2273, 6436, 647, 3113, '1.0000', '2.6700', '2.6700', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6571, '2021-07-17', 1863, 6437, 647, 17319, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6572, '2021-07-17', 1700, 6438, 647, 14580, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6573, '2021-07-17', 2712, 6439, 647, 12781, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '50.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6574, '2021-07-17', 2568, 6440, 647, NULL, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6575, '2021-07-17', 2238, 6441, 647, 10303, '1.0000', '39.0000', '39.0000', '51.0000', '51.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6576, '2021-07-17', 2221, 6442, 647, 18681, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6577, '2021-07-17', 2169, 6443, 647, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6578, '2021-07-17', 1649, 6444, 647, 3259, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6579, '2021-07-17', 2275, 6445, 647, 3115, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6580, '2021-07-17', 2237, 6446, 647, 3083, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6581, '2021-07-17', 1969, 6447, 647, 1522, '1.0000', '4.3300', '4.3300', '7.0000', '7.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6582, '2021-07-17', 2340, 6448, 647, 17854, '1.0000', '4.2000', '4.2000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6583, '2021-07-17', 2870, 6449, 647, 17895, '1.0000', '45.0000', '45.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6584, '2021-07-17', 2714, 6450, 647, 12783, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6585, '2021-07-17', 2410, 6451, 647, 4820, '1.0000', '4.3200', '4.3200', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6586, '2021-07-17', 2315, 6452, 647, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '403.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6587, '2021-07-17', 2777, 6453, 647, NULL, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6588, '2021-07-17', 1828, 6454, 647, 4963, '1.0000', '0.7300', '0.7300', '1.0000', '1.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6589, '2021-07-17', 1311, 6455, 647, 5503, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6590, '2021-07-17', 1523, 6456, 648, 17781, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6591, '2021-07-17', 2273, 6457, 648, NULL, '1.0000', '2.6700', '2.6700', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6592, '2021-07-17', 1863, 6458, 648, 17319, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6593, '2021-07-17', 1700, 6459, 648, 2463, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6594, '2021-07-17', 2712, 6460, 648, 12781, '1.0000', '0.2600', '0.2600', '0.5000', '0.5000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6595, '2021-07-17', 2568, 6461, 648, NULL, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6596, '2021-07-17', 2238, 6462, 648, 10303, '1.0000', '39.0000', '39.0000', '51.0000', '51.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6597, '2021-07-17', 2221, 6463, 648, 18681, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6598, '2021-07-17', 2169, 6464, 648, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6599, '2021-07-17', 1649, 6465, 648, NULL, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6600, '2021-07-17', 2275, 6466, 648, 3115, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6601, '2021-07-17', 2237, 6467, 648, 3083, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6602, '2021-07-17', 1969, 6468, 648, 1522, '1.0000', '4.3300', '4.3300', '7.0000', '7.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6603, '2021-07-17', 2340, 6469, 648, 17854, '1.0000', '4.2000', '4.2000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6604, '2021-07-17', 2870, 6470, 648, 17895, '1.0000', '45.0000', '45.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6605, '2021-07-17', 2714, 6471, 648, 12783, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6606, '2021-07-17', 2410, 6472, 648, NULL, '1.0000', '4.3200', '4.3200', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6607, '2021-07-17', 2315, 6473, 648, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '402.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6608, '2021-07-17', 2777, 6474, 648, NULL, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6609, '2021-07-17', 1828, 6475, 648, 4963, '1.0000', '0.7300', '0.7300', '1.0000', '1.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6610, '2021-07-17', 1311, 6476, 648, 5503, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6611, '2021-07-17', 1863, 6477, 649, 17319, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6612, '2021-07-17', 2315, 6478, 649, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '400.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6613, '2021-07-17', 2144, 6479, 650, NULL, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6614, '2021-07-17', 1840, 6480, 651, 4973, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6615, '2021-07-17', 2289, 6481, 651, 3129, '2.0000', '0.2300', '0.2300', '0.5000', '0.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6616, '2021-07-17', 1999, 6482, 651, 6444, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6617, '2021-07-17', 1947, 6483, 651, 4998, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6618, '2021-07-17', 2353, 6484, 651, 18680, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6619, '2021-07-17', 1863, 6485, 651, 19166, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6620, '2021-07-17', 1818, 6486, 651, 4954, '1.0000', '14.8000', '14.8000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6621, '2021-07-17', 1800, 6487, 651, 18432, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6622, '2021-07-17', 1935, 6488, 651, 16698, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6623, '2021-07-17', 2169, 6489, 651, 18684, '3.0000', '0.9800', '0.9800', '1.5000', '1.5000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6624, '2021-07-17', 1519, 6490, 651, 11167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6625, '2021-07-17', 2557, 6491, 651, 12740, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6626, '2021-07-17', 1876, 6492, 651, 18671, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6627, '2021-07-17', 1767, 6493, 651, 18796, '1.0000', '4.6000', '4.6000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6628, '2021-07-17', 1340, 6494, 651, 13569, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6629, '2021-07-17', 1841, 6495, 651, 4974, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6630, '2021-07-17', 1744, 6496, 651, 9554, '1.0000', '90.0000', '90.0000', '34.0000', '34.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6631, '2021-07-17', 2858, 6497, 651, 17780, '2.0000', '1.0000', '1.0000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6632, '2021-07-17', 1574, 6498, 651, 17030, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6633, '2021-07-17', 1665, 6499, 651, 17035, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6634, '2021-07-17', 2104, 6500, 651, 6016, '1.0000', '0.2000', '0.2000', '1.0000', '1.0000', '131.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6635, '2021-07-17', 1409, 6501, 651, 18706, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6636, '2021-07-17', 2166, 6502, 651, NULL, '3.0000', '5.5000', '5.5000', '7.5000', '7.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6637, '2021-07-17', 2135, 6503, 652, 16893, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6638, '2021-07-17', 2317, 6504, 652, 15799, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6639, '2021-07-17', 2356, 6505, 652, 3876, '1.0000', '38.9800', '38.9800', '51.0000', '51.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6640, '2021-07-17', 2154, 6506, 652, 13638, '1.0000', '10.5000', '10.5000', '14.5000', '14.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6641, '2021-07-17', 1935, 6507, 652, 16698, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6642, '2021-07-17', 1863, 6508, 652, 19166, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6643, '2021-07-17', 2714, 6509, 652, 12783, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6644, '2021-07-17', 1504, 6510, 652, 17840, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6645, '2021-07-17', 1546, 6511, 652, 12050, '10.0000', '90.0000', '90.0000', '4.0000', '4.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6646, '2021-07-17', 2866, 6512, 652, 17783, '10.0000', '0.8800', '0.8800', '1.5000', '1.5000', '180.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6647, '2021-07-17', 2680, 6513, 652, 18073, '1.0000', '11.8600', '11.8600', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6648, '2021-07-17', 1542, 6514, 653, 16897, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6649, '2021-07-17', 2221, 6515, 653, 18681, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6650, '2021-07-17', 1779, 6516, 653, 4938, '10.0000', '0.3100', '0.3100', '1.0000', '1.0000', '67.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6651, '2021-07-17', 1303, 6517, 653, 9576, '-2.0000', '1.3800', '1.3800', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6652, '2021-07-17', 1303, 6517, 653, 9576, '-2.0000', '1.3800', '1.3800', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6653, '2021-07-17', 1303, 6517, 653, 2657, '10.0000', '1.3800', '1.3800', '4.0000', '4.0000', '112.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (6654, '2021-07-17', 1800, 6518, 653, 18432, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6655, '2021-07-17', 2810, 6519, 653, NULL, '7.0000', '2.2000', '2.2000', '2.9000', '2.9000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6656, '2021-07-17', 2484, 6520, 653, 5196, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6657, '2021-07-17', 2317, 6521, 653, 15799, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6658, '2021-07-17', 1812, 6522, 653, 18423, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6659, '2021-07-17', 1643, 6523, 653, 3264, '1.0000', '90.0000', '90.0000', '53.0000', '53.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6660, '2021-07-17', 1772, 6524, 653, 18695, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6696, '2021-07-18', 2247, 6559, 654, 11862, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6697, '2021-07-18', 1665, 6560, 654, 17035, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6698, '2021-07-18', 1650, 6561, 654, 17445, '1.0000', '14.5800', '14.5800', '19.5000', '19.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6699, '2021-07-18', 1440, 6562, 654, 11882, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6700, '2021-07-18', 1401, 6563, 654, 4360, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6701, '2021-07-18', 1785, 6564, 654, 21404, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6702, '2021-07-18', 2643, 6565, 654, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6703, '2021-07-18', 1592, 6566, 654, 17856, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6704, '2021-07-18', 1837, 6567, 654, 18709, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6705, '2021-07-18', 1787, 6568, 654, 4930, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6706, '2021-07-18', 2602, 6569, 654, 15795, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6707, '2021-07-18', 1602, 6570, 654, 17848, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6708, '2021-07-18', 2714, 6571, 654, 12783, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6709, '2021-07-18', 2455, 6572, 654, 13628, '1.0000', '7.5300', '7.5300', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6710, '2021-07-18', 1523, 6573, 654, 17781, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6711, '2021-07-18', 2169, 6574, 654, 18684, '2.0000', '0.9800', '0.9800', '1.5000', '1.5000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6712, '2021-07-18', 1445, 6575, 654, 7112, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6713, '2021-07-18', 1646, 6576, 654, 18665, '1.0000', '4.5300', '4.5300', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6714, '2021-07-18', 2285, 6577, 654, 17484, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6715, '2021-07-18', 2262, 6578, 654, 18683, '3.0000', '4.5000', '4.5000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6716, '2021-07-18', 1568, 6579, 654, 9454, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6717, '2021-07-18', 2169, 6580, 654, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6718, '2021-07-18', 2135, 6581, 654, 16893, '2.0000', '2.5000', '2.5000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6719, '2021-07-18', 2543, 6582, 654, 9539, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6720, '2021-07-18', 1346, 6583, 654, 13630, '3.0000', '0.9300', '0.9300', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6721, '2021-07-18', 2917, 6584, 654, 18791, '1.0000', '7.3500', '7.3500', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6722, '2021-07-18', 2352, 6585, 654, 17460, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6723, '2021-07-18', 2568, 6586, 654, NULL, '20.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-20.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6724, '2021-07-18', 2036, 6587, 654, 4401, '2.0000', '8.0000', '8.0000', '10.0000', '10.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6725, '2021-07-18', 2876, 6588, 654, 17901, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6726, '2021-07-18', 2825, 6589, 654, NULL, '2.0000', '12.0000', '12.0000', '25.0000', '25.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6727, '2021-07-18', 1999, 6590, 654, 6444, '2.0000', '6.0000', '6.0000', '7.5000', '7.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6728, '2021-07-18', 2692, 6591, 654, 12773, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6729, '2021-07-18', 2824, 6592, 655, 16930, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6730, '2021-07-18', 2162, 6593, 655, NULL, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6731, '2021-07-18', 1504, 6594, 655, 17840, '10.0000', '90.0000', '90.0000', '2.0000', '2.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6732, '2021-07-18', 2817, 6595, 655, 16787, '4.0000', '1.8000', '1.8000', '2.2000', '2.2000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6733, '2021-07-18', 2866, 6596, 655, 17783, '20.0000', '0.8800', '0.8800', '1.5000', '1.5000', '160.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6734, '2021-07-18', 1619, 6597, 655, NULL, '1.0000', '9.8500', '9.8500', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6735, '2021-07-18', 2525, 6598, 655, 15801, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6736, '2021-07-18', 2346, 6599, 655, 3885, '1.0000', '5.5000', '5.5000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6737, '2021-07-18', 1562, 6600, 655, 1669, '1.0000', '5.1300', '5.1300', '7.0000', '7.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6738, '2021-07-18', 2088, 6601, 655, 9570, '-1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6739, '2021-07-18', 2088, 6601, 655, 9570, '-1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6740, '2021-07-18', 2088, 6601, 655, 6006, '2.0000', '1.3800', '1.3800', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6741, '2021-07-18', 2275, 6602, 656, 3115, '2.0000', '1.0900', '1.0900', '1.5000', '1.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6742, '2021-07-18', 2916, 6603, 656, 18802, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6743, '2021-07-18', 2423, 6604, 657, 5808, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6744, '2021-07-18', 2768, 6605, 658, NULL, '3.0000', '0.9600', '0.9600', '1.5000', '1.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6745, '2021-07-18', 2803, 6606, 658, 17364, '1.0000', '8.0200', '8.0200', '10.5000', '10.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6746, '2021-07-18', 1812, 6607, 658, 18423, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6747, '2021-07-18', 1310, 6608, 658, NULL, '3.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6748, '2021-07-18', 2384, 6609, 658, 4370, '2.0000', '0.4000', '0.4000', '0.5000', '0.5000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6749, '2021-07-18', 2315, 6610, 659, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '399.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6750, '2021-07-18', 1570, 6611, 659, 21431, '1.0000', '90.0000', '90.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6751, '2021-07-18', 2399, 6612, 659, 5373, '2.0000', '8.5000', '8.5000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6752, '2021-07-18', 2259, 6613, 659, 18666, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6753, '2021-07-18', 2275, 6614, 660, 3115, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6754, '2021-07-18', 2714, 6615, 660, 12783, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6755, '2021-07-18', 1504, 6616, 660, 17840, '10.0000', '90.0000', '90.0000', '2.0000', '2.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6756, '2021-07-18', 1602, 6617, 661, 17848, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6757, '2021-07-18', 2285, 6618, 662, 12066, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6758, '2021-07-18', 1529, 6619, 662, 21399, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6759, '2021-07-18', 2320, 6620, 662, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6760, '2021-07-18', 2643, 6621, 662, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6761, '2021-07-19', 1529, 6622, 663, 21399, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6762, '2021-07-19', 1872, 6623, 663, 18676, '1.0000', '9.0500', '9.0500', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6763, '2021-07-19', 2275, 6624, 663, 3115, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6764, '2021-07-19', 2068, 6625, 663, 18422, '1.0000', '11.8000', '11.8000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6765, '2021-07-19', 1787, 6626, 663, 4930, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6766, '2021-07-19', 1693, 6627, 663, 11006, '1.0000', '7.8600', '7.8600', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6767, '2021-07-19', 2643, 6628, 663, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6768, '2021-07-19', 1945, 6629, 663, 18071, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6769, '2021-07-19', 1455, 6630, 663, 5620, '1.0000', '4.0000', '4.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6770, '2021-07-19', 1567, 6631, 663, 18403, '1.0000', '13.3000', '13.3000', '17.5000', '17.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6771, '2021-07-19', 1302, 6632, 663, 21440, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6772, '2021-07-19', 1307, 6633, 663, 4984, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6773, '2021-07-19', 2916, 6634, 663, 18802, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6774, '2021-07-19', 1310, 6635, 663, NULL, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6775, '2021-07-19', 2916, 6636, 663, 18802, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6776, '2021-07-19', 1574, 6637, 663, 17030, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6777, '2021-07-19', 1574, 6637, 663, 17031, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6778, '2021-07-19', 2541, 6638, 663, 13558, '1.0000', '9.7500', '9.7500', '14.5000', '14.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6779, '2021-07-19', 1904, 6639, 663, 5508, '2.0000', '90.0000', '90.0000', '1.0000', '1.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6780, '2021-07-19', 1379, 6640, 663, 3422, '1.0000', '82.8700', '82.8700', '109.0000', '109.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6781, '2021-07-19', 1452, 6641, 663, 5632, '1.0000', '1.2300', '1.2300', '2.0000', '2.0000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6782, '2021-07-19', 2700, 6642, 664, 12754, '1.0000', '27.9700', '27.9700', '37.0000', '37.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6783, '2021-07-19', 1863, 6643, 664, 21430, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6784, '2021-07-19', 2568, 6644, 664, NULL, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6785, '2021-07-19', 2485, 6645, 664, 5197, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6786, '2021-07-19', 2072, 6646, 665, 13557, '1.0000', '7.3800', '7.3800', '11.0000', '11.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6787, '2021-07-19', 2317, 6647, 665, 15799, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6788, '2021-07-19', 2104, 6648, 665, 6016, '1.0000', '0.2000', '0.2000', '1.0000', '1.0000', '130.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6789, '2021-07-20', 2390, 6649, 666, 4397, '1.0000', '7.4000', '7.4000', '9.0000', '9.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6790, '2021-07-20', 2109, 6650, 666, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '133.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6791, '2021-07-20', 2644, 6651, 666, 10596, '1.0000', '50.0000', '50.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6792, '2021-07-20', 2279, 6652, 666, 17312, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6793, '2021-07-20', 2279, 6652, 666, 17085, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6794, '2021-07-20', 2768, 6653, 666, NULL, '3.0000', '0.9600', '0.9600', '1.5000', '1.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6795, '2021-07-20', 2357, 6654, 666, 3875, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6796, '2021-07-20', 2415, 6655, 666, NULL, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6797, '2021-07-20', 1386, 6656, 666, 17862, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6798, '2021-07-20', 1782, 6657, 666, 4935, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6799, '2021-07-20', 1828, 6658, 666, 4963, '2.0000', '0.7300', '0.7300', '1.0000', '1.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6800, '2021-07-20', 1876, 6659, 666, NULL, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6801, '2021-07-20', 2235, 6660, 666, 14572, '1.0000', '17.8000', '17.8000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6802, '2021-07-20', 1665, 6661, 666, 17035, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6803, '2021-07-20', 1529, 6662, 666, 21399, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6804, '2021-07-20', 2277, 6663, 666, 3117, '2.0000', '0.7800', '0.7800', '1.0000', '1.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6805, '2021-07-20', 2518, 6664, 666, NULL, '1.0000', '107.1800', '107.1800', '154.0000', '154.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6806, '2021-07-20', 2145, 6665, 666, NULL, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6807, '2021-07-20', 2088, 6666, 666, NULL, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6808, '2021-07-20', 2136, 6667, 666, NULL, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6809, '2021-07-20', 2362, 6668, 666, 21405, '10.0000', '82.0200', '82.0200', '12.0000', '12.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6810, '2021-07-20', 1809, 6669, 666, 18696, '1.0000', '9.2000', '9.2000', '12.5000', '12.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6811, '2021-07-20', 1839, 6670, 666, 18699, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6812, '2021-07-20', 1306, 6671, 666, 5611, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6813, '2021-07-20', 2317, 6672, 666, 15799, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6814, '2021-07-20', 2825, 6673, 666, NULL, '1.0000', '12.0000', '12.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6815, '2021-07-20', 1735, 6674, 666, 3902, '28.0000', '4.6000', '4.6000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6816, '2021-07-20', 1527, 6675, 666, 1534, '3.0000', '90.0000', '90.0000', '17.5000', '17.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6817, '2021-07-20', 2360, 6676, 666, 17042, '1.0000', '0.5200', '0.5200', '0.6900', '0.6900', '55.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6818, '2021-07-20', 1337, 6677, 666, 17039, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6819, '2021-07-20', 2350, 6678, 667, 3881, '1.0000', '10.3800', '10.3800', '13.5000', '13.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6820, '2021-07-20', 2027, 6679, 667, NULL, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6821, '2021-07-20', 2360, 6680, 667, 17042, '1.0000', '0.5200', '0.5200', '0.6900', '0.6900', '54.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6822, '2021-07-20', 1667, 6681, 667, 18662, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6823, '2021-07-20', 1863, 6682, 667, 21430, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6824, '2021-07-20', 1523, 6683, 667, 17781, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6825, '2021-07-20', 1736, 6684, 667, 12755, '2.0000', '26.7000', '26.7000', '38.0000', '38.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6826, '2021-07-20', 2380, 6685, 667, 13565, '2.0000', '37.9000', '37.9000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6827, '2021-07-20', 1337, 6686, 667, 17039, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6828, '2021-07-20', 1463, 6687, 667, NULL, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6829, '2021-07-20', 2293, 6688, 667, 3064, '3.0000', '1.4400', '1.4400', '2.0000', '2.0000', '82.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6830, '2021-07-20', 1629, 6689, 668, 17851, '1.0000', '13.7900', '13.7900', '18.5000', '18.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6831, '2021-07-20', 2506, 6690, 668, 16909, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6832, '2021-07-20', 2100, 6691, 668, 6012, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6833, '2021-07-20', 1646, 6692, 668, 18665, '1.0000', '4.5300', '4.5300', '7.5000', '7.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6834, '2021-07-20', 1318, 6693, 668, 5491, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6835, '2021-07-20', 1863, 6694, 668, 21430, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6836, '2021-07-20', 2266, 6695, 668, 18074, '1.0000', '6.4900', '6.4900', '11.0000', '11.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6837, '2021-07-20', 2166, 6696, 668, NULL, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6838, '2021-07-20', 2132, 6697, 668, 18358, '1.0000', '22.0000', '22.0000', '24.0000', '24.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6839, '2021-07-20', 2503, 6698, 669, 10608, '1.0000', '16.0000', '16.0000', '20.0000', '20.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6840, '2021-07-20', 2704, 6699, 669, 12743, '1.0000', '14.9700', '14.9700', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6841, '2021-07-20', 1592, 6700, 670, 17856, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6842, '2021-07-20', 1856, 6701, 670, 4987, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6843, '2021-07-20', 2240, 6702, 670, 17458, '1.0000', '33.0000', '33.0000', '49.0000', '49.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6844, '2021-07-20', 1643, 6703, 670, NULL, '2.0000', '90.0000', '90.0000', '53.0000', '53.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6845, '2021-07-20', 2703, 6704, 670, 12749, '1.0000', '4.3600', '4.3600', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6846, '2021-07-20', 2248, 6705, 670, 17464, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6847, '2021-07-20', 1368, 6706, 670, 18679, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6848, '2021-07-20', 2277, 6707, 670, 3117, '2.0000', '0.7800', '0.7800', '1.0000', '1.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6849, '2021-07-20', 2060, 6708, 670, NULL, '3.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6850, '2021-07-20', 2135, 6709, 670, 16893, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6851, '2021-07-20', 2387, 6710, 670, 4392, '1.0000', '14.0700', '14.0700', '18.5000', '18.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6852, '2021-07-20', 1871, 6711, 670, 18052, '5.0000', '90.0000', '90.0000', '3.0000', '3.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6853, '2021-07-20', 1864, 6712, 670, 8425, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6854, '2021-07-20', 1763, 6713, 670, 12738, '1.0000', '4.6900', '4.6900', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6855, '2021-07-20', 2135, 6714, 670, 16893, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6856, '2021-07-20', 1667, 6715, 670, 18662, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6857, '2021-07-20', 2280, 6716, 670, 21397, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6858, '2021-07-20', 1772, 6717, 670, 18695, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6859, '2021-07-20', 1651, 6718, 670, 18433, '1.0000', '6.8300', '6.8300', '10.5000', '10.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6860, '2021-07-20', 2167, 6719, 670, 17315, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6861, '2021-07-20', 1675, 6720, 671, 18689, '1.0000', '90.0000', '90.0000', '28.0000', '28.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6862, '2021-07-20', 1928, 6721, 671, 5630, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6863, '2021-07-20', 2248, 6722, 671, 17464, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6864, '2021-07-20', 1306, 6723, 671, 5611, '4.0000', '2.1000', '2.1000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6865, '2021-07-20', 1704, 6724, 671, 11889, '1.0000', '90.0000', '90.0000', '35.5000', '35.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6866, '2021-07-20', 2634, 6725, 671, 10299, '2.0000', '12.0000', '12.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6867, '2021-07-20', 2514, 6726, 671, 7518, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6868, '2021-07-20', 1904, 6727, 671, 5508, '3.0000', '90.0000', '90.0000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6869, '2021-07-20', 1904, 6727, 671, NULL, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6870, '2021-07-20', 1863, 6728, 671, 21554, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6871, '2021-07-20', 2958, 6729, 671, 21589, '14.0000', '1.0000', '1.0000', '2.0000', '2.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6872, '2021-07-20', 1811, 6730, 671, 18694, '2.0000', '14.5300', '14.5300', '19.5000', '19.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6873, '2021-07-20', 2280, 6731, 671, 21586, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6874, '2021-07-20', 1643, 6732, 671, NULL, '1.0000', '90.0000', '90.0000', '53.0000', '53.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6875, '2021-07-20', 1523, 6733, 671, 17781, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6876, '2021-07-20', 1665, 6734, 671, 10540, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6877, '2021-07-20', 2714, 6735, 671, NULL, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6878, '2021-07-20', 2003, 6736, 671, 6817, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6879, '2021-07-20', 1602, 6737, 672, 17848, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6880, '2021-07-20', 1665, 6738, 672, 10540, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6881, '2021-07-20', 1666, 6739, 672, 17033, '2.0000', '90.0000', '90.0000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6882, '2021-07-20', 1700, 6740, 672, 2463, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6883, '2021-07-20', 2232, 6741, 672, 13635, '1.0000', '27.0000', '27.0000', '38.0000', '38.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6884, '2021-07-20', 2730, 6742, 672, 21547, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '98.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6885, '2021-07-20', 1912, 6743, 672, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6886, '2021-07-20', 1912, 6743, 672, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6887, '2021-07-20', 1912, 6743, 672, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6888, '2021-07-20', 1912, 6743, 672, 1503, '3.0000', '0.3100', '0.3100', '1.0000', '1.0000', '51.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6889, '2021-07-20', 2568, 6744, 672, NULL, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6890, '2021-07-20', 2104, 6745, 672, 6016, '1.0000', '0.2000', '0.2000', '1.0000', '1.0000', '129.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6891, '2021-07-20', 2307, 6746, 673, 18801, '1.0000', '140.0000', '140.0000', '170.0000', '170.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6892, '2021-07-20', 2220, 6747, 673, 13618, '1.0000', '5.2800', '5.2800', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6893, '2021-07-21', 1486, 6748, 674, 1482, '1.0000', '90.0000', '90.0000', '23.0000', '23.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6894, '2021-07-21', 1523, 6749, 674, 17781, '2.0000', '0.9300', '0.9300', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6895, '2021-07-21', 1346, 6750, 674, NULL, '15.0000', '0.9300', '0.9300', '1.5000', '1.5000', '-15.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6896, '2021-07-21', 2280, 6751, 674, 21586, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6897, '2021-07-21', 1533, 6752, 674, 10385, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6898, '2021-07-21', 2037, 6753, 674, 18355, '1.0000', '10.0000', '10.0000', '14.0000', '14.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6899, '2021-07-21', 2699, 6754, 674, 12726, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6900, '2021-07-21', 1935, 6755, 674, 16698, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6901, '2021-07-21', 2714, 6756, 674, NULL, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6902, '2021-07-21', 2272, 6757, 674, 18418, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6903, '2021-07-21', 1728, 6758, 674, 17366, '3.0000', '90.0000', '90.0000', '2.5000', '2.5000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6904, '2021-07-21', 1637, 6759, 674, 17491, '1.0000', '90.0000', '90.0000', '14.0000', '14.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6905, '2021-07-21', 2267, 6760, 674, 3107, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6906, '2021-07-21', 1822, 6761, 674, 12682, '2.0000', '2.4000', '2.4000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6907, '2021-07-21', 1398, 6762, 674, 9050, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6908, '2021-07-21', 2291, 6763, 674, 17452, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6909, '2021-07-21', 2088, 6764, 674, 9570, '-1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6910, '2021-07-21', 2088, 6764, 674, 9570, '-1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6911, '2021-07-21', 2088, 6764, 674, 6006, '2.0000', '1.3800', '1.3800', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6912, '2021-07-21', 1337, 6765, 674, 17039, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6913, '2021-07-21', 1910, 6766, 674, NULL, '1.0000', '1.0200', '1.0200', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6914, '2021-07-21', 2541, 6767, 674, 13559, '2.0000', '9.7500', '9.7500', '14.5000', '14.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6915, '2021-07-21', 2871, 6768, 675, 17896, '1.0000', '35.0000', '35.0000', '46.0000', '46.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6916, '2021-07-21', 2855, 6769, 675, 17385, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6917, '2021-07-21', 2697, 6770, 675, NULL, '1.0000', '3.0000', '3.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6918, '2021-07-21', 2623, 6771, 675, 10524, '1.0000', '4.3000', '4.3000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6919, '2021-07-21', 1928, 6772, 675, 5630, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6920, '2021-07-21', 1574, 6773, 675, 17031, '4.0000', '90.0000', '90.0000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6921, '2021-07-21', 2342, 6774, 675, 21582, '10.0000', '1.8600', '1.8600', '2.5000', '2.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6922, '2021-07-21', 2167, 6775, 676, 17315, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6923, '2021-07-21', 2279, 6776, 677, 17085, '2.0000', '2.6000', '2.6000', '4.0000', '4.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6924, '2021-07-21', 1642, 6777, 677, 21566, '1.0000', '90.0000', '90.0000', '41.0000', '41.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6925, '2021-07-21', 2958, 6778, 677, 21589, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6926, '2021-07-21', 1602, 6779, 677, 17848, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6927, '2021-07-21', 1573, 6780, 677, NULL, '1.0000', '90.0000', '90.0000', '32.5000', '32.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6928, '2021-07-21', 1626, 6781, 677, 9413, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6929, '2021-07-21', 1863, 6782, 677, 21554, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6930, '2021-07-21', 1310, 6783, 677, NULL, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6931, '2021-07-21', 2247, 6784, 677, 11862, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6932, '2021-07-21', 1665, 6785, 677, 10540, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6933, '2021-07-21', 2699, 6786, 677, 12726, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6934, '2021-07-21', 1612, 6787, 677, 9422, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6935, '2021-07-21', 2441, 6788, 677, 5826, '1.0000', '4.6000', '4.6000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6936, '2021-07-21', 1602, 6789, 677, 17848, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6937, '2021-07-21', 1523, 6790, 677, 17781, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6938, '2021-07-21', 2169, 6791, 677, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6939, '2021-07-21', 1311, 6792, 677, 5503, '10.0000', '0.3700', '0.3700', '0.5000', '0.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6940, '2021-07-21', 1651, 6793, 677, 18433, '1.0000', '6.8300', '6.8300', '10.5000', '10.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6941, '2021-07-21', 2714, 6794, 677, NULL, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6942, '2021-07-21', 2239, 6795, 677, 3068, '2.0000', '26.0000', '26.0000', '35.0000', '35.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6943, '2021-07-21', 2825, 6796, 677, NULL, '2.0000', '12.0000', '12.0000', '25.0000', '25.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6944, '2021-07-21', 2221, 6797, 677, 18681, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6945, '2021-07-21', 1863, 6798, 677, 21554, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6946, '2021-07-21', 1812, 6799, 677, 18423, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6947, '2021-07-21', 2924, 6800, 677, 18798, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6948, '2021-07-21', 1533, 6801, 677, 10385, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6949, '2021-07-21', 1761, 6802, 677, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6950, '2021-07-21', 1446, 6803, 677, 5627, '1.0000', '4.1000', '4.1000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6951, '2021-07-21', 1505, 6804, 677, 18428, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6952, '2021-07-21', 1863, 6805, 677, 21554, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6953, '2021-07-21', 2458, 6806, 677, 18063, '1.0000', '9.9000', '9.9000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6954, '2021-07-21', 1904, 6807, 677, NULL, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6955, '2021-07-21', 1340, 6808, 677, 13569, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6956, '2021-07-21', 2167, 6809, 677, 17315, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6957, '2021-07-21', 1863, 6810, 677, 21554, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6958, '2021-07-21', 1640, 6811, 677, 6789, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (6959, '2021-07-21', 1602, 6812, 677, 17848, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6960, '2021-07-21', 1493, 6813, 677, 18691, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6961, '2021-07-21', 2169, 6814, 677, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6962, '2021-07-21', 2667, 6815, 677, 11864, '1.0000', '25.1700', '25.1700', '34.0000', '34.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6963, '2021-07-21', 2923, 6816, 677, 18792, '1.0000', '11.1200', '11.1200', '14.6800', '14.6800', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6964, '2021-07-21', 1904, 6817, 677, NULL, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6965, '2021-07-21', 2890, 6818, 677, 18064, '1.0000', '38.6900', '38.6900', '52.0000', '52.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6966, '2021-07-21', 1677, 6819, 677, 2442, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6967, '2021-07-21', 1640, 6820, 677, 6789, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (6968, '2021-07-21', 1700, 6821, 677, NULL, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6969, '2021-07-21', 1822, 6822, 678, 12682, '1.0000', '2.4000', '2.4000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6970, '2021-07-22', 2104, 6823, 679, 6016, '3.0000', '0.2000', '0.2000', '1.0000', '1.0000', '126.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6971, '2021-07-22', 2289, 6824, 679, 3129, '1.0000', '0.2300', '0.2300', '0.5000', '0.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6972, '2021-07-22', 1841, 6825, 679, 4974, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6973, '2021-07-22', 1662, 6826, 679, 18790, '1.0000', '90.0000', '90.0000', '69.0000', '69.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6974, '2021-07-22', 2891, 6827, 679, 18061, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6975, '2021-07-22', 1822, 6828, 679, 12682, '1.0000', '2.4000', '2.4000', '3.0000', '3.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6976, '2021-07-22', 1502, 6829, 679, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6977, '2021-07-22', 2235, 6830, 679, 12747, '1.0000', '17.8000', '17.8000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6978, '2021-07-22', 2445, 6831, 679, 10602, '10.0000', '3.2000', '3.2000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6979, '2021-07-22', 2596, 6832, 679, 9057, '1.0000', '19.7000', '19.7000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6980, '2021-07-22', 2821, 6833, 679, 17043, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6981, '2021-07-22', 2297, 6834, 679, 18055, '1.0000', '7.2000', '7.2000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6982, '2021-07-22', 2463, 6835, 679, 4840, '1.0000', '2.8700', '2.8700', '4.0000', '4.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6983, '2021-07-22', 2275, 6836, 679, NULL, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6984, '2021-07-22', 2958, 6837, 679, 21589, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6985, '2021-07-22', 1935, 6838, 679, 16698, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6986, '2021-07-22', 1642, 6839, 679, 21566, '1.0000', '90.0000', '90.0000', '41.0000', '41.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6987, '2021-07-22', 1627, 6840, 679, 9471, '1.0000', '46.2600', '46.2600', '61.0000', '61.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6988, '2021-07-22', 1688, 6841, 679, 18692, '1.0000', '16.9900', '16.9900', '24.5000', '24.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6989, '2021-07-22', 2255, 6842, 679, 12676, '1.0000', '17.4900', '17.4900', '24.0000', '24.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6990, '2021-07-22', 2221, 6843, 679, 18681, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6991, '2021-07-22', 2315, 6844, 679, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '397.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6992, '2021-07-22', 1720, 6845, 679, NULL, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6993, '2021-07-22', 2487, 6846, 679, 5198, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6994, '2021-07-22', 2221, 6847, 679, 18681, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6995, '2021-07-22', 1689, 6848, 679, 18678, '1.0000', '12.3500', '12.3500', '17.0000', '17.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6996, '2021-07-22', 1700, 6849, 679, NULL, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6997, '2021-07-22', 2916, 6850, 680, 18802, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6998, '2021-07-22', 1831, 6851, 680, 17457, '1.0000', '90.0000', '90.0000', '11.5000', '11.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (6999, '2021-07-22', 1831, 6851, 680, 12675, '1.0000', '90.0000', '90.0000', '11.5000', '11.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7000, '2021-07-22', 1831, 6851, 680, 4966, '2.0000', '90.0000', '90.0000', '11.5000', '11.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7001, '2021-07-22', 1688, 6852, 680, 18692, '1.0000', '16.9900', '16.9900', '24.5000', '24.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7002, '2021-07-22', 1688, 6852, 680, 18693, '1.0000', '16.9900', '16.9900', '24.5000', '24.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7003, '2021-07-22', 2137, 6853, 680, NULL, '1.0000', '7.9800', '7.9800', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7004, '2021-07-22', 2265, 6854, 681, 3105, '1.0000', '28.0000', '28.0000', '38.0000', '38.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7005, '2021-07-22', 1950, 6855, 681, 6005, '1.0000', '10.0000', '10.0000', '5.0000', '5.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7006, '2021-07-22', 2650, 6856, 681, 12049, '1.0000', '7.3200', '7.3200', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7007, '2021-07-22', 2650, 6856, 681, 11098, '1.0000', '7.3200', '7.3200', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7008, '2021-07-22', 1602, 6857, 682, 17848, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7009, '2021-07-22', 1983, 6858, 682, NULL, '1.0000', '11.0000', '11.0000', '14.5000', '14.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7010, '2021-07-22', 2237, 6859, 682, 3083, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7011, '2021-07-22', 1748, 6860, 682, 1527, '3.0000', '0.3200', '0.3200', '0.5000', '0.5000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7012, '2021-07-22', 2289, 6861, 682, 3129, '3.0000', '0.2300', '0.2300', '0.5000', '0.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7013, '2021-07-22', 1841, 6862, 682, 4974, '3.0000', '0.3700', '0.3700', '0.5000', '0.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7014, '2021-07-22', 1768, 6863, 682, 2196, '3.0000', '100.0000', '100.0000', '21.0000', '21.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7015, '2021-07-22', 1334, 6864, 682, 3373, '2.0000', '0.7000', '0.7000', '1.5000', '1.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7016, '2021-07-22', 1904, 6865, 682, NULL, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7017, '2021-07-22', 2804, 6866, 682, 19032, '1.0000', '51.7800', '51.7800', '80.0000', '80.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7018, '2021-07-22', 2669, 6867, 682, 21581, '1.0000', '49.0000', '49.0000', '32.5000', '32.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7019, '2021-07-22', 1637, 6868, 682, 17491, '1.0000', '90.0000', '90.0000', '14.0000', '14.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7020, '2021-07-22', 1645, 6869, 682, 11392, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7021, '2021-07-22', 2568, 6870, 682, NULL, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7022, '2021-07-22', 2699, 6871, 682, 12726, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7023, '2021-07-22', 2948, 6872, 682, NULL, '1.0000', '0.9000', '0.9000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7024, '2021-07-22', 1523, 6873, 682, 17781, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7025, '2021-07-22', 1812, 6874, 682, 18423, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7026, '2021-07-22', 2363, 6875, 682, 3868, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7027, '2021-07-22', 1462, 6876, 682, NULL, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7028, '2021-07-22', 2260, 6877, 682, 12238, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7029, '2021-07-22', 2958, 6878, 682, 21589, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7030, '2021-07-22', 1904, 6879, 682, NULL, '3.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7031, '2021-07-22', 2315, 6880, 682, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '395.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7032, '2021-07-22', 1689, 6881, 682, 18678, '1.0000', '12.3500', '12.3500', '17.0000', '17.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7033, '2021-07-22', 2955, 6882, 682, 21542, '1.0000', '4.8000', '4.8000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7034, '2021-07-22', 1839, 6883, 682, 18700, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7035, '2021-07-22', 1525, 6884, 682, NULL, '5.0000', '90.0000', '90.0000', '6.5000', '6.5000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7036, '2021-07-22', 1828, 6885, 682, 4963, '1.0000', '0.7300', '0.7300', '1.0000', '1.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7037, '2021-07-22', 1707, 6886, 683, 10389, '1.0000', '25.1200', '25.1200', '33.0000', '33.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7038, '2021-07-22', 1863, 6887, 683, 21554, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7039, '2021-07-22', 1621, 6888, 684, 13614, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7040, '2021-07-22', 1602, 6889, 684, 17848, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7041, '2021-07-22', 2407, 6890, 684, 4812, '1.0000', '20.2000', '20.2000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7042, '2021-07-22', 2406, 6891, 684, 4809, '1.0000', '20.7000', '20.7000', '27.5000', '27.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7043, '2021-07-22', 1978, 6892, 684, NULL, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7044, '2021-07-22', 1995, 6893, 684, 6448, '1.0000', '8.5000', '8.5000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7045, '2021-07-22', 1602, 6894, 684, 17848, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7046, '2021-07-22', 1602, 6895, 684, 17848, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7047, '2021-07-22', 1650, 6896, 684, 17446, '1.0000', '14.5800', '14.5800', '19.5000', '19.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7048, '2021-07-22', 2169, 6897, 684, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7049, '2021-07-22', 2915, 6898, 684, 18786, '1.0000', '15.4500', '15.4500', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7050, '2021-07-22', 2958, 6899, 684, 21589, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7051, '2021-07-22', 2394, 6900, 684, 10241, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7052, '2021-07-22', 1687, 6901, 684, 16899, '1.0000', '12.0000', '12.0000', '15.5000', '15.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7053, '2021-07-22', 1785, 6902, 685, 21580, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7054, '2021-07-22', 1310, 6903, 685, NULL, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7055, '2021-07-22', 2169, 6904, 685, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7056, '2021-07-23', 1822, 6905, 686, NULL, '2.0000', '2.4000', '2.4000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7057, '2021-07-23', 1409, 6906, 686, 21313, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7058, '2021-07-23', 1450, 6907, 686, 18915, '5.0000', '61.1074', '61.1074', '1.2000', '1.2000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7059, '2021-07-23', 1425, 6908, 686, NULL, '1.0000', '6.3456', '6.3456', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7060, '2021-07-23', 2441, 6909, 686, NULL, '1.0000', '4.6000', '4.6000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7061, '2021-07-23', 2166, 6910, 686, 1380, '2.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7062, '2021-07-23', 2221, 6911, 686, 4334, '1.0000', '7.1053', '7.1053', '25.0000', '25.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7063, '2021-07-23', 2083, 6912, 686, NULL, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7064, '2021-07-23', 2958, 6913, 686, NULL, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7065, '2021-07-23', 1888, 6914, 686, 683, '1.0000', '134.8400', '134.8400', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 54);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7066, '2021-07-23', 2649, 6915, 686, NULL, '1.0000', '71.9188', '71.9188', '95.0000', '95.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7067, '2021-07-23', 2316, 6916, 686, 3608, '1.0000', '44.8814', '44.8814', '48.0000', '48.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7068, '2021-07-23', 2237, 6917, 686, 2781, '-1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7069, '2021-07-23', 2237, 6917, 686, NULL, '2.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7070, '2021-07-23', 1647, 6918, 687, 16905, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7071, '2021-07-23', 1629, 6919, 687, 17852, '1.0000', '13.7900', '13.7900', '18.5000', '18.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7072, '2021-07-23', 2352, 6920, 687, 17460, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7073, '2021-07-23', 2331, 6921, 687, 18703, '1.0000', '12.0700', '12.0700', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7074, '2021-07-23', 1837, 6922, 687, 18709, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7075, '2021-07-23', 2327, 6923, 687, 12242, '10.0000', '4.5000', '4.5000', '6.0000', '6.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7076, '2021-07-23', 1529, 6924, 687, 21585, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7077, '2021-07-23', 1822, 6925, 687, 12682, '2.0000', '2.4000', '2.4000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7078, '2021-07-23', 1822, 6925, 687, 11174, '18.0000', '2.4000', '2.4000', '3.0000', '3.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7079, '2021-07-23', 2458, 6926, 687, 18063, '1.0000', '9.9000', '9.9000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7080, '2021-07-23', 2680, 6927, 687, 18073, '1.0000', '11.8600', '11.8600', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7081, '2021-07-23', 2850, 6928, 687, 17313, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7082, '2021-07-23', 2327, 6929, 687, 12242, '2.0000', '4.5000', '4.5000', '6.0000', '6.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7083, '2021-07-23', 1424, 6930, 687, NULL, '1.0000', '30.0000', '30.0000', '39.5000', '39.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7084, '2021-07-23', 1947, 6931, 687, 4998, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7085, '2021-07-23', 2958, 6932, 687, 21589, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7086, '2021-07-23', 2568, 6933, 687, NULL, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7087, '2021-07-23', 1407, 6934, 687, 18705, '1.0000', '16.8000', '16.8000', '22.5000', '22.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7088, '2021-07-23', 1935, 6935, 687, 16698, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7089, '2021-07-23', 1340, 6936, 687, 13569, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7090, '2021-07-23', 2862, 6937, 687, 17481, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7091, '2021-07-23', 2320, 6938, 687, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7092, '2021-07-23', 2916, 6939, 687, 18802, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7093, '2021-07-23', 1689, 6940, 687, 18678, '1.0000', '12.3500', '12.3500', '17.0000', '17.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7094, '2021-07-23', 2281, 6941, 687, 3121, '6.0000', '3.0000', '3.0000', '4.0000', '4.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7095, '2021-07-23', 1572, 6942, 687, 9452, '1.0000', '1.7000', '1.7000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7096, '2021-07-23', 1602, 6943, 687, 17848, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7097, '2021-07-23', 2248, 6944, 687, 17464, '2.0000', '2.5000', '2.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7098, '2021-07-23', 2248, 6944, 687, 3087, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7099, '2021-07-23', 1646, 6945, 687, 18665, '1.0000', '4.5300', '4.5300', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7100, '2021-07-23', 1379, 6946, 687, 3422, '1.0000', '82.8700', '82.8700', '109.0000', '109.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7101, '2021-07-23', 2355, 6947, 687, NULL, '10.0000', '53.3100', '53.3100', '7.1000', '7.1000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7102, '2021-07-23', 1746, 6948, 687, NULL, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7103, '2021-07-23', 2284, 6949, 687, 3124, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7104, '2021-07-23', 1347, 6950, 687, NULL, '4.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7105, '2021-07-23', 2379, 6951, 687, 4385, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7106, '2021-07-23', 1837, 6952, 687, 18709, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7107, '2021-07-23', 2027, 6953, 687, NULL, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7108, '2021-07-23', 1651, 6954, 687, 18433, '1.0000', '6.8300', '6.8300', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7109, '2021-07-23', 2592, 6955, 688, 18068, '1.0000', '7.8400', '7.8400', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7110, '2021-07-23', 1857, 6956, 688, 4988, '1.0000', '90.0000', '90.0000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7111, '2021-07-23', 1855, 6957, 688, 4986, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7112, '2021-07-23', 2541, 6958, 688, 13559, '1.0000', '9.7500', '9.7500', '14.5000', '14.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7113, '2021-07-23', 2233, 6959, 688, 18675, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7114, '2021-07-23', 1651, 6960, 688, 18433, '1.0000', '6.8300', '6.8300', '10.5000', '10.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7115, '2021-07-23', 1812, 6961, 688, 18423, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7116, '2021-07-23', 1953, 6962, 688, 3407, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7117, '2021-07-23', 1602, 6963, 688, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7118, '2021-07-23', 1311, 6964, 688, 5503, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7119, '2021-07-23', 1363, 6965, 688, 16690, '1.0000', '81.4000', '81.4000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7120, '2021-07-23', 1363, 6965, 688, NULL, '27.0000', '81.4000', '81.4000', '4.0000', '4.0000', '-27.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7121, '2021-07-23', 2592, 6966, 689, 18069, '1.0000', '7.8400', '7.8400', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7122, '2021-07-23', 1857, 6967, 689, NULL, '1.0000', '90.0000', '90.0000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7123, '2021-07-23', 1855, 6968, 689, 4986, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7124, '2021-07-23', 2541, 6969, 689, 13559, '1.0000', '9.7500', '9.7500', '14.5000', '14.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7125, '2021-07-23', 2233, 6970, 689, 18675, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7126, '2021-07-23', 1651, 6971, 689, 18433, '1.0000', '6.8300', '6.8300', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7127, '2021-07-23', 1812, 6972, 689, 18423, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7128, '2021-07-23', 1953, 6973, 689, 3407, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7129, '2021-07-23', 1602, 6974, 689, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7130, '2021-07-23', 1311, 6975, 689, 5503, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7131, '2021-07-23', 1363, 6976, 689, NULL, '28.0000', '81.4000', '81.4000', '4.0000', '4.0000', '-28.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7132, '2021-07-23', 2646, 6977, 690, 10600, '2.0000', '6.0000', '6.0000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7133, '2021-07-23', 2221, 6978, 690, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7134, '2021-07-23', 1863, 6979, 690, 21554, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7135, '2021-07-23', 1875, 6980, 690, 17320, '10.0000', '90.0000', '90.0000', '3.6000', '3.6000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7136, '2021-07-23', 1875, 6980, 690, 17321, '10.0000', '90.0000', '90.0000', '3.6000', '3.6000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7137, '2021-07-23', 1689, 6981, 690, 4939, '1.0000', '12.3500', '12.3500', '17.0000', '17.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7138, '2021-07-23', 2091, 6982, 690, 9530, '1.0000', '28.0000', '28.0000', '25.0000', '25.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7139, '2021-07-23', 1947, 6983, 690, 4998, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7140, '2021-07-23', 2674, 6984, 690, 11900, '5.0000', '18.0000', '18.0000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7141, '2021-07-24', 2541, 6985, 691, 12384, '1.0000', '9.7500', '9.7500', '14.5000', '14.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7142, '2021-07-24', 1311, 6986, 691, 5503, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7143, '2021-07-24', 2506, 6987, 691, 5867, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7144, '2021-07-24', 2052, 6988, 691, 6404, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7145, '2021-07-24', 2916, 6989, 691, 18802, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7146, '2021-07-24', 1407, 6990, 691, 18705, '1.0000', '16.8000', '16.8000', '22.5000', '22.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7147, '2021-07-24', 1532, 6991, 691, 1539, '3.0000', '90.0000', '90.0000', '1.5000', '1.5000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7148, '2021-07-24', 2660, 6992, 691, 18686, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7149, '2021-07-24', 2108, 6993, 691, 6020, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7150, '2021-07-24', 1501, 6994, 691, 12680, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7151, '2021-07-24', 1337, 6995, 691, 17039, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7152, '2021-07-24', 2279, 6996, 691, 17085, '3.0000', '2.6000', '2.6000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7153, '2021-07-24', 1523, 6997, 691, 17781, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7154, '2021-07-24', 2011, 6998, 691, 6434, '2.0000', '0.5300', '0.5300', '1.0000', '1.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7155, '2021-07-24', 1342, 6999, 691, 18420, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7156, '2021-07-24', 2459, 7000, 691, 18661, '1.0000', '5.2800', '5.2800', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7157, '2021-07-24', 2169, 7001, 691, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7158, '2021-07-24', 2612, 7002, 691, 17037, '2.0000', '7.1600', '7.1600', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7159, '2021-07-24', 2612, 7002, 691, 17038, '1.0000', '7.1600', '7.1600', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7160, '2021-07-24', 1746, 7003, 691, NULL, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7161, '2021-07-24', 1759, 7004, 692, 6782, '1.0000', '63.8334', '63.8334', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7162, '2021-07-24', 1941, 7005, 693, 5601, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7163, '2021-07-24', 1311, 7006, 693, 5503, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7164, '2021-07-24', 1863, 7007, 693, 21554, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7165, '2021-07-24', 1529, 7008, 693, 21585, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7166, '2021-07-24', 1816, 7009, 693, NULL, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7167, '2021-07-24', 1303, 7010, 694, NULL, '1.0000', '1.3800', '1.3800', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7168, '2021-07-24', 1689, 7011, 694, 4939, '1.0000', '12.3500', '12.3500', '17.0000', '17.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7169, '2021-07-24', 2221, 7012, 694, 10594, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7170, '2021-07-24', 1632, 7013, 694, 3274, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7171, '2021-07-24', 2344, 7014, 694, 11867, '1.0000', '18.2000', '18.2000', '24.5000', '24.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7172, '2021-07-24', 2511, 7015, 694, 18429, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7173, '2021-07-24', 2315, 7016, 694, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '393.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7174, '2021-07-24', 1612, 7017, 694, 9422, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7175, '2021-07-24', 2416, 7018, 694, 4827, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7176, '2021-07-24', 2351, 7019, 694, 14594, '1.0000', '17.7000', '17.7000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7177, '2021-07-24', 1574, 7020, 694, 17031, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7178, '2021-07-24', 2320, 7021, 694, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7179, '2021-07-24', 2327, 7022, 694, 12242, '10.0000', '4.5000', '4.5000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7180, '2021-07-24', 1935, 7023, 694, 16698, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7181, '2021-07-24', 1702, 7024, 694, 14578, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7182, '2021-07-24', 1529, 7025, 694, 21585, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7183, '2021-07-24', 1857, 7026, 694, NULL, '1.0000', '90.0000', '90.0000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7184, '2021-07-24', 1809, 7027, 694, 18696, '1.0000', '9.2000', '9.2000', '12.5000', '12.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7185, '2021-07-24', 2351, 7028, 694, 14594, '1.0000', '17.7000', '17.7000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7186, '2021-07-24', 2506, 7029, 694, 5867, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7187, '2021-07-24', 1592, 7030, 694, 8285, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7188, '2021-07-24', 2958, 7031, 694, 21589, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7189, '2021-07-24', 2581, 7032, 694, 8435, '1.0000', '92.0000', '92.0000', '122.0000', '122.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7190, '2021-07-24', 1574, 7033, 694, 17031, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7191, '2021-07-24', 1876, 7034, 695, NULL, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7192, '2021-07-24', 2167, 7035, 695, 17315, '3.0000', '2.2000', '2.2000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7193, '2021-07-24', 2167, 7035, 695, 17073, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7194, '2021-07-24', 2135, 7036, 695, 16894, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7195, '2021-07-24', 2169, 7037, 695, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7196, '2021-07-24', 2486, 7038, 695, 21821, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7197, '2021-07-24', 2333, 7039, 695, NULL, '1.0000', '33.0000', '33.0000', '43.5000', '43.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7198, '2021-07-24', 2822, 7040, 695, 17322, '2.0000', '2.7200', '2.7200', '4.0000', '4.0000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7199, '2021-07-24', 2602, 7041, 695, 15795, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7200, '2021-07-24', 2317, 7042, 695, 15799, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7201, '2021-07-24', 1816, 7043, 695, NULL, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7202, '2021-07-24', 2309, 7044, 695, 6777, '3.0000', '1.9900', '1.9900', '2.6000', '2.6000', '17.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7203, '2021-07-24', 2167, 7045, 696, 17073, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7204, '2021-07-24', 2049, 7046, 696, NULL, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7205, '2021-07-24', 2593, 7047, 696, NULL, '2.0000', '14.4000', '14.4000', '19.0000', '19.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7206, '2021-07-24', 2341, 7048, 696, 3890, '1.0000', '5.5900', '5.5900', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7207, '2021-07-24', 2248, 7049, 696, NULL, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7208, '2021-07-24', 2643, 7050, 696, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7209, '2021-07-24', 1529, 7051, 696, 21585, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7210, '2021-07-24', 1574, 7052, 696, 17031, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7211, '2021-07-24', 1755, 7053, 696, 3188, '1.0000', '5.5900', '5.5900', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7212, '2021-07-24', 1935, 7054, 696, 12046, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7213, '2021-07-24', 2568, 7055, 696, NULL, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7214, '2021-07-24', 1985, 7056, 696, 6458, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7215, '2021-07-24', 1326, 7057, 696, 3365, '1.0000', '3.0300', '3.0300', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7216, '2021-07-24', 2036, 7058, 696, 4401, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7217, '2021-07-24', 2440, 7059, 696, 21806, '2.0000', '5.1000', '5.1000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7218, '2021-07-24', 2454, 7060, 697, 21552, '2.0000', '7.5400', '7.5400', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7219, '2021-07-24', 2822, 7061, 697, 17322, '5.0000', '2.7200', '2.7200', '4.0000', '4.0000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7220, '2021-07-24', 1846, 7062, 697, 18409, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7221, '2021-07-24', 1647, 7063, 697, 16905, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7222, '2021-07-24', 2268, 7064, 697, 18442, '2.0000', '14.6000', '14.6000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7223, '2021-07-24', 2105, 7065, 697, 6017, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7224, '2021-07-24', 2105, 7065, 697, 2511, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7225, '2021-07-24', 2233, 7066, 697, 18675, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7226, '2021-07-24', 1665, 7067, 697, 10540, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7227, '2021-07-24', 1665, 7067, 697, 3244, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7228, '2021-07-24', 1504, 7068, 697, 17840, '10.0000', '90.0000', '90.0000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7229, '2021-07-24', 2866, 7069, 697, 17783, '10.0000', '0.8800', '0.8800', '1.5000', '1.5000', '150.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7230, '2021-07-24', 1647, 7070, 697, 16905, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7231, '2021-07-24', 2506, 7071, 697, NULL, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7232, '2021-07-24', 2907, 7072, 697, 18690, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7233, '2021-07-24', 2437, 7073, 698, NULL, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7234, '2021-07-25', 1521, 7074, 699, 18427, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7235, '2021-07-25', 1523, 7075, 699, 17781, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7236, '2021-07-25', 2381, 7076, 699, 21563, '1.0000', '10.8700', '10.8700', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7237, '2021-07-25', 1302, 7077, 699, 21544, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7238, '2021-07-25', 1728, 7078, 699, 17366, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7239, '2021-07-25', 2275, 7079, 699, NULL, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7240, '2021-07-25', 2315, 7080, 699, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '391.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7241, '2021-07-25', 1846, 7081, 699, 12060, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7242, '2021-07-25', 2169, 7082, 699, 18684, '2.0000', '0.9800', '0.9800', '1.5000', '1.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7243, '2021-07-25', 1863, 7083, 699, 21554, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7244, '2021-07-25', 1612, 7084, 699, 9422, '2.0000', '1.6000', '1.6000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7245, '2021-07-25', 1846, 7085, 699, 12060, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7246, '2021-07-25', 1657, 7086, 699, NULL, '2.0000', '90.0000', '90.0000', '0.6000', '0.6000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7247, '2021-07-25', 1303, 7087, 699, 9576, '-1.0000', '1.3800', '1.3800', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7248, '2021-07-25', 1303, 7087, 699, 9576, '-1.0000', '1.3800', '1.3800', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7249, '2021-07-25', 1303, 7087, 699, 2657, '9.0000', '1.3800', '1.3800', '4.0000', '4.0000', '103.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7250, '2021-07-25', 1406, 7088, 699, 18708, '1.0000', '16.8000', '16.8000', '23.0000', '23.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7251, '2021-07-25', 2169, 7089, 699, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7252, '2021-07-25', 2859, 7090, 699, 17456, '1.0000', '0.6700', '0.6700', '2.0000', '2.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7253, '2021-07-25', 1837, 7091, 699, 18709, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7254, '2021-07-25', 1499, 7092, 699, 1502, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7255, '2021-07-25', 1863, 7093, 699, 21554, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7256, '2021-07-25', 2315, 7094, 699, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '391.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7257, '2021-07-25', 1947, 7095, 699, 4998, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7258, '2021-07-25', 1646, 7096, 699, 18665, '1.0000', '4.5300', '4.5300', '7.5000', '7.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7259, '2021-07-25', 1620, 7097, 699, 21573, '4.0000', '90.0000', '90.0000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7260, '2021-07-25', 2623, 7098, 699, NULL, '1.0000', '4.3000', '4.3000', '5.5000', '5.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7261, '2021-07-25', 1585, 7099, 700, 17845, '1.0000', '8.9900', '8.9900', '17.5000', '17.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7262, '2021-07-25', 2726, 7100, 700, NULL, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7263, '2021-07-25', 2864, 7101, 700, 18426, '2.0000', '1.5000', '1.5000', '2.0000', '2.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7264, '2021-07-25', 1578, 7102, 700, 9447, '1.0000', '1.9700', '1.9700', '3.0000', '3.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7265, '2021-07-25', 2277, 7103, 700, 3117, '2.0000', '0.7800', '0.7800', '1.0000', '1.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7266, '2021-07-25', 1863, 7104, 700, 21554, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7267, '2021-07-25', 1665, 7105, 700, 3244, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7268, '2021-07-25', 1888, 7106, 700, NULL, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7269, '2021-07-25', 2857, 7107, 700, 17777, '1.0000', '17.0000', '17.0000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7270, '2021-07-25', 1665, 7108, 700, 3244, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7271, '2021-07-25', 2511, 7109, 701, 18429, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7272, '2021-07-25', 1828, 7110, 701, 4963, '4.0000', '0.7300', '0.7300', '1.0000', '1.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7273, '2021-07-25', 2169, 7111, 701, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7274, '2021-07-25', 2092, 7112, 701, 4982, '1.0000', '4.1500', '4.1500', '5.5000', '5.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7275, '2021-07-25', 1873, 7113, 701, 16904, '1.0000', '90.0000', '90.0000', '15.5000', '15.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7276, '2021-07-25', 2389, 7114, 701, 4394, '1.0000', '3.1400', '3.1400', '4.5000', '4.5000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7277, '2021-07-25', 2649, 7115, 701, 18799, '1.0000', '71.0000', '71.0000', '95.0000', '95.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7278, '2021-07-25', 2829, 7116, 701, 16965, '2.0000', '23.8700', '23.8700', '32.0000', '32.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7279, '2021-07-25', 2221, 7117, 701, 10594, '2.0000', '15.0000', '15.0000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7280, '2021-07-25', 1912, 7118, 701, NULL, '2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7281, '2021-07-25', 1828, 7119, 701, 4963, '1.0000', '0.7300', '0.7300', '1.0000', '1.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7282, '2021-07-25', 1841, 7120, 701, 4974, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7283, '2021-07-25', 2132, 7121, 702, 18358, '1.0000', '22.0000', '22.0000', '24.0000', '24.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7284, '2021-07-25', 2037, 7122, 702, 18355, '2.0000', '10.0000', '10.0000', '14.0000', '14.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7285, '2021-07-25', 2614, 7123, 702, 16703, '1.0000', '52.5100', '52.5100', '71.0000', '71.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7286, '2021-07-25', 1502, 7124, 702, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7287, '2021-07-25', 1411, 7125, 703, 21565, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7288, '2021-07-25', 1340, 7126, 703, 13569, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7289, '2021-07-25', 1912, 7127, 703, 9575, '-2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7290, '2021-07-25', 1912, 7127, 703, 9575, '-2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7291, '2021-07-25', 1912, 7127, 703, 9575, '-2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7292, '2021-07-25', 1912, 7127, 703, 1503, '4.0000', '0.3100', '0.3100', '1.0000', '1.0000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7293, '2021-07-25', 2633, 7128, 703, 17865, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7294, '2021-07-25', 2020, 7129, 703, 13560, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7295, '2021-07-25', 2307, 7130, 704, 18801, '3.0000', '140.0000', '140.0000', '170.0000', '170.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7296, '2021-07-26', 1523, 7131, 705, 13487, '1.0000', '213.0405', '213.0405', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7297, '2021-07-26', 1523, 7131, 705, 13487, '1.0000', '213.0405', '213.0405', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7298, '2021-07-26', 1523, 7131, 705, NULL, '1.0000', '213.0405', '213.0405', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7299, '2021-07-26', 2948, 7132, 705, NULL, '1.0000', '0.9000', '0.9000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7300, '2021-07-26', 1602, 7133, 705, 5897, '1.0000', '7.6435', '7.6435', '10.0000', '10.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7301, '2021-07-26', 2061, 7134, 705, 6674, '2.0000', '10.9800', '10.9800', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7302, '2021-07-26', 2262, 7135, 705, NULL, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7303, '2021-07-26', 2859, 7136, 705, 17444, '1.0000', '0.6700', '0.6700', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7304, '2021-07-26', 2272, 7137, 705, NULL, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7305, '2021-07-26', 2327, 7138, 705, 5083, '-1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7306, '2021-07-26', 2327, 7138, 705, NULL, '4.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7307, '2021-07-26', 2958, 7139, 705, NULL, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7308, '2021-07-26', 1342, 7140, 705, 238, '1.0000', '6.8074', '6.8074', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7309, '2021-07-26', 1702, 7141, 705, 18857, '1.0000', '14.9700', '14.9700', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7310, '2021-07-26', 2136, 7142, 705, 1351, '1.0000', '0.9500', '0.9500', '3.0000', '3.0000', '116.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7311, '2021-07-26', 2393, 7143, 705, 21277, '2.0000', '3.6334', '3.6334', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7312, '2021-07-26', 2188, 7144, 705, NULL, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7313, '2021-07-26', 1888, 7145, 705, 683, '1.0000', '134.8400', '134.8400', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 54);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7314, '2021-07-26', 1871, 7146, 705, 8223, '20.0000', '26.7137', '26.7137', '3.0000', '3.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7315, '2021-07-26', 2618, 7147, 705, 9836, '-2.0000', '4.1000', '4.1000', '5.5000', '5.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7316, '2021-07-26', 2618, 7147, 705, NULL, '4.0000', '4.1000', '4.1000', '5.5000', '5.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7317, '2021-07-26', 1668, 7148, 705, 3238, '1.0000', '13.0442', '13.0442', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7318, '2021-07-26', 2279, 7149, 705, NULL, '1.0000', '2.7000', '2.7000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7319, '2021-07-26', 2655, 7150, 705, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7320, '2021-07-26', 2617, 7151, 705, NULL, '2.0000', '4.4000', '4.4000', '6.0000', '6.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7321, '2021-07-26', 2275, 7152, 705, NULL, '2.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7322, '2021-07-26', 2336, 7153, 705, NULL, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7323, '2021-07-26', 2252, 7154, 705, NULL, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7324, '2021-07-26', 1704, 7155, 705, NULL, '1.0000', '27.0900', '27.0900', '35.5000', '35.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7325, '2021-07-26', 1428, 7156, 705, 21266, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7326, '2021-07-26', 1401, 7157, 705, 21276, '3.0000', '3.0000', '3.0000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7327, '2021-07-26', 1567, 7158, 706, NULL, '1.0000', '13.3000', '13.3000', '17.5000', '17.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7328, '2021-07-26', 1822, 7159, 707, NULL, '20.0000', '2.4000', '2.4000', '3.0000', '3.0000', '-20.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7329, '2021-07-26', 2268, 7160, 708, 2928, '2.0000', '7.3000', '7.3000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7330, '2021-07-26', 1871, 7161, 708, 8223, '10.0000', '26.7137', '26.7137', '3.0000', '3.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7331, '2021-07-26', 2166, 7162, 708, 19676, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7332, '2021-07-26', 2166, 7162, 708, 1380, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7333, '2021-07-26', 1817, 7163, 708, 623, '1.0000', '90.0000', '90.0000', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 51);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7334, '2021-07-26', 2628, 7164, 708, NULL, '1.0000', '12.5000', '12.5000', '16.5000', '16.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7335, '2021-07-26', 1967, 7165, 709, 4690, '1.0000', '19.5900', '19.5900', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7336, '2021-07-26', 1665, 7166, 710, 3235, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7337, '2021-07-26', 2714, 7167, 710, 12769, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7338, '2021-07-26', 1856, 7168, 710, NULL, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7339, '2021-07-26', 1667, 7169, 710, 2432, '2.0000', '5.9400', '5.9400', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 47);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7340, '2021-07-26', 1665, 7170, 710, 3235, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7341, '2021-07-26', 2545, 7171, 710, 6306, '1.0000', '5.8819', '5.8819', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7342, '2021-07-26', 2280, 7172, 710, NULL, '1.0000', '3.0700', '3.0700', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7343, '2021-07-26', 2679, 7173, 710, 12162, '-1.0000', '32.3500', '32.3500', '43.0000', '43.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7344, '2021-07-26', 2679, 7173, 710, NULL, '2.0000', '32.3500', '32.3500', '43.0000', '43.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7345, '2021-07-26', 1845, 7174, 710, NULL, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7346, '2021-07-26', 1574, 7175, 710, 7593, '-12.0000', '1.9600', '1.9600', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7347, '2021-07-26', 1574, 7175, 710, NULL, '14.0000', '1.9600', '1.9600', '2.5000', '2.5000', '-14.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7348, '2021-07-26', 1502, 7176, 710, 18925, '1.0000', '7.8000', '7.8000', '10.5000', '10.5000', '11.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7349, '2021-07-26', 1619, 7177, 710, 20621, '2.0000', '9.8500', '9.8500', '13.0000', '13.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7350, '2021-07-26', 1499, 7178, 710, 20585, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '21.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7351, '2021-07-26', 1863, 7179, 710, 10808, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '57.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7352, '2021-07-26', 1708, 7180, 710, NULL, '1.0000', '20.1900', '20.1900', '28.0000', '28.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7353, '2021-07-26', 1567, 7181, 710, 7589, '-1.0000', '13.3000', '13.3000', '17.5000', '17.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7354, '2021-07-26', 1567, 7181, 710, NULL, '2.0000', '13.3000', '13.3000', '17.5000', '17.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7355, '2021-07-26', 1642, 7182, 710, 82, '1.0000', '22.4127', '22.4127', '41.0000', '41.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7356, '2021-07-26', 2227, 7183, 710, NULL, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7357, '2021-07-26', 1651, 7184, 710, 3222, '1.0000', '6.7039', '6.7039', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7358, '2021-07-26', 2445, 7185, 710, NULL, '10.0000', '3.2000', '3.2000', '5.0000', '5.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7359, '2021-07-26', 2516, 7186, 710, NULL, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7360, '2021-07-26', 2261, 7187, 710, 2797, '1.0000', '18.9900', '18.9900', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7361, '2021-07-26', 1620, 7188, 710, 8955, '8.0000', '408.8259', '408.8259', '4.0000', '4.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7362, '2021-07-26', 2236, 7189, 710, 2780, '1.0000', '5.6599', '5.6599', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7363, '2021-07-26', 2411, 7190, 711, 18910, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7364, '2021-07-26', 1961, 7191, 711, 4501, '1.0000', '24.5160', '24.5160', '24.0000', '24.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7365, '2021-07-26', 2967, 7192, 711, NULL, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7366, '2021-07-26', 1863, 7193, 711, 10808, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '56.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7367, '2021-07-26', 2714, 7194, 711, 12769, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7368, '2021-07-26', 1602, 7195, 711, 5897, '1.0000', '7.6435', '7.6435', '10.0000', '10.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7369, '2021-07-26', 1941, 7196, 711, NULL, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7370, '2021-07-26', 1340, 7197, 711, 236, '1.0000', '2.7025', '2.7025', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7371, '2021-07-26', 1780, 7198, 711, 588, '1.0000', '187.5686', '187.5686', '47.0000', '47.0000', '2.0000', 1, 0, NULL, 48);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7372, '2021-07-26', 1714, 7199, 711, NULL, '1.0000', '16.8400', '16.8400', '22.0000', '22.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7373, '2021-07-26', 2655, 7200, 711, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7374, '2021-07-26', 1667, 7201, 711, NULL, '1.0000', '5.9400', '5.9400', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7375, '2021-07-26', 1602, 7202, 711, 5897, '1.0000', '7.6435', '7.6435', '10.0000', '10.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7376, '2021-07-26', 1425, 7203, 711, NULL, '1.0000', '6.3456', '6.3456', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7377, '2021-07-26', 2411, 7204, 712, 18910, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7378, '2021-07-26', 1961, 7205, 712, 4501, '1.0000', '24.5160', '24.5160', '24.0000', '24.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7379, '2021-07-26', 2967, 7206, 712, NULL, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7380, '2021-07-26', 1863, 7207, 712, 10808, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '55.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7381, '2021-07-26', 2714, 7208, 712, 12769, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7382, '2021-07-26', 1602, 7209, 712, 5897, '1.0000', '7.6435', '7.6435', '10.0000', '10.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7383, '2021-07-26', 1941, 7210, 712, 5592, '-1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7384, '2021-07-26', 1941, 7210, 712, NULL, '2.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7385, '2021-07-26', 1340, 7211, 712, 236, '1.0000', '2.7025', '2.7025', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7386, '2021-07-26', 1780, 7212, 712, 588, '1.0000', '187.5686', '187.5686', '47.0000', '47.0000', '1.0000', 1, 0, NULL, 48);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7387, '2021-07-26', 1714, 7213, 712, 11161, '-1.0000', '16.8400', '16.8400', '22.0000', '22.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7388, '2021-07-26', 1714, 7213, 712, NULL, '2.0000', '16.8400', '16.8400', '22.0000', '22.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7389, '2021-07-26', 2655, 7214, 712, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7390, '2021-07-26', 1667, 7215, 712, 9745, '-1.0000', '5.9400', '5.9400', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7391, '2021-07-26', 1667, 7215, 712, NULL, '2.0000', '5.9400', '5.9400', '8.0000', '8.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7392, '2021-07-26', 1602, 7216, 712, 5897, '1.0000', '7.6435', '7.6435', '10.0000', '10.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7393, '2021-07-26', 1425, 7217, 712, NULL, '1.0000', '6.3456', '6.3456', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7394, '2021-07-26', 1874, 7218, 713, 670, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 54);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7395, '2021-07-26', 2345, 7219, 713, 3848, '2.0000', '7.6400', '7.6400', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7396, '2021-07-26', 1658, 7220, 713, NULL, '1.0000', '27.9300', '27.9300', '37.0000', '37.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7397, '2021-07-26', 2460, 7221, 713, NULL, '1.0000', '32.7700', '32.7700', '43.0000', '43.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7398, '2021-07-26', 2362, 7222, 713, 3864, '10.0000', '8.8300', '8.8300', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7399, '2021-07-26', 2362, 7222, 713, NULL, '10.0000', '8.8300', '8.8300', '12.0000', '12.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7400, '2021-07-26', 2477, 7223, 713, NULL, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7401, '2021-07-26', 2763, 7224, 713, NULL, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7402, '2021-07-26', 2478, 7225, 713, NULL, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7403, '2021-07-26', 2825, 7226, 713, NULL, '2.0000', '12.0000', '12.0000', '25.0000', '25.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7404, '2021-07-26', 2549, 7227, 713, NULL, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7405, '2021-07-26', 2822, 7228, 713, NULL, '4.0000', '2.7200', '2.7200', '4.0000', '4.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7406, '2021-07-26', 2772, 7229, 713, 21304, '1.0000', '16.7000', '16.7000', '22.0000', '22.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7407, '2021-07-26', 2858, 7230, 713, NULL, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7408, '2021-07-26', 2135, 7231, 713, NULL, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7409, '2021-07-26', 1767, 7232, 713, 18833, '1.0000', '4.6052', '4.6052', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7410, '2021-07-26', 2315, 7233, 713, 2735, '-13.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7411, '2021-07-26', 2315, 7233, 713, NULL, '15.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-15.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7412, '2021-07-26', 2299, 7234, 713, 2142, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7413, '2021-07-26', 1529, 7235, 714, NULL, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7414, '2021-07-26', 1557, 7236, 714, NULL, '1.0000', '7.9500', '7.9500', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7415, '2021-07-26', 1766, 7237, 714, NULL, '1.0000', '2.6900', '2.6900', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7416, '2021-07-26', 2088, 7238, 714, 21781, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7417, '2021-07-26', 2242, 7239, 714, 21224, '2.0000', '0.4800', '0.4800', '1.0000', '1.0000', '48.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7418, '2021-07-26', 2167, 7240, 714, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '34.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7419, '2021-07-26', 2068, 7241, 714, NULL, '1.0000', '13.1000', '13.1000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7420, '2021-07-26', 1353, 7242, 714, NULL, '1.0000', '20.5000', '20.5000', '27.0000', '27.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7421, '2021-07-26', 2169, 7243, 714, 21209, '1.0000', '2.4309', '2.4309', '1.5000', '1.5000', '59.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7422, '2021-07-26', 1966, 7244, 714, NULL, '1.0000', '2.7100', '2.7100', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7423, '2021-07-26', 2823, 7245, 715, NULL, '1.0000', '11.2100', '11.2100', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7424, '2021-07-26', 1382, 7246, 715, 21211, '1.0000', '59.9663', '59.9663', '5.5000', '5.5000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7425, '2021-07-26', 1837, 7247, 715, 18643, '1.0000', '0.9642', '0.9642', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7426, '2021-07-26', 2167, 7248, 715, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '33.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7427, '2021-07-26', 1935, 7249, 715, NULL, '1.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7428, '2021-07-26', 1493, 7250, 715, 9747, '1.0000', '1.5425', '1.5425', '3.0000', '3.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7429, '2021-07-26', 1812, 7251, 716, 8224, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7430, '2021-07-26', 2167, 7252, 716, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '32.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7431, '2021-07-26', 1904, 7253, 716, NULL, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7432, '2021-07-26', 1756, 7254, 716, 3166, '-4.0000', '90.0000', '90.0000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7433, '2021-07-26', 1756, 7254, 716, NULL, '6.0000', '90.0000', '90.0000', '6.5000', '6.5000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7434, '2021-07-26', 1521, 7255, 716, 21208, '1.0000', '2.5394', '2.5394', '3.5000', '3.5000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7435, '2021-07-26', 1489, 7256, 716, 21291, '1.0000', '28.1700', '28.1700', '37.0000', '37.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7436, '2021-07-26', 1651, 7257, 716, 3222, '1.0000', '6.7039', '6.7039', '10.5000', '10.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7437, '2021-07-26', 2229, 7258, 716, NULL, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7438, '2021-07-26', 2167, 7259, 716, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '32.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7439, '2021-07-26', 2959, 7260, 716, 21792, '1.0000', '4.0000', '4.0000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7440, '2021-07-26', 1529, 7261, 716, NULL, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7441, '2021-07-26', 1342, 7262, 716, 238, '1.0000', '6.8074', '6.8074', '7.5000', '7.5000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7442, '2021-07-26', 1702, 7263, 716, 18857, '1.0000', '14.9700', '14.9700', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7443, '2021-07-26', 1303, 7264, 716, 32, '1.0000', '54.5520', '54.5520', '4.0000', '4.0000', '118.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7444, '2021-07-26', 1665, 7265, 716, 3235, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7445, '2021-07-26', 1386, 7266, 717, 21281, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '11.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7446, '2021-07-26', 2655, 7267, 717, NULL, '2.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7447, '2021-07-26', 2085, 7268, 718, 8628, '10.0000', '-1.0741', '-1.0741', '2.0000', '2.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7448, '2021-07-26', 1313, 7269, 718, 21496, '1.0000', '2.6700', '2.6700', '4.0000', '4.0000', '24.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7449, '2021-07-26', 2302, 7270, 718, NULL, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7450, '2021-07-26', 2660, 7271, 718, NULL, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7451, '2021-07-26', 1640, 7272, 718, 19759, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7452, '2021-07-27', 2761, 7273, 719, 20705, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7453, '2021-07-27', 2633, 7274, 720, 21279, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7454, '2021-07-27', 1422, 7275, 721, 21270, '1.0000', '21.0000', '21.0000', '28.0000', '28.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7455, '2021-07-27', 1840, 7276, 721, NULL, '5.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.3000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7456, '2021-07-27', 1935, 7277, 721, 5586, '-1.0000', '0.7200', '0.7200', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7457, '2021-07-27', 1935, 7277, 721, NULL, '2.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7458, '2021-07-27', 2302, 7278, 721, 2963, '-1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7459, '2021-07-27', 2302, 7278, 721, NULL, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7460, '2021-07-27', 2761, 7279, 721, 20705, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7461, '2021-07-27', 2020, 7280, 721, 21286, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7462, '2021-07-27', 2169, 7281, 721, 21209, '1.0000', '2.4309', '2.4309', '1.5000', '1.5000', '58.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7463, '2021-07-27', 1837, 7282, 721, NULL, '2.0000', '0.9642', '0.9642', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7464, '2021-07-27', 1872, 7283, 721, 18880, '1.0000', '9.0500', '9.0500', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7465, '2021-07-27', 2331, 7284, 721, NULL, '1.0000', '12.0700', '12.0700', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7466, '2021-07-27', 2020, 7285, 721, 21286, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7467, '2021-07-27', 2105, 7286, 721, NULL, '2.0000', '1.3500', '1.3500', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7468, '2021-07-27', 1501, 7287, 721, 21207, '1.0000', '2.0500', '2.0500', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7469, '2021-07-27', 1935, 7288, 721, 5586, '-1.0000', '0.7200', '0.7200', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7470, '2021-07-27', 1935, 7288, 721, NULL, '2.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7471, '2021-07-27', 1533, 7289, 721, 21228, '1.0000', '2.8310', '2.8310', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7472, '2021-07-27', 2251, 7290, 721, NULL, '1.0000', '10.9700', '10.9700', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7473, '2021-07-27', 2242, 7291, 721, 21224, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7474, '2021-07-27', 2068, 7292, 721, 5568, '-1.0000', '13.1000', '13.1000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7475, '2021-07-27', 2068, 7292, 721, NULL, '2.0000', '13.1000', '13.1000', '17.0000', '17.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7476, '2021-07-27', 2060, 7293, 721, 20583, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '98.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7477, '2021-07-27', 1608, 7294, 721, NULL, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7478, '2021-07-27', 1596, 7295, 721, NULL, '1.0000', '2.5700', '2.5700', '3.8300', '3.8300', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7479, '2021-07-27', 1841, 7296, 721, 18870, '2.0000', '142.5780', '142.5780', '0.5000', '0.5000', '34.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7480, '2021-07-27', 2320, 7297, 721, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7481, '2021-07-27', 1771, 7298, 721, 6775, '1.0000', '5.2450', '5.2450', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7482, '2021-07-27', 1677, 7299, 721, 18835, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7483, '2021-07-27', 1812, 7300, 722, 8224, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7484, '2021-07-27', 1529, 7301, 722, NULL, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7485, '2021-07-27', 2823, 7302, 722, 19684, '-1.0000', '11.2100', '11.2100', '15.0000', '15.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7486, '2021-07-27', 2823, 7302, 722, NULL, '2.0000', '11.2100', '11.2100', '15.0000', '15.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7487, '2021-07-27', 1650, 7303, 722, NULL, '1.0000', '14.8000', '14.8000', '19.5000', '19.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7488, '2021-07-27', 2821, 7304, 722, NULL, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7489, '2021-07-27', 1602, 7305, 722, 5897, '1.0000', '7.6435', '7.6435', '10.0000', '10.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7490, '2021-07-27', 2169, 7306, 723, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7491, '2021-07-27', 2259, 7307, 723, 18666, '1.0000', '19.0000', '19.0000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7492, '2021-07-27', 1608, 7308, 723, 11876, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7493, '2021-07-27', 1658, 7309, 723, 12734, '1.0000', '90.0000', '90.0000', '37.0000', '37.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7494, '2021-07-27', 2251, 7310, 723, 18416, '1.0000', '11.6400', '11.6400', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7495, '2021-07-27', 2924, 7311, 723, 18798, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7496, '2021-07-27', 1736, 7312, 723, 12755, '3.0000', '26.7000', '26.7000', '38.0000', '38.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7497, '2021-07-27', 1736, 7312, 723, NULL, '3.0000', '26.7000', '26.7000', '38.0000', '38.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7498, '2021-07-27', 1307, 7313, 723, 4984, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7499, '2021-07-27', 1592, 7314, 723, NULL, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7500, '2021-07-27', 2416, 7315, 723, 4827, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7501, '2021-07-27', 2260, 7316, 723, 12238, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7502, '2021-07-27', 2604, 7317, 723, 18405, '1.0000', '90.0000', '90.0000', '120.0000', '120.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7503, '2021-07-27', 2574, 7318, 723, 12672, '10.0000', '0.7800', '0.7800', '1.5000', '1.5000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7504, '2021-07-27', 1340, 7319, 723, 13569, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7505, '2021-07-27', 1499, 7320, 723, 1502, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7506, '2021-07-27', 2958, 7321, 723, 21589, '3.0000', '1.0000', '1.0000', '2.0000', '2.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7507, '2021-07-27', 1499, 7322, 723, 1502, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7508, '2021-07-27', 2568, 7323, 723, NULL, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7509, '2021-07-27', 2315, 7324, 723, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '387.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7510, '2021-07-27', 2942, 7325, 723, 21548, '1.0000', '0.4900', '0.4900', '2.0000', '2.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7511, '2021-07-27', 1310, 7326, 723, NULL, '20.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-20.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7512, '2021-07-27', 2317, 7327, 723, 15799, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7513, '2021-07-27', 1523, 7328, 723, 11170, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7514, '2021-07-27', 2876, 7329, 723, 17901, '2.0000', '7.0000', '7.0000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7515, '2021-07-27', 2660, 7330, 723, 18686, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7516, '2021-07-27', 2445, 7331, 723, 21835, '4.0000', '3.2000', '3.2000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7517, '2021-07-27', 2445, 7331, 723, NULL, '6.0000', '3.2000', '3.2000', '5.0000', '5.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7518, '2021-07-27', 2169, 7332, 723, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7519, '2021-07-27', 1905, 7333, 724, 5509, '1.0000', '0.4000', '0.4000', '1.0000', '1.0000', '77.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7520, '2021-07-27', 1969, 7334, 724, 1522, '1.0000', '4.3300', '4.3300', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7521, '2021-07-27', 1731, 7335, 724, 12227, '1.0000', '19.9600', '19.9600', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7522, '2021-07-27', 1863, 7336, 724, 21554, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7523, '2021-07-27', 1346, 7337, 724, 22215, '15.0000', '0.9300', '0.9300', '1.5000', '1.5000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7524, '2021-07-27', 1812, 7338, 724, 18423, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7525, '2021-07-27', 2568, 7339, 724, NULL, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7526, '2021-07-27', 1573, 7340, 724, NULL, '1.0000', '90.0000', '90.0000', '32.5000', '32.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7527, '2021-07-27', 1665, 7341, 724, 22236, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7528, '2021-07-27', 2699, 7342, 724, 21819, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7529, '2021-07-27', 1310, 7343, 724, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7530, '2021-07-27', 2821, 7344, 724, 17043, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7531, '2021-07-27', 2381, 7345, 724, 21563, '1.0000', '10.8700', '10.8700', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7532, '2021-07-27', 1596, 7346, 724, 18056, '1.0000', '2.5700', '2.5700', '3.8300', '3.8300', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7533, '2021-07-27', 2073, 7347, 724, 5612, '1.0000', '2.3000', '2.3000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7534, '2021-07-27', 2958, 7348, 725, 21589, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7535, '2021-07-27', 1596, 7349, 725, 18056, '1.0000', '2.5700', '2.5700', '3.8300', '3.8300', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7536, '2021-07-27', 1596, 7350, 726, 18056, '1.0000', '2.5700', '2.5700', '3.8300', '3.8300', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7537, '2021-07-27', 1954, 7351, 727, 265, '1.0000', '13.7500', '13.7500', '1.0000', '1.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7538, '2021-07-27', 2135, 7352, 727, NULL, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7539, '2021-07-27', 1888, 7353, 727, 683, '1.0000', '134.8400', '134.8400', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 54);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7540, '2021-07-27', 2241, 7354, 727, NULL, '1.0000', '6.5900', '6.5900', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7541, '2021-07-27', 2727, 7355, 727, NULL, '1.0000', '4.6800', '4.6800', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7542, '2021-07-27', 1637, 7356, 727, 13466, '1.0000', '10.2000', '10.2000', '14.0000', '14.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7543, '2021-07-27', 2275, 7357, 727, 2935, '-2.0000', '1.0900', '1.0900', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7544, '2021-07-27', 2275, 7357, 727, NULL, '4.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7545, '2021-07-27', 2973, 7358, 727, NULL, '1.0000', '4.3000', '4.3000', '5.6000', '5.6000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7546, '2021-07-27', 1812, 7359, 727, 8224, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7547, '2021-07-27', 1430, 7360, 727, 22347, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7548, '2021-07-27', 1819, 7361, 727, 18840, '1.0000', '5.5930', '5.5930', '7.1700', '7.1700', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7549, '2021-07-27', 1523, 7362, 727, NULL, '1.0000', '213.0405', '213.0405', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7550, '2021-07-27', 1805, 7363, 727, 612, '1.0000', '195.3170', '195.3170', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 51);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7551, '2021-07-27', 2281, 7364, 727, 2941, '-9.0000', '3.0000', '3.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7552, '2021-07-27', 2281, 7364, 727, NULL, '15.0000', '3.0000', '3.0000', '4.0000', '4.0000', '-15.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7553, '2021-07-27', 1831, 7365, 727, 22320, '1.0000', '8.4400', '8.4400', '11.5000', '11.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7554, '2021-07-27', 2544, 7366, 727, 18875, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7555, '2021-07-27', 2730, 7367, 727, 19267, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '49.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7556, '2021-07-27', 2135, 7368, 727, NULL, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7557, '2021-07-27', 1881, 7369, 727, NULL, '1.0000', '105.0000', '105.0000', '138.5000', '138.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7558, '2021-07-27', 1523, 7370, 727, NULL, '1.0000', '213.0405', '213.0405', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7559, '2021-07-27', 1464, 7371, 728, NULL, '1.0000', '90.0000', '90.0000', '17.5000', '17.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7560, '2021-07-27', 1632, 7372, 728, 3274, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7561, '2021-07-27', 1386, 7373, 728, 17862, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7562, '2021-07-27', 1621, 7374, 728, 22227, '1.0000', '90.0000', '90.0000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7563, '2021-07-27', 1884, 7375, 728, 5010, '1.0000', '4.8500', '4.8500', '6.5000', '6.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7564, '2021-07-27', 1841, 7376, 728, 4974, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7565, '2021-07-27', 1310, 7377, 728, NULL, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7566, '2021-07-27', 1602, 7378, 728, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7567, '2021-07-27', 2825, 7379, 728, NULL, '1.0000', '12.0000', '12.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7568, '2021-07-27', 1675, 7380, 728, 18689, '1.0000', '90.0000', '90.0000', '28.0000', '28.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7569, '2021-07-27', 1672, 7381, 728, 17837, '10.0000', '90.0000', '90.0000', '3.9000', '3.9000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7570, '2021-07-27', 1440, 7382, 728, 11882, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7571, '2021-07-27', 1445, 7383, 728, 7112, '4.0000', '2.6000', '2.6000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7572, '2021-07-27', 2299, 7384, 728, NULL, '1.0000', '6.0000', '6.0000', '8.5000', '8.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7573, '2021-07-27', 2251, 7385, 728, 18416, '1.0000', '11.6400', '11.6400', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7574, '2021-07-27', 1602, 7386, 728, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7575, '2021-07-27', 2643, 7387, 728, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7576, '2021-07-27', 2561, 7388, 728, 7206, '1.0000', '30.0000', '30.0000', '80.0000', '80.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7577, '2021-07-27', 1839, 7389, 728, 18700, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7578, '2021-07-27', 1658, 7390, 728, 3250, '1.0000', '90.0000', '90.0000', '37.0000', '37.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7579, '2021-07-27', 2462, 7391, 728, 8426, '1.0000', '46.8500', '46.8500', '62.0000', '62.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7580, '2021-07-27', 2708, 7392, 728, NULL, '1.0000', '33.9600', '33.9600', '45.0000', '45.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7581, '2021-07-27', 2285, 7393, 728, 22217, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7582, '2021-07-27', 2168, 7394, 728, 18411, '1.0000', '26.0000', '26.0000', '39.0000', '39.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7583, '2021-07-27', 2511, 7395, 728, 18430, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7584, '2021-07-27', 2511, 7395, 728, 16706, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7585, '2021-07-27', 2958, 7396, 728, 21589, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7586, '2021-07-27', 1762, 7397, 728, 3181, '1.0000', '8.2900', '8.2900', '11.0000', '11.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7587, '2021-07-27', 2289, 7398, 728, 3129, '3.0000', '0.2300', '0.2300', '0.5000', '0.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7588, '2021-07-27', 2681, 7399, 728, 18057, '1.0000', '12.4000', '12.4000', '16.5000', '16.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7589, '2021-07-27', 2263, 7400, 728, 13623, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7590, '2021-07-27', 1863, 7401, 728, 21554, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7591, '2021-07-27', 2942, 7402, 728, 21548, '2.0000', '0.4900', '0.4900', '2.0000', '2.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7592, '2021-07-27', 1992, 7403, 728, 6451, '1.0000', '1.5000', '1.5000', '4.0000', '4.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7593, '2021-07-27', 2283, 7404, 728, 3123, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7594, '2021-07-27', 2315, 7405, 728, 3069, '3.0000', '0.3300', '0.3300', '0.5000', '0.5000', '384.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7595, '2021-07-27', 2366, 7406, 728, 14571, '4.0000', '3.7500', '3.7500', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7596, '2021-07-28', 2626, 7407, 729, 10304, '1.0000', '7.8800', '7.8800', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7597, '2021-07-28', 2355, 7408, 729, NULL, '10.0000', '53.3100', '53.3100', '7.1000', '7.1000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7598, '2021-07-28', 1559, 7409, 729, NULL, '1.0000', '22.1000', '22.1000', '30.0000', '30.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7599, '2021-07-28', 2279, 7410, 729, 22220, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7600, '2021-07-28', 1306, 7411, 729, 5611, '4.0000', '2.1000', '2.1000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7601, '2021-07-28', 1837, 7412, 729, 18709, '3.0000', '0.5500', '0.5500', '1.0000', '1.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7602, '2021-07-28', 2285, 7413, 729, 22217, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7603, '2021-07-28', 1943, 7414, 729, 5599, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7604, '2021-07-28', 1954, 7415, 729, NULL, '1.0000', '25.0000', '25.0000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7605, '2021-07-28', 2056, 7416, 729, NULL, '1.0000', '5.4100', '5.4100', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7606, '2021-07-28', 1426, 7417, 729, 17868, '1.0000', '36.0000', '36.0000', '47.5000', '47.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7607, '2021-07-28', 2018, 7418, 729, 6428, '1.0000', '18.0000', '18.0000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7608, '2021-07-28', 1619, 7419, 729, NULL, '2.0000', '9.8500', '9.8500', '13.0000', '13.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7609, '2021-07-28', 1562, 7420, 729, 1669, '1.0000', '5.1300', '5.1300', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7610, '2021-07-28', 2346, 7421, 729, 3885, '1.0000', '5.5000', '5.5000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7611, '2021-07-28', 2525, 7422, 729, 15801, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7612, '2021-07-28', 2876, 7423, 729, 17901, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7613, '2021-07-28', 1731, 7424, 729, 12227, '1.0000', '19.9600', '19.9600', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7614, '2021-07-28', 1687, 7425, 729, 16899, '1.0000', '12.0000', '12.0000', '15.5000', '15.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7615, '2021-07-28', 2699, 7426, 729, 21819, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7616, '2021-07-28', 2958, 7427, 729, 21589, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7617, '2021-07-28', 1533, 7428, 730, 22263, '1.0000', '2.5917', '2.5917', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7618, '2021-07-28', 1863, 7429, 730, 10808, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '53.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7619, '2021-07-28', 2381, 7430, 730, 11263, '2.0000', '12.1900', '12.1900', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7620, '2021-07-28', 2266, 7431, 730, NULL, '1.0000', '6.4900', '6.4900', '11.0000', '11.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7621, '2021-07-28', 1771, 7432, 730, 6775, '1.0000', '5.2450', '5.2450', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7622, '2021-07-28', 1665, 7433, 730, 3235, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7623, '2021-07-28', 1481, 7434, 730, 1442, '1.0000', '25.0024', '25.0024', '33.0000', '33.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7624, '2021-07-28', 1805, 7435, 730, NULL, '1.0000', '195.3170', '195.3170', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7625, '2021-07-28', 1632, 7436, 730, NULL, '1.0000', '19.5000', '19.5000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7626, '2021-07-28', 2290, 7437, 730, NULL, '1.0000', '6.8500', '6.8500', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7627, '2021-07-28', 2285, 7438, 731, 22217, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7628, '2021-07-28', 1943, 7439, 731, 5599, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7629, '2021-07-28', 1954, 7440, 731, NULL, '3.0000', '25.0000', '25.0000', '1.0000', '1.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7630, '2021-07-28', 2056, 7441, 731, NULL, '1.0000', '5.4100', '5.4100', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7631, '2021-07-28', 1426, 7442, 731, 17868, '1.0000', '36.0000', '36.0000', '47.5000', '47.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7632, '2021-07-28', 2018, 7443, 731, 6428, '1.0000', '18.0000', '18.0000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7633, '2021-07-28', 1619, 7444, 731, NULL, '2.0000', '9.8500', '9.8500', '13.0000', '13.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7634, '2021-07-28', 1562, 7445, 731, 1669, '1.0000', '5.1300', '5.1300', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7635, '2021-07-28', 2346, 7446, 731, 3885, '1.0000', '5.5000', '5.5000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7636, '2021-07-28', 2876, 7447, 731, 17901, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7637, '2021-07-28', 1731, 7448, 731, 12227, '1.0000', '19.9600', '19.9600', '27.0000', '27.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7638, '2021-07-28', 1687, 7449, 731, 16899, '1.0000', '12.0000', '12.0000', '15.5000', '15.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7639, '2021-07-28', 2699, 7450, 731, 21819, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7640, '2021-07-28', 2958, 7451, 731, 21589, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7641, '2021-07-28', 1912, 7452, 731, NULL, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7642, '2021-07-28', 1912, 7453, 731, NULL, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7643, '2021-07-28', 2467, 7454, 731, 4846, '1.0000', '19.8000', '19.8000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7644, '2021-07-28', 2483, 7455, 731, 5195, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7645, '2021-07-28', 1665, 7456, 731, 22236, '3.0000', '1.3000', '1.3000', '2.0000', '2.0000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7646, '2021-07-28', 2386, 7457, 731, 4391, '1.0000', '2.0100', '2.0100', '3.0000', '3.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7647, '2021-07-28', 2568, 7458, 731, NULL, '2.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7648, '2021-07-28', 1828, 7459, 731, 4963, '1.0000', '0.7300', '0.7300', '1.0000', '1.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7649, '2021-07-28', 1840, 7460, 731, 4973, '3.0000', '0.2400', '0.2400', '0.3000', '0.3000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7650, '2021-07-28', 1841, 7461, 731, 4974, '3.0000', '0.3700', '0.3700', '0.5000', '0.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7651, '2021-07-28', 2663, 7462, 731, 12067, '1.0000', '4.6000', '4.6000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7652, '2021-07-28', 1358, 7463, 731, NULL, '1.0000', '7.7800', '7.7800', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7653, '2021-07-28', 1574, 7464, 731, 17031, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7654, '2021-07-28', 1519, 7465, 731, 11167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7655, '2021-07-28', 2293, 7466, 731, 3064, '3.0000', '1.4400', '1.4400', '2.0000', '2.0000', '79.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7656, '2021-07-28', 2275, 7467, 732, 2935, '-4.0000', '1.0900', '1.0900', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7657, '2021-07-28', 2275, 7467, 732, NULL, '6.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7658, '2021-07-28', 1991, 7468, 733, 11192, '1.0000', '5.0000', '5.0000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7659, '2021-07-28', 1863, 7469, 733, 21554, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7660, '2021-07-28', 1418, 7470, 733, 17919, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7661, '2021-07-28', 1846, 7471, 733, 22225, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7662, '2021-07-28', 1700, 7472, 733, 22224, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7663, '2021-07-28', 2617, 7473, 733, 10536, '3.0000', '4.4000', '4.4000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7664, '2021-07-28', 1533, 7474, 733, 10385, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7665, '2021-07-28', 1574, 7475, 733, 17069, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7666, '2021-07-28', 1519, 7476, 733, 1524, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7667, '2021-07-28', 2263, 7477, 733, 13623, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7668, '2021-07-28', 1964, 7478, 733, NULL, '1.0000', '15.8500', '15.8500', '23.0000', '23.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7669, '2021-07-28', 2940, 7479, 733, 21556, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7670, '2021-07-28', 2109, 7480, 733, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '132.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7671, '2021-07-28', 1639, 7481, 733, 21569, '1.0000', '6.6300', '6.6300', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7672, '2021-07-28', 1536, 7482, 733, 3538, '10.0000', '99.4596', '99.4596', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7673, '2021-07-28', 2105, 7483, 733, 2511, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7674, '2021-07-28', 2854, 7484, 733, 17370, '1.0000', '8.9500', '8.9500', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7675, '2021-07-28', 1863, 7485, 733, 21554, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7676, '2021-07-28', 1425, 7486, 733, 21551, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7677, '2021-07-28', 1602, 7487, 733, 13523, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7678, '2021-07-28', 1822, 7488, 733, 22212, '10.0000', '2.4000', '2.4000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7679, '2021-07-28', 1854, 7489, 733, 4985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7680, '2021-07-28', 1430, 7490, 733, 16276, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7681, '2021-07-28', 1711, 7491, 734, 14579, '1.0000', '7.4900', '7.4900', '11.0000', '11.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7682, '2021-07-28', 1523, 7492, 735, NULL, '1.0000', '213.0405', '213.0405', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7683, '2021-07-28', 2950, 7493, 735, NULL, '1.0000', '1.4000', '1.4000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7684, '2021-07-28', 2730, 7494, 735, 19267, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '48.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7685, '2021-07-28', 2233, 7495, 735, 2777, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7686, '2021-07-28', 2379, 7496, 735, 4032, '-2.0000', '1.5900', '1.5900', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7687, '2021-07-28', 2379, 7496, 735, NULL, '3.0000', '1.5900', '1.5900', '2.0000', '2.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7688, '2021-07-28', 1772, 7497, 735, NULL, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7689, '2021-07-28', 1867, 7498, 735, NULL, '10.0000', '1.0500', '1.0500', '1.3000', '1.3000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7690, '2021-07-28', 1800, 7499, 735, 1627, '1.0000', '20.2784', '20.2784', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7691, '2021-07-28', 1386, 7500, 735, 22316, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7692, '2021-07-28', 1665, 7501, 735, 3235, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7693, '2021-07-28', 1665, 7501, 735, NULL, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7694, '2021-07-28', 1871, 7502, 735, 8223, '5.0000', '26.7137', '26.7137', '3.0000', '3.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7695, '2021-07-28', 1935, 7503, 735, 5586, '-3.0000', '0.7200', '0.7200', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7696, '2021-07-28', 1935, 7503, 735, NULL, '5.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7697, '2021-07-28', 2242, 7504, 735, 22259, '2.0000', '0.4800', '0.4800', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7698, '2021-07-28', 2293, 7505, 735, 22262, '1.0000', '1.4400', '1.4400', '2.0000', '2.0000', '99.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7699, '2021-07-28', 2167, 7506, 735, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '30.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7700, '2021-07-28', 2821, 7507, 735, NULL, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7701, '2021-07-28', 2556, 7508, 735, NULL, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7702, '2021-07-28', 1765, 7509, 735, 3175, '-1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7703, '2021-07-28', 1765, 7509, 735, NULL, '2.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7704, '2021-07-28', 1863, 7510, 735, 10808, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '52.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7705, '2021-07-28', 1700, 7511, 735, 6227, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7706, '2021-07-28', 2275, 7512, 735, 2935, '-6.0000', '1.0900', '1.0900', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7707, '2021-07-28', 2275, 7512, 735, NULL, '8.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-8.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7708, '2021-07-28', 1367, 7513, 736, 11043, '10.0000', '4.9000', '4.9000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7709, '2021-07-28', 1367, 7513, 736, 3539, '10.0000', '4.9000', '4.9000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7710, '2021-07-28', 1686, 7514, 736, 2451, '1.0000', '90.0000', '90.0000', '35.0000', '35.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7711, '2021-07-28', 2091, 7515, 736, 9530, '1.0000', '28.0000', '28.0000', '25.0000', '25.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7712, '2021-07-28', 1518, 7516, 736, 17036, '2.0000', '90.0000', '90.0000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7713, '2021-07-28', 1863, 7517, 736, 21554, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7714, '2021-07-28', 1665, 7518, 736, 22236, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7715, '2021-07-28', 2643, 7519, 736, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7716, '2021-07-28', 2486, 7520, 736, 21821, '2.0000', '4.0000', '4.0000', '5.0000', '5.0000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7717, '2021-07-28', 1533, 7521, 736, 10385, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7718, '2021-07-28', 2298, 7522, 736, 12736, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7719, '2021-07-28', 2958, 7523, 736, 21589, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7720, '2021-07-28', 2546, 7524, 737, 18669, '1.0000', '13.6300', '13.6300', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7721, '2021-07-28', 2730, 7525, 737, 21547, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '96.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7722, '2021-07-28', 2307, 7526, 738, 18801, '1.0000', '140.0000', '140.0000', '170.0000', '170.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7723, '2021-07-28', 1672, 7527, 738, 17837, '10.0000', '90.0000', '90.0000', '3.9000', '3.9000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7724, '2021-07-28', 2351, 7528, 739, 18808, '1.0000', '17.7000', '17.7000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7725, '2021-07-28', 1837, 7529, 739, NULL, '3.0000', '0.9642', '0.9642', '1.0000', '1.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7726, '2021-07-28', 1665, 7530, 739, 3235, '-1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7727, '2021-07-28', 1665, 7530, 739, NULL, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7728, '2021-07-29', 1518, 7531, 740, 17036, '1.0000', '90.0000', '90.0000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7729, '2021-07-29', 2627, 7532, 740, 10219, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7730, '2021-07-29', 2289, 7533, 740, 22481, '2.0000', '0.2300', '0.2300', '0.5000', '0.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7731, '2021-07-29', 2315, 7534, 740, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '382.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7732, '2021-07-29', 1502, 7535, 740, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7733, '2021-07-29', 2677, 7536, 740, 12246, '1.0000', '250.0000', '250.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7734, '2021-07-29', 2608, 7537, 740, 9624, '1.0000', '83.3300', '83.3300', '120.0000', '120.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7735, '2021-07-29', 2413, 7538, 740, 22490, '2.0000', '1.0500', '1.0500', '1.5000', '1.5000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7736, '2021-07-29', 1326, 7539, 740, 3365, '1.0000', '3.0300', '3.0300', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7737, '2021-07-29', 1342, 7540, 740, 18420, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7738, '2021-07-29', 1322, 7541, 740, 2491, '1.0000', '3.6000', '3.6000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7739, '2021-07-29', 1307, 7542, 740, 2478, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7740, '2021-07-29', 1665, 7543, 740, 22236, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7741, '2021-07-29', 1504, 7544, 740, 17840, '10.0000', '90.0000', '90.0000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7742, '2021-07-29', 1527, 7545, 740, 1534, '1.0000', '90.0000', '90.0000', '17.5000', '17.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7743, '2021-07-29', 1432, 7546, 740, 22228, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7744, '2021-07-29', 2157, 7547, 740, 5900, '2.0000', '0.9800', '0.9800', '2.5000', '2.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7745, '2021-07-29', 1342, 7548, 740, 18420, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7746, '2021-07-29', 2892, 7549, 740, 18051, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7747, '2021-07-29', 2251, 7550, 740, 18417, '1.0000', '11.6400', '11.6400', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7748, '2021-07-29', 1655, 7551, 740, 9546, '1.0000', '90.0000', '90.0000', '45.0000', '45.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7749, '2021-07-29', 1342, 7552, 740, 18420, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7750, '2021-07-29', 1867, 7553, 740, 4996, '6.0000', '10.0500', '10.0500', '1.3000', '1.3000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7751, '2021-07-29', 1867, 7553, 740, NULL, '4.0000', '10.0500', '10.0500', '1.3000', '1.3000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7752, '2021-07-29', 2315, 7554, 740, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '382.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7753, '2021-07-29', 1812, 7555, 740, 18423, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7754, '2021-07-29', 2279, 7556, 740, 22220, '3.0000', '2.6000', '2.6000', '4.0000', '4.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7755, '2021-07-29', 1912, 7557, 740, 9575, '-2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7756, '2021-07-29', 1912, 7557, 740, 9575, '-2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7757, '2021-07-29', 1912, 7557, 740, 9575, '-2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7758, '2021-07-29', 1912, 7557, 740, 1503, '3.0000', '0.3100', '0.3100', '1.0000', '1.0000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7759, '2021-07-29', 1394, 7558, 740, 18445, '1.0000', '6.5000', '6.5000', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7760, '2021-07-29', 2285, 7559, 740, 22217, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7761, '2021-07-29', 2484, 7560, 740, 5196, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7762, '2021-07-29', 2285, 7561, 740, 22217, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7763, '2021-07-29', 1303, 7562, 740, NULL, '4.0000', '1.3800', '1.3800', '4.0000', '4.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7764, '2021-07-29', 1505, 7563, 741, 18428, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7765, '2021-07-29', 1780, 7564, 741, 22494, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7766, '2021-07-29', 1711, 7565, 741, 14579, '1.0000', '7.4900', '7.4900', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7767, '2021-07-29', 1831, 7566, 741, 4966, '1.0000', '90.0000', '90.0000', '11.5000', '11.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7768, '2021-07-29', 1368, 7567, 742, 18679, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7769, '2021-07-29', 2272, 7568, 742, 18419, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7770, '2021-07-29', 2317, 7569, 742, 15799, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7771, '2021-07-29', 1523, 7570, 742, 11170, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7772, '2021-07-29', 1859, 7571, 742, 18059, '1.0000', '90.0000', '90.0000', '32.0000', '32.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7773, '2021-07-29', 2582, 7572, 742, 13544, '1.0000', '11.5000', '11.5000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7774, '2021-07-29', 2836, 7573, 742, 16989, '1.0000', '6.0000', '6.0000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7775, '2021-07-29', 2249, 7574, 742, 3088, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7776, '2021-07-29', 1968, 7575, 742, 1521, '1.0000', '55.1600', '55.1600', '73.0000', '73.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7777, '2021-07-29', 1660, 7576, 742, 16782, '1.0000', '90.0000', '90.0000', '70.0000', '70.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7778, '2021-07-29', 2352, 7577, 742, 17460, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7779, '2021-07-29', 2315, 7578, 742, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '378.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7780, '2021-07-29', 2275, 7579, 742, NULL, '2.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7781, '2021-07-29', 1425, 7580, 742, 22496, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7782, '2021-07-29', 2568, 7581, 742, NULL, '4.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7783, '2021-07-29', 1602, 7582, 742, 22497, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7784, '2021-07-29', 2290, 7583, 742, 18062, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7785, '2021-07-29', 1342, 7584, 742, 18420, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7786, '2021-07-29', 1841, 7585, 742, 4974, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7787, '2021-07-29', 2169, 7586, 742, 18684, '3.0000', '0.9800', '0.9800', '1.5000', '1.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7788, '2021-07-29', 2275, 7587, 742, NULL, '2.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7789, '2021-07-29', 2315, 7588, 742, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '378.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7790, '2021-07-29', 1863, 7589, 742, 22488, '3.0000', '1.2200', '1.2200', '2.0000', '2.0000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7791, '2021-07-29', 2940, 7590, 742, 21556, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7792, '2021-07-29', 2975, 7591, 742, 22406, '1.0000', '6.0000', '6.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7793, '2021-07-29', 2655, 7592, 742, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7794, '2021-07-29', 1639, 7593, 742, 21569, '1.0000', '6.6300', '6.6300', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7795, '2021-07-29', 1612, 7594, 742, 9422, '2.0000', '1.6000', '1.6000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7796, '2021-07-29', 1612, 7595, 742, 9422, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7797, '2021-07-29', 2109, 7596, 742, 6021, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '130.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7798, '2021-07-29', 1502, 7597, 742, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7799, '2021-07-29', 1439, 7598, 742, 3279, '1.0000', '1.0000', '1.0000', '1.3000', '1.3000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7800, '2021-07-29', 1409, 7599, 742, 22230, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7801, '2021-07-29', 1449, 7600, 742, 5624, '2.0000', '0.6600', '0.6600', '2.5000', '2.5000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7802, '2021-07-29', 1314, 7601, 742, 21584, '2.0000', '1.2000', '1.2000', '4.0000', '4.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7803, '2021-07-29', 2167, 7602, 743, 1603, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '28.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7804, '2021-07-29', 2169, 7603, 743, 22244, '2.0000', '3.8397', '3.8397', '1.5000', '1.5000', '56.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7805, '2021-07-29', 1612, 7604, 743, 18862, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7806, '2021-07-29', 2761, 7605, 743, 20705, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7807, '2021-07-29', 2823, 7606, 743, 19684, '-2.0000', '11.2100', '11.2100', '15.0000', '15.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7808, '2021-07-29', 2823, 7606, 743, NULL, '3.0000', '11.2100', '11.2100', '15.0000', '15.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7809, '2021-07-29', 2193, 7607, 743, NULL, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7810, '2021-07-29', 1855, 7608, 743, 22241, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7811, '2021-07-29', 1338, 7609, 743, 234, '1.0000', '4.0000', '4.0000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7812, '2021-07-29', 1642, 7610, 743, NULL, '1.0000', '22.4127', '22.4127', '41.0000', '41.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7813, '2021-07-29', 2275, 7611, 743, 2935, '-8.0000', '1.0900', '1.0900', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7814, '2021-07-29', 2275, 7611, 743, NULL, '10.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7815, '2021-07-29', 1590, 7612, 743, 22260, '3.0000', '1.7100', '1.7100', '2.2000', '2.2000', '47.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7816, '2021-07-29', 2315, 7613, 743, 2735, '-15.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7817, '2021-07-29', 2315, 7613, 743, NULL, '19.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-19.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7818, '2021-07-29', 1382, 7614, 743, 22246, '1.0000', '85.9516', '85.9516', '5.5000', '5.5000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7819, '2021-07-29', 1912, 7615, 743, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7820, '2021-07-29', 2242, 7616, 743, 22259, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7821, '2021-07-29', 2379, 7617, 743, 4032, '-3.0000', '1.5900', '1.5900', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7822, '2021-07-29', 2379, 7617, 743, NULL, '4.0000', '1.5900', '1.5900', '2.0000', '2.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7823, '2021-07-29', 2707, 7618, 743, NULL, '2.0000', '0.5400', '0.5400', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7824, '2021-07-29', 2556, 7619, 743, 7196, '-1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7825, '2021-07-29', 2556, 7619, 743, NULL, '5.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7826, '2021-07-29', 1554, 7620, 743, NULL, '2.0000', '3.1600', '3.1600', '4.5000', '4.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7827, '2021-07-29', 1873, 7621, 743, 13465, '2.0000', '11.9500', '11.9500', '15.5000', '15.5000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7828, '2021-07-29', 1674, 7622, 743, NULL, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7829, '2021-07-29', 2415, 7623, 743, NULL, '2.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7830, '2021-07-29', 1863, 7624, 743, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '51.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7831, '2021-07-29', 2366, 7625, 743, 3833, '-4.0000', '3.7500', '3.7500', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7832, '2021-07-29', 2366, 7625, 743, NULL, '5.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7833, '2021-07-29', 1580, 7626, 743, NULL, '4.0000', '0.9900', '0.9900', '1.5000', '1.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7834, '2021-07-29', 1519, 7627, 743, 22245, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7835, '2021-07-29', 2260, 7628, 743, 18628, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7836, '2021-07-29', 1428, 7629, 743, 22301, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7837, '2021-07-29', 2974, 7630, 743, NULL, '2.0000', '5.0000', '5.0000', '8.0000', '8.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7838, '2021-07-29', 1523, 7631, 743, NULL, '1.0000', '213.0405', '213.0405', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7839, '2021-07-29', 2760, 7632, 743, 20704, '1.0000', '-464.7024', '-464.7024', '1.0000', '1.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7840, '2021-07-29', 1536, 7633, 743, 402, '1.0000', '3.1686', '3.1686', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7841, '2021-07-29', 1428, 7634, 743, 22301, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7842, '2021-07-29', 2491, 7635, 743, NULL, '2.0000', '12.2000', '12.2000', '16.0000', '16.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7843, '2021-07-29', 1767, 7636, 743, 18833, '2.0000', '4.6052', '4.6052', '6.5000', '6.5000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7844, '2021-07-29', 2273, 7637, 743, NULL, '1.0000', '2.6700', '2.6700', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7845, '2021-07-29', 2288, 7638, 743, 22269, '1.0000', '7.5900', '7.5900', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7846, '2021-07-29', 2238, 7639, 743, NULL, '4.0000', '39.0000', '39.0000', '51.0000', '51.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7847, '2021-07-29', 1839, 7640, 743, NULL, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7848, '2021-07-29', 1812, 7641, 743, 8224, '3.0000', '7.8900', '7.8900', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7849, '2021-07-29', 2020, 7642, 743, 22321, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7850, '2021-07-29', 1772, 7643, 743, 4893, '-1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7851, '2021-07-29', 1772, 7643, 743, NULL, '2.0000', '6.0500', '6.0500', '8.0000', '8.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7852, '2021-07-29', 2316, 7644, 743, 3608, '1.0000', '44.8814', '44.8814', '48.0000', '48.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7853, '2021-07-29', 2085, 7645, 743, 8628, '10.0000', '-1.0741', '-1.0741', '2.0000', '2.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7854, '2021-07-29', 1493, 7646, 743, 9747, '1.0000', '1.5425', '1.5425', '3.0000', '3.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7855, '2021-07-29', 1809, 7647, 743, NULL, '1.0000', '9.6000', '9.6000', '12.5000', '12.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7856, '2021-07-29', 1369, 7648, 743, 269, '2.0000', '2.2209', '2.2209', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7857, '2021-07-29', 1912, 7649, 743, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7858, '2021-07-29', 1608, 7650, 743, 8222, '-1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7859, '2021-07-29', 1608, 7650, 743, NULL, '3.0000', '3.3500', '3.3500', '5.0000', '5.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7860, '2021-07-29', 2318, 7651, 743, 3474, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '196.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7861, '2021-07-29', 2233, 7652, 743, 2777, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7862, '2021-07-29', 2233, 7652, 743, 4351, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7863, '2021-07-29', 1863, 7653, 743, 10808, '2.0000', '0.4136', '0.4136', '2.0000', '2.0000', '50.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7864, '2021-07-29', 1546, 7654, 743, 1633, '2.0000', '2.3697', '2.3697', '4.0000', '4.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7865, '2021-07-29', 2722, 7655, 743, 18900, '1.0000', '8.6900', '8.6900', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7866, '2021-07-29', 1651, 7656, 743, NULL, '2.0000', '6.7039', '6.7039', '10.5000', '10.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7867, '2021-07-29', 2167, 7657, 744, 1603, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '26.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7868, '2021-07-29', 2169, 7658, 744, 22244, '2.0000', '3.8397', '3.8397', '1.5000', '1.5000', '54.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7869, '2021-07-29', 1612, 7659, 744, 18862, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7870, '2021-07-29', 2761, 7660, 744, 20705, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7871, '2021-07-29', 2823, 7661, 744, 19684, '-3.0000', '11.2100', '11.2100', '15.0000', '15.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7872, '2021-07-29', 2823, 7661, 744, NULL, '4.0000', '11.2100', '11.2100', '15.0000', '15.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7873, '2021-07-29', 2193, 7662, 744, 7865, '-1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7874, '2021-07-29', 2193, 7662, 744, NULL, '2.0000', '7.5000', '7.5000', '15.0000', '15.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7875, '2021-07-29', 1855, 7663, 744, 22241, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7876, '2021-07-29', 1338, 7664, 744, 234, '1.0000', '4.0000', '4.0000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7877, '2021-07-29', 1642, 7665, 744, 2166, '-1.0000', '22.4127', '22.4127', '41.0000', '41.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7878, '2021-07-29', 1642, 7665, 744, NULL, '2.0000', '22.4127', '22.4127', '41.0000', '41.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7879, '2021-07-29', 2275, 7666, 744, 2935, '-10.0000', '1.0900', '1.0900', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7880, '2021-07-29', 2275, 7666, 744, NULL, '12.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-12.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7881, '2021-07-29', 1590, 7667, 744, 22260, '3.0000', '1.7100', '1.7100', '2.2000', '2.2000', '44.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7882, '2021-07-29', 2315, 7668, 744, 2735, '-19.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7883, '2021-07-29', 2315, 7668, 744, NULL, '23.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-23.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7884, '2021-07-29', 1382, 7669, 744, 22246, '1.0000', '85.9516', '85.9516', '5.5000', '5.5000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7885, '2021-07-29', 1912, 7670, 744, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7886, '2021-07-29', 2242, 7671, 744, 22259, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7887, '2021-07-29', 2379, 7672, 744, 4032, '-4.0000', '1.5900', '1.5900', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7888, '2021-07-29', 2379, 7672, 744, NULL, '5.0000', '1.5900', '1.5900', '2.0000', '2.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7889, '2021-07-29', 2707, 7673, 744, 12526, '-2.0000', '0.5400', '0.5400', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7890, '2021-07-29', 2707, 7673, 744, NULL, '4.0000', '0.5400', '0.5400', '1.0000', '1.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7891, '2021-07-29', 2556, 7674, 744, 7196, '-5.0000', '0.5800', '0.5800', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7892, '2021-07-29', 2556, 7674, 744, NULL, '9.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-9.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7893, '2021-07-29', 1554, 7675, 744, 1625, '-2.0000', '3.1600', '3.1600', '4.5000', '4.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7894, '2021-07-29', 1554, 7675, 744, NULL, '4.0000', '3.1600', '3.1600', '4.5000', '4.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7895, '2021-07-29', 1873, 7676, 744, NULL, '2.0000', '11.9500', '11.9500', '15.5000', '15.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7896, '2021-07-29', 1674, 7677, 744, NULL, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7897, '2021-07-29', 2415, 7678, 744, 4656, '-2.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7898, '2021-07-29', 2415, 7678, 744, NULL, '4.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7899, '2021-07-29', 1863, 7679, 744, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7900, '2021-07-29', 2366, 7680, 744, 3833, '-5.0000', '3.7500', '3.7500', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7901, '2021-07-29', 2366, 7680, 744, NULL, '6.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7902, '2021-07-29', 1580, 7681, 744, 7598, '-4.0000', '0.9900', '0.9900', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7903, '2021-07-29', 1580, 7681, 744, NULL, '8.0000', '0.9900', '0.9900', '1.5000', '1.5000', '-8.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7904, '2021-07-29', 1519, 7682, 744, 22245, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7905, '2021-07-29', 2260, 7683, 744, 18628, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7906, '2021-07-29', 1428, 7684, 744, 20641, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7907, '2021-07-29', 2974, 7685, 744, 22364, '-2.0000', '5.0000', '5.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7908, '2021-07-29', 2974, 7685, 744, NULL, '4.0000', '5.0000', '5.0000', '8.0000', '8.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7909, '2021-07-29', 1523, 7686, 744, NULL, '1.0000', '213.0405', '213.0405', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7910, '2021-07-29', 2760, 7687, 744, 20704, '1.0000', '-464.7024', '-464.7024', '1.0000', '1.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7911, '2021-07-29', 1536, 7688, 744, NULL, '1.0000', '3.1686', '3.1686', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7912, '2021-07-29', 1428, 7689, 744, 20641, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7913, '2021-07-29', 2491, 7690, 744, 6228, '-2.0000', '12.2000', '12.2000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7914, '2021-07-29', 2491, 7690, 744, NULL, '4.0000', '12.2000', '12.2000', '16.0000', '16.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7915, '2021-07-29', 1767, 7691, 744, 4502, '2.0000', '4.6052', '4.6052', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7916, '2021-07-29', 2273, 7692, 744, 2933, '-1.0000', '2.6700', '2.6700', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7917, '2021-07-29', 2273, 7692, 744, NULL, '2.0000', '2.6700', '2.6700', '5.0000', '5.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7918, '2021-07-29', 2288, 7693, 744, 22269, '1.0000', '7.5900', '7.5900', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7919, '2021-07-29', 2238, 7694, 744, 2782, '-4.0000', '39.0000', '39.0000', '51.0000', '51.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7920, '2021-07-29', 2238, 7694, 744, NULL, '8.0000', '39.0000', '39.0000', '51.0000', '51.0000', '-8.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7921, '2021-07-29', 1839, 7695, 744, 8734, '-1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7922, '2021-07-29', 1839, 7695, 744, NULL, '2.0000', '6.1500', '6.1500', '8.0000', '8.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7923, '2021-07-29', 1812, 7696, 744, 8224, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7924, '2021-07-29', 1812, 7696, 744, NULL, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7925, '2021-07-29', 2020, 7697, 744, 22321, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7926, '2021-07-29', 1772, 7698, 744, 4893, '-2.0000', '6.0500', '6.0500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7927, '2021-07-29', 1772, 7698, 744, NULL, '3.0000', '6.0500', '6.0500', '8.0000', '8.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7928, '2021-07-29', 2316, 7699, 744, 3608, '1.0000', '44.8814', '44.8814', '48.0000', '48.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7929, '2021-07-29', 2085, 7700, 744, 8628, '10.0000', '-1.0741', '-1.0741', '2.0000', '2.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7930, '2021-07-29', 1493, 7701, 744, 9747, '1.0000', '1.5425', '1.5425', '3.0000', '3.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7931, '2021-07-29', 1809, 7702, 744, 7386, '-1.0000', '9.6000', '9.6000', '12.5000', '12.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7932, '2021-07-29', 1809, 7702, 744, NULL, '2.0000', '9.6000', '9.6000', '12.5000', '12.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7933, '2021-07-29', 1369, 7703, 744, 269, '2.0000', '2.2209', '2.2209', '8.0000', '8.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7934, '2021-07-29', 1912, 7704, 744, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '43.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7935, '2021-07-29', 1608, 7705, 744, 8222, '-3.0000', '3.3500', '3.3500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7936, '2021-07-29', 1608, 7705, 744, NULL, '5.0000', '3.3500', '3.3500', '5.0000', '5.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7937, '2021-07-29', 2318, 7706, 744, 3474, '1.0000', '0.5000', '0.5000', '1.0000', '1.0000', '195.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7938, '2021-07-29', 2233, 7707, 744, 4351, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7939, '2021-07-29', 2233, 7707, 744, NULL, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7940, '2021-07-29', 1863, 7708, 744, 10808, '2.0000', '0.4136', '0.4136', '2.0000', '2.0000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7941, '2021-07-29', 1546, 7709, 744, 1633, '2.0000', '2.3697', '2.3697', '4.0000', '4.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7942, '2021-07-29', 2722, 7710, 744, 18900, '1.0000', '8.6900', '8.6900', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7943, '2021-07-29', 1651, 7711, 744, 3222, '-2.0000', '6.7039', '6.7039', '10.5000', '10.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7944, '2021-07-29', 1651, 7711, 744, NULL, '4.0000', '6.7039', '6.7039', '10.5000', '10.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7945, '2021-07-29', 1523, 7712, 745, 11170, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7946, '2021-07-29', 1368, 7713, 745, 18679, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7947, '2021-07-29', 2250, 7714, 745, 17487, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7948, '2021-07-29', 2568, 7715, 745, NULL, '6.0000', '0.3300', '0.3300', '0.2500', '0.2500', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7949, '2021-07-29', 2604, 7716, 745, 18405, '1.0000', '90.0000', '90.0000', '120.0000', '120.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7950, '2021-07-29', 2859, 7717, 745, 17456, '1.0000', '0.6700', '0.6700', '2.0000', '2.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7951, '2021-07-29', 1529, 7718, 745, 21585, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7952, '2021-07-29', 2459, 7719, 745, 18661, '2.0000', '5.2800', '5.2800', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7953, '2021-07-29', 1837, 7720, 745, 18709, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7954, '2021-07-29', 1787, 7721, 745, 4930, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7955, '2021-07-29', 1347, 7722, 745, NULL, '4.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7956, '2021-07-29', 1783, 7723, 745, 18657, '3.0000', '90.0000', '90.0000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7957, '2021-07-30', 2167, 7724, 746, 1603, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '24.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7958, '2021-07-30', 2415, 7725, 746, 4656, '-4.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7959, '2021-07-30', 2415, 7725, 746, NULL, '5.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7960, '2021-07-30', 2167, 7726, 747, 1603, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '22.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7961, '2021-07-30', 2415, 7727, 747, 4656, '-5.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7962, '2021-07-30', 2415, 7727, 747, NULL, '6.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7963, '2021-07-30', 2379, 7728, 747, 4032, '-5.0000', '1.5900', '1.5900', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7964, '2021-07-30', 2379, 7728, 747, NULL, '6.0000', '1.5900', '1.5900', '2.0000', '2.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7965, '2021-07-30', 1867, 7729, 747, NULL, '10.0000', '1.0500', '1.0500', '1.3000', '1.3000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7966, '2021-07-30', 2095, 7730, 747, 1039, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '58.0000', 1, 0, NULL, 57);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7967, '2021-07-30', 2167, 7731, 748, 1603, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7968, '2021-07-30', 2415, 7732, 748, 4656, '-6.0000', '5.0000', '5.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7969, '2021-07-30', 2415, 7732, 748, NULL, '7.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7970, '2021-07-30', 2379, 7733, 748, 4032, '-6.0000', '1.5900', '1.5900', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7971, '2021-07-30', 2379, 7733, 748, NULL, '7.0000', '1.5900', '1.5900', '2.0000', '2.0000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7972, '2021-07-30', 1867, 7734, 748, NULL, '10.0000', '1.0500', '1.0500', '1.3000', '1.3000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7973, '2021-07-30', 2095, 7735, 748, 1039, '1.0000', '1.5000', '1.5000', '5.0000', '5.0000', '57.0000', 1, 0, NULL, 57);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7974, '2021-07-30', 2169, 7736, 748, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '53.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7975, '2021-07-30', 1837, 7737, 748, NULL, '2.0000', '0.9642', '0.9642', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7976, '2021-07-30', 2556, 7738, 748, 7196, '-9.0000', '0.5800', '0.5800', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7977, '2021-07-30', 2556, 7738, 748, NULL, '10.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7978, '2021-07-30', 1694, 7739, 748, NULL, '2.0000', '7.1900', '7.1900', '10.0000', '10.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7979, '2021-07-30', 1665, 7740, 748, 3235, '-2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7980, '2021-07-30', 1665, 7740, 748, NULL, '3.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7981, '2021-07-30', 1700, 7741, 748, 6227, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7982, '2021-07-30', 2315, 7742, 748, 2735, '-23.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7983, '2021-07-30', 2315, 7742, 748, NULL, '24.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-24.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7984, '2021-07-30', 1772, 7743, 748, 4893, '-3.0000', '6.0500', '6.0500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7985, '2021-07-30', 1772, 7743, 748, NULL, '4.0000', '6.0500', '6.0500', '8.0000', '8.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7986, '2021-07-30', 2739, 7744, 748, NULL, '2.0000', '6.7000', '6.7000', '2.2000', '2.2000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7987, '2021-07-30', 1666, 7745, 748, NULL, '1.0000', '2.7100', '2.7100', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7988, '2021-07-30', 2279, 7746, 748, NULL, '1.0000', '2.7000', '2.7000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7989, '2021-07-30', 1863, 7747, 748, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7990, '2021-07-30', 1337, 7748, 748, 233, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7991, '2021-07-30', 1412, 7749, 748, 22354, '1.0000', '14.0000', '14.0000', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7992, '2021-07-30', 2266, 7750, 748, 2801, '-1.0000', '6.4900', '6.4900', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7993, '2021-07-30', 2266, 7750, 748, NULL, '2.0000', '6.4900', '6.4900', '11.0000', '11.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7994, '2021-07-30', 2951, 7751, 748, NULL, '5.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7995, '2021-07-30', 1409, 7752, 748, NULL, '2.0000', '13.0000', '13.0000', '17.5000', '17.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (7996, '2021-07-30', 1954, 7753, 748, 265, '1.0000', '13.7500', '13.7500', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7997, '2021-07-30', 1841, 7754, 748, 18870, '4.0000', '142.5780', '142.5780', '0.5000', '0.5000', '30.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7998, '2021-07-30', 1381, 7755, 748, 281, '1.0000', '156.2454', '156.2454', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (7999, '2021-07-30', 1521, 7756, 748, 22243, '1.0000', '2.5754', '2.5754', '3.5000', '3.5000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8000, '2021-07-30', 1401, 7757, 748, 22311, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8001, '2021-07-30', 2242, 7758, 749, 22259, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '34.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8002, '2021-07-30', 1346, 7759, 750, 3319, '1.0000', '1.0594', '1.0594', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8003, '2021-07-30', 2361, 7760, 750, NULL, '4.0000', '0.4700', '0.4700', '0.6000', '0.6000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8004, '2021-07-30', 1912, 7761, 750, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '41.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8005, '2021-07-30', 2068, 7762, 751, 5568, '-2.0000', '13.1000', '13.1000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8006, '2021-07-30', 2068, 7762, 751, NULL, '3.0000', '13.1000', '13.1000', '17.0000', '17.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8007, '2021-07-30', 1621, 7763, 752, NULL, '1.0000', '90.0000', '90.0000', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8008, '2021-07-30', 1424, 7764, 752, NULL, '1.0000', '30.0000', '30.0000', '39.5000', '39.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8009, '2021-07-30', 1767, 7765, 752, 13767, '1.0000', '4.6000', '4.6000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8010, '2021-07-30', 2277, 7766, 753, NULL, '2.0000', '0.7800', '0.7800', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8011, '2021-07-30', 1687, 7767, 753, 5785, '1.0000', '165.9024', '165.9024', '15.5000', '15.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8012, '2021-07-30', 2315, 7768, 754, 2735, '-24.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8013, '2021-07-30', 2315, 7768, 754, NULL, '26.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-26.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8014, '2021-07-30', 2769, 7769, 754, 22266, '3.0000', '1.5200', '1.5200', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8015, '2021-07-30', 2384, 7770, 755, 18845, '2.0000', '0.4000', '0.4000', '0.5000', '0.5000', '48.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8016, '2021-07-30', 1859, 7771, 756, 22335, '1.0000', '22.6760', '22.6760', '32.0000', '32.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8017, '2021-07-30', 1529, 7772, 756, NULL, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8018, '2021-07-30', 2455, 7773, 756, NULL, '1.0000', '7.5300', '7.5300', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8019, '2021-07-30', 1935, 7774, 756, 5586, '-5.0000', '0.7200', '0.7200', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8020, '2021-07-30', 1935, 7774, 756, NULL, '6.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8021, '2021-07-30', 2650, 7775, 756, NULL, '1.0000', '7.3200', '7.3200', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8022, '2021-07-30', 2315, 7776, 756, 2735, '-26.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8023, '2021-07-30', 2315, 7776, 756, NULL, '28.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-28.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8024, '2021-07-30', 2379, 7777, 756, 4032, '-7.0000', '1.5900', '1.5900', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8025, '2021-07-30', 2379, 7777, 756, NULL, '8.0000', '1.5900', '1.5900', '2.0000', '2.0000', '-8.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8026, '2021-07-30', 1649, 7778, 757, NULL, '1.0000', '11.1900', '11.1900', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8027, '2021-07-30', 2315, 7779, 757, 2735, '-28.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8028, '2021-07-30', 2315, 7779, 757, NULL, '31.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-31.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8029, '2021-07-31', 2167, 7780, 758, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8030, '2021-07-31', 1867, 7781, 758, NULL, '10.0000', '1.0500', '1.0500', '1.3000', '1.3000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8031, '2021-07-31', 1837, 7782, 758, NULL, '1.0000', '0.9642', '0.9642', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8032, '2021-07-31', 2105, 7783, 758, NULL, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8033, '2021-07-31', 1812, 7784, 758, 8224, '-2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8034, '2021-07-31', 1812, 7784, 758, NULL, '3.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8035, '2021-07-31', 2556, 7785, 759, 7196, '-10.0000', '0.5800', '0.5800', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8036, '2021-07-31', 2556, 7785, 759, NULL, '11.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-11.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8037, '2021-07-31', 2169, 7786, 759, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '52.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8038, '2021-07-31', 1346, 7787, 759, 3319, '15.0000', '1.0594', '1.0594', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8039, '2021-07-31', 2279, 7788, 759, 2939, '-1.0000', '2.7000', '2.7000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8040, '2021-07-31', 2279, 7788, 759, NULL, '3.0000', '2.7000', '2.7000', '4.0000', '4.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8041, '2021-07-31', 1346, 7789, 759, 3319, '15.0000', '1.0594', '1.0594', '1.5000', '1.5000', '32.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8042, '2021-07-31', 1837, 7790, 759, NULL, '1.0000', '0.9642', '0.9642', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8043, '2021-07-31', 1673, 7791, 759, NULL, '1.0000', '1.2900', '1.2900', '2.5000', '2.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8044, '2021-07-31', 2379, 7792, 759, 4032, '-8.0000', '1.5900', '1.5900', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8045, '2021-07-31', 2379, 7792, 759, NULL, '9.0000', '1.5900', '1.5900', '2.0000', '2.0000', '-9.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8046, '2021-07-31', 2266, 7793, 760, 2801, '-2.0000', '6.4900', '6.4900', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8047, '2021-07-31', 2266, 7793, 760, NULL, '3.0000', '6.4900', '6.4900', '11.0000', '11.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8048, '2021-07-31', 1646, 7794, 760, NULL, '1.0000', '4.5300', '4.5300', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8049, '2021-07-31', 1854, 7795, 761, 22240, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8050, '2021-07-31', 2169, 7796, 761, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '51.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8051, '2021-07-31', 2384, 7797, 761, 18845, '4.0000', '0.4000', '0.4000', '0.5000', '0.5000', '44.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8052, '2021-07-31', 2638, 7798, 761, 22333, '1.0000', '19.6200', '19.6200', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8053, '2021-07-31', 2772, 7799, 762, 22339, '1.0000', '16.7000', '16.7000', '22.0000', '22.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8054, '2021-07-31', 1767, 7800, 762, NULL, '1.0000', '4.6052', '4.6052', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8055, '2021-07-31', 1502, 7801, 762, 18925, '1.0000', '7.8000', '7.8000', '10.5000', '10.5000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8056, '2021-07-31', 1863, 7802, 762, 10808, '2.0000', '0.4136', '0.4136', '2.0000', '2.0000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8057, '2021-07-31', 1596, 7803, 762, 8361, '-1.0000', '2.5700', '2.5700', '3.8300', '3.8300', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8058, '2021-07-31', 1596, 7803, 762, NULL, '2.0000', '2.5700', '2.5700', '3.8300', '3.8300', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8059, '2021-07-31', 2829, 7804, 762, NULL, '2.0000', '27.2600', '27.2600', '33.0000', '33.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8060, '2021-07-31', 2769, 7805, 763, 22266, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8061, '2021-07-31', 2167, 7806, 763, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8062, '2021-07-31', 1310, 7807, 764, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8063, '2021-07-31', 2288, 7808, 765, 22269, '1.0000', '7.5900', '7.5900', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8064, '2021-07-31', 1338, 7809, 766, 234, '1.0000', '4.0000', '4.0000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8065, '2021-07-31', 1666, 7810, 766, 3236, '-1.0000', '2.7100', '2.7100', '3.5000', '3.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8066, '2021-07-31', 1666, 7810, 766, NULL, '2.0000', '2.7100', '2.7100', '3.5000', '3.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8067, '2021-07-31', 2260, 7811, 766, 18628, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8068, '2021-07-31', 2105, 7812, 766, NULL, '2.0000', '1.3500', '1.3500', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8069, '2021-07-31', 1542, 7813, 766, NULL, '1.0000', '14.7800', '14.7800', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8070, '2021-07-31', 2744, 7814, 766, NULL, '1.0000', '9.9800', '9.9800', '13.5000', '13.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8071, '2021-07-31', 2152, 7815, 766, 22284, '1.0000', '10.8300', '10.8300', '14.0000', '14.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8072, '2021-07-31', 2163, 7816, 767, 16248, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8073, '2021-07-31', 2556, 7817, 767, 7196, '-11.0000', '0.5800', '0.5800', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8074, '2021-07-31', 2556, 7817, 767, NULL, '13.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-13.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8075, '2021-07-31', 1369, 7818, 767, 269, '1.0000', '2.2209', '2.2209', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8076, '2021-07-31', 2660, 7819, 768, NULL, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8077, '2021-07-31', 2768, 7820, 768, NULL, '1.0000', '0.9600', '0.9600', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8078, '2021-07-31', 2556, 7821, 768, 7196, '-13.0000', '0.5800', '0.5800', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8079, '2021-07-31', 2556, 7821, 768, NULL, '14.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-14.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8080, '2021-07-31', 1347, 7822, 769, 3320, '4.0000', '3.4000', '3.4000', '4.5000', '4.5000', '41.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8081, '2021-07-31', 1670, 7823, 769, 10163, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8082, '2021-07-31', 2485, 7824, 769, 18712, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 166);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8083, '2021-07-31', 2487, 7825, 769, 18714, '1.0000', '23.7500', '23.7500', '30.0000', '30.0000', '7.0000', 1, 0, NULL, 166);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8084, '2021-07-31', 1912, 7826, 769, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8085, '2021-07-31', 1578, 7827, 769, NULL, '1.0000', '1.9700', '1.9700', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8086, '2021-07-31', 1863, 7828, 769, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8087, '2021-07-31', 2673, 7829, 769, 22283, '1.0000', '11.0000', '11.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8088, '2021-07-31', 1863, 7830, 769, 10808, '6.0000', '0.4136', '0.4136', '2.0000', '2.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8089, '2021-07-31', 2144, 7831, 769, 1359, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8090, '2021-07-31', 1761, 7832, 769, NULL, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8091, '2021-07-31', 2136, 7833, 769, 1351, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '114.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8092, '2021-07-31', 2714, 7834, 769, 12769, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '17.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8093, '2021-07-31', 2504, 7835, 769, NULL, '1.0000', '35.0000', '35.0000', '44.0000', '44.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8094, '2021-07-31', 1573, 7836, 769, 436, '1.0000', '29.9042', '29.9042', '32.5000', '32.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8095, '2021-07-31', 2030, 7837, 769, NULL, '1.0000', '11.0000', '11.0000', '14.0000', '14.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8096, '2021-07-31', 2691, 7838, 769, NULL, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8097, '2021-07-31', 1581, 7839, 769, NULL, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8098, '2021-07-31', 2413, 7840, 769, NULL, '2.0000', '1.0500', '1.0500', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8099, '2021-07-31', 1602, 7841, 769, 5897, '1.0000', '6.7859', '6.7859', '10.0000', '10.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8100, '2021-07-31', 1845, 7842, 769, 6222, '-1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8101, '2021-07-31', 1845, 7842, 769, NULL, '2.0000', '19.5000', '19.5000', '26.0000', '26.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8102, '2021-07-31', 1674, 7843, 769, NULL, '1.0000', '3.6000', '3.6000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8103, '2021-07-31', 2167, 7844, 769, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '17.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8104, '2021-07-31', 2729, 7845, 770, NULL, '1.0000', '3.2900', '3.2900', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8105, '2021-07-31', 2777, 7846, 770, NULL, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8106, '2021-07-31', 2250, 7847, 770, 2787, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8107, '2021-07-31', 2660, 7848, 771, NULL, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8108, '2021-07-31', 1523, 7849, 771, NULL, '3.0000', '213.0405', '213.0405', '5.0000', '5.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8109, '2021-07-31', 2279, 7850, 771, 2939, '-3.0000', '2.7000', '2.7000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8110, '2021-07-31', 2279, 7850, 771, NULL, '5.0000', '2.7000', '2.7000', '4.0000', '4.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8111, '2021-07-31', 1647, 7851, 771, NULL, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8112, '2021-07-31', 1825, 7852, 771, NULL, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8113, '2021-07-31', 1310, 7853, 771, NULL, '3.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8114, '2021-07-31', 2294, 7854, 771, 22325, '1.0000', '4.1050', '4.1050', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8115, '2021-07-31', 1863, 7855, 771, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8116, '2021-07-31', 1935, 7856, 771, 5586, '-6.0000', '0.7200', '0.7200', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8117, '2021-07-31', 1935, 7856, 771, NULL, '7.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8118, '2021-07-31', 1701, 7857, 771, NULL, '1.0000', '14.7800', '14.7800', '19.5000', '19.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8119, '2021-07-31', 1387, 7858, 771, 22299, '3.0000', '10.5068', '10.5068', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8120, '2021-07-31', 1811, 7859, 772, 6308, '1.0000', '14.5300', '14.5300', '19.5000', '19.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8121, '2021-07-31', 2379, 7860, 772, 4032, '-9.0000', '1.5900', '1.5900', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8122, '2021-07-31', 2379, 7860, 772, NULL, '10.0000', '1.5900', '1.5900', '2.0000', '2.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8123, '2021-07-31', 2660, 7861, 772, NULL, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8124, '2021-07-31', 2979, 7862, 772, NULL, '1.0000', '15.0000', '15.0000', '17.5000', '17.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8125, '2021-07-31', 1872, 7863, 772, 12520, '1.0000', '9.0500', '9.0500', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8126, '2021-07-31', 2315, 7864, 772, 2735, '-31.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8127, '2021-07-31', 2315, 7864, 772, NULL, '33.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-33.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8128, '2021-07-31', 2497, 7865, 773, 11172, '1.0000', '34.0000', '34.0000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8129, '2021-07-31', 1590, 7866, 774, 22260, '2.0000', '1.7100', '1.7100', '2.2000', '2.2000', '42.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8130, '2021-07-31', 2108, 7867, 774, 1052, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '24.0000', 1, 0, NULL, 57);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8131, '2021-07-31', 1687, 7868, 774, 5785, '1.0000', '165.9024', '165.9024', '15.5000', '15.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8132, '2021-07-31', 1499, 7869, 774, 20585, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8133, '2021-07-31', 1512, 7870, 774, 378, '1.0000', '12.8276', '12.8276', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8134, '2021-07-31', 1523, 7871, 774, NULL, '1.0000', '213.0405', '213.0405', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8135, '2021-07-31', 1772, 7872, 775, 4893, '-4.0000', '6.0500', '6.0500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8136, '2021-07-31', 1772, 7872, 775, NULL, '5.0000', '6.0500', '6.0500', '8.0000', '8.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8137, '2021-07-31', 1521, 7873, 776, 22243, '1.0000', '2.5754', '2.5754', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8138, '2021-07-31', 2405, 7874, 777, 18406, '12.0000', '1.2000', '1.2000', '1.6000', '1.6000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8139, '2021-07-31', 2444, 7875, 777, 16935, '1.0000', '6.0000', '6.0000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8140, '2021-07-31', 2248, 7876, 777, NULL, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8141, '2021-07-31', 1651, 7877, 777, 18433, '1.0000', '6.8300', '6.8300', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8142, '2021-07-31', 1943, 7878, 777, 5599, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8143, '2021-07-31', 1864, 7879, 777, 8425, '2.0000', '6.0500', '6.0500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8144, '2021-07-31', 1935, 7880, 777, 12046, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8145, '2021-07-31', 1519, 7881, 777, 1524, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8146, '2021-07-31', 1602, 7882, 777, 22497, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8147, '2021-07-31', 1342, 7883, 777, 18420, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8148, '2021-07-31', 2643, 7884, 777, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8149, '2021-07-31', 2862, 7885, 777, 17481, '3.0000', '5.0000', '5.0000', '10.0000', '10.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8150, '2021-07-31', 2320, 7886, 777, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8151, '2021-07-31', 1585, 7887, 777, 12381, '1.0000', '8.9900', '8.9900', '17.5000', '17.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8152, '2021-07-31', 2958, 7888, 777, 21589, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8153, '2021-07-31', 2582, 7889, 777, 13544, '1.0000', '11.5000', '11.5000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8154, '2021-07-31', 1574, 7890, 777, 17069, '1.0000', '90.0000', '90.0000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8155, '2021-07-31', 1837, 7891, 777, 18709, '5.0000', '0.5500', '0.5500', '1.0000', '1.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8156, '2021-07-31', 1935, 7892, 777, 12046, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8157, '2021-07-31', 1602, 7893, 777, 22497, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8158, '2021-07-31', 2511, 7894, 777, 16706, '1.0000', '8.6000', '8.6000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8159, '2021-07-31', 1828, 7895, 777, 4963, '2.0000', '0.7300', '0.7300', '1.0000', '1.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8160, '2021-07-31', 2169, 7896, 777, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8161, '2021-07-31', 2497, 7897, 777, NULL, '1.0000', '34.0000', '34.0000', '48.0000', '48.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8162, '2021-07-31', 1863, 7898, 777, 22488, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8163, '2021-07-31', 1430, 7899, 777, 16276, '1.0000', '13.0000', '13.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8164, '2021-07-31', 1602, 7900, 777, 22497, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8165, '2021-07-31', 1518, 7901, 777, 17036, '1.0000', '90.0000', '90.0000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8166, '2021-07-31', 1425, 7902, 777, 22496, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8167, '2021-07-31', 2445, 7903, 777, NULL, '10.0000', '3.2000', '3.2000', '5.0000', '5.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8168, '2021-07-31', 2302, 7904, 777, 17328, '2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8169, '2021-07-31', 1772, 7905, 777, 18695, '2.0000', '6.0500', '6.0500', '8.0000', '8.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8170, '2021-07-31', 1665, 7906, 777, 22236, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8171, '2021-07-31', 2036, 7907, 777, 4401, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8172, '2021-07-31', 2808, 7908, 777, 16895, '2.0000', '39.0000', '39.0000', '51.0000', '51.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8173, '2021-07-31', 1561, 7909, 777, 22223, '1.0000', '27.0000', '27.0000', '35.5000', '35.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8174, '2021-07-31', 2829, 7910, 777, 16965, '4.0000', '23.8700', '23.8700', '33.0000', '33.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8175, '2021-07-31', 1942, 7911, 777, 21550, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8176, '2021-07-31', 1675, 7912, 777, 18689, '1.0000', '90.0000', '90.0000', '28.0000', '28.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8177, '2021-07-31', 2810, 7913, 777, 22233, '10.0000', '2.2000', '2.2000', '2.9000', '2.9000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8178, '2021-07-31', 1668, 7914, 777, 21546, '1.0000', '90.0000', '90.0000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8179, '2021-07-31', 1572, 7915, 777, 9452, '2.0000', '1.7000', '1.7000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8180, '2021-07-31', 2816, 7916, 777, 16785, '15.0000', '0.8000', '0.8000', '1.0000', '1.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8181, '2021-07-31', 2105, 7917, 777, 2511, '2.0000', '1.3500', '1.3500', '3.0000', '3.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8182, '2021-07-31', 2302, 7918, 778, 17328, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8183, '2021-07-31', 1394, 7919, 778, 18445, '1.0000', '6.5000', '6.5000', '10.5000', '10.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8184, '2021-07-31', 2541, 7920, 778, 12384, '1.0000', '9.7500', '9.7500', '14.5000', '14.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8185, '2021-07-31', 1402, 7921, 778, 10243, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8186, '2021-07-31', 2768, 7922, 779, NULL, '1.0000', '0.9600', '0.9600', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8187, '2021-07-31', 1347, 7923, 780, NULL, '4.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8188, '2021-07-31', 1670, 7924, 780, 18413, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8189, '2021-07-31', 2485, 7925, 780, 5197, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8190, '2021-07-31', 2487, 7926, 780, 5198, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8191, '2021-07-31', 1578, 7927, 780, 9447, '1.0000', '1.9700', '1.9700', '3.0000', '3.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8192, '2021-07-31', 1863, 7928, 780, 22488, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8193, '2021-07-31', 2673, 7929, 780, 11868, '1.0000', '11.0000', '11.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8194, '2021-07-31', 1863, 7930, 780, 22488, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8195, '2021-07-31', 2144, 7931, 780, NULL, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8196, '2021-07-31', 1761, 7932, 780, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8197, '2021-07-31', 2136, 7933, 780, NULL, '2.0000', '0.9500', '0.9500', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8198, '2021-07-31', 2714, 7934, 780, NULL, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8199, '2021-07-31', 2504, 7935, 780, 6119, '1.0000', '35.0000', '35.0000', '44.0000', '44.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8200, '2021-07-31', 1573, 7936, 780, NULL, '1.0000', '90.0000', '90.0000', '32.5000', '32.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8201, '2021-07-31', 2031, 7937, 780, 6419, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8202, '2021-07-31', 2030, 7938, 780, 21812, '1.0000', '10.0000', '10.0000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8203, '2021-07-31', 2691, 7939, 780, 12772, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8204, '2021-07-31', 1581, 7940, 780, 4958, '1.0000', '12.0500', '12.0500', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8205, '2021-07-31', 2413, 7941, 780, 22490, '1.0000', '1.0500', '1.0500', '1.5000', '1.5000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8206, '2021-07-31', 1602, 7942, 780, 22497, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8207, '2021-07-31', 1845, 7943, 780, 7121, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8208, '2021-07-31', 1674, 7944, 780, 17855, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8209, '2021-07-31', 2167, 7945, 780, 22219, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8210, '2021-08-01', 1967, 7946, 781, 4690, '1.0000', '19.5900', '19.5900', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8211, '2021-08-01', 2491, 7947, 781, 6228, '-4.0000', '12.2000', '12.2000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8212, '2021-08-01', 2491, 7947, 781, NULL, '5.0000', '12.2000', '12.2000', '16.0000', '16.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8213, '2021-08-01', 1646, 7948, 781, 3239, '-1.0000', '4.5300', '4.5300', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8214, '2021-08-01', 1646, 7948, 781, NULL, '2.0000', '4.5300', '4.5300', '7.5000', '7.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8215, '2021-08-01', 1691, 7949, 781, NULL, '1.0000', '10.3300', '10.3300', '13.5000', '13.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8216, '2021-08-01', 1746, 7950, 781, 6675, '1.0000', '33.8760', '33.8760', '5.0000', '5.0000', '29.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8217, '2021-08-01', 1863, 7951, 781, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8218, '2021-08-01', 2986, 7952, 781, NULL, '3.0000', '0.7700', '0.7700', '1.0000', '1.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8219, '2021-08-01', 2275, 7953, 781, 2935, '-12.0000', '1.0900', '1.0900', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8220, '2021-08-01', 2275, 7953, 781, NULL, '14.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-14.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8221, '2021-08-01', 2294, 7954, 781, 22325, '1.0000', '4.1050', '4.1050', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8222, '2021-08-01', 1771, 7955, 781, 6775, '1.0000', '5.2450', '5.2450', '6.0000', '6.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8223, '2021-08-01', 1753, 7956, 781, 6683, '1.0000', '4.6900', '4.6900', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8224, '2021-08-01', 2739, 7957, 781, 14258, '-2.0000', '6.7000', '6.7000', '2.2000', '2.2000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8225, '2021-08-01', 2739, 7957, 781, NULL, '6.0000', '6.7000', '6.7000', '2.2000', '2.2000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8226, '2021-08-01', 1401, 7958, 781, 22311, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8227, '2021-08-01', 1432, 7959, 781, NULL, '1.0000', '8.1574', '8.1574', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8228, '2021-08-01', 2231, 7960, 781, 1706, '-2.0000', '33.0000', '33.0000', '36.0000', '36.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8229, '2021-08-01', 2231, 7960, 781, NULL, '3.0000', '33.0000', '33.0000', '36.0000', '36.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8230, '2021-08-01', 1580, 7961, 781, 7598, '-8.0000', '0.9900', '0.9900', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8231, '2021-08-01', 1580, 7961, 781, NULL, '11.0000', '0.9900', '0.9900', '1.5000', '1.5000', '-11.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8232, '2021-08-01', 2169, 7962, 781, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '50.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8233, '2021-08-01', 1841, 7963, 781, 18870, '2.0000', '142.5780', '142.5780', '0.5000', '0.5000', '28.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8234, '2021-08-01', 2169, 7964, 781, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '50.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8235, '2021-08-01', 1748, 7965, 781, 18844, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '48.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8236, '2021-08-01', 2103, 7966, 781, 1047, '1.0000', '0.4500', '0.4500', '3.0000', '3.0000', '299.0000', 1, 0, NULL, 57);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8237, '2021-08-01', 1420, 7967, 781, 22318, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8238, '2021-08-01', 2506, 7968, 781, 21511, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8239, '2021-08-01', 2293, 7969, 781, 22262, '3.0000', '1.4400', '1.4400', '2.0000', '2.0000', '96.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8240, '2021-08-01', 2169, 7970, 781, 22244, '2.0000', '3.8397', '3.8397', '1.5000', '1.5000', '49.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8241, '2021-08-01', 1412, 7971, 781, 22354, '1.0000', '14.0000', '14.0000', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8242, '2021-08-01', 2169, 7972, 781, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '50.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8243, '2021-08-01', 1305, 7973, 781, NULL, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8244, '2021-08-01', 1839, 7974, 781, 8734, '-2.0000', '6.1500', '6.1500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8245, '2021-08-01', 1839, 7974, 781, NULL, '3.0000', '6.1500', '6.1500', '8.0000', '8.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8246, '2021-08-01', 2346, 7975, 782, 18804, '1.0000', '5.5000', '5.5000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8247, '2021-08-01', 1562, 7976, 782, 22331, '1.0000', '5.1300', '5.1300', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8248, '2021-08-01', 1687, 7977, 782, 5785, '1.0000', '165.9024', '165.9024', '15.5000', '15.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8249, '2021-08-01', 2167, 7978, 782, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8250, '2021-08-01', 2998, 7979, 783, NULL, '7.0000', '3.6000', '3.6000', '4.9000', '4.9000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8251, '2021-08-01', 2315, 7980, 784, 2735, '-33.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8252, '2021-08-01', 2315, 7980, 784, NULL, '34.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-34.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8253, '2021-08-01', 2219, 7981, 785, NULL, '1.0000', '12.0000', '12.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8254, '2021-08-01', 2068, 7982, 785, 5568, '-3.0000', '13.1000', '13.1000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8255, '2021-08-01', 2068, 7982, 785, NULL, '4.0000', '13.1000', '13.1000', '17.0000', '17.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8256, '2021-08-01', 2169, 7983, 785, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '45.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8257, '2021-08-01', 1335, 7984, 785, 231, '1.0000', '0.8500', '0.8500', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8258, '2021-08-01', 1328, 7985, 785, NULL, '1.0000', '3.1500', '3.1500', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8259, '2021-08-01', 1532, 7986, 785, 22261, '3.0000', '0.8000', '0.8000', '1.5000', '1.5000', '47.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8260, '2021-08-01', 1407, 7987, 785, 22293, '1.0000', '17.0000', '17.0000', '22.5000', '22.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8261, '2021-08-01', 2660, 7988, 785, NULL, '7.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8262, '2021-08-01', 2660, 7989, 785, NULL, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8263, '2021-08-01', 1329, 7990, 785, NULL, '1.0000', '8.5000', '8.5000', '5.5000', '5.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8264, '2021-08-01', 1335, 7991, 785, 231, '1.0000', '0.8500', '0.8500', '2.0000', '2.0000', '11.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8265, '2021-08-01', 2250, 7992, 785, 2787, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8266, '2021-08-01', 2315, 7993, 785, 2735, '-34.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8267, '2021-08-01', 2315, 7993, 785, NULL, '36.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-36.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8268, '2021-08-01', 1337, 7994, 785, 233, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8269, '2021-08-01', 2344, 7995, 785, 18874, '1.0000', '18.2000', '18.2000', '24.5000', '24.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8270, '2021-08-01', 1450, 7996, 785, 18915, '5.0000', '61.1074', '61.1074', '1.2000', '1.2000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8271, '2021-08-01', 1450, 7996, 785, 5570, '5.0000', '61.1074', '61.1074', '1.2000', '1.2000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8272, '2021-08-01', 2892, 7997, 785, NULL, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8273, '2021-08-01', 1429, 7998, 785, 22290, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8274, '2021-08-01', 1488, 7999, 785, 22319, '1.0000', '3.9200', '3.9200', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8275, '2021-08-01', 1819, 8000, 785, 18840, '1.0000', '5.5930', '5.5930', '7.1700', '7.1700', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8276, '2021-08-01', 1873, 8001, 785, 16245, '-2.0000', '11.9500', '11.9500', '15.5000', '15.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8277, '2021-08-01', 1873, 8001, 785, NULL, '3.0000', '11.9500', '11.9500', '15.5000', '15.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8278, '2021-08-01', 2647, 8002, 785, NULL, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8279, '2021-08-01', 2437, 8003, 785, NULL, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8280, '2021-08-01', 2225, 8004, 785, NULL, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8281, '2021-08-01', 1521, 8005, 785, 22243, '1.0000', '2.5754', '2.5754', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8282, '2021-08-01', 1771, 8006, 785, 6775, '1.0000', '5.2450', '5.2450', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8283, '2021-08-01', 1349, 8007, 785, 10162, '1.0000', '20.8300', '20.8300', '46.0000', '46.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8284, '2021-08-01', 1961, 8008, 785, 4501, '1.0000', '20.4530', '20.4530', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8285, '2021-08-01', 2416, 8009, 785, 4745, '-1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8286, '2021-08-01', 2416, 8009, 785, NULL, '3.0000', '1.2000', '1.2000', '1.5000', '1.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8287, '2021-08-01', 2958, 8010, 785, NULL, '2.0000', '1.0000', '1.0000', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8288, '2021-08-01', 2315, 8011, 785, 2735, '-34.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8289, '2021-08-01', 2315, 8011, 785, NULL, '36.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-36.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8290, '2021-08-01', 2974, 8012, 785, 22364, '-4.0000', '5.0000', '5.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8291, '2021-08-01', 2974, 8012, 785, NULL, '5.0000', '5.0000', '5.0000', '8.0000', '8.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8292, '2021-08-01', 1523, 8013, 785, NULL, '1.0000', '213.0405', '213.0405', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8293, '2021-08-01', 1863, 8014, 785, 10808, '2.0000', '0.4136', '0.4136', '2.0000', '2.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8294, '2021-08-01', 2714, 8015, 785, 12769, '2.0000', '0.9000', '0.9000', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8295, '2021-08-01', 1632, 8016, 785, 3206, '-1.0000', '19.5000', '19.5000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8296, '2021-08-01', 1632, 8016, 785, NULL, '2.0000', '19.5000', '19.5000', '25.0000', '25.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8297, '2021-08-01', 2503, 8017, 785, NULL, '1.0000', '14.6000', '14.6000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8298, '2021-08-01', 1505, 8018, 785, 10379, '1.0000', '13.3062', '13.3062', '20.0000', '20.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8299, '2021-08-01', 2958, 8019, 785, NULL, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8300, '2021-08-01', 2315, 8020, 786, 2735, '-38.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8301, '2021-08-01', 2315, 8020, 786, NULL, '40.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-40.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8302, '2021-08-01', 1368, 8021, 786, 268, '1.0000', '-55.5295', '-55.5295', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8303, '2021-08-01', 2248, 8022, 786, 18812, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8304, '2021-08-01', 1621, 8023, 786, NULL, '1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8305, '2021-08-01', 2279, 8024, 786, 2939, '-5.0000', '2.7000', '2.7000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8306, '2021-08-01', 2279, 8024, 786, NULL, '6.0000', '2.7000', '2.7000', '3.5000', '3.5000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8307, '2021-08-01', 1637, 8025, 786, 13466, '1.0000', '10.2000', '10.2000', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8308, '2021-08-01', 1307, 8026, 786, 20587, '1.0000', '110.4141', '110.4141', '3.0000', '3.0000', '16.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8309, '2021-08-01', 2167, 8027, 787, 1603, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8310, '2021-08-01', 2088, 8028, 787, 21781, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8311, '2021-08-01', 2154, 8029, 787, 13520, '1.0000', '10.6849', '10.6849', '14.5000', '14.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8312, '2021-08-01', 1342, 8030, 787, 238, '1.0000', '6.8074', '6.8074', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8313, '2021-08-01', 1519, 8031, 787, 22245, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8314, '2021-08-01', 2089, 8032, 788, NULL, '1.0000', '6.6500', '6.6500', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8315, '2021-08-01', 2169, 8033, 788, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '44.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8316, '2021-08-01', 2252, 8034, 788, 2789, '-1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8317, '2021-08-01', 2252, 8034, 788, NULL, '2.0000', '9.5000', '9.5000', '12.5000', '12.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8318, '2021-08-01', 2821, 8035, 788, NULL, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8319, '2021-08-01', 1602, 8036, 789, 5897, '1.0000', '6.7859', '6.7859', '10.0000', '10.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8320, '2021-08-01', 2316, 8037, 789, NULL, '2.0000', '44.8814', '44.8814', '48.0000', '48.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8321, '2021-08-01', 1666, 8038, 789, 3236, '-2.0000', '2.7100', '2.7100', '3.5000', '3.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8322, '2021-08-01', 1666, 8038, 789, NULL, '3.0000', '2.7100', '2.7100', '3.5000', '3.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8323, '2021-08-01', 2167, 8039, 789, 1603, '3.0000', '2.2000', '2.2000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8324, '2021-08-01', 1961, 8040, 789, 4744, '1.0000', '20.4530', '20.4530', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8325, '2021-08-01', 2655, 8041, 789, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8326, '2021-08-01', 2958, 8042, 789, NULL, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8327, '2021-08-01', 2974, 8043, 789, 22364, '-5.0000', '5.0000', '5.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8328, '2021-08-01', 2974, 8043, 789, NULL, '6.0000', '5.0000', '5.0000', '8.0000', '8.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8329, '2021-08-01', 1744, 8044, 789, 2163, '1.0000', '26.5281', '26.5281', '36.0000', '36.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8330, '2021-08-01', 1602, 8045, 789, 5897, '2.0000', '6.7859', '6.7859', '10.0000', '10.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8331, '2021-08-01', 2106, 8046, 789, NULL, '1.0000', '0.9900', '0.9900', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8332, '2021-08-01', 1580, 8047, 789, 7598, '-11.0000', '0.9900', '0.9900', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8333, '2021-08-01', 1580, 8047, 789, NULL, '14.0000', '0.9900', '0.9900', '1.5000', '1.5000', '-14.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8334, '2021-08-01', 2242, 8048, 789, 22259, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '31.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8335, '2021-08-01', 1837, 8049, 789, NULL, '1.0000', '0.9642', '0.9642', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8336, '2021-08-01', 1667, 8050, 789, 9745, '-2.0000', '5.9400', '5.9400', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8337, '2021-08-01', 1667, 8050, 789, NULL, '3.0000', '5.9400', '5.9400', '8.0000', '8.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8338, '2021-08-01', 1665, 8051, 790, 3235, '-3.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8339, '2021-08-01', 1665, 8051, 790, NULL, '5.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8340, '2021-08-01', 2315, 8052, 790, 2735, '-40.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8341, '2021-08-01', 2315, 8052, 790, NULL, '41.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-41.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8342, '2021-08-01', 1523, 8053, 790, NULL, '1.0000', '213.0405', '213.0405', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8343, '2021-08-01', 1647, 8054, 790, 3218, '-1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8344, '2021-08-01', 1647, 8054, 790, NULL, '2.0000', '4.7200', '4.7200', '7.5000', '7.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8345, '2021-08-01', 1426, 8055, 791, 22356, '1.0000', '36.0000', '36.0000', '47.5000', '47.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8346, '2021-08-01', 1863, 8056, 791, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8347, '2021-08-01', 1665, 8057, 792, 3235, '-5.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8348, '2021-08-01', 1665, 8057, 792, NULL, '6.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8349, '2021-08-02', 1523, 8058, 793, NULL, '1.0000', '213.0405', '213.0405', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8350, '2021-08-02', 2169, 8059, 793, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '43.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8351, '2021-08-02', 1912, 8060, 793, 20584, '2.0000', '0.3200', '0.3200', '1.0000', '1.0000', '38.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8352, '2021-08-02', 1839, 8061, 793, 8734, '-3.0000', '6.1500', '6.1500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8353, '2021-08-02', 1839, 8061, 793, NULL, '4.0000', '6.1500', '6.1500', '8.0000', '8.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8354, '2021-08-02', 2936, 8062, 794, NULL, '1.0000', '6.0400', '6.0400', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8355, '2021-08-02', 1863, 8063, 794, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8356, '2021-08-02', 2244, 8064, 794, NULL, '1.0000', '7.3600', '7.3600', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8357, '2021-08-02', 1986, 8065, 795, 6457, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8358, '2021-08-02', 1432, 8066, 795, 22228, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8359, '2021-08-02', 2350, 8067, 795, 3881, '1.0000', '10.3800', '10.3800', '13.5000', '13.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8360, '2021-08-02', 2958, 8068, 795, 21589, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8361, '2021-08-02', 2032, 8069, 795, 6418, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8362, '2021-08-02', 2759, 8070, 795, 22642, '1.0000', '3.9500', '3.9500', '5.5000', '5.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8363, '2021-08-02', 2435, 8071, 795, 5839, '1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8364, '2021-08-02', 1665, 8072, 795, 22236, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8365, '2021-08-02', 1863, 8073, 795, 22488, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8366, '2021-08-02', 2892, 8074, 795, 18051, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8367, '2021-08-02', 1342, 8075, 795, 18420, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8368, '2021-08-02', 1488, 8076, 795, 13561, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8369, '2021-08-02', 1517, 8077, 795, 13619, '1.0000', '23.6400', '23.6400', '31.0000', '31.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8370, '2021-08-02', 1310, 8078, 795, NULL, '6.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8371, '2021-08-02', 1953, 8079, 795, 3407, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8372, '2021-08-02', 1637, 8080, 795, 17491, '1.0000', '90.0000', '90.0000', '14.0000', '14.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8373, '2021-08-02', 1533, 8081, 795, 10385, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8374, '2021-08-02', 2958, 8082, 795, 21589, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8375, '2021-08-02', 2272, 8083, 795, 22653, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8376, '2021-08-02', 1935, 8084, 795, 22646, '2.0000', '23.0400', '23.0400', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8377, '2021-08-02', 2290, 8085, 795, 18062, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8378, '2021-08-02', 1666, 8086, 795, 17034, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8379, '2021-08-02', 2714, 8087, 795, NULL, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8380, '2021-08-02', 1856, 8088, 795, 4987, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8381, '2021-08-02', 1674, 8089, 795, 17855, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8382, '2021-08-02', 2958, 8090, 795, 21589, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8383, '2021-08-02', 1306, 8091, 796, 6879, '1.0000', '22.5969', '22.5969', '3.0000', '3.0000', '14.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8384, '2021-08-02', 1620, 8092, 796, 8955, '3.0000', '408.8259', '408.8259', '4.0000', '4.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8385, '2021-08-02', 2169, 8093, 796, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8386, '2021-08-02', 2379, 8094, 796, 4032, '-10.0000', '1.5900', '1.5900', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8387, '2021-08-02', 2379, 8094, 796, NULL, '11.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-11.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8388, '2021-08-02', 2821, 8095, 796, NULL, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8389, '2021-08-02', 1871, 8096, 796, 8223, '2.0000', '24.5246', '24.5246', '3.0000', '3.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8390, '2021-08-02', 1629, 8097, 796, NULL, '2.0000', '15.5000', '15.5000', '21.0000', '21.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8391, '2021-08-02', 2320, 8098, 796, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8392, '2021-08-02', 1429, 8099, 796, 22290, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8393, '2021-08-02', 2167, 8100, 796, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8394, '2021-08-02', 1342, 8101, 797, 238, '1.0000', '6.8074', '6.8074', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8395, '2021-08-02', 1863, 8102, 797, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8396, '2021-08-02', 2302, 8103, 797, 2963, '-2.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8397, '2021-08-02', 2302, 8103, 797, NULL, '4.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8398, '2021-08-02', 1772, 8104, 797, 4893, '-5.0000', '6.0500', '6.0500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8399, '2021-08-02', 1772, 8104, 797, NULL, '7.0000', '6.0500', '6.0500', '8.0000', '8.0000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8400, '2021-08-02', 2974, 8105, 797, 22364, '-6.0000', '5.0000', '5.0000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8401, '2021-08-02', 2974, 8105, 797, NULL, '7.0000', '5.0000', '5.0000', '8.0000', '8.0000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8402, '2021-08-02', 2636, 8106, 797, 10378, '1.0000', '7.2738', '7.2738', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8403, '2021-08-02', 2592, 8107, 797, 10812, '-1.0000', '7.9670', '7.9670', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8404, '2021-08-02', 2592, 8107, 797, NULL, '2.0000', '7.9670', '7.9670', '11.0000', '11.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8405, '2021-08-02', 1427, 8108, 798, 22355, '1.0000', '14.2181', '14.2181', '20.5000', '20.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8406, '2021-08-02', 2242, 8109, 798, 22259, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8407, '2021-08-02', 1691, 8110, 798, NULL, '1.0000', '10.3300', '10.3300', '13.5000', '13.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8408, '2021-08-02', 1649, 8111, 798, 3220, '-1.0000', '11.1900', '11.1900', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8409, '2021-08-02', 1649, 8111, 798, NULL, '2.0000', '11.1900', '11.1900', '16.0000', '16.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8410, '2021-08-02', 1961, 8112, 798, 4744, '1.0000', '20.4530', '20.4530', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8411, '2021-08-02', 2409, 8113, 798, NULL, '1.0000', '2.3100', '2.3100', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8412, '2021-08-02', 1863, 8114, 798, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8413, '2021-08-02', 2354, 8115, 798, 18836, '1.0000', '4.6000', '4.6000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8414, '2021-08-02', 1839, 8116, 798, 8734, '-4.0000', '6.1500', '6.1500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8415, '2021-08-02', 1839, 8116, 798, NULL, '5.0000', '6.1500', '6.1500', '8.0000', '8.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8416, '2021-08-02', 1825, 8117, 798, 11265, '-1.0000', '4.8000', '4.8000', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8417, '2021-08-02', 1825, 8117, 798, NULL, '2.0000', '4.8000', '4.8000', '6.5000', '6.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8418, '2021-08-02', 1423, 8118, 799, NULL, '1.0000', '24.5000', '24.5000', '33.0000', '33.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8419, '2021-08-02', 2296, 8119, 799, 2955, '1.0000', '13.2900', '13.2900', '18.0000', '18.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8420, '2021-08-02', 2366, 8120, 799, 3833, '-6.0000', '3.7500', '3.7500', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8421, '2021-08-02', 2366, 8120, 799, NULL, '7.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8422, '2021-08-02', 1330, 8121, 800, 3367, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8423, '2021-08-02', 2694, 8122, 800, 12289, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8424, '2021-08-02', 1335, 8123, 800, 12064, '1.0000', '0.8500', '0.8500', '2.0000', '2.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8425, '2021-08-02', 2237, 8124, 800, 3083, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8426, '2021-08-02', 2827, 8125, 800, 17380, '1.0000', '37.0000', '37.0000', '48.0000', '48.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8427, '2021-08-02', 2169, 8126, 800, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8428, '2021-08-02', 1863, 8127, 800, 22488, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8429, '2021-08-02', 2582, 8128, 800, 10527, '1.0000', '11.5000', '11.5000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8430, '2021-08-02', 2693, 8129, 800, 18065, '1.0000', '25.0100', '25.0100', '33.0000', '33.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8431, '2021-08-02', 2923, 8130, 800, 22627, '1.0000', '11.1200', '11.1200', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8432, '2021-08-02', 2379, 8131, 800, 4385, '1.0000', '1.5900', '1.5900', '2.5000', '2.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8433, '2021-08-02', 2140, 8132, 800, NULL, '1.0000', '10.0000', '10.0000', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8434, '2021-08-02', 1602, 8133, 800, 22497, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8435, '2021-08-02', 1817, 8134, 800, 3077, '1.0000', '9.5500', '9.5500', '12.5000', '12.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8436, '2021-08-02', 2633, 8135, 800, 17865, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8437, '2021-08-02', 2389, 8136, 800, 4394, '4.0000', '3.1400', '3.1400', '4.5000', '4.5000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8438, '2021-08-02', 2458, 8137, 800, 18063, '1.0000', '9.9000', '9.9000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8439, '2021-08-02', 1812, 8138, 800, 22650, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8440, '2021-08-02', 2101, 8139, 800, 6013, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8441, '2021-08-02', 2411, 8140, 800, 4823, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8442, '2021-08-02', 1427, 8141, 800, 18443, '1.0000', '15.0000', '15.0000', '20.5000', '20.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8443, '2021-08-02', 2290, 8142, 800, 3130, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8444, '2021-08-02', 1608, 8143, 801, 8222, '-5.0000', '3.3500', '3.3500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8445, '2021-08-02', 1608, 8143, 801, NULL, '6.0000', '3.3500', '3.3500', '5.0000', '5.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8446, '2021-08-02', 2275, 8144, 801, 2935, '-14.0000', '1.0900', '1.0900', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8447, '2021-08-02', 2275, 8144, 801, NULL, '16.0000', '1.0900', '1.0900', '1.5000', '1.5000', '-16.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8448, '2021-08-02', 2543, 8145, 801, 6304, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8449, '2021-08-02', 2777, 8146, 801, NULL, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8450, '2021-08-02', 1863, 8147, 801, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8451, '2021-08-02', 1839, 8148, 801, 8734, '-5.0000', '6.1500', '6.1500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8452, '2021-08-02', 1839, 8148, 801, NULL, '6.0000', '6.1500', '6.1500', '8.0000', '8.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8453, '2021-08-02', 2105, 8149, 802, NULL, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8454, '2021-08-02', 1307, 8150, 802, 20587, '1.0000', '110.4141', '110.4141', '3.0000', '3.0000', '15.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8455, '2021-08-02', 2068, 8151, 802, 5568, '-4.0000', '13.1000', '13.1000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8456, '2021-08-02', 2068, 8151, 802, NULL, '5.0000', '13.1000', '13.1000', '17.0000', '17.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8457, '2021-08-02', 2108, 8152, 803, 1052, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '23.0000', 1, 0, NULL, 57);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8458, '2021-08-02', 1501, 8153, 804, 22242, '1.0000', '2.0500', '2.0500', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8459, '2021-08-02', 1800, 8154, 804, 1627, '1.0000', '20.2784', '20.2784', '27.0000', '27.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8460, '2021-08-02', 1602, 8155, 804, 5897, '1.0000', '6.7859', '6.7859', '10.0000', '10.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8461, '2021-08-02', 1863, 8156, 804, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8462, '2021-08-02', 1519, 8157, 804, 22245, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8463, '2021-08-02', 2655, 8158, 805, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8464, '2021-08-02', 1837, 8159, 805, 18709, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8465, '2021-08-02', 1306, 8160, 805, 2477, '5.0000', '2.1000', '2.1000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8466, '2021-08-02', 2714, 8161, 805, NULL, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8467, '2021-08-02', 1528, 8162, 805, 1535, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8468, '2021-08-02', 1530, 8163, 805, 18435, '1.0000', '90.0000', '90.0000', '38.0000', '38.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8469, '2021-08-02', 1521, 8164, 805, 18427, '5.0000', '2.5000', '2.5000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8470, '2021-08-02', 2655, 8165, 805, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8471, '2021-08-02', 2859, 8166, 805, 17456, '1.0000', '0.6700', '0.6700', '2.0000', '2.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8472, '2021-08-02', 2068, 8167, 805, 22652, '1.0000', '12.8833', '12.8833', '17.0000', '17.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8473, '2021-08-02', 1912, 8168, 805, NULL, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8474, '2021-08-02', 1854, 8169, 805, 4985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8475, '2021-08-02', 2546, 8170, 805, 18669, '1.0000', '13.6300', '13.6300', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8476, '2021-08-02', 2810, 8171, 805, 22233, '10.0000', '2.2000', '2.2000', '2.9000', '2.9000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8477, '2021-08-02', 1510, 8172, 805, 1513, '1.0000', '90.0000', '90.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8478, '2021-08-02', 1800, 8173, 805, 22403, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8479, '2021-08-02', 2491, 8174, 805, 22625, '1.0000', '12.2000', '12.2000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8480, '2021-08-02', 1640, 8175, 805, NULL, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8481, '2021-08-02', 1537, 8176, 805, 13552, '1.0000', '40.2700', '40.2700', '53.0000', '53.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8482, '2021-08-02', 1349, 8177, 805, 18072, '1.0000', '32.5000', '32.5000', '46.0000', '46.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8483, '2021-08-02', 1481, 8178, 805, 18677, '2.0000', '90.0000', '90.0000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8484, '2021-08-02', 1863, 8179, 805, 22488, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8485, '2021-08-02', 1935, 8180, 805, 22646, '2.0000', '23.0400', '23.0400', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8486, '2021-08-02', 2655, 8181, 805, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8487, '2021-08-02', 2290, 8182, 806, 3130, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8488, '2021-08-02', 1812, 8183, 806, 22650, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8489, '2021-08-02', 2237, 8184, 806, 3083, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8490, '2021-08-02', 1876, 8185, 806, NULL, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8491, '2021-08-02', 1935, 8186, 806, 22646, '1.0000', '23.0400', '23.0400', '2.0000', '2.0000', '25.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8492, '2021-08-02', 2251, 8187, 806, 13529, '1.0000', '11.6400', '11.6400', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8493, '2021-08-02', 2454, 8188, 806, 5657, '1.0000', '7.5400', '7.5400', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8494, '2021-08-02', 1845, 8189, 806, 7121, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8495, '2021-08-02', 2313, 8190, 806, 5631, '2.0000', '8.7000', '8.7000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8496, '2021-08-02', 1675, 8191, 806, 22655, '1.0000', '44.1200', '44.1200', '29.0000', '29.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8497, '2021-08-02', 2288, 8192, 806, 17858, '1.0000', '7.5900', '7.5900', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8498, '2021-08-02', 2486, 8193, 806, 21821, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8499, '2021-08-02', 1557, 8194, 806, 1661, '1.0000', '7.8800', '7.8800', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8500, '2021-08-02', 1822, 8195, 806, 22213, '10.0000', '2.4000', '2.4000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8501, '2021-08-02', 1763, 8196, 806, 12738, '1.0000', '4.6900', '4.6900', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8502, '2021-08-02', 2995, 8197, 806, 22626, '1.0000', '39.7000', '39.7000', '52.5000', '52.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8503, '2021-08-02', 1859, 8198, 807, 22335, '1.0000', '22.6760', '22.6760', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8504, '2021-08-02', 2283, 8199, 807, 2943, '-1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8505, '2021-08-02', 2283, 8199, 807, NULL, '2.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8506, '2021-08-02', 2379, 8200, 807, 4032, '-11.0000', '1.5900', '1.5900', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8507, '2021-08-02', 2379, 8200, 807, NULL, '12.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-12.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8508, '2021-08-02', 1533, 8201, 807, 22263, '1.0000', '2.5917', '2.5917', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8509, '2021-08-02', 1665, 8202, 807, 3235, '-6.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8510, '2021-08-02', 1665, 8202, 807, NULL, '8.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-8.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8511, '2021-08-02', 2241, 8203, 807, 3058, '-1.0000', '6.5900', '6.5900', '9.0000', '9.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8512, '2021-08-02', 2241, 8203, 807, NULL, '2.0000', '6.5900', '6.5900', '9.0000', '9.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8513, '2021-08-02', 1767, 8204, 808, 4502, '-1.0000', '4.6052', '4.6052', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8514, '2021-08-02', 1767, 8204, 808, NULL, '2.0000', '4.6052', '4.6052', '6.5000', '6.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8515, '2021-08-03', 2167, 8205, 809, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8516, '2021-08-03', 1837, 8206, 809, NULL, '1.0000', '0.9642', '0.9642', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8517, '2021-08-03', 1751, 8207, 809, 6681, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8518, '2021-08-03', 2379, 8208, 809, 4032, '-12.0000', '1.5900', '1.5900', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8519, '2021-08-03', 2379, 8208, 809, NULL, '13.0000', '1.5900', '1.5900', '2.5000', '2.5000', '-13.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8520, '2021-08-03', 1523, 8209, 810, NULL, '1.0000', '213.0405', '213.0405', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8521, '2021-08-03', 2233, 8210, 811, 2777, '-1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8522, '2021-08-03', 2233, 8210, 811, NULL, '2.0000', '19.0200', '19.0200', '27.0000', '27.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8523, '2021-08-03', 2236, 8211, 811, 2780, '1.0000', '5.6599', '5.6599', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8524, '2021-08-03', 2108, 8212, 811, 1052, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '22.0000', 1, 0, NULL, 57);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8525, '2021-08-03', 2917, 8213, 811, NULL, '1.0000', '7.3500', '7.3500', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8526, '2021-08-03', 2990, 8214, 811, NULL, '2.0000', '1.1200', '1.1200', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8527, '2021-08-03', 2320, 8215, 811, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8528, '2021-08-03', 1689, 8216, 811, 4897, '1.0000', '60.7198', '60.7198', '17.0000', '17.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8529, '2021-08-03', 1721, 8217, 811, NULL, '1.0000', '8.6900', '8.6900', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8530, '2021-08-03', 1595, 8218, 811, NULL, '1.0000', '20.6900', '20.6900', '28.0000', '28.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8531, '2021-08-03', 1342, 8219, 811, 238, '1.0000', '6.8074', '6.8074', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8532, '2021-08-03', 1596, 8220, 811, 8361, '-2.0000', '2.5700', '2.5700', '3.8300', '3.8300', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8533, '2021-08-03', 1596, 8220, 811, NULL, '3.0000', '2.5700', '2.5700', '3.8300', '3.8300', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8534, '2021-08-03', 1646, 8221, 811, 3239, '-2.0000', '4.5300', '4.5300', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8535, '2021-08-03', 1646, 8221, 811, NULL, '3.0000', '4.5300', '4.5300', '7.5000', '7.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8536, '2021-08-03', 2491, 8222, 811, 6228, '-5.0000', '12.2000', '12.2000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8537, '2021-08-03', 2491, 8222, 811, NULL, '6.0000', '12.2000', '12.2000', '16.0000', '16.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8538, '2021-08-03', 2283, 8223, 811, 2943, '-2.0000', '1.4300', '1.4300', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8539, '2021-08-03', 2283, 8223, 811, NULL, '3.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8540, '2021-08-03', 1935, 8224, 811, 5586, '-7.0000', '0.7200', '0.7200', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8541, '2021-08-03', 1935, 8224, 811, NULL, '8.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-8.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8542, '2021-08-03', 1666, 8225, 811, 3236, '-3.0000', '2.7100', '2.7100', '3.5000', '3.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8543, '2021-08-03', 1666, 8225, 811, NULL, '4.0000', '2.7100', '2.7100', '3.5000', '3.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8544, '2021-08-03', 2772, 8226, 812, 16691, '1.0000', '16.7000', '16.7000', '22.0000', '22.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8545, '2021-08-03', 2104, 8227, 812, 6016, '2.0000', '0.2000', '0.2000', '0.5000', '0.5000', '124.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8546, '2021-08-03', 2289, 8228, 812, 22481, '2.0000', '0.2300', '0.2300', '0.5000', '0.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8547, '2021-08-03', 1841, 8229, 812, 4974, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8548, '2021-08-03', 2264, 8230, 812, 22640, '1.0000', '14.0000', '14.0000', '18.5000', '18.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8549, '2021-08-03', 1666, 8231, 812, 17034, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8550, '2021-08-03', 2643, 8232, 812, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8551, '2021-08-03', 1665, 8233, 812, 22236, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8552, '2021-08-03', 1425, 8234, 812, 22496, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8553, '2021-08-03', 1787, 8235, 812, 4930, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8554, '2021-08-03', 1785, 8236, 812, 21580, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8555, '2021-08-03', 2245, 8237, 812, NULL, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8556, '2021-08-03', 2491, 8238, 812, 22625, '2.0000', '12.2000', '12.2000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8557, '2021-08-03', 1302, 8239, 812, 21544, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8558, '2021-08-03', 2236, 8240, 812, 3082, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8559, '2021-08-03', 2384, 8241, 812, 4370, '6.0000', '0.4000', '0.4000', '0.5000', '0.5000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8560, '2021-08-03', 1837, 8242, 812, 18709, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8561, '2021-08-03', 2233, 8243, 813, 22654, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8562, '2021-08-03', 2706, 8244, 813, 14584, '1.0000', '6.5900', '6.5900', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8563, '2021-08-03', 1374, 8245, 813, 17453, '2.0000', '55.5900', '55.5900', '26.0000', '26.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8564, '2021-08-03', 2084, 8246, 814, NULL, '1.0000', '15.0700', '15.0700', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8565, '2021-08-03', 1677, 8247, 814, NULL, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8566, '2021-08-03', 2063, 8248, 815, 2174, '1.0000', '1.9900', '1.9900', '3.5000', '3.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8567, '2021-08-03', 1868, 8249, 815, 4997, '1.0000', '4.0300', '4.0300', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8568, '2021-08-03', 1812, 8250, 815, 22650, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8569, '2021-08-03', 1761, 8251, 815, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8570, '2021-08-03', 1824, 8252, 815, 4959, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8571, '2021-08-03', 1812, 8253, 816, 22650, '5.0000', '7.8900', '7.8900', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8572, '2021-08-03', 1651, 8254, 817, 18433, '1.0000', '6.8300', '6.8300', '10.5000', '10.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8573, '2021-08-03', 1501, 8255, 818, 22242, '1.0000', '2.0500', '2.0500', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8574, '2021-08-03', 2916, 8256, 818, NULL, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8575, '2021-08-03', 1935, 8257, 818, 5586, '-8.0000', '0.7200', '0.7200', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8576, '2021-08-03', 1935, 8257, 818, NULL, '10.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8577, '2021-08-03', 1863, 8258, 818, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8578, '2021-08-03', 2060, 8259, 818, 20583, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '96.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8579, '2021-08-03', 2990, 8260, 818, NULL, '1.0000', '1.1200', '1.1200', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8580, '2021-08-03', 1409, 8261, 818, NULL, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8581, '2021-08-03', 1493, 8262, 819, 9747, '1.0000', '1.5425', '1.5425', '3.0000', '3.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8582, '2021-08-03', 1330, 8263, 819, NULL, '1.0000', '3.7000', '3.7000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8583, '2021-08-03', 2294, 8264, 819, 22325, '1.0000', '4.1050', '4.1050', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8584, '2021-08-03', 2298, 8265, 819, 18816, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8585, '2021-08-03', 1493, 8266, 820, 9747, '1.0000', '1.5425', '1.5425', '3.0000', '3.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8586, '2021-08-03', 1330, 8267, 820, 14393, '-1.0000', '3.7000', '3.7000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8587, '2021-08-03', 1330, 8267, 820, NULL, '2.0000', '3.7000', '3.7000', '5.0000', '5.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8588, '2021-08-03', 2294, 8268, 820, 22325, '1.0000', '4.1050', '4.1050', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8589, '2021-08-03', 2298, 8269, 820, 18816, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8590, '2021-08-03', 1867, 8270, 820, NULL, '10.0000', '1.0500', '1.0500', '1.3000', '1.3000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8591, '2021-08-03', 2893, 8271, 821, 18431, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8592, '2021-08-03', 2405, 8272, 821, 18406, '10.0000', '1.2000', '1.2000', '1.6000', '1.6000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8593, '2021-08-03', 1435, 8273, 821, 11878, '1.0000', '18.5000', '18.5000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8594, '2021-08-03', 2075, 8274, 821, 5610, '1.0000', '7.0000', '7.0000', '9.5000', '9.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8595, '2021-08-03', 2642, 8275, 821, 21836, '1.0000', '7.5000', '7.5000', '12.0000', '12.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8596, '2021-08-03', 1400, 8276, 821, 9048, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8597, '2021-08-03', 1947, 8277, 821, 4998, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8598, '2021-08-03', 2359, 8278, 821, 17871, '1.0000', '16.2200', '16.2200', '11.0000', '11.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8599, '2021-08-03', 2366, 8279, 821, 13636, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8600, '2021-08-03', 1888, 8280, 821, NULL, '1.0000', '90.0000', '90.0000', '21.0000', '21.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8601, '2021-08-03', 1961, 8281, 821, 22656, '1.0000', '18.3967', '18.3967', '26.0000', '26.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8602, '2021-08-03', 2280, 8282, 821, 21586, '2.0000', '1.9000', '1.9000', '5.0000', '5.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8603, '2021-08-03', 1772, 8283, 821, 18695, '3.0000', '6.0500', '6.0500', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8604, '2021-08-03', 1812, 8284, 821, 22650, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8605, '2021-08-03', 2403, 8285, 821, 13547, '1.0000', '17.8000', '17.8000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8606, '2021-08-03', 2244, 8286, 821, NULL, '1.0000', '7.3600', '7.3600', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8607, '2021-08-03', 1675, 8287, 822, 22655, '1.0000', '44.1200', '44.1200', '29.0000', '29.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8608, '2021-08-03', 2669, 8288, 822, 21581, '1.0000', '49.0000', '49.0000', '32.5000', '32.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8609, '2021-08-03', 1674, 8289, 822, 17855, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8610, '2021-08-03', 1771, 8290, 823, 21570, '1.0000', '3.3900', '3.3900', '6.0000', '6.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8611, '2021-08-03', 2109, 8291, 823, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '129.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8612, '2021-08-03', 1935, 8292, 823, 22646, '1.0000', '23.0400', '23.0400', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8613, '2021-08-03', 1462, 8293, 823, NULL, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8614, '2021-08-03', 2655, 8294, 823, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8615, '2021-08-03', 1519, 8295, 823, 1524, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8616, '2021-08-03', 1651, 8296, 823, 17367, '1.0000', '6.8300', '6.8300', '10.5000', '10.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8617, '2021-08-03', 1602, 8297, 823, 22497, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8618, '2021-08-03', 1644, 8298, 823, 14596, '1.0000', '90.0000', '90.0000', '45.0000', '45.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8619, '2021-08-03', 1650, 8299, 823, 22498, '1.0000', '14.5800', '14.5800', '19.5000', '19.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8620, '2021-08-03', 1647, 8300, 823, 3261, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8621, '2021-08-03', 2958, 8301, 823, 21589, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8622, '2021-08-03', 1812, 8302, 823, 18423, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8623, '2021-08-03', 2806, 8303, 823, 16936, '1.0000', '5.7500', '5.7500', '8.0000', '8.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8624, '2021-08-03', 2307, 8304, 824, 22502, '1.0000', '140.0000', '140.0000', '170.0000', '170.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8625, '2021-08-03', 2916, 8305, 824, 22658, '1.0000', '13.7500', '13.7500', '18.0000', '18.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8626, '2021-08-03', 2557, 8306, 824, 12740, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8627, '2021-08-03', 1871, 8307, 824, 22495, '10.0000', '90.0000', '90.0000', '3.0000', '3.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8628, '2021-08-03', 1689, 8308, 824, 2469, '1.0000', '12.3500', '12.3500', '17.0000', '17.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8629, '2021-08-03', 1346, 8309, 824, 22215, '10.0000', '0.9300', '0.9300', '1.5000', '1.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8630, '2021-08-03', 1528, 8310, 824, 1535, '2.0000', '90.0000', '90.0000', '6.0000', '6.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8631, '2021-08-03', 1831, 8311, 825, NULL, '3.0000', '90.0000', '90.0000', '11.5000', '11.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8632, '2021-08-03', 1349, 8312, 825, 13532, '1.0000', '32.5000', '32.5000', '46.0000', '46.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8633, '2021-08-03', 1837, 8313, 825, 18709, '5.0000', '0.5500', '0.5500', '1.0000', '1.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8634, '2021-08-03', 2250, 8314, 825, 17487, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8635, '2021-08-03', 1744, 8315, 825, 22404, '1.0000', '90.0000', '90.0000', '36.0000', '36.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8636, '2021-08-03', 1783, 8316, 825, 18658, '3.0000', '90.0000', '90.0000', '11.0000', '11.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8637, '2021-08-03', 1425, 8317, 825, 22496, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8638, '2021-08-03', 1856, 8318, 825, 4987, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8639, '2021-08-03', 1584, 8319, 825, 9443, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8640, '2021-08-03', 1961, 8320, 826, 22656, '1.0000', '18.3967', '18.3967', '26.0000', '26.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8641, '2021-08-03', 1307, 8321, 826, 2478, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8642, '2021-08-03', 1337, 8322, 826, 17039, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8643, '2021-08-03', 2220, 8323, 826, 13618, '1.0000', '5.2800', '5.2800', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8644, '2021-08-03', 1499, 8324, 827, 20585, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8645, '2021-08-03', 1863, 8325, 827, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8646, '2021-08-03', 2233, 8326, 827, 2777, '-2.0000', '19.0200', '19.0200', '27.0000', '27.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8647, '2021-08-03', 2233, 8326, 827, NULL, '3.0000', '19.0200', '19.0200', '27.0000', '27.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8648, '2021-08-03', 1810, 8327, 827, 12166, '-1.0000', '8.0500', '8.0500', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8649, '2021-08-03', 1810, 8327, 827, NULL, '2.0000', '8.0500', '8.0500', '11.0000', '11.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8650, '2021-08-03', 2916, 8328, 827, NULL, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8651, '2021-08-03', 1330, 8329, 827, 14393, '-2.0000', '3.7000', '3.7000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8652, '2021-08-03', 1330, 8329, 827, NULL, '3.0000', '3.7000', '3.7000', '5.0000', '5.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8653, '2021-08-03', 1580, 8330, 827, 7598, '-14.0000', '0.9900', '0.9900', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8654, '2021-08-03', 1580, 8330, 827, NULL, '17.0000', '0.9900', '0.9900', '1.5000', '1.5000', '-17.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8655, '2021-08-03', 2950, 8331, 827, NULL, '2.0000', '1.4000', '1.4000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8656, '2021-08-03', 2951, 8332, 827, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8657, '2021-08-03', 2821, 8333, 827, NULL, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8658, '2021-08-03', 2495, 8334, 827, NULL, '1.0000', '8.6100', '8.6100', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8659, '2021-08-03', 1687, 8335, 827, NULL, '1.0000', '165.9024', '165.9024', '15.5000', '15.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8660, '2021-08-03', 1368, 8336, 827, 268, '1.0000', '-55.5295', '-55.5295', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8661, '2021-08-03', 1667, 8337, 827, 9745, '-3.0000', '5.9400', '5.9400', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8662, '2021-08-03', 1667, 8337, 827, NULL, '5.0000', '5.9400', '5.9400', '8.0000', '8.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8663, '2021-08-03', 2260, 8338, 827, 18628, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8664, '2021-08-03', 1409, 8339, 827, NULL, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8665, '2021-08-03', 1863, 8340, 827, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8666, '2021-08-03', 2699, 8341, 827, NULL, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8667, '2021-08-03', 2574, 8342, 827, 7383, '2.0000', '0.7800', '0.7800', '1.5000', '1.5000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8668, '2021-08-03', 1935, 8343, 827, 5586, '-10.0000', '0.7200', '0.7200', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8669, '2021-08-03', 1935, 8343, 827, NULL, '11.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-11.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8670, '2021-08-03', 1841, 8344, 827, 18870, '1.0000', '142.5780', '142.5780', '0.5000', '0.5000', '27.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8671, '2021-08-03', 1840, 8345, 827, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.3000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8672, '2021-08-03', 2289, 8346, 827, NULL, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8673, '2021-08-03', 2020, 8347, 827, 22321, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8674, '2021-08-03', 1871, 8348, 827, 8223, '1.0000', '24.5246', '24.5246', '3.0000', '3.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8675, '2021-08-03', 1871, 8349, 827, 8223, '2.0000', '24.5246', '24.5246', '3.0000', '3.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8676, '2021-08-03', 1590, 8350, 827, 22260, '1.0000', '1.7100', '1.7100', '2.2000', '2.2000', '41.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8677, '2021-08-03', 1912, 8351, 827, 20584, '2.0000', '0.3200', '0.3200', '1.0000', '1.0000', '36.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8678, '2021-08-03', 2989, 8352, 827, NULL, '1.0000', '0.9200', '0.9200', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8679, '2021-08-03', 2943, 8353, 827, NULL, '1.0000', '2.1800', '2.1800', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8680, '2021-08-03', 1912, 8354, 827, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '37.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8681, '2021-08-03', 1863, 8355, 827, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8682, '2021-08-03', 1519, 8356, 827, 22245, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8683, '2021-08-03', 1432, 8357, 827, NULL, '1.0000', '8.1574', '8.1574', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8684, '2021-08-03', 1386, 8358, 827, 22316, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8685, '2021-08-03', 1493, 8359, 827, 9747, '1.0000', '1.5425', '1.5425', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8686, '2021-08-03', 2729, 8360, 827, 14087, '-1.0000', '3.2900', '3.2900', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8687, '2021-08-03', 2729, 8360, 827, NULL, '2.0000', '3.2900', '3.2900', '5.0000', '5.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8688, '2021-08-03', 2135, 8361, 827, NULL, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8689, '2021-08-03', 1788, 8362, 827, NULL, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8690, '2021-08-04', 2612, 8363, 828, NULL, '1.0000', '7.1600', '7.1600', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8691, '2021-08-04', 1382, 8364, 828, NULL, '1.0000', '4.0000', '4.0000', '5.5000', '5.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8692, '2021-08-04', 1640, 8365, 828, NULL, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8693, '2021-08-04', 2169, 8366, 828, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8694, '2021-08-04', 2951, 8367, 828, NULL, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8695, '2021-08-04', 2381, 8368, 828, NULL, '1.0000', '10.8700', '10.8700', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8696, '2021-08-04', 2320, 8369, 828, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8697, '2021-08-04', 1640, 8370, 828, NULL, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8698, '2021-08-04', 1425, 8371, 829, NULL, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8699, '2021-08-04', 2754, 8372, 829, 18938, '1.0000', '0.0800', '0.0800', '0.5000', '0.5000', '99.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8700, '2021-08-04', 2821, 8373, 829, 19816, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8701, '2021-08-04', 2990, 8374, 829, 22611, '2.0000', '1.1200', '1.1200', '1.5000', '1.5000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8702, '2021-08-04', 2167, 8375, 829, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8703, '2021-08-04', 1728, 8376, 830, 19324, '3.0000', '90.0000', '90.0000', '2.5000', '2.5000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8704, '2021-08-04', 2556, 8377, 830, NULL, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8705, '2021-08-04', 2678, 8378, 831, 12224, '2.0000', '37.0000', '37.0000', '48.0000', '48.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8706, '2021-08-04', 1353, 8379, 831, 17041, '1.0000', '20.5000', '20.5000', '27.0000', '27.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8707, '2021-08-04', 1498, 8380, 831, 1501, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8708, '2021-08-04', 1746, 8381, 831, NULL, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8709, '2021-08-04', 1741, 8382, 831, 6793, '1.0000', '90.0000', '90.0000', '33.5000', '33.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8710, '2021-08-04', 1873, 8383, 831, 5001, '1.0000', '90.0000', '90.0000', '15.5000', '15.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8711, '2021-08-04', 1787, 8384, 831, 4930, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8712, '2021-08-04', 1347, 8385, 831, NULL, '3.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8713, '2021-08-04', 1772, 8386, 831, 18695, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8714, '2021-08-04', 2169, 8387, 831, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8715, '2021-08-04', 2413, 8388, 831, 22490, '6.0000', '1.0500', '1.0500', '1.5000', '1.5000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8716, '2021-08-04', 2642, 8389, 831, 21836, '1.0000', '7.5000', '7.5000', '12.0000', '12.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8717, '2021-08-04', 1837, 8390, 831, 18709, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8718, '2021-08-04', 1837, 8390, 831, NULL, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8719, '2021-08-04', 1495, 8391, 831, 1498, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8720, '2021-08-04', 1602, 8392, 831, 22497, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8721, '2021-08-04', 2527, 8393, 831, 15803, '1.0000', '40.0000', '40.0000', '48.0000', '48.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8722, '2021-08-04', 2038, 8394, 831, 18359, '1.0000', '10.0000', '10.0000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8723, '2021-08-04', 1529, 8395, 831, 21585, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8724, '2021-08-04', 2037, 8396, 831, 18355, '1.0000', '10.0000', '10.0000', '14.0000', '14.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8725, '2021-08-04', 1610, 8397, 831, 21578, '1.0000', '90.0000', '90.0000', '21.0000', '21.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8726, '2021-08-04', 1512, 8398, 831, 9528, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8727, '2021-08-04', 2697, 8399, 831, NULL, '1.0000', '3.0000', '3.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8728, '2021-08-04', 2108, 8400, 831, 6020, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8729, '2021-08-04', 1307, 8401, 831, NULL, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8730, '2021-08-04', 2842, 8402, 831, NULL, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8731, '2021-08-04', 1665, 8403, 831, 22236, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8732, '2021-08-04', 2088, 8404, 831, NULL, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8733, '2021-08-04', 2618, 8405, 831, 10553, '2.0000', '4.1000', '4.1000', '5.5000', '5.5000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8734, '2021-08-04', 2384, 8406, 831, 4370, '3.0000', '0.4000', '0.4000', '0.5000', '0.5000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8735, '2021-08-04', 2926, 8407, 831, 18789, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8736, '2021-08-04', 1602, 8408, 832, 22497, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8737, '2021-08-04', 2315, 8409, 832, 3069, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '374.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8738, '2021-08-04', 1822, 8410, 832, 11174, '5.0000', '2.4000', '2.4000', '3.0000', '3.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8739, '2021-08-04', 1744, 8411, 832, 22404, '1.0000', '90.0000', '90.0000', '36.0000', '36.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8740, '2021-08-04', 1841, 8412, 832, 4974, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8741, '2021-08-04', 2893, 8413, 832, 18431, '2.0000', '6.0000', '6.0000', '8.0000', '8.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8742, '2021-08-04', 1912, 8414, 832, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8743, '2021-08-04', 1912, 8414, 832, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8744, '2021-08-04', 1912, 8414, 832, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8745, '2021-08-04', 1912, 8414, 832, 1503, '2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8746, '2021-08-04', 1651, 8415, 833, 23209, '1.0000', '6.8300', '6.8300', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8747, '2021-08-04', 1840, 8416, 834, NULL, '1.0000', '-138499292.4246', '-138499292.4246', '0.3000', '0.3000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8748, '2021-08-04', 1841, 8417, 834, 18870, '1.0000', '142.5780', '142.5780', '0.5000', '0.5000', '26.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8749, '2021-08-04', 1935, 8418, 834, 5586, '-11.0000', '0.7200', '0.7200', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8750, '2021-08-04', 1935, 8418, 834, NULL, '12.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-12.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8751, '2021-08-04', 1908, 8419, 834, 5444, '-1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8752, '2021-08-04', 1908, 8419, 834, NULL, '2.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8753, '2021-08-04', 2951, 8420, 834, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8754, '2021-08-04', 1912, 8421, 834, 20584, '2.0000', '0.3200', '0.3200', '1.0000', '1.0000', '33.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8755, '2021-08-04', 2102, 8422, 834, NULL, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8756, '2021-08-04', 2722, 8423, 834, 18900, '1.0000', '8.6900', '8.6900', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8757, '2021-08-04', 2722, 8423, 834, NULL, '1.0000', '8.6900', '8.6900', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8758, '2021-08-04', 1864, 8424, 834, NULL, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8759, '2021-08-04', 2320, 8425, 835, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8760, '2021-08-04', 2247, 8426, 835, 23207, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8761, '2021-08-04', 1791, 8427, 835, NULL, '1.0000', '90.0000', '90.0000', '18.5000', '18.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8762, '2021-08-04', 1763, 8428, 835, 12738, '1.0000', '4.6900', '4.6900', '7.0000', '7.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8763, '2021-08-04', 2893, 8429, 835, 18431, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8764, '2021-08-04', 1409, 8430, 835, 22230, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8765, '2021-08-04', 2872, 8431, 835, 17897, '1.0000', '25.0000', '25.0000', '33.0000', '33.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8766, '2021-08-04', 1433, 8432, 835, 13536, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8767, '2021-08-04', 2699, 8433, 835, 21819, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8768, '2021-08-04', 1612, 8434, 835, 9422, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8769, '2021-08-04', 1368, 8435, 835, 18679, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8770, '2021-08-04', 1502, 8436, 835, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8771, '2021-08-04', 2416, 8437, 835, 4827, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8772, '2021-08-04', 2060, 8438, 835, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8773, '2021-08-04', 1663, 8439, 835, 9787, '1.0000', '90.0000', '90.0000', '129.0000', '129.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8774, '2021-08-04', 1602, 8440, 835, 22497, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8775, '2021-08-04', 2237, 8441, 835, 23208, '2.0000', '1.0600', '1.0600', '2.0000', '2.0000', '38.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8776, '2021-08-04', 2022, 8442, 835, 11856, '2.0000', '3.5000', '3.5000', '4.5000', '4.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8777, '2021-08-04', 2289, 8443, 835, 22481, '2.0000', '0.2300', '0.2300', '0.5000', '0.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8778, '2021-08-04', 2280, 8444, 835, 21586, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8779, '2021-08-04', 2592, 8445, 835, 22651, '1.0000', '7.8983', '7.8983', '11.0000', '11.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8780, '2021-08-04', 2056, 8446, 835, NULL, '1.0000', '5.4100', '5.4100', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8781, '2021-08-04', 2646, 8447, 835, 10600, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8782, '2021-08-04', 2135, 8448, 835, 16894, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8783, '2021-08-04', 1307, 8449, 835, NULL, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8784, '2021-08-04', 2302, 8450, 835, 23210, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8785, '2021-08-04', 2154, 8451, 835, 13638, '1.0000', '10.5000', '10.5000', '14.5000', '14.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8786, '2021-08-04', 1837, 8452, 835, NULL, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8787, '2021-08-04', 1368, 8453, 835, 18679, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8788, '2021-08-04', 1651, 8454, 836, 3222, '-4.0000', '6.7039', '6.7039', '10.5000', '10.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8789, '2021-08-04', 1651, 8454, 836, NULL, '6.0000', '6.7039', '6.7039', '10.5000', '10.5000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8790, '2021-08-04', 2642, 8455, 836, NULL, '1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8791, '2021-08-04', 2102, 8456, 836, NULL, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8792, '2021-08-04', 1640, 8457, 836, 19759, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8793, '2021-08-04', 1369, 8458, 836, 269, '1.0000', '2.2209', '2.2209', '8.0000', '8.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8794, '2021-08-04', 2285, 8459, 836, 2945, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8795, '2021-08-04', 1728, 8460, 836, NULL, '4.0000', '1.9000', '1.9000', '2.5000', '2.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8796, '2021-08-04', 2821, 8461, 836, NULL, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8797, '2021-08-04', 2556, 8462, 836, 7196, '-14.0000', '0.5800', '0.5800', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8798, '2021-08-04', 2556, 8462, 836, NULL, '16.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-16.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8799, '2021-08-04', 2352, 8463, 836, 17437, '1.0000', '20.0000', '20.0000', '26.0000', '26.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8800, '2021-08-04', 2951, 8464, 836, NULL, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8801, '2021-08-04', 1505, 8465, 836, 10379, '1.0000', '13.3062', '13.3062', '20.0000', '20.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8802, '2021-08-04', 2085, 8466, 836, 8628, '10.0000', '-1.0741', '-1.0741', '2.0000', '2.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8803, '2021-08-04', 2945, 8467, 836, NULL, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8804, '2021-08-04', 1381, 8468, 836, 281, '1.0000', '156.2454', '156.2454', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8805, '2021-08-04', 2315, 8469, 836, 2735, '-41.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8806, '2021-08-04', 2315, 8469, 836, NULL, '43.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-43.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8807, '2021-08-04', 2754, 8470, 836, NULL, '4.0000', '0.0800', '0.0800', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8808, '2021-08-04', 2263, 8471, 836, 17334, '1.0000', '6.5600', '6.5600', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8809, '2021-08-04', 1665, 8472, 836, 3235, '-8.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8810, '2021-08-04', 1665, 8472, 836, NULL, '9.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-9.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8811, '2021-08-04', 1863, 8473, 836, 10808, '2.0000', '0.4136', '0.4136', '2.0000', '2.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8812, '2021-08-04', 2272, 8474, 836, 2932, '-1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8813, '2021-08-04', 2272, 8474, 836, NULL, '2.0000', '5.5000', '5.5000', '7.5000', '7.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8814, '2021-08-04', 2778, 8475, 837, 19056, '1.0000', '89.4000', '89.4000', '120.0000', '120.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8815, '2021-08-04', 2484, 8476, 837, 5196, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8816, '2021-08-04', 2302, 8477, 838, 23210, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8817, '2021-08-04', 1602, 8478, 838, 22497, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8818, '2021-08-04', 2071, 8479, 838, NULL, '2.0000', '5.0000', '5.0000', '6.5000', '6.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8819, '2021-08-04', 1346, 8480, 838, 22215, '6.0000', '0.9300', '0.9300', '1.5000', '1.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8820, '2021-08-04', 2679, 8481, 838, 22630, '1.0000', '32.3500', '32.3500', '43.0000', '43.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8821, '2021-08-04', 1489, 8482, 838, 1492, '1.0000', '90.0000', '90.0000', '37.0000', '37.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8822, '2021-08-04', 1326, 8483, 838, 3365, '1.0000', '3.0300', '3.0300', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8823, '2021-08-04', 1368, 8484, 838, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8824, '2021-08-04', 2807, 8485, 838, 16931, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8825, '2021-08-04', 2011, 8486, 838, 6434, '1.0000', '0.5300', '0.5300', '1.0000', '1.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8826, '2021-08-04', 2248, 8487, 838, 22624, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8827, '2021-08-04', 2169, 8488, 838, 18684, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8828, '2021-08-04', 2942, 8489, 838, 21548, '3.0000', '0.4900', '0.4900', '2.0000', '2.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8829, '2021-08-04', 1478, 8490, 838, 1490, '1.0000', '90.0000', '90.0000', '28.0000', '28.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8830, '2021-08-04', 1782, 8491, 838, 4935, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8831, '2021-08-04', 2208, 8492, 838, 8158, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8832, '2021-08-04', 2219, 8493, 838, 8169, '1.0000', '12.0000', '12.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8833, '2021-08-04', 2221, 8494, 838, 22218, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8834, '2021-08-04', 2187, 8495, 838, 8163, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8835, '2021-08-04', 1807, 8496, 838, 3540, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8836, '2021-08-04', 2864, 8497, 839, 18426, '5.0000', '1.5000', '1.5000', '2.0000', '2.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8837, '2021-08-04', 2732, 8498, 839, 22641, '1.0000', '36.1100', '36.1100', '44.0000', '44.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8838, '2021-08-04', 2699, 8499, 839, 21819, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8839, '2021-08-04', 1666, 8500, 839, 23301, '1.0000', '88.6702', '88.6702', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8840, '2021-08-04', 1908, 8501, 839, 5510, '1.0000', '1.7500', '1.7500', '1.0000', '1.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8841, '2021-08-04', 2320, 8502, 839, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8842, '2021-08-04', 1780, 8503, 839, 22494, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8843, '2021-08-04', 1871, 8504, 839, 22495, '10.0000', '90.0000', '90.0000', '3.0000', '3.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8844, '2021-08-04', 2037, 8505, 840, 22540, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '23.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8845, '2021-08-04', 2600, 8506, 840, 19828, '1.0000', '56.5000', '56.5000', '74.5000', '74.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8846, '2021-08-05', 1967, 8507, 841, 23691, '1.0000', '19.5900', '19.5900', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8847, '2021-08-05', 1536, 8508, 841, 13735, '14.0000', '90.0000', '90.0000', '5.0000', '5.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8848, '2021-08-05', 1639, 8509, 841, NULL, '1.0000', '6.6300', '6.6300', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8849, '2021-08-05', 2279, 8510, 841, 23106, '2.0000', '2.6000', '2.6000', '4.0000', '4.0000', '28.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8850, '2021-08-05', 2320, 8511, 841, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8851, '2021-08-05', 2823, 8512, 841, 19868, '1.0000', '11.2100', '11.2100', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8852, '2021-08-05', 1431, 8513, 841, NULL, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8853, '2021-08-05', 2556, 8514, 841, NULL, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8854, '2021-08-05', 2152, 8515, 841, NULL, '1.0000', '10.8300', '10.8300', '14.0000', '14.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8855, '2021-08-05', 1502, 8516, 841, NULL, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8856, '2021-08-05', 1689, 8517, 841, 13742, '1.0000', '12.3500', '12.3500', '17.0000', '17.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8857, '2021-08-05', 1381, 8518, 841, 22391, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8858, '2021-08-05', 2073, 8519, 841, NULL, '1.0000', '2.3000', '2.3000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8859, '2021-08-05', 1529, 8520, 841, 13746, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8860, '2021-08-05', 1533, 8521, 841, NULL, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8861, '2021-08-05', 2344, 8522, 842, 11867, '1.0000', '18.2000', '18.2000', '24.5000', '24.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8862, '2021-08-05', 1433, 8523, 842, 13536, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8863, '2021-08-05', 2169, 8524, 842, 23579, '1.0000', '0.8909', '0.8909', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8864, '2021-08-05', 2603, 8525, 842, 15794, '1.0000', '1.0000', '1.0000', '1.3000', '1.3000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8865, '2021-08-05', 1519, 8526, 842, 1524, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8866, '2021-08-05', 2029, 8527, 842, 21811, '1.0000', '11.0000', '11.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8867, '2021-08-05', 2444, 8528, 842, 16935, '1.0000', '6.0000', '6.0000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8868, '2021-08-05', 1441, 8529, 842, NULL, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8869, '2021-08-05', 1748, 8530, 842, 1527, '10.0000', '0.3200', '0.3200', '0.5000', '0.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8870, '2021-08-05', 2237, 8531, 842, 23208, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '37.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8871, '2021-08-05', 2769, 8532, 842, NULL, '4.0000', '0.5000', '0.5000', '2.5000', '2.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8872, '2021-08-05', 1512, 8533, 842, 9528, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8873, '2021-08-05', 1529, 8534, 842, 23578, '1.0000', '10292.4448', '10292.4448', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8874, '2021-08-05', 2250, 8535, 842, 23590, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8875, '2021-08-05', 2623, 8536, 842, NULL, '1.0000', '4.3000', '4.3000', '5.5000', '5.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8876, '2021-08-05', 2366, 8537, 842, 13636, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8877, '2021-08-05', 1945, 8538, 843, 18071, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8878, '2021-08-05', 2344, 8539, 843, 3887, '1.0000', '18.2000', '18.2000', '24.5000', '24.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8879, '2021-08-05', 2169, 8540, 844, 23579, '1.0000', '0.8909', '0.8909', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8880, '2021-08-05', 2732, 8541, 844, NULL, '1.0000', '36.1100', '36.1100', '44.0000', '44.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8881, '2021-08-05', 1863, 8542, 844, 22488, '10.0000', '1.2200', '1.2200', '2.0000', '2.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8882, '2021-08-05', 1422, 8543, 845, NULL, '1.0000', '21.0000', '21.0000', '28.0000', '28.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8883, '2021-08-05', 1423, 8544, 845, 19835, '1.0000', '30.0000', '30.0000', '33.0000', '33.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8884, '2021-08-05', 1404, 8545, 845, NULL, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8885, '2021-08-05', 1312, 8546, 845, NULL, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8886, '2021-08-05', 2286, 8547, 845, NULL, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8887, '2021-08-05', 2286, 8548, 845, NULL, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8888, '2021-08-05', 1646, 8549, 845, 19840, '1.0000', '4.5300', '4.5300', '7.5000', '7.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8889, '2021-08-05', 2506, 8550, 845, NULL, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8890, '2021-08-05', 2234, 8551, 845, NULL, '1.0000', '13.6000', '13.6000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8891, '2021-08-05', 1928, 8552, 845, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8892, '2021-08-05', 2286, 8553, 845, NULL, '3.0000', '4.3000', '4.3000', '6.0000', '6.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8893, '2021-08-05', 1760, 8554, 845, NULL, '4.0000', '1.5900', '1.5900', '2.0000', '2.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8894, '2021-08-05', 2547, 8555, 845, 13764, '1.0000', '8.7600', '8.7600', '11.5000', '11.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8895, '2021-08-05', 1961, 8556, 845, NULL, '1.0000', '16.3900', '16.3900', '26.0000', '26.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8896, '2021-08-05', 2275, 8557, 845, 19353, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8897, '2021-08-05', 1967, 8558, 845, 23691, '1.0000', '19.5900', '19.5900', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8898, '2021-08-05', 2817, 8559, 846, 22483, '10.0000', '1.8000', '1.8000', '2.5000', '2.5000', '90.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8899, '2021-08-05', 2866, 8560, 846, 17783, '20.0000', '0.8800', '0.8800', '1.5000', '1.5000', '130.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8900, '2021-08-05', 1504, 8561, 846, 23217, '10.0000', '14.6809', '14.6809', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8901, '2021-08-05', 2105, 8562, 847, NULL, '3.0000', '1.3500', '1.3500', '3.0000', '3.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8902, '2021-08-05', 2242, 8563, 847, NULL, '3.0000', '0.4800', '0.4800', '1.0000', '1.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8903, '2021-08-05', 2037, 8564, 847, 22540, '1.0000', '10.7500', '10.7500', '14.0000', '14.0000', '22.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8904, '2021-08-05', 2108, 8565, 847, NULL, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8905, '2021-08-05', 2315, 8566, 847, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8906, '2021-08-05', 2989, 8567, 848, NULL, '2.0000', '0.9200', '0.9200', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8907, '2021-08-05', 1505, 8568, 848, 10379, '1.0000', '13.3062', '13.3062', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8908, '2021-08-05', 2315, 8569, 848, 2735, '-43.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8909, '2021-08-05', 2315, 8569, 848, NULL, '45.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-45.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8910, '2021-08-05', 1527, 8570, 849, 18916, '3.0000', '13.1000', '13.1000', '17.5000', '17.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8911, '2021-08-05', 1322, 8571, 849, 1016, '1.0000', '-76.1143', '-76.1143', '6.0000', '6.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8912, '2021-08-05', 1837, 8572, 849, NULL, '1.0000', '0.9642', '0.9642', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8913, '2021-08-05', 2241, 8573, 849, 3058, '-2.0000', '6.5900', '6.5900', '9.0000', '9.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8914, '2021-08-05', 2241, 8573, 849, NULL, '3.0000', '6.5900', '6.5900', '9.0000', '9.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8915, '2021-08-05', 1346, 8574, 849, 3319, '2.0000', '1.0594', '1.0594', '1.5000', '1.5000', '15.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8916, '2021-08-05', 2556, 8575, 849, 7196, '-16.0000', '0.5800', '0.5800', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8917, '2021-08-05', 2556, 8575, 849, NULL, '17.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-17.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8918, '2021-08-05', 2979, 8576, 849, NULL, '1.0000', '15.0000', '15.0000', '17.5000', '17.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8919, '2021-08-05', 2167, 8577, 849, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8920, '2021-08-05', 1609, 8578, 850, NULL, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8921, '2021-08-05', 1771, 8579, 850, 6775, '1.0000', '5.2450', '5.2450', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8922, '2021-08-05', 2088, 8580, 851, 21781, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8923, '2021-08-05', 2167, 8581, 851, 1603, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8924, '2021-08-05', 1812, 8582, 852, 8224, '-3.0000', '7.8900', '7.8900', '10.5000', '10.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8925, '2021-08-05', 1812, 8582, 852, NULL, '4.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8926, '2021-08-05', 1406, 8583, 852, 22300, '1.0000', '17.1816', '17.1816', '23.0000', '23.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8927, '2021-08-05', 1864, 8584, 852, 7389, '-1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8928, '2021-08-05', 1864, 8584, 852, NULL, '2.0000', '6.0500', '6.0500', '8.0000', '8.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8929, '2021-08-05', 1689, 8585, 852, 4897, '1.0000', '60.7198', '60.7198', '17.0000', '17.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8930, '2021-08-05', 1381, 8586, 852, 281, '1.0000', '156.2454', '156.2454', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8931, '2021-08-05', 2315, 8587, 852, 2735, '-45.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8932, '2021-08-05', 2315, 8587, 852, NULL, '47.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-47.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8933, '2021-08-05', 2943, 8588, 852, 19987, '-1.0000', '2.1800', '2.1800', '3.5000', '3.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8934, '2021-08-05', 2943, 8588, 852, NULL, '2.0000', '2.1800', '2.1800', '3.5000', '3.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8935, '2021-08-05', 1529, 8589, 852, NULL, '1.0000', '3.5500', '3.5500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8936, '2021-08-05', 1863, 8590, 852, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8937, '2021-08-05', 2167, 8591, 852, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8938, '2021-08-05', 2293, 8592, 853, 3064, '3.0000', '1.4400', '1.4400', '2.0000', '2.0000', '76.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8939, '2021-08-05', 2971, 8593, 853, 21826, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8940, '2021-08-05', 1616, 8594, 853, NULL, '1.0000', '4.0000', '4.0000', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8941, '2021-08-05', 1763, 8595, 853, 12738, '1.0000', '4.6900', '4.6900', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8942, '2021-08-05', 2060, 8596, 853, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8943, '2021-08-05', 2250, 8597, 853, 23590, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8944, '2021-08-05', 2167, 8598, 853, 22219, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8945, '2021-08-05', 1741, 8599, 853, 6793, '1.0000', '90.0000', '90.0000', '33.5000', '33.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8946, '2021-08-05', 2548, 8600, 853, 17365, '1.0000', '6.7200', '6.7200', '9.0000', '9.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8947, '2021-08-05', 1961, 8601, 853, 22656, '1.0000', '18.3967', '18.3967', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8948, '2021-08-05', 1504, 8602, 853, 23217, '20.0000', '14.6809', '14.6809', '2.0000', '2.0000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8949, '2021-08-05', 2360, 8603, 853, 17042, '1.0000', '0.5200', '0.5200', '0.6900', '0.6900', '53.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8950, '2021-08-05', 2460, 8604, 853, 22491, '1.0000', '32.7700', '32.7700', '43.0000', '43.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8951, '2021-08-05', 2169, 8605, 853, 23579, '1.0000', '0.8909', '0.8909', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8952, '2021-08-05', 2285, 8606, 853, 22649, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8953, '2021-08-05', 2829, 8607, 853, 16965, '1.0000', '23.8700', '23.8700', '33.0000', '33.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8954, '2021-08-05', 1596, 8608, 853, 23617, '1.0000', '2.5700', '2.5700', '3.8300', '3.8300', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8955, '2021-08-05', 1812, 8609, 853, 23603, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8956, '2021-08-05', 2307, 8610, 853, 22502, '1.0000', '140.0000', '140.0000', '170.0000', '170.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8957, '2021-08-05', 1675, 8611, 853, 22655, '1.0000', '44.1200', '44.1200', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8958, '2021-08-05', 2105, 8612, 853, 2511, '2.0000', '1.3500', '1.3500', '3.0000', '3.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8959, '2021-08-05', 1686, 8613, 853, 2451, '1.0000', '90.0000', '90.0000', '35.0000', '35.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8960, '2021-08-05', 1425, 8614, 853, 23626, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8961, '2021-08-05', 2518, 8615, 853, 22232, '1.0000', '107.1800', '107.1800', '154.0000', '154.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8962, '2021-08-05', 1846, 8616, 853, 22500, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8963, '2021-08-05', 1602, 8617, 853, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8964, '2021-08-05', 2473, 8618, 853, 10575, '2.0000', '12.0000', '12.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8965, '2021-08-05', 2473, 8618, 853, 5094, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8966, '2021-08-05', 1624, 8619, 853, 23206, '1.0000', '49.6000', '49.6000', '39.0000', '39.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8967, '2021-08-05', 1376, 8620, 853, 23200, '1.0000', '42.0000', '42.0000', '55.5000', '55.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8968, '2021-08-05', 3013, 8621, 853, NULL, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8969, '2021-08-05', 1810, 8622, 853, 13541, '1.0000', '8.0500', '8.0500', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8970, '2021-08-05', 2548, 8623, 854, 17365, '1.0000', '6.7200', '6.7200', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8971, '2021-08-05', 1677, 8624, 855, 18835, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8972, '2021-08-05', 3029, 8625, 855, NULL, '1.0000', '4.7700', '4.7700', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8973, '2021-08-05', 1654, 8626, 855, NULL, '1.0000', '8.8700', '8.8700', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8974, '2021-08-05', 1651, 8627, 855, 3222, '-6.0000', '6.7039', '6.7039', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8975, '2021-08-05', 1651, 8627, 855, NULL, '7.0000', '6.7039', '6.7039', '10.0000', '10.0000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8976, '2021-08-05', 2592, 8628, 855, 10812, '-2.0000', '7.9670', '7.9670', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8977, '2021-08-05', 2592, 8628, 855, NULL, '3.0000', '7.9670', '7.9670', '11.0000', '11.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8978, '2021-08-05', 1667, 8629, 855, 9745, '-5.0000', '5.9400', '5.9400', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8979, '2021-08-05', 1667, 8629, 855, NULL, '6.0000', '5.9400', '5.9400', '8.0000', '8.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8980, '2021-08-05', 1767, 8630, 855, 4502, '-2.0000', '4.6052', '4.6052', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8981, '2021-08-05', 1767, 8630, 855, NULL, '3.0000', '4.6052', '4.6052', '6.5000', '6.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8982, '2021-08-05', 2237, 8631, 856, 23208, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '36.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8983, '2021-08-05', 2942, 8632, 856, 21548, '2.0000', '0.4900', '0.4900', '2.0000', '2.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8984, '2021-08-05', 2759, 8633, 856, 22642, '1.0000', '3.9500', '3.9500', '5.5000', '5.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8985, '2021-08-05', 1837, 8634, 856, NULL, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8986, '2021-08-05', 2459, 8635, 856, 23598, '1.0000', '4.6766', '4.6766', '7.0000', '7.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8987, '2021-08-05', 1704, 8636, 856, 23582, '1.0000', '585.6596', '585.6596', '35.5000', '35.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8988, '2021-08-05', 1602, 8637, 856, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8989, '2021-08-05', 2548, 8638, 856, 17365, '1.0000', '6.7200', '6.7200', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8990, '2021-08-05', 1523, 8639, 856, 11170, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8991, '2021-08-05', 2325, 8640, 856, 21833, '2.0000', '5.5000', '5.5000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8992, '2021-08-05', 2324, 8641, 856, 21831, '1.0000', '10.5000', '10.5000', '14.5000', '14.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8993, '2021-08-05', 2233, 8642, 856, 22654, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8994, '2021-08-05', 2810, 8643, 856, 23575, '5.0000', '2.2000', '2.2000', '2.9000', '2.9000', '25.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8995, '2021-08-05', 1624, 8644, 856, 23206, '2.0000', '49.6000', '49.6000', '39.0000', '39.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (8996, '2021-08-05', 2821, 8645, 856, 17043, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8997, '2021-08-05', 1439, 8646, 856, 3279, '1.0000', '1.0000', '1.0000', '1.3000', '1.3000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8998, '2021-08-05', 1863, 8647, 856, 22488, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (8999, '2021-08-05', 1523, 8648, 856, 11170, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9000, '2021-08-05', 1387, 8649, 856, NULL, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9001, '2021-08-05', 1432, 8650, 856, 23627, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9002, '2021-08-05', 1728, 8651, 856, 17366, '4.0000', '90.0000', '90.0000', '2.5000', '2.5000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9003, '2021-08-05', 1602, 8652, 856, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9004, '2021-08-05', 2545, 8653, 857, NULL, '1.0000', '5.8819', '5.8819', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9005, '2021-08-05', 1339, 8654, 857, 235, '1.0000', '1.6012', '1.6012', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9006, '2021-08-05', 1330, 8655, 857, 14393, '-3.0000', '3.7000', '3.7000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9007, '2021-08-05', 1330, 8655, 857, NULL, '4.0000', '3.7000', '3.7000', '5.0000', '5.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9008, '2021-08-05', 2285, 8656, 857, 2945, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9009, '2021-08-05', 2068, 8657, 857, 5568, '-5.0000', '13.1000', '13.1000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9010, '2021-08-05', 2068, 8657, 857, NULL, '6.0000', '13.1000', '13.1000', '17.0000', '17.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9011, '2021-08-05', 2769, 8658, 857, 22266, '1.0000', '1.5200', '1.5200', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9012, '2021-08-05', 2244, 8659, 857, NULL, '1.0000', '7.3600', '7.3600', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9013, '2021-08-05', 1647, 8660, 857, 3218, '-2.0000', '4.7200', '4.7200', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9014, '2021-08-05', 1647, 8660, 857, NULL, '3.0000', '4.7200', '4.7200', '7.5000', '7.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9015, '2021-08-05', 1369, 8661, 857, 269, '1.0000', '2.2209', '2.2209', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9016, '2021-08-05', 1533, 8662, 858, 10385, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9017, '2021-08-05', 2545, 8663, 858, 18408, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9018, '2021-08-05', 2699, 8664, 858, 21819, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9019, '2021-08-05', 2864, 8665, 858, 18426, '5.0000', '1.5000', '1.5000', '2.0000', '2.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9020, '2021-08-05', 3018, 8666, 858, 23609, '1.0000', '4.9100', '4.9100', '6.5000', '6.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9021, '2021-08-05', 1643, 8667, 858, NULL, '1.0000', '90.0000', '90.0000', '53.0000', '53.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9022, '2021-08-05', 1425, 8668, 859, NULL, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9023, '2021-08-05', 2294, 8669, 859, NULL, '1.0000', '3.5000', '3.5000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9024, '2021-08-05', 1533, 8670, 859, NULL, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9025, '2021-08-05', 1666, 8671, 859, NULL, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9026, '2021-08-05', 1757, 8672, 859, 13772, '2.0000', '4.4000', '4.4000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9027, '2021-08-05', 2285, 8673, 859, NULL, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9028, '2021-08-05', 2351, 8674, 859, NULL, '2.0000', '17.7000', '17.7000', '24.0000', '24.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9029, '2021-08-05', 2085, 8675, 859, NULL, '10.0000', '13.3400', '13.3400', '2.0000', '2.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9030, '2021-08-05', 1376, 8676, 860, 23188, '2.0000', '42.0000', '42.0000', '55.5000', '55.5000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9031, '2021-08-05', 2085, 8677, 861, NULL, '1.0000', '13.3400', '13.3400', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9032, '2021-08-05', 1616, 8678, 862, NULL, '2.0000', '4.0000', '4.0000', '7.5000', '7.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9033, '2021-08-06', 1805, 8679, 863, NULL, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9034, '2021-08-06', 1654, 8680, 863, NULL, '1.0000', '90.0000', '90.0000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9035, '2021-08-06', 2411, 8681, 863, NULL, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9036, '2021-08-06', 1761, 8682, 863, 19369, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9037, '2021-08-06', 2262, 8683, 863, NULL, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9038, '2021-08-06', 2411, 8684, 864, NULL, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9039, '2021-08-06', 2951, 8685, 865, NULL, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9040, '2021-08-06', 2273, 8686, 865, NULL, '1.0000', '2.6700', '2.6700', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9041, '2021-08-06', 2546, 8687, 865, NULL, '1.0000', '13.6300', '13.6300', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9042, '2021-08-06', 2135, 8688, 865, 23175, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '29.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9043, '2021-08-06', 1765, 8689, 866, NULL, '1.0000', '5.3900', '5.3900', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9044, '2021-08-06', 1592, 8690, 867, NULL, '1.0000', '35.9000', '35.9000', '47.0000', '47.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9045, '2021-08-06', 2612, 8691, 868, NULL, '1.0000', '7.1600', '7.1600', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9046, '2021-08-06', 1867, 8692, 868, 23685, '20.0000', '1.0500', '1.0500', '1.3000', '1.3000', '30.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9047, '2021-08-06', 2693, 8693, 868, 23177, '1.0000', '25.3300', '25.3300', '33.0000', '33.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9048, '2021-08-06', 1767, 8694, 868, 13767, '1.0000', '4.6000', '4.6000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9049, '2021-08-06', 2936, 8695, 868, 23121, '1.0000', '6.0400', '6.0400', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9050, '2021-08-06', 1523, 8696, 868, 13750, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9051, '2021-08-06', 1640, 8697, 868, NULL, '1.0000', '2.6500', '2.6500', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9052, '2021-08-06', 2951, 8698, 868, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9053, '2021-08-06', 1523, 8699, 868, 13750, '3.0000', '0.9300', '0.9300', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9054, '2021-08-06', 1771, 8700, 868, 13766, '1.0000', '3.3900', '3.3900', '6.0000', '6.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9055, '2021-08-06', 2951, 8701, 868, NULL, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9056, '2021-08-06', 2916, 8702, 868, 23676, '1.0000', '15.0176', '15.0176', '20.0000', '20.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9057, '2021-08-06', 2992, 8703, 868, 23119, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '29.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9058, '2021-08-06', 2169, 8704, 868, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9059, '2021-08-06', 1871, 8705, 869, 8223, '10.0000', '24.5246', '24.5246', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9060, '2021-08-06', 2068, 8706, 869, 5568, '-6.0000', '13.1000', '13.1000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9061, '2021-08-06', 2068, 8706, 869, NULL, '7.0000', '13.1000', '13.1000', '17.0000', '17.0000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9062, '2021-08-06', 1689, 8707, 869, 4897, '1.0000', '60.7198', '60.7198', '17.0000', '17.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9063, '2021-08-06', 2320, 8708, 869, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9064, '2021-08-06', 2862, 8709, 869, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9065, '2021-08-06', 1537, 8710, 869, 18820, '1.0000', '40.2700', '40.2700', '51.0000', '51.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9066, '2021-08-06', 2272, 8711, 869, 2932, '-2.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9067, '2021-08-06', 2272, 8711, 869, NULL, '3.0000', '5.5000', '5.5000', '7.5000', '7.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9068, '2021-08-06', 2169, 8712, 869, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9069, '2021-08-06', 1912, 8713, 869, 20584, '3.0000', '0.3200', '0.3200', '1.0000', '1.0000', '30.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9070, '2021-08-06', 2254, 8714, 869, 2097, '1.0000', '17.9400', '17.9400', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9071, '2021-08-06', 2255, 8715, 869, 18849, '1.0000', '17.4900', '17.4900', '24.0000', '24.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9072, '2021-08-06', 2604, 8716, 869, NULL, '1.0000', '90.0000', '90.0000', '120.0000', '120.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9073, '2021-08-06', 2678, 8717, 869, NULL, '1.0000', '37.0000', '37.0000', '48.0000', '48.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9074, '2021-08-06', 2573, 8718, 869, 22345, '1.0000', '7.7594', '7.7594', '12.5000', '12.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9075, '2021-08-06', 2272, 8719, 869, 2932, '-2.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9076, '2021-08-06', 2272, 8719, 869, NULL, '3.0000', '5.5000', '5.5000', '7.5000', '7.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9077, '2021-08-06', 1346, 8720, 869, 3319, '2.0000', '1.0594', '1.0594', '1.5000', '1.5000', '13.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9078, '2021-08-06', 2169, 8721, 869, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '41.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9079, '2021-08-06', 2916, 8722, 869, NULL, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9080, '2021-08-06', 2992, 8723, 869, NULL, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9081, '2021-08-06', 2072, 8724, 869, NULL, '1.0000', '8.1200', '8.1200', '11.0000', '11.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9082, '2021-08-06', 2642, 8725, 869, 10573, '-1.0000', '9.2000', '9.2000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9083, '2021-08-06', 2642, 8725, 869, NULL, '2.0000', '9.2000', '9.2000', '12.0000', '12.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9084, '2021-08-06', 2539, 8726, 869, NULL, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9085, '2021-08-06', 2358, 8727, 869, 22278, '2.0000', '13.6000', '13.6000', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9086, '2021-08-06', 1688, 8728, 869, NULL, '1.0000', '18.5000', '18.5000', '24.5000', '24.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9087, '2021-08-06', 1574, 8729, 869, 7593, '-14.0000', '1.9600', '1.9600', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9088, '2021-08-06', 1574, 8729, 869, NULL, '15.0000', '1.9600', '1.9600', '2.5000', '2.5000', '-15.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9089, '2021-08-06', 2285, 8730, 869, 2945, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9090, '2021-08-06', 1632, 8731, 869, 3206, '-2.0000', '19.5000', '19.5000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9091, '2021-08-06', 1632, 8731, 869, NULL, '3.0000', '19.5000', '19.5000', '25.0000', '25.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9092, '2021-08-06', 2862, 8732, 869, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9093, '2021-08-06', 1457, 8733, 869, 109, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9094, '2021-08-06', 1456, 8734, 869, 108, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9095, '2021-08-06', 1852, 8735, 870, 19331, '1.0000', '14.9000', '14.9000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9096, '2021-08-06', 2283, 8736, 870, NULL, '3.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9097, '2021-08-06', 2624, 8737, 870, 19843, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9098, '2021-08-06', 1706, 8738, 870, 19842, '1.0000', '15.2700', '15.2700', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9099, '2021-08-06', 1519, 8739, 870, 23167, '2.0000', '3.3500', '3.3500', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9100, '2021-08-06', 1852, 8740, 870, 19331, '2.0000', '14.9000', '14.9000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9101, '2021-08-06', 2989, 8741, 870, 22602, '6.0000', '0.9200', '0.9200', '1.0000', '1.0000', '14.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9102, '2021-08-06', 2275, 8742, 870, 19353, '4.0000', '1.0900', '1.0900', '1.5000', '1.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9103, '2021-08-06', 2607, 8743, 871, 18805, '1.0000', '1.4000', '1.4000', '1.7000', '1.7000', '13.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9104, '2021-08-06', 2169, 8744, 871, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '39.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9105, '2021-08-06', 2068, 8745, 871, 5568, '-7.0000', '13.1000', '13.1000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9106, '2021-08-06', 2068, 8745, 871, NULL, '8.0000', '13.1000', '13.1000', '17.0000', '17.0000', '-8.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9107, '2021-08-06', 1863, 8746, 871, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9108, '2021-08-06', 2821, 8747, 871, NULL, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9109, '2021-08-06', 2237, 8748, 871, 2781, '-2.0000', '1.0600', '1.0600', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9110, '2021-08-06', 2237, 8748, 871, NULL, '3.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9111, '2021-08-06', 1651, 8749, 872, 3222, '-7.0000', '6.7039', '6.7039', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9112, '2021-08-06', 1651, 8749, 872, NULL, '8.0000', '6.7039', '6.7039', '10.0000', '10.0000', '-8.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9113, '2021-08-06', 1687, 8750, 872, 5785, '-1.0000', '165.9024', '165.9024', '15.5000', '15.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9114, '2021-08-06', 1687, 8750, 872, NULL, '2.0000', '165.9024', '165.9024', '15.5000', '15.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9115, '2021-08-06', 1629, 8751, 872, 3204, '-2.0000', '15.5000', '15.5000', '21.0000', '21.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9116, '2021-08-06', 1629, 8751, 872, NULL, '3.0000', '15.5000', '15.5000', '21.0000', '21.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9117, '2021-08-06', 2315, 8752, 872, 2735, '-47.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9118, '2021-08-06', 2315, 8752, 872, NULL, '51.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-51.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9119, '2021-08-06', 2506, 8753, 872, 21511, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9120, '2021-08-06', 2274, 8754, 872, 19250, '2.0000', '3.9800', '3.9800', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9121, '2021-08-06', 2410, 8755, 872, NULL, '1.0000', '4.3200', '4.3200', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9122, '2021-08-06', 1941, 8756, 873, 5601, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9123, '2021-08-06', 1851, 8757, 873, 23623, '1.0000', '12.3652', '12.3652', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9124, '2021-08-06', 2699, 8758, 873, 21819, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9125, '2021-08-06', 2592, 8759, 873, 22651, '1.0000', '7.8983', '7.8983', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9126, '2021-08-06', 3018, 8760, 873, 23609, '1.0000', '4.9100', '4.9100', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9127, '2021-08-06', 2224, 8761, 873, 1714, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9128, '2021-08-06', 2224, 8761, 873, NULL, '3.0000', '14.0000', '14.0000', '16.0000', '16.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9129, '2021-08-06', 2142, 8762, 873, NULL, '1.0000', '57.0000', '57.0000', '76.0000', '76.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9130, '2021-08-06', 2085, 8763, 873, 21574, '10.0000', '13.3400', '13.3400', '2.0000', '2.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9131, '2021-08-06', 1432, 8764, 873, 23627, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9132, '2021-08-06', 2348, 8765, 873, 3883, '1.0000', '22.0300', '22.0300', '29.0000', '29.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9133, '2021-08-06', 2251, 8766, 873, 23589, '1.0000', '11.6950', '11.6950', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9134, '2021-08-06', 2289, 8767, 873, 22481, '3.0000', '0.2300', '0.2300', '0.5000', '0.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9135, '2021-08-06', 2940, 8768, 873, 21556, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9136, '2021-08-06', 1643, 8769, 873, NULL, '1.0000', '90.0000', '90.0000', '53.0000', '53.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9137, '2021-08-06', 1935, 8770, 873, 22646, '1.0000', '23.0400', '23.0400', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9138, '2021-08-06', 1825, 8771, 873, 13549, '1.0000', '4.5000', '4.5000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9139, '2021-08-06', 1620, 8772, 873, 22638, '4.0000', '39.8457', '39.8457', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9140, '2021-08-06', 2327, 8773, 873, 23719, '29.0000', '4.5000', '4.5000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9141, '2021-08-06', 1346, 8774, 873, 22215, '2.0000', '0.9300', '0.9300', '1.5000', '1.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9142, '2021-08-06', 1377, 8775, 874, 21572, '1.0000', '90.0000', '90.0000', '45.0000', '45.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9143, '2021-08-06', 1840, 8776, 875, 19856, '1.0000', '0.2400', '0.2400', '0.3000', '0.3000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9144, '2021-08-06', 1854, 8777, 875, NULL, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9145, '2021-08-06', 2660, 8778, 875, 23143, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9146, '2021-08-06', 2384, 8779, 875, NULL, '4.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9147, '2021-08-06', 2275, 8780, 875, 19353, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9148, '2021-08-06', 2655, 8781, 875, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9149, '2021-08-06', 1647, 8782, 875, 19838, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9150, '2021-08-06', 2821, 8783, 875, 19816, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9151, '2021-08-06', 1912, 8784, 876, NULL, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9152, '2021-08-06', 2513, 8785, 876, 7519, '1.0000', '40.0000', '40.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9153, '2021-08-06', 2317, 8786, 876, 15799, '2.0000', '15.0000', '15.0000', '18.0000', '18.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9154, '2021-08-06', 2796, 8787, 876, 19038, '1.0000', '30.7800', '30.7800', '60.0000', '60.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9155, '2021-08-06', 2787, 8788, 876, 19047, '1.0000', '16.0200', '16.0200', '35.0000', '35.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9156, '2021-08-06', 2971, 8789, 876, 21826, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9157, '2021-08-06', 2228, 8790, 877, 22517, '1.0000', '25.0000', '25.0000', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9158, '2021-08-06', 2253, 8791, 877, NULL, '1.0000', '9.2500', '9.2500', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9159, '2021-08-06', 2829, 8792, 877, NULL, '1.0000', '23.8700', '23.8700', '33.0000', '33.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9160, '2021-08-06', 2242, 8793, 877, NULL, '2.0000', '0.4800', '0.4800', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9161, '2021-08-06', 2760, 8794, 877, NULL, '1.0000', '7.9300', '7.9300', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9162, '2021-08-06', 1602, 8795, 877, NULL, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9163, '2021-08-06', 1863, 8796, 877, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9164, '2021-08-06', 2699, 8797, 877, NULL, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9165, '2021-08-06', 1812, 8798, 877, 23688, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9166, '2021-08-06', 2315, 8799, 877, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9167, '2021-08-06', 1950, 8800, 877, NULL, '1.0000', '2.7500', '2.7500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9168, '2021-08-06', 2655, 8801, 877, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9169, '2021-08-06', 2491, 8802, 877, 19844, '1.0000', '12.2000', '12.2000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9170, '2021-08-06', 1592, 8803, 877, NULL, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9171, '2021-08-06', 1665, 8804, 878, 3235, '-9.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9172, '2021-08-06', 1665, 8804, 878, NULL, '10.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9173, '2021-08-06', 1602, 8805, 879, 5897, '1.0000', '6.7859', '6.7859', '10.0000', '10.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9174, '2021-08-06', 1602, 8806, 880, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '16.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9175, '2021-08-06', 2275, 8807, 881, 19353, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9176, '2021-08-06', 1501, 8808, 881, NULL, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9177, '2021-08-06', 1620, 8809, 881, 23135, '4.0000', '2.2300', '2.2300', '4.0000', '4.0000', '11.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9178, '2021-08-06', 2320, 8810, 881, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9179, '2021-08-06', 1868, 8811, 881, NULL, '10.0000', '4.0300', '4.0300', '5.0000', '5.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9180, '2021-08-06', 2105, 8812, 881, NULL, '2.0000', '1.3500', '1.3500', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9181, '2021-08-06', 2453, 8813, 881, NULL, '1.0000', '2.7000', '2.7000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9182, '2021-08-06', 1727, 8814, 881, 23113, '1.0000', '1.9500', '1.9500', '2.6000', '2.6000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9183, '2021-08-06', 2279, 8815, 881, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '27.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9184, '2021-08-07', 2459, 8816, 882, 22608, '2.0000', '5.5000', '5.5000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9185, '2021-08-07', 1787, 8817, 882, 19864, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9186, '2021-08-07', 1837, 8818, 882, NULL, '3.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9187, '2021-08-07', 1755, 8819, 882, 19322, '1.0000', '5.5900', '5.5900', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9188, '2021-08-07', 2233, 8820, 882, 22603, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9189, '2021-08-07', 2105, 8821, 882, NULL, '2.0000', '1.3500', '1.3500', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9190, '2021-08-07', 1519, 8822, 882, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9191, '2021-08-07', 1856, 8823, 882, NULL, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9192, '2021-08-07', 1381, 8824, 882, 22391, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9193, '2021-08-07', 2320, 8825, 882, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9194, '2021-08-07', 2061, 8826, 882, 13773, '1.0000', '10.9800', '10.9800', '15.0000', '15.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9195, '2021-08-07', 1863, 8827, 882, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9196, '2021-08-07', 2168, 8828, 882, NULL, '1.0000', '26.0000', '26.0000', '39.0000', '39.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9197, '2021-08-07', 2821, 8829, 882, 19816, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9198, '2021-08-07', 1307, 8830, 882, NULL, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9199, '2021-08-07', 1499, 8831, 882, NULL, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9200, '2021-08-07', 2706, 8832, 882, 13759, '1.0000', '6.5900', '6.5900', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9201, '2021-08-07', 2403, 8833, 882, NULL, '1.0000', '17.8000', '17.8000', '24.0000', '24.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9202, '2021-08-07', 2334, 8834, 882, NULL, '1.0000', '16.0000', '16.0000', '21.0000', '21.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9203, '2021-08-07', 1346, 8835, 882, NULL, '10.0000', '0.9300', '0.9300', '1.5000', '1.5000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9204, '2021-08-07', 2169, 8836, 883, 23579, '1.0000', '0.8909', '0.8909', '1.5000', '1.5000', '26.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9205, '2021-08-07', 2949, 8837, 883, NULL, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9206, '2021-08-07', 1728, 8838, 883, 17366, '8.0000', '90.0000', '90.0000', '2.5000', '2.5000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9207, '2021-08-07', 1519, 8839, 883, 1524, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9208, '2021-08-07', 1690, 8840, 883, 5868, '1.0000', '90.0000', '90.0000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9209, '2021-08-07', 1690, 8840, 883, 2453, '1.0000', '90.0000', '90.0000', '8.5000', '8.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9210, '2021-08-07', 2037, 8841, 883, 18355, '1.0000', '10.0000', '10.0000', '14.0000', '14.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9211, '2021-08-07', 2411, 8842, 883, 23581, '4.0000', '1.5000', '1.5000', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9212, '2021-08-07', 2405, 8843, 883, 18406, '2.0000', '1.2000', '1.2000', '1.6000', '1.6000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9213, '2021-08-07', 2167, 8844, 883, 22219, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9214, '2021-08-07', 1912, 8845, 883, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9215, '2021-08-07', 1912, 8845, 883, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9216, '2021-08-07', 1912, 8845, 883, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9217, '2021-08-07', 1912, 8845, 883, 1503, '3.0000', '0.3100', '0.3100', '1.0000', '1.0000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9218, '2021-08-07', 1527, 8846, 883, 1534, '6.0000', '90.0000', '90.0000', '17.5000', '17.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9219, '2021-08-07', 2920, 8847, 883, 18795, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9220, '2021-08-07', 2412, 8848, 883, 4824, '3.0000', '0.5200', '0.5200', '1.0000', '1.0000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9221, '2021-08-07', 2143, 8849, 883, NULL, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9222, '2021-08-07', 1336, 8850, 883, 3375, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9223, '2021-08-07', 1969, 8851, 883, 1522, '1.0000', '4.3300', '4.3300', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9224, '2021-08-07', 2821, 8852, 883, 17043, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9225, '2021-08-07', 1966, 8853, 883, NULL, '1.0000', '2.7100', '2.7100', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9226, '2021-08-07', 2633, 8854, 883, 17865, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9227, '2021-08-07', 1318, 8855, 883, 5491, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9228, '2021-08-07', 1533, 8856, 883, 10385, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9229, '2021-08-07', 1812, 8857, 883, 23603, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9230, '2021-08-07', 1313, 8858, 883, 18414, '1.0000', '0.4200', '0.4200', '4.0000', '4.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9231, '2021-08-07', 1816, 8859, 883, NULL, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9232, '2021-08-07', 2544, 8860, 883, 23574, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9233, '2021-08-07', 1599, 8861, 883, 12071, '1.0000', '12.8100', '12.8100', '3.0000', '3.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9234, '2021-08-07', 1369, 8862, 883, 8433, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9235, '2021-08-07', 1369, 8863, 883, 8433, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9236, '2021-08-07', 1666, 8864, 883, 23584, '1.0000', '246.5993', '246.5993', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9237, '2021-08-07', 1512, 8865, 883, 9528, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9238, '2021-08-07', 2331, 8866, 883, 18703, '1.0000', '12.0700', '12.0700', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9239, '2021-08-07', 1525, 8867, 884, NULL, '5.0000', '90.0000', '90.0000', '6.5000', '6.5000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9240, '2021-08-07', 2315, 8868, 884, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9241, '2021-08-07', 1665, 8869, 884, NULL, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9242, '2021-08-07', 1440, 8870, 884, NULL, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9243, '2021-08-07', 1649, 8871, 885, 22628, '1.0000', '37.4600', '37.4600', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9244, '2021-08-07', 2234, 8872, 886, NULL, '1.0000', '13.6000', '13.6000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9245, '2021-08-07', 3018, 8873, 886, NULL, '1.0000', '4.9100', '4.9100', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9246, '2021-08-07', 1596, 8874, 886, 19850, '1.0000', '2.5700', '2.5700', '3.8300', '3.8300', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9247, '2021-08-07', 1702, 8875, 886, NULL, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9248, '2021-08-07', 2320, 8876, 886, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9249, '2021-08-07', 2449, 8877, 886, 23733, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9250, '2021-08-07', 1310, 8878, 886, NULL, '3.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9251, '2021-08-07', 1523, 8879, 886, 13750, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9252, '2021-08-07', 2068, 8880, 887, 23686, '1.0000', '11.6200', '11.6200', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9253, '2021-08-07', 2650, 8881, 888, NULL, '1.0000', '7.3200', '7.3200', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9254, '2021-08-07', 2105, 8882, 889, NULL, '3.0000', '1.3500', '1.3500', '3.0000', '3.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9255, '2021-08-07', 2829, 8883, 889, NULL, '1.0000', '27.2600', '27.2600', '33.0000', '33.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9256, '2021-08-07', 2344, 8884, 889, 18874, '1.0000', '18.2000', '18.2000', '24.5000', '24.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9257, '2021-08-07', 1523, 8885, 890, NULL, '1.0000', '213.0405', '213.0405', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9258, '2021-08-07', 1783, 8886, 891, 13725, '2.0000', '90.0000', '90.0000', '11.0000', '11.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9259, '2021-08-07', 2727, 8887, 891, 19352, '1.0000', '4.6800', '4.6800', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9260, '2021-08-07', 2917, 8888, 891, 23145, '1.0000', '7.3500', '7.3500', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9261, '2021-08-07', 1665, 8889, 891, NULL, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9262, '2021-08-07', 2655, 8890, 891, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9263, '2021-08-07', 2964, 8891, 892, 21817, '3.0000', '6.6000', '6.6000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9264, '2021-08-07', 3012, 8892, 892, 23214, '1.0000', '4.7000', '4.7000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9265, '2021-08-07', 1533, 8893, 893, NULL, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9266, '2021-08-07', 2061, 8894, 893, 13773, '1.0000', '10.9800', '10.9800', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9267, '2021-08-07', 2730, 8895, 893, NULL, '2.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9268, '2021-08-07', 2821, 8896, 893, 19816, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9269, '2021-08-07', 1783, 8897, 894, 13725, '3.0000', '90.0000', '90.0000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9270, '2021-08-07', 1783, 8897, 894, 13726, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9271, '2021-08-07', 2020, 8898, 895, 23692, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9272, '2021-08-07', 2297, 8899, 895, NULL, '1.0000', '7.2000', '7.2000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9273, '2021-08-07', 1533, 8900, 895, NULL, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9274, '2021-08-07', 2951, 8901, 896, NULL, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9275, '2021-08-07', 2067, 8902, 897, 5629, '1.0000', '4.0000', '4.0000', '6.4700', '6.4700', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9276, '2021-08-07', 1585, 8903, 897, 9442, '1.0000', '8.9900', '8.9900', '17.5000', '17.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9277, '2021-08-07', 1411, 8904, 897, 21565, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9278, '2021-08-07', 1521, 8905, 897, 18427, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9279, '2021-08-07', 2068, 8906, 897, 22652, '1.0000', '12.8833', '12.8833', '17.0000', '17.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9280, '2021-08-07', 2366, 8907, 897, 13636, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9281, '2021-08-07', 1523, 8908, 897, 11170, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9282, '2021-08-07', 2270, 8909, 897, 17490, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9283, '2021-08-07', 2320, 8910, 897, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9284, '2021-08-07', 2916, 8911, 897, 22658, '1.0000', '13.7500', '13.7500', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9285, '2021-08-07', 1574, 8912, 897, 23615, '2.0000', '82.8731', '82.8731', '2.5000', '2.5000', '48.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9286, '2021-08-07', 1689, 8913, 897, 2469, '1.0000', '12.3500', '12.3500', '17.0000', '17.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9287, '2021-08-07', 1596, 8914, 897, 23617, '1.0000', '2.5700', '2.5700', '3.8300', '3.8300', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9288, '2021-08-07', 1639, 8915, 897, 23616, '1.0000', '6.6300', '6.6300', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9289, '2021-08-07', 1409, 8916, 897, 22230, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9290, '2021-08-07', 1975, 8917, 897, NULL, '1.0000', '8.5000', '8.5000', '11.0000', '11.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9291, '2021-08-07', 1347, 8918, 897, NULL, '1.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9292, '2021-08-07', 1602, 8919, 897, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '15.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9293, '2021-08-07', 2309, 8920, 897, 6777, '4.0000', '1.9900', '1.9900', '2.6000', '2.6000', '13.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9294, '2021-08-07', 1654, 8921, 897, 14583, '1.0000', '90.0000', '90.0000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9295, '2021-08-07', 1599, 8922, 897, 12071, '2.0000', '12.8100', '12.8100', '3.0000', '3.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9296, '2021-08-07', 1863, 8923, 897, 22488, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9297, '2021-08-07', 1947, 8924, 897, 4998, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9298, '2021-08-07', 1935, 8925, 897, 22646, '1.0000', '23.0400', '23.0400', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9299, '2021-08-07', 2360, 8926, 897, 17042, '1.0000', '0.5200', '0.5200', '0.6900', '0.6900', '52.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9300, '2021-08-07', 2169, 8927, 897, 23579, '1.0000', '0.8909', '0.8909', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9301, '2021-08-07', 2699, 8928, 897, 21819, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9302, '2021-08-07', 1331, 8929, 898, 3370, '1.0000', '4.2000', '4.2000', '5.5000', '5.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9303, '2021-08-07', 1419, 8930, 898, 9051, '1.0000', '10.5000', '10.5000', '14.5000', '14.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9304, '2021-08-07', 1507, 8931, 898, 1510, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9305, '2021-08-07', 1502, 8932, 898, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9306, '2021-08-07', 1851, 8933, 898, 23623, '1.0000', '12.3652', '12.3652', '16.5000', '16.5000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9307, '2021-08-07', 1596, 8934, 898, 23617, '1.0000', '2.5700', '2.5700', '3.8300', '3.8300', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9308, '2021-08-07', 2055, 8935, 898, NULL, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9309, '2021-08-07', 1528, 8936, 898, 23618, '3.0000', '79.3921', '79.3921', '6.0000', '6.0000', '17.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9310, '2021-08-07', 2814, 8937, 898, 17363, '1.0000', '14.0400', '14.0400', '18.5000', '18.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9311, '2021-08-07', 2387, 8938, 899, 19870, '1.0000', '14.0700', '14.0700', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9312, '2021-08-07', 1401, 8939, 899, NULL, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9313, '2021-08-07', 2945, 8940, 899, 19390, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9314, '2021-08-07', 1420, 8941, 899, NULL, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9315, '2021-08-07', 1330, 8942, 899, 19334, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9316, '2021-08-07', 2753, 8943, 899, 18936, '1.0000', '4.8000', '4.8000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9317, '2021-08-07', 1423, 8944, 899, 19835, '1.0000', '30.0000', '30.0000', '33.0000', '33.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9318, '2021-08-07', 1314, 8945, 899, NULL, '1.0000', '1.2000', '1.2000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9319, '2021-08-07', 1532, 8946, 900, NULL, '1.0000', '90.0000', '90.0000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9320, '2021-08-07', 2242, 8947, 900, NULL, '1.0000', '0.4800', '0.4800', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9321, '2021-08-07', 1665, 8948, 900, NULL, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9322, '2021-08-07', 1433, 8949, 901, 19829, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9323, '2021-08-07', 1322, 8950, 901, 23171, '1.0000', '3.6000', '3.6000', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9324, '2021-08-07', 2449, 8951, 901, 23733, '2.0000', '5.0000', '5.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9325, '2021-08-07', 2951, 8952, 901, NULL, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9326, '2021-08-07', 1310, 8953, 901, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9327, '2021-08-07', 1519, 8954, 901, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9328, '2021-08-07', 1499, 8955, 901, NULL, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9329, '2021-08-07', 1523, 8956, 901, NULL, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9330, '2021-08-07', 2286, 8957, 902, NULL, '1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9331, '2021-08-07', 1912, 8958, 903, NULL, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9332, '2021-08-07', 1502, 8959, 903, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9333, '2021-08-07', 1800, 8960, 903, 22403, '1.0000', '90.0000', '90.0000', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9334, '2021-08-07', 2699, 8961, 903, 21819, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9335, '2021-08-07', 1851, 8962, 903, NULL, '1.0000', '12.3652', '12.3652', '16.5000', '16.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9336, '2021-08-07', 1715, 8963, 903, 9482, '1.0000', '4.9200', '4.9200', '6.5000', '6.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9337, '2021-08-07', 2266, 8964, 903, 18074, '1.0000', '6.4900', '6.4900', '11.0000', '11.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9338, '2021-08-07', 2072, 8965, 903, 13557, '1.0000', '7.3800', '7.3800', '11.0000', '11.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9339, '2021-08-07', 1574, 8966, 903, 23615, '2.0000', '82.8731', '82.8731', '2.5000', '2.5000', '46.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9340, '2021-08-07', 1311, 8967, 903, 5503, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9341, '2021-08-07', 2821, 8968, 903, 17043, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9342, '2021-08-07', 1602, 8969, 903, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '14.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9343, '2021-08-07', 1502, 8970, 903, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9344, '2021-08-07', 2167, 8971, 903, 22219, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9345, '2021-08-07', 1629, 8972, 904, 23682, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9346, '2021-08-07', 1702, 8973, 904, NULL, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9347, '2021-08-07', 3018, 8974, 904, NULL, '1.0000', '4.9100', '4.9100', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9348, '2021-08-07', 2169, 8975, 905, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9349, '2021-08-07', 1519, 8976, 905, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '15.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9350, '2021-08-07', 2951, 8977, 906, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9351, '2021-08-07', 1425, 8978, 906, NULL, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9352, '2021-08-07', 2167, 8979, 907, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9353, '2021-08-07', 1533, 8980, 907, 22263, '1.0000', '2.5917', '2.5917', '5.0000', '5.0000', '16.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9354, '2021-08-07', 2169, 8981, 907, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '38.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9355, '2021-08-07', 1812, 8982, 908, 23603, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '17.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9356, '2021-08-07', 1643, 8983, 908, NULL, '1.0000', '90.0000', '90.0000', '53.0000', '53.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9357, '2021-08-07', 2289, 8984, 908, 22481, '1.0000', '0.2300', '0.2300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9358, '2021-08-07', 2289, 8984, 908, 22482, '1.0000', '0.2300', '0.2300', '0.5000', '0.5000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9359, '2021-08-07', 1942, 8985, 908, 21550, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9360, '2021-08-07', 1678, 8986, 908, 2443, '1.0000', '90.0000', '90.0000', '34.0000', '34.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9361, '2021-08-07', 1715, 8987, 908, 9482, '1.0000', '4.9200', '4.9200', '6.5000', '6.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9362, '2021-08-07', 1762, 8988, 908, 3181, '1.0000', '8.2900', '8.2900', '11.0000', '11.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9363, '2021-08-07', 2710, 8989, 908, 13629, '1.0000', '40.3000', '40.3000', '53.0000', '53.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9364, '2021-08-07', 2169, 8990, 908, 23579, '1.0000', '0.8909', '0.8909', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9365, '2021-08-07', 2821, 8991, 908, 17043, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9366, '2021-08-07', 1863, 8992, 908, 22488, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9367, '2021-08-07', 1602, 8993, 908, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '13.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9368, '2021-08-07', 2992, 8994, 908, NULL, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9369, '2021-08-07', 1999, 8995, 908, 21834, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9370, '2021-08-07', 2811, 8996, 908, 16713, '2.0000', '3.4000', '3.4000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9371, '2021-08-07', 1661, 8997, 909, NULL, '1.0000', '90.0000', '90.0000', '42.0000', '42.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9372, '2021-08-07', 2699, 8998, 910, 21819, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9373, '2021-08-08', 1819, 8999, 911, 18840, '1.0000', '5.5930', '5.5930', '7.1700', '7.1700', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9374, '2021-08-08', 1908, 9000, 911, 5444, '-2.0000', '90.0000', '90.0000', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9375, '2021-08-08', 1908, 9000, 911, NULL, '4.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9376, '2021-08-08', 2699, 9001, 911, 12529, '-1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9377, '2021-08-08', 2699, 9001, 911, NULL, '2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9378, '2021-08-08', 2187, 9002, 911, NULL, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9379, '2021-08-08', 1800, 9003, 911, NULL, '1.0000', '20.2784', '20.2784', '27.0000', '27.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9380, '2021-08-08', 1846, 9004, 911, NULL, '1.0000', '12.0000', '12.0000', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9381, '2021-08-08', 2285, 9005, 911, 2945, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9382, '2021-08-08', 2237, 9006, 911, 2781, '-3.0000', '1.0600', '1.0600', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9383, '2021-08-08', 2237, 9006, 911, NULL, '4.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9384, '2021-08-08', 1303, 9007, 911, 32, '8.0000', '54.5520', '54.5520', '4.0000', '4.0000', '110.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9385, '2021-08-08', 1432, 9008, 911, NULL, '1.0000', '8.1574', '8.1574', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9386, '2021-08-08', 2315, 9009, 911, 2735, '-51.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9387, '2021-08-08', 2315, 9009, 911, NULL, '53.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-53.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9388, '2021-08-08', 2169, 9010, 911, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '37.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9389, '2021-08-08', 1425, 9011, 911, NULL, '2.0000', '6.4405', '6.4405', '9.0000', '9.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9390, '2021-08-08', 2166, 9012, 911, 19676, '2.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9391, '2021-08-08', 2487, 9013, 911, 18714, '1.0000', '23.7500', '23.7500', '30.0000', '30.0000', '6.0000', 1, 0, NULL, 166);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9392, '2021-08-08', 1678, 9014, 911, NULL, '1.0000', '24.5300', '24.5300', '34.0000', '34.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9393, '2021-08-08', 2810, 9015, 911, NULL, '5.0000', '2.2000', '2.2000', '2.9000', '2.9000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9394, '2021-08-08', 2876, 9016, 911, NULL, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9395, '2021-08-08', 1646, 9017, 911, 3239, '-3.0000', '4.5300', '4.5300', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9396, '2021-08-08', 1646, 9017, 911, NULL, '4.0000', '4.5300', '4.5300', '7.5000', '7.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9397, '2021-08-08', 2457, 9018, 911, NULL, '1.0000', '23.0000', '23.0000', '32.0000', '32.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9398, '2021-08-08', 2315, 9019, 911, 2735, '-51.0000', '0.3300', '0.3300', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9399, '2021-08-08', 2315, 9019, 911, NULL, '55.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-55.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9400, '2021-08-08', 2307, 9020, 911, 2960, '2.0000', '118.9901', '118.9901', '170.0000', '170.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9401, '2021-08-08', 2220, 9021, 911, 4333, '1.0000', '5.4170', '5.4170', '8.0000', '8.0000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9402, '2021-08-08', 2221, 9022, 911, 4334, '1.0000', '14.4737', '14.4737', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9403, '2021-08-08', 1519, 9023, 911, 22245, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9404, '2021-08-08', 1702, 9024, 911, 18857, '1.0000', '14.9700', '14.9700', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9405, '2021-08-08', 1429, 9025, 911, 22290, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9406, '2021-08-08', 2486, 9026, 911, 21782, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9407, '2021-08-08', 2652, 9027, 911, 11135, '-2.0000', '12.5000', '12.5000', '16.5000', '16.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9408, '2021-08-08', 2652, 9027, 911, NULL, '3.0000', '12.5000', '12.5000', '16.5000', '16.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9409, '2021-08-08', 2237, 9028, 911, 2781, '-3.0000', '1.0600', '1.0600', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9410, '2021-08-08', 2237, 9028, 911, NULL, '4.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9411, '2021-08-08', 1602, 9029, 911, 5897, '1.0000', '6.7859', '6.7859', '10.0000', '10.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9412, '2021-08-08', 2893, 9030, 911, NULL, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9413, '2021-08-08', 2262, 9031, 912, NULL, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9414, '2021-08-08', 2237, 9032, 912, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9415, '2021-08-08', 1867, 9033, 912, 23685, '10.0000', '1.0500', '1.0500', '1.3000', '1.3000', '20.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9416, '2021-08-08', 2415, 9034, 912, NULL, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9417, '2021-08-08', 2169, 9035, 912, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9418, '2021-08-08', 2279, 9036, 912, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '26.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9419, '2021-08-08', 2105, 9037, 912, NULL, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9420, '2021-08-08', 1665, 9038, 912, NULL, '2.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9421, '2021-08-08', 1531, 9039, 912, NULL, '4.0000', '0.9600', '0.9600', '1.5000', '1.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9422, '2021-08-08', 1651, 9040, 912, 23126, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9423, '2021-08-08', 2277, 9041, 912, NULL, '1.0000', '0.7800', '0.7800', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9424, '2021-08-08', 2169, 9042, 912, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9425, '2021-08-08', 1432, 9043, 912, NULL, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9426, '2021-08-08', 2220, 9044, 912, 23680, '1.0000', '5.9300', '5.9300', '8.0000', '8.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9427, '2021-08-08', 2354, 9045, 912, NULL, '1.0000', '4.6000', '4.6000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9428, '2021-08-08', 1690, 9046, 912, NULL, '1.0000', '90.0000', '90.0000', '8.5000', '8.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9429, '2021-08-08', 1841, 9047, 912, NULL, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9430, '2021-08-08', 2920, 9048, 912, NULL, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9431, '2021-08-08', 1519, 9049, 912, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '14.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9432, '2021-08-08', 1394, 9050, 912, NULL, '1.0000', '6.5000', '6.5000', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9433, '2021-08-08', 2384, 9051, 912, NULL, '4.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9434, '2021-08-08', 1573, 9052, 912, 23173, '1.0000', '24.6200', '24.6200', '32.5000', '32.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9435, '2021-08-08', 2248, 9053, 912, NULL, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9436, '2021-08-08', 2248, 9054, 912, NULL, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9437, '2021-08-08', 2038, 9055, 912, 22539, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9438, '2021-08-08', 2130, 9056, 912, 22543, '1.0000', '17.5000', '17.5000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9439, '2021-08-08', 2981, 9057, 912, 22541, '2.0000', '28.0000', '28.0000', '34.0000', '34.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9440, '2021-08-08', 2038, 9058, 912, 22539, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9441, '2021-08-08', 2760, 9059, 912, NULL, '1.0000', '7.9300', '7.9300', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9442, '2021-08-08', 1307, 9060, 912, NULL, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9443, '2021-08-08', 2327, 9061, 913, 23740, '3.0000', '4.5000', '4.5000', '6.0000', '6.0000', '27.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9444, '2021-08-08', 2315, 9062, 913, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9445, '2021-08-08', 1812, 9063, 913, 23688, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9446, '2021-08-08', 1811, 9064, 913, NULL, '1.0000', '14.5300', '14.5300', '19.5000', '19.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9447, '2021-08-08', 2409, 9065, 913, 13752, '1.0000', '2.3100', '2.3100', '4.0000', '4.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9448, '2021-08-08', 2108, 9066, 913, NULL, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9449, '2021-08-08', 1512, 9067, 913, NULL, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9450, '2021-08-08', 2411, 9068, 913, NULL, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9451, '2021-08-08', 1950, 9069, 913, NULL, '1.0000', '2.7500', '2.7500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9452, '2021-08-08', 1863, 9070, 913, NULL, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9453, '2021-08-08', 1935, 9071, 913, NULL, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9454, '2021-08-08', 1844, 9072, 913, NULL, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9455, '2021-08-08', 1639, 9073, 914, NULL, '1.0000', '6.6300', '6.6300', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9456, '2021-08-08', 1602, 9074, 914, NULL, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9457, '2021-08-08', 2916, 9075, 914, 23676, '1.0000', '15.0176', '15.0176', '20.0000', '20.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9458, '2021-08-08', 2169, 9076, 914, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9459, '2021-08-08', 1608, 9077, 914, 23689, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9460, '2021-08-08', 2279, 9078, 914, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '25.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9461, '2021-08-08', 2252, 9079, 915, 2789, '-2.0000', '9.5000', '9.5000', '12.5000', '12.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9462, '2021-08-08', 2252, 9079, 915, NULL, '3.0000', '9.5000', '9.5000', '12.5000', '12.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9463, '2021-08-08', 1863, 9080, 915, 10808, '4.0000', '0.4136', '0.4136', '2.0000', '2.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9464, '2021-08-08', 1746, 9081, 915, 6675, '1.0000', '33.8760', '33.8760', '5.0000', '5.0000', '28.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9465, '2021-08-08', 2916, 9082, 915, NULL, '2.0000', '15.0000', '15.0000', '20.0000', '20.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9466, '2021-08-08', 2633, 9083, 915, 22314, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9467, '2021-08-08', 1524, 9084, 915, NULL, '1.0000', '3.8400', '3.8400', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9468, '2021-08-08', 1483, 9085, 915, 1444, '1.0000', '26.1578', '26.1578', '29.0000', '29.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9469, '2021-08-08', 2821, 9086, 915, NULL, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9470, '2021-08-08', 2699, 9087, 916, 12529, '-2.0000', '3.0000', '3.0000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9471, '2021-08-08', 2699, 9087, 916, NULL, '3.0000', '3.0000', '3.0000', '4.5000', '4.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9472, '2021-08-08', 2327, 9088, 917, 23740, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '26.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9473, '2021-08-09', 2503, 9089, 918, 10608, '1.0000', '16.0000', '16.0000', '20.0000', '20.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9474, '2021-08-09', 1863, 9090, 918, 22488, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9475, '2021-08-09', 2315, 9091, 918, 3069, '4.0000', '0.3300', '0.3300', '0.5000', '0.5000', '370.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9476, '2021-08-09', 1428, 9092, 918, NULL, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9477, '2021-08-09', 1580, 9093, 918, 9446, '3.0000', '0.9900', '0.9900', '1.5000', '1.5000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9478, '2021-08-09', 2293, 9094, 918, 3064, '3.0000', '1.4400', '1.4400', '2.0000', '2.0000', '73.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9479, '2021-08-09', 1434, 9095, 918, 18447, '1.0000', '14.5000', '14.5000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9480, '2021-08-09', 1463, 9096, 918, NULL, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9481, '2021-08-09', 2542, 9097, 918, 9538, '1.0000', '54.2100', '54.2100', '78.5000', '78.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9482, '2021-08-09', 2507, 9098, 918, 5869, '1.0000', '34.2000', '34.2000', '45.0000', '45.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9483, '2021-08-09', 2968, 9099, 918, 21799, '1.0000', '18.0000', '18.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9484, '2021-08-09', 2109, 9100, 918, 6021, '3.0000', '0.2500', '0.2500', '1.5000', '1.5000', '126.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9485, '2021-08-09', 2487, 9101, 918, 5198, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9486, '2021-08-09', 2484, 9102, 918, 5196, '1.0000', '17.0000', '17.0000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9487, '2021-08-09', 2763, 9103, 918, 15805, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9488, '2021-08-09', 2070, 9104, 918, 5618, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9489, '2021-08-09', 1854, 9105, 918, 4985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9490, '2021-08-09', 1947, 9106, 918, 2497, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9491, '2021-08-09', 1828, 9107, 918, 4963, '1.0000', '0.7300', '0.7300', '1.0000', '1.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9492, '2021-08-09', 1912, 9108, 918, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9493, '2021-08-09', 1912, 9108, 918, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9494, '2021-08-09', 1912, 9108, 918, 9575, '-1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9495, '2021-08-09', 1912, 9108, 918, 1503, '2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '37.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9496, '2021-08-09', 1761, 9109, 918, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9497, '2021-08-09', 2049, 9110, 918, NULL, '1.0000', '8.5000', '8.5000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9498, '2021-08-09', 1845, 9111, 918, 4977, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9499, '2021-08-09', 2151, 9112, 918, NULL, '1.0000', '17.5000', '17.5000', '23.0000', '23.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9500, '2021-08-09', 2989, 9113, 919, 22602, '2.0000', '0.9200', '0.9200', '1.0000', '1.0000', '12.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9501, '2021-08-09', 1371, 9114, 919, 19351, '2.0000', '90.0000', '90.0000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9502, '2021-08-09', 2060, 9115, 919, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9503, '2021-08-09', 2104, 9116, 919, 22380, '2.0000', '0.2000', '0.2000', '0.5000', '0.5000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9504, '2021-08-09', 1592, 9117, 919, NULL, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9505, '2021-08-09', 2345, 9118, 919, NULL, '1.0000', '7.6400', '7.6400', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9506, '2021-08-09', 2777, 9119, 919, NULL, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9507, '2021-08-09', 1308, 9120, 919, NULL, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9508, '2021-08-09', 1863, 9121, 919, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9509, '2021-08-09', 2233, 9122, 919, 22603, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9510, '2021-08-09', 1840, 9123, 919, 19856, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '47.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9511, '2021-08-09', 1381, 9124, 919, 22391, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9512, '2021-08-09', 2916, 9125, 919, 23676, '1.0000', '15.0176', '15.0176', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9513, '2021-08-09', 1863, 9126, 919, NULL, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9514, '2021-08-09', 3034, 9127, 919, 23739, '1.0000', '17.0000', '17.0000', '23.0000', '23.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9515, '2021-08-09', 1908, 9128, 920, 5510, '2.0000', '1.7500', '1.7500', '1.0000', '1.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9516, '2021-08-09', 1771, 9129, 920, 21570, '1.0000', '3.3900', '3.3900', '6.0000', '6.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9517, '2021-08-09', 2842, 9130, 920, NULL, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9518, '2021-08-09', 1369, 9131, 920, 8433, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9519, '2021-08-09', 1401, 9132, 920, 23725, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9520, '2021-08-09', 1505, 9133, 920, 18428, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9521, '2021-08-09', 1510, 9134, 921, 1513, '1.0000', '90.0000', '90.0000', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9522, '2021-08-09', 2279, 9135, 921, 23614, '2.0000', '2.6280', '2.6280', '4.0000', '4.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9523, '2021-08-09', 1863, 9136, 921, 22488, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9524, '2021-08-09', 2233, 9137, 922, 22654, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9525, '2021-08-09', 1604, 9138, 923, 21549, '2.0000', '70.6900', '70.6900', '51.5000', '51.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9526, '2021-08-09', 1697, 9139, 924, 2460, '1.0000', '90.0000', '90.0000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9527, '2021-08-09', 1502, 9140, 924, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9528, '2021-08-09', 1529, 9141, 925, 13746, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9529, '2021-08-09', 1431, 9142, 926, NULL, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9530, '2021-08-09', 2951, 9143, 926, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9531, '2021-08-09', 1667, 9144, 926, 19361, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9532, '2021-08-09', 1501, 9145, 926, NULL, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9533, '2021-08-09', 3002, 9146, 926, 23120, '1.0000', '6.2000', '6.2000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9534, '2021-08-09', 1727, 9147, 926, 23113, '2.0000', '1.9500', '1.9500', '2.6000', '2.6000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9535, '2021-08-09', 1864, 9148, 926, NULL, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9536, '2021-08-09', 3012, 9149, 926, NULL, '1.0000', '4.7000', '4.7000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9537, '2021-08-09', 2950, 9150, 927, NULL, '1.0000', '1.4000', '1.4000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9538, '2021-08-09', 1532, 9151, 927, NULL, '2.0000', '90.0000', '90.0000', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9539, '2021-08-09', 2289, 9152, 927, 13744, '2.0000', '0.2300', '0.2300', '0.5000', '0.5000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9540, '2021-08-09', 1873, 9153, 928, 22597, '1.0000', '11.9500', '11.9500', '15.5000', '15.5000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9541, '2021-08-09', 1505, 9154, 928, NULL, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9542, '2021-08-09', 1780, 9155, 929, 22387, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9543, '2021-08-09', 2088, 9156, 930, NULL, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9544, '2021-08-09', 2167, 9157, 930, NULL, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9545, '2021-08-09', 2244, 9158, 930, NULL, '1.0000', '7.3600', '7.3600', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9546, '2021-08-09', 1654, 9159, 931, NULL, '1.0000', '90.0000', '90.0000', '12.0000', '12.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9547, '2021-08-09', 1612, 9160, 931, NULL, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9548, '2021-08-09', 1912, 9161, 932, NULL, '4.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9549, '2021-08-09', 1591, 9162, 932, 13634, '1.0000', '90.0000', '90.0000', '14.0000', '14.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9550, '2021-08-09', 2422, 9163, 932, 21825, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9551, '2021-08-09', 1863, 9164, 932, 22488, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9552, '2021-08-09', 1337, 9165, 932, 23592, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9553, '2021-08-09', 1340, 9166, 932, 13569, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9554, '2021-08-09', 2221, 9167, 932, 22218, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9555, '2021-08-09', 2506, 9168, 932, 22648, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9556, '2021-08-09', 1780, 9169, 932, 23836, '1.0000', '35.6000', '35.6000', '47.0000', '47.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9557, '2021-08-09', 1863, 9170, 932, 22488, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9558, '2021-08-09', 1428, 9171, 932, NULL, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9559, '2021-08-09', 1602, 9172, 932, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '12.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9560, '2021-08-09', 1671, 9173, 932, 9558, '10.0000', '90.0000', '90.0000', '5.5000', '5.5000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9561, '2021-08-09', 2221, 9174, 932, 22218, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9562, '2021-08-09', 1871, 9175, 932, 22495, '10.0000', '90.0000', '90.0000', '3.0000', '3.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9563, '2021-08-09', 2813, 9176, 932, 17368, '1.0000', '51.5300', '51.5300', '68.0000', '68.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9564, '2021-08-09', 2817, 9177, 932, 22483, '20.0000', '1.8000', '1.8000', '2.5000', '2.5000', '70.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9565, '2021-08-09', 3006, 9178, 932, NULL, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9566, '2021-08-09', 2242, 9179, 933, NULL, '2.0000', '0.4800', '0.4800', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9567, '2021-08-09', 1695, 9180, 933, NULL, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9568, '2021-08-09', 2237, 9181, 934, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9569, '2021-08-09', 1692, 9182, 934, NULL, '1.0000', '10.2900', '10.2900', '13.5000', '13.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9570, '2021-08-09', 2237, 9183, 934, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9571, '2021-08-09', 2167, 9184, 934, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9572, '2021-08-09', 2951, 9185, 934, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9573, '2021-08-09', 2169, 9186, 935, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9574, '2021-08-09', 2109, 9187, 935, NULL, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9575, '2021-08-09', 1481, 9188, 936, NULL, '1.0000', '90.0000', '90.0000', '33.0000', '33.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9576, '2021-08-09', 1863, 9189, 936, NULL, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9577, '2021-08-09', 2109, 9190, 936, NULL, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9578, '2021-08-09', 2135, 9191, 937, 23175, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '28.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9579, '2021-08-09', 2245, 9192, 937, 23178, '4.0000', '0.7000', '0.7000', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9580, '2021-08-09', 2248, 9193, 937, NULL, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9581, '2021-08-09', 1624, 9194, 938, 23206, '1.0000', '49.6000', '49.6000', '39.0000', '39.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9582, '2021-08-09', 1624, 9194, 938, 12068, '1.0000', '49.6000', '49.6000', '39.0000', '39.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9583, '2021-08-09', 1863, 9195, 938, 22488, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9584, '2021-08-09', 1935, 9196, 938, 22646, '1.0000', '23.0400', '23.0400', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9585, '2021-08-09', 2061, 9197, 938, 22484, '1.0000', '10.9800', '10.9800', '15.0000', '15.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9586, '2021-08-09', 1863, 9198, 938, 22488, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9587, '2021-08-09', 1791, 9199, 938, NULL, '1.0000', '90.0000', '90.0000', '18.5000', '18.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9588, '2021-08-09', 1532, 9200, 938, 1539, '3.0000', '90.0000', '90.0000', '1.5000', '1.5000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9589, '2021-08-09', 2965, 9201, 938, 21818, '1.0000', '5.0000', '5.0000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9590, '2021-08-09', 1303, 9202, 938, 9576, '-4.0000', '1.3800', '1.3800', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9591, '2021-08-09', 1303, 9202, 938, 9576, '-4.0000', '1.3800', '1.3800', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9592, '2021-08-09', 1303, 9202, 938, 2657, '8.0000', '1.3800', '1.3800', '4.0000', '4.0000', '95.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9593, '2021-08-09', 2967, 9203, 938, 21798, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9594, '2021-08-09', 2135, 9204, 938, 16894, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9595, '2021-08-09', 1307, 9205, 938, NULL, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9596, '2021-08-09', 1863, 9206, 938, 22488, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9597, '2021-08-09', 1651, 9207, 938, 23577, '1.0000', '7.2411', '7.2411', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9598, '2021-08-09', 1807, 9208, 938, NULL, '4.0000', '1.8000', '1.8000', '2.5000', '2.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9599, '2021-08-09', 1599, 9209, 938, 12071, '1.0000', '12.8100', '12.8100', '3.0000', '3.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9600, '2021-08-09', 2169, 9210, 938, 23579, '1.0000', '0.8909', '0.8909', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9601, '2021-08-09', 2360, 9211, 938, 17042, '2.0000', '0.5200', '0.5200', '0.6900', '0.6900', '50.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9602, '2021-08-09', 1433, 9212, 938, 13536, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9603, '2021-08-09', 2331, 9213, 938, 18703, '1.0000', '12.0700', '12.0700', '16.0000', '16.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9604, '2021-08-09', 1863, 9214, 938, 22488, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9605, '2021-08-09', 1812, 9215, 938, 23603, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '16.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9606, '2021-08-09', 2714, 9216, 938, NULL, '1.0000', '0.9000', '0.9000', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9607, '2021-08-09', 2384, 9217, 939, NULL, '1.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9608, '2021-08-09', 2237, 9218, 939, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9609, '2021-08-09', 1863, 9219, 939, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9610, '2021-08-09', 1813, 9220, 940, 17032, '1.0000', '90.0000', '90.0000', '38.0000', '38.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9611, '2021-08-09', 1574, 9221, 940, 23615, '2.0000', '82.8731', '82.8731', '2.5000', '2.5000', '44.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9612, '2021-08-09', 2974, 9222, 940, 22239, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9613, '2021-08-09', 1746, 9223, 940, NULL, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9614, '2021-08-09', 2307, 9224, 940, 22502, '1.0000', '140.0000', '140.0000', '170.0000', '170.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9615, '2021-08-09', 1846, 9225, 940, 22500, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9616, '2021-08-09', 1787, 9226, 940, 4930, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9617, '2021-08-09', 1675, 9227, 940, 22655, '1.0000', '44.1200', '44.1200', '29.0000', '29.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9618, '2021-08-09', 1837, 9228, 940, NULL, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9619, '2021-08-09', 2244, 9229, 940, NULL, '1.0000', '7.3600', '7.3600', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9620, '2021-08-09', 1347, 9230, 940, NULL, '2.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9621, '2021-08-10', 1533, 9231, 941, NULL, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9622, '2021-08-10', 2951, 9232, 941, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9623, '2021-08-10', 1837, 9233, 941, NULL, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9624, '2021-08-10', 1695, 9234, 941, NULL, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9625, '2021-08-10', 1781, 9235, 941, NULL, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9626, '2021-08-10', 2459, 9236, 941, 22608, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9627, '2021-08-10', 1876, 9237, 941, NULL, '1.0000', '90.0000', '90.0000', '24.0000', '24.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9628, '2021-08-10', 1642, 9238, 941, 13762, '1.0000', '90.0000', '90.0000', '41.0000', '41.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9629, '2021-08-10', 1863, 9239, 941, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9630, '2021-08-10', 3006, 9240, 941, NULL, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9631, '2021-08-10', 1504, 9241, 941, 23186, '20.0000', '1.5000', '1.5000', '2.0000', '2.0000', '40.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9632, '2021-08-10', 1371, 9242, 941, 19351, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9633, '2021-08-10', 1672, 9243, 941, NULL, '10.0000', '90.0000', '90.0000', '3.9000', '3.9000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9634, '2021-08-10', 2999, 9244, 941, 23108, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9635, '2021-08-10', 2103, 9245, 941, NULL, '1.0000', '0.4500', '0.4500', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9636, '2021-08-10', 2916, 9246, 941, 23676, '1.0000', '15.0176', '15.0176', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9637, '2021-08-10', 1863, 9247, 941, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9638, '2021-08-10', 1840, 9248, 941, 19856, '4.0000', '0.2400', '0.2400', '0.3000', '0.3000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9639, '2021-08-10', 1841, 9249, 941, NULL, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9640, '2021-08-10', 2104, 9250, 941, 22380, '4.0000', '0.2000', '0.2000', '0.5000', '0.5000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9641, '2021-08-10', 1863, 9251, 941, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9642, '2021-08-10', 2169, 9252, 941, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9643, '2021-08-10', 1510, 9253, 941, 23187, '1.0000', '8.8600', '8.8600', '12.0000', '12.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9644, '2021-08-10', 1347, 9254, 941, NULL, '2.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9645, '2021-08-10', 1837, 9255, 941, NULL, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9646, '2021-08-10', 2989, 9256, 941, 22602, '2.0000', '0.9200', '0.9200', '1.0000', '1.0000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9647, '2021-08-10', 1308, 9257, 941, NULL, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9648, '2021-08-10', 2760, 9258, 941, NULL, '1.0000', '7.9300', '7.9300', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9649, '2021-08-10', 1580, 9259, 941, 19875, '4.0000', '0.9900', '0.9900', '1.5000', '1.5000', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9650, '2021-08-10', 2545, 9260, 942, 19338, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9651, '2021-08-10', 2088, 9261, 942, NULL, '1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9652, '2021-08-10', 2995, 9262, 942, 23168, '1.0000', '39.7000', '39.7000', '52.5000', '52.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9653, '2021-08-10', 2169, 9263, 942, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9654, '2021-08-10', 2302, 9264, 943, 23210, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9655, '2021-08-10', 2233, 9265, 943, 22654, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9656, '2021-08-10', 2252, 9266, 943, 13537, '1.0000', '9.3000', '9.3000', '12.5000', '12.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9657, '2021-08-10', 2660, 9267, 943, 18686, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '43.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9658, '2021-08-10', 1307, 9268, 943, NULL, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9659, '2021-08-10', 2825, 9269, 943, NULL, '1.0000', '12.0000', '12.0000', '10.5600', '10.5600', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9660, '2021-08-10', 2405, 9270, 943, 18406, '3.0000', '1.2000', '1.2000', '1.6000', '1.6000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9661, '2021-08-10', 1550, 9271, 943, 16692, '1.0000', '90.0000', '90.0000', '18.5000', '18.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9662, '2021-08-10', 1687, 9272, 943, 23573, '1.0000', '15.3580', '15.3580', '15.5000', '15.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9663, '2021-08-10', 2105, 9273, 943, 2511, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9664, '2021-08-10', 2270, 9274, 943, 17490, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9665, '2021-08-10', 1867, 9275, 943, NULL, '20.0000', '10.0500', '10.0500', '1.3000', '1.3000', '-20.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9666, '2021-08-10', 1873, 9276, 943, 23599, '1.0000', '11.9500', '11.9500', '15.5000', '15.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9667, '2021-08-10', 1554, 9277, 943, 1658, '1.0000', '3.1600', '3.1600', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9668, '2021-08-10', 2821, 9278, 943, 17043, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9669, '2021-08-10', 1613, 9279, 943, 9421, '1.0000', '9.8500', '9.8500', '13.0000', '13.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9670, '2021-08-10', 1946, 9280, 943, 6000, '1.0000', '10.0000', '10.0000', '5.0000', '5.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9671, '2021-08-10', 1602, 9281, 943, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '11.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9672, '2021-08-10', 1440, 9282, 943, 7233, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9673, '2021-08-10', 1431, 9283, 943, 10407, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9674, '2021-08-10', 1574, 9284, 943, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.5000', '43.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9675, '2021-08-10', 1420, 9285, 944, 23722, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9676, '2021-08-10', 1947, 9286, 944, 2497, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9677, '2021-08-10', 2640, 9287, 945, 11044, '1.0000', '7.0400', '7.0400', '10.0000', '10.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9678, '2021-08-10', 1700, 9288, 946, NULL, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9679, '2021-08-10', 1557, 9289, 946, NULL, '1.0000', '7.8800', '7.8800', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9680, '2021-08-10', 1841, 9290, 946, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9681, '2021-08-10', 1840, 9291, 946, 19856, '3.0000', '0.2400', '0.2400', '0.3000', '0.3000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9682, '2021-08-10', 2233, 9292, 947, 22603, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9683, '2021-08-10', 2734, 9293, 947, 19382, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9684, '2021-08-10', 2728, 9294, 947, 19354, '2.0000', '0.8000', '0.8000', '1.5000', '1.5000', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9685, '2021-08-10', 1386, 9295, 947, NULL, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9686, '2021-08-10', 1651, 9296, 947, 23126, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9687, '2021-08-10', 1872, 9297, 947, 22598, '1.0000', '9.0500', '9.0500', '12.0000', '12.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9688, '2021-08-10', 1347, 9298, 947, NULL, '1.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9689, '2021-08-10', 2393, 9299, 947, NULL, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9690, '2021-08-10', 1672, 9300, 947, NULL, '10.0000', '90.0000', '90.0000', '3.9000', '3.9000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9691, '2021-08-10', 2660, 9301, 947, 23143, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9692, '2021-08-10', 1371, 9302, 947, 19351, '2.0000', '90.0000', '90.0000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9693, '2021-08-10', 2347, 9303, 947, NULL, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9694, '2021-08-10', 2169, 9304, 948, NULL, '3.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9695, '2021-08-10', 2237, 9305, 948, 23675, '2.0000', '1.0600', '1.0600', '2.0000', '2.0000', '24.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9696, '2021-08-10', 2951, 9306, 948, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9697, '2021-08-10', 2821, 9307, 949, 19816, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9698, '2021-08-10', 1629, 9308, 950, 23682, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9699, '2021-08-10', 1668, 9309, 950, NULL, '1.0000', '90.0000', '90.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9700, '2021-08-10', 2951, 9310, 950, NULL, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9701, '2021-08-10', 2624, 9311, 950, 19843, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9702, '2021-08-10', 1529, 9312, 950, 13747, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9703, '2021-08-10', 2660, 9313, 950, 23143, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '45.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9704, '2021-08-10', 2221, 9314, 950, 22606, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9705, '2021-08-10', 2435, 9315, 950, 23726, '2.0000', '5.0000', '5.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9706, '2021-08-10', 1595, 9316, 951, NULL, '1.0000', '18.6100', '18.6100', '28.0000', '28.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9707, '2021-08-10', 2285, 9317, 951, NULL, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9708, '2021-08-10', 2379, 9318, 951, 23165, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9709, '2021-08-10', 2088, 9319, 952, 9570, '-1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9710, '2021-08-10', 2088, 9319, 952, 9570, '-1.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9711, '2021-08-10', 2088, 9319, 952, 6006, '2.0000', '1.3800', '1.3800', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9712, '2021-08-10', 2916, 9320, 952, 22658, '1.0000', '13.7500', '13.7500', '20.0000', '20.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9713, '2021-08-10', 1529, 9321, 952, 23578, '1.0000', '10292.4448', '10292.4448', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9714, '2021-08-10', 2320, 9322, 952, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9715, '2021-08-10', 1941, 9323, 952, 5601, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9716, '2021-08-10', 1888, 9324, 952, NULL, '1.0000', '90.0000', '90.0000', '21.0000', '21.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9717, '2021-08-10', 1655, 9325, 952, 22644, '1.0000', '54.8533', '54.8533', '45.0000', '45.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9718, '2021-08-10', 2592, 9326, 952, 22651, '1.0000', '7.8983', '7.8983', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9719, '2021-08-10', 1987, 9327, 952, 6456, '2.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9720, '2021-08-10', 1386, 9328, 952, 17862, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9721, '2021-08-10', 2289, 9329, 952, 22482, '5.0000', '0.2300', '0.2300', '0.5000', '0.5000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9722, '2021-08-10', 1841, 9330, 952, 4974, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9723, '2021-08-10', 1841, 9330, 952, NULL, '3.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9724, '2021-08-10', 1626, 9331, 952, 9413, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9725, '2021-08-10', 1935, 9332, 952, 22646, '1.0000', '23.0400', '23.0400', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9726, '2021-08-10', 1863, 9333, 952, 22488, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9727, '2021-08-10', 3017, 9334, 952, NULL, '1.0000', '3.9000', '3.9000', '5.5000', '5.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9728, '2021-08-10', 1961, 9335, 952, 22656, '1.0000', '18.3967', '18.3967', '26.0000', '26.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9729, '2021-08-10', 2548, 9336, 952, 17365, '1.0000', '6.7200', '6.7200', '9.0000', '9.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9730, '2021-08-10', 2321, 9337, 952, NULL, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9731, '2021-08-10', 1840, 9338, 952, 4973, '1.0000', '0.2400', '0.2400', '0.3000', '0.3000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9732, '2021-08-10', 1489, 9339, 952, 1492, '1.0000', '90.0000', '90.0000', '37.0000', '37.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9733, '2021-08-10', 2144, 9340, 952, NULL, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9734, '2021-08-10', 1863, 9341, 952, 22488, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9735, '2021-08-10', 1917, 9342, 952, 5512, '1.0000', '4.3600', '4.3600', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9736, '2021-08-10', 1546, 9343, 952, 12050, '4.0000', '90.0000', '90.0000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9737, '2021-08-10', 2236, 9344, 952, 3082, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9738, '2021-08-10', 2345, 9345, 952, 18656, '2.0000', '7.6400', '7.6400', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9739, '2021-08-10', 1695, 9346, 952, 18412, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9740, '2021-08-10', 1863, 9347, 953, 22488, '13.0000', '1.2200', '1.2200', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9741, '2021-08-10', 1863, 9347, 953, 21554, '11.0000', '1.2200', '1.2200', '2.0000', '2.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9742, '2021-08-10', 1689, 9348, 954, 2469, '1.0000', '12.3500', '12.3500', '17.0000', '17.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9743, '2021-08-10', 1863, 9349, 954, 21554, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9744, '2021-08-10', 1620, 9350, 954, 22638, '4.0000', '39.8457', '39.8457', '4.0000', '4.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9745, '2021-08-10', 1805, 9351, 954, 23203, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9746, '2021-08-10', 2942, 9352, 954, 21548, '1.0000', '0.4900', '0.4900', '2.0000', '2.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9747, '2021-08-10', 1840, 9353, 954, 4973, '1.0000', '0.2400', '0.2400', '0.3000', '0.3000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9748, '2021-08-10', 1735, 9354, 954, NULL, '14.0000', '4.6000', '4.6000', '6.0000', '6.0000', '-14.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9749, '2021-08-10', 1841, 9355, 954, NULL, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9750, '2021-08-10', 2604, 9356, 954, 18405, '1.0000', '90.0000', '90.0000', '120.0000', '120.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9751, '2021-08-10', 1730, 9357, 954, 23608, '1.0000', '23.9100', '23.9100', '32.0000', '32.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9752, '2021-08-10', 1687, 9358, 954, 23573, '1.0000', '15.3580', '15.3580', '15.5000', '15.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9753, '2021-08-10', 2810, 9359, 954, 23575, '5.0000', '2.2000', '2.2000', '2.9000', '2.9000', '20.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9754, '2021-08-10', 2030, 9360, 954, 21812, '1.0000', '10.0000', '10.0000', '14.0000', '14.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9755, '2021-08-10', 2285, 9361, 954, 22649, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9756, '2021-08-10', 1864, 9362, 954, 4993, '1.0000', '6.0500', '6.0500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9757, '2021-08-10', 2260, 9363, 954, 12238, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9758, '2021-08-10', 2260, 9363, 954, 11021, '2.0000', '4.2000', '4.2000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9759, '2021-08-10', 2260, 9363, 954, 11022, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9760, '2021-08-10', 1863, 9364, 954, 21554, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9761, '2021-08-10', 1665, 9365, 954, 22236, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9762, '2021-08-10', 2234, 9366, 955, NULL, '1.0000', '13.6000', '13.6000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9763, '2021-08-10', 1590, 9367, 955, NULL, '1.0000', '1.7100', '1.7100', '2.2000', '2.2000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9764, '2021-08-10', 2379, 9368, 955, 23165, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9765, '2021-08-10', 1501, 9369, 955, NULL, '1.0000', '90.0000', '90.0000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9766, '2021-08-10', 1841, 9370, 955, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9767, '2021-08-10', 2167, 9371, 955, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9768, '2021-08-10', 1523, 9372, 955, NULL, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9769, '2021-08-10', 1432, 9373, 955, NULL, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9770, '2021-08-10', 2237, 9374, 955, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '23.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9771, '2021-08-10', 2951, 9375, 955, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9772, '2021-08-10', 1499, 9376, 955, NULL, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9773, '2021-08-10', 1666, 9377, 955, NULL, '1.0000', '90.0000', '90.0000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9774, '2021-08-10', 1935, 9378, 955, NULL, '2.0000', '90.0000', '90.0000', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9775, '2021-08-10', 2985, 9379, 955, 22600, '1.0000', '28.1000', '28.1000', '37.0000', '37.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9776, '2021-08-10', 2251, 9380, 955, NULL, '1.0000', '11.6400', '11.6400', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9777, '2021-08-10', 2989, 9381, 955, 22602, '2.0000', '0.9200', '0.9200', '1.0000', '1.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9778, '2021-08-10', 2169, 9382, 955, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9779, '2021-08-10', 2739, 9383, 955, 19347, '1.0000', '6.7000', '6.7000', '2.2000', '2.2000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9780, '2021-08-10', 1590, 9384, 955, NULL, '3.0000', '1.7100', '1.7100', '2.2000', '2.2000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9781, '2021-08-10', 1680, 9385, 955, NULL, '1.0000', '4.9200', '4.9200', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9782, '2021-08-10', 1863, 9386, 955, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9783, '2021-08-10', 1557, 9387, 955, NULL, '1.0000', '7.8800', '7.8800', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9784, '2021-08-10', 1512, 9388, 955, NULL, '1.0000', '4.1000', '4.1000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9785, '2021-08-10', 1947, 9389, 956, 2497, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9786, '2021-08-10', 2177, 9390, 956, 8147, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9787, '2021-08-10', 2173, 9391, 956, 8150, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9788, '2021-08-10', 2199, 9392, 956, 8179, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9789, '2021-08-10', 2634, 9393, 956, 10299, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9790, '2021-08-10', 2240, 9394, 956, 22237, '1.0000', '33.0000', '33.0000', '49.0000', '49.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9791, '2021-08-10', 1641, 9395, 956, 17454, '15.0000', '90.0000', '90.0000', '1.3000', '1.3000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9792, '2021-08-10', 2272, 9396, 956, 22653, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9793, '2021-08-10', 2233, 9397, 956, 22654, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9794, '2021-08-10', 1863, 9398, 956, 21554, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9795, '2021-08-10', 1935, 9399, 956, 22646, '1.0000', '23.0400', '23.0400', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9796, '2021-08-10', 1340, 9400, 956, 13569, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9797, '2021-08-10', 2408, 9401, 956, 16906, '1.0000', '8.6200', '8.6200', '12.5000', '12.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9798, '2021-08-10', 1839, 9402, 956, 17318, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9799, '2021-08-10', 2655, 9403, 956, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9800, '2021-08-10', 2459, 9404, 957, 23834, '2.0000', '4.4444', '4.4444', '7.5000', '7.5000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9801, '2021-08-10', 1837, 9405, 957, NULL, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9802, '2021-08-10', 2592, 9406, 957, 22651, '1.0000', '7.8983', '7.8983', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9803, '2021-08-10', 2600, 9407, 958, NULL, '1.0000', '56.5000', '56.5000', '74.5000', '74.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9804, '2021-08-10', 2829, 9408, 958, 16965, '1.0000', '23.8700', '23.8700', '33.0000', '33.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9805, '2021-08-11', 1536, 9409, 959, 13735, '14.0000', '90.0000', '90.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9806, '2021-08-11', 1851, 9410, 959, 19852, '1.0000', '11.5600', '11.5600', '16.5000', '16.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9807, '2021-08-11', 1596, 9411, 959, 19850, '1.0000', '2.5700', '2.5700', '3.8300', '3.8300', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9808, '2021-08-11', 1779, 9412, 959, NULL, '4.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9809, '2021-08-11', 2459, 9413, 959, 22608, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9810, '2021-08-11', 2693, 9414, 959, 23177, '1.0000', '25.3300', '25.3300', '33.0000', '33.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9811, '2021-08-11', 2492, 9415, 959, NULL, '1.0000', '21.9900', '21.9900', '30.0000', '30.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9812, '2021-08-11', 1702, 9416, 959, NULL, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9813, '2021-08-11', 2309, 9417, 959, NULL, '1.0000', '1.9900', '1.9900', '2.6000', '2.6000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9814, '2021-08-11', 2821, 9418, 959, 19816, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9815, '2021-08-11', 3026, 9419, 959, 23731, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '11.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9816, '2021-08-11', 2268, 9420, 959, 23169, '2.0000', '7.3000', '7.3000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9817, '2021-08-11', 1661, 9421, 959, NULL, '1.0000', '32.1800', '32.1800', '42.0000', '42.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9818, '2021-08-11', 3006, 9422, 959, NULL, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9819, '2021-08-11', 1822, 9423, 959, NULL, '10.0000', '2.4000', '2.4000', '3.0000', '3.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9820, '2021-08-11', 3018, 9424, 959, NULL, '1.0000', '4.9100', '4.9100', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9821, '2021-08-11', 2350, 9425, 959, NULL, '1.0000', '10.3800', '10.3800', '13.5000', '13.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9822, '2021-08-11', 1702, 9426, 959, NULL, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9823, '2021-08-11', 1665, 9427, 959, NULL, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9824, '2021-08-11', 1602, 9428, 959, NULL, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9825, '2021-08-11', 1619, 9429, 959, NULL, '1.0000', '9.8500', '9.8500', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9826, '2021-08-11', 1840, 9430, 959, 19856, '1.0000', '0.2400', '0.2400', '0.3000', '0.3000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9827, '2021-08-11', 1346, 9431, 959, NULL, '10.0000', '0.9300', '0.9300', '1.5000', '1.5000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9828, '2021-08-11', 2546, 9432, 959, NULL, '1.0000', '13.6300', '13.6300', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9829, '2021-08-11', 1519, 9433, 959, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '13.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9830, '2021-08-11', 2315, 9434, 959, NULL, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9831, '2021-08-11', 1662, 9435, 959, NULL, '1.0000', '90.0000', '90.0000', '69.0000', '69.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9832, '2021-08-11', 1675, 9436, 959, NULL, '1.0000', '90.0000', '90.0000', '29.0000', '29.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9833, '2021-08-11', 2169, 9437, 959, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9834, '2021-08-11', 1912, 9438, 959, NULL, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9835, '2021-08-11', 2104, 9439, 960, 6016, '3.0000', '0.2000', '0.2000', '0.5000', '0.5000', '121.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9836, '2021-08-11', 2289, 9440, 960, 22482, '1.0000', '0.2300', '0.2300', '0.5000', '0.5000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9837, '2021-08-11', 1841, 9441, 960, NULL, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9838, '2021-08-11', 2416, 9442, 960, 4827, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9839, '2021-08-11', 2706, 9443, 960, 14584, '1.0000', '6.5900', '6.5900', '9.0000', '9.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9840, '2021-08-11', 1657, 9444, 960, NULL, '4.0000', '90.0000', '90.0000', '0.6000', '0.6000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9841, '2021-08-11', 1529, 9445, 960, 23578, '1.0000', '10292.4448', '10292.4448', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9842, '2021-08-11', 1812, 9446, 960, 23603, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '15.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9843, '2021-08-11', 2025, 9447, 960, 21808, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9844, '2021-08-11', 1867, 9448, 960, NULL, '10.0000', '10.0500', '10.0500', '1.3000', '1.3000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9845, '2021-08-11', 1425, 9449, 960, 23626, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9846, '2021-08-11', 1432, 9450, 960, 23627, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9847, '2021-08-11', 2643, 9451, 960, 10577, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9848, '2021-08-11', 2255, 9452, 960, 12676, '1.0000', '17.4900', '17.4900', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9849, '2021-08-11', 2313, 9453, 960, 5631, '2.0000', '8.7000', '8.7000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9850, '2021-08-11', 1425, 9454, 960, 23626, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9851, '2021-08-11', 1863, 9455, 960, 21554, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9852, '2021-08-11', 1393, 9456, 960, NULL, '1.0000', '6.5000', '6.5000', '8.5000', '8.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9853, '2021-08-11', 2293, 9457, 960, 3064, '3.0000', '1.4400', '1.4400', '2.0000', '2.0000', '70.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9854, '2021-08-11', 1639, 9458, 960, 23616, '2.0000', '6.6300', '6.6300', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9855, '2021-08-11', 2618, 9459, 960, 10553, '3.0000', '4.1000', '4.1000', '5.5000', '5.5000', '35.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9856, '2021-08-11', 1574, 9460, 960, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.5000', '42.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9857, '2021-08-11', 2220, 9461, 960, 23604, '1.0000', '2.1473', '2.1473', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9858, '2021-08-11', 1866, 9462, 960, 16903, '1.0000', '4.7500', '4.7500', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9859, '2021-08-11', 2710, 9463, 960, 13629, '1.0000', '40.3000', '40.3000', '53.0000', '53.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9860, '2021-08-11', 1523, 9464, 961, NULL, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9861, '2021-08-11', 2992, 9465, 961, 23119, '2.0000', '2.6000', '2.6000', '3.5000', '3.5000', '27.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9862, '2021-08-11', 1863, 9466, 961, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9863, '2021-08-11', 2237, 9467, 961, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '22.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9864, '2021-08-11', 2670, 9468, 962, 11896, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '94.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9865, '2021-08-11', 1946, 9469, 962, 6000, '1.0000', '10.0000', '10.0000', '5.0000', '5.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9866, '2021-08-11', 1599, 9470, 962, 12071, '1.0000', '12.8100', '12.8100', '3.0000', '3.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9867, '2021-08-11', 2908, 9471, 962, 18685, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '98.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9868, '2021-08-11', 1651, 9472, 962, 23577, '1.0000', '7.2411', '7.2411', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9869, '2021-08-11', 2951, 9473, 963, NULL, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9870, '2021-08-11', 2221, 9474, 964, 22606, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9871, '2021-08-11', 1523, 9475, 964, NULL, '1.0000', '0.9300', '0.9300', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9872, '2021-08-11', 2283, 9476, 965, NULL, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9873, '2021-08-11', 1935, 9477, 965, NULL, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9874, '2021-08-11', 2068, 9478, 965, 23686, '1.0000', '11.6200', '11.6200', '17.0000', '17.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9875, '2021-08-11', 2769, 9479, 965, NULL, '2.0000', '0.5000', '0.5000', '2.5000', '2.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9876, '2021-08-11', 1499, 9480, 965, NULL, '4.0000', '0.4100', '0.4100', '0.6000', '0.6000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9877, '2021-08-11', 1643, 9481, 966, 23695, '1.0000', '40.3900', '40.3900', '53.0000', '53.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9878, '2021-08-11', 1612, 9482, 966, NULL, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9879, '2021-08-11', 2829, 9483, 966, NULL, '1.0000', '23.8700', '23.8700', '33.0000', '33.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9880, '2021-08-11', 2169, 9484, 966, NULL, '3.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9881, '2021-08-11', 1912, 9485, 966, NULL, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9882, '2021-08-11', 1602, 9486, 966, NULL, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9883, '2021-08-11', 2242, 9487, 966, NULL, '1.0000', '0.4800', '0.4800', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9884, '2021-08-11', 1529, 9488, 966, 13747, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9885, '2021-08-11', 2777, 9489, 966, NULL, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9886, '2021-08-11', 2167, 9490, 967, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9887, '2021-08-11', 1863, 9491, 968, 21554, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9888, '2021-08-11', 1649, 9492, 968, NULL, '1.0000', '37.4600', '37.4600', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9889, '2021-08-11', 2233, 9493, 968, 18675, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9890, '2021-08-11', 2226, 9494, 968, 1712, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9891, '2021-08-11', 2327, 9495, 968, 23719, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9892, '2021-08-11', 1665, 9496, 968, 22236, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9893, '2021-08-11', 2270, 9497, 968, 17490, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9894, '2021-08-11', 2315, 9498, 968, 3069, '3.0000', '0.3300', '0.3300', '0.5000', '0.5000', '367.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9895, '2021-08-11', 1863, 9499, 968, 21554, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9896, '2021-08-11', 1533, 9500, 968, 10385, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9897, '2021-08-11', 2506, 9501, 968, 22648, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9898, '2021-08-11', 2244, 9502, 968, NULL, '1.0000', '7.3600', '7.3600', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9899, '2021-08-11', 2955, 9503, 968, 21542, '1.0000', '4.8000', '4.8000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9900, '2021-08-11', 2279, 9504, 968, 23614, '1.0000', '2.6280', '2.6280', '4.0000', '4.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9901, '2021-08-11', 1409, 9505, 968, 22230, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9902, '2021-08-11', 2320, 9506, 968, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9903, '2021-08-11', 2265, 9507, 968, NULL, '1.0000', '28.0000', '28.0000', '38.0000', '38.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9904, '2021-08-11', 2928, 9508, 968, 19029, '1.0000', '42.3000', '42.3000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9905, '2021-08-11', 1373, 9509, 968, 4816, '3.0000', '90.0000', '90.0000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9906, '2021-08-11', 1504, 9510, 968, 23217, '10.0000', '14.6809', '14.6809', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9907, '2021-08-11', 2408, 9511, 968, 16906, '1.0000', '8.6200', '8.6200', '12.5000', '12.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9908, '2021-08-11', 2037, 9512, 968, 18355, '1.0000', '10.0000', '10.0000', '14.0000', '14.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9909, '2021-08-11', 1727, 9513, 968, 6803, '5.0000', '1.8000', '1.8000', '2.6000', '2.6000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9910, '2021-08-11', 1796, 9514, 968, NULL, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9911, '2021-08-11', 2951, 9515, 969, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9912, '2021-08-11', 1532, 9516, 969, 22261, '1.0000', '0.8000', '0.8000', '1.5000', '1.5000', '46.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9913, '2021-08-11', 1504, 9517, 969, NULL, '10.0000', '1.5000', '1.5000', '2.0000', '2.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9914, '2021-08-11', 1675, 9518, 969, NULL, '1.0000', '21.3600', '21.3600', '29.0000', '29.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9915, '2021-08-11', 2167, 9519, 969, 1603, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9916, '2021-08-11', 2989, 9520, 969, NULL, '1.0000', '0.9200', '0.9200', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9917, '2021-08-11', 1473, 9521, 969, 123, '1.0000', '90.0000', '90.0000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9918, '2021-08-11', 2302, 9522, 969, 2963, '-4.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9919, '2021-08-11', 2302, 9522, 969, NULL, '5.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9920, '2021-08-11', 1672, 9523, 970, 17838, '20.0000', '90.0000', '90.0000', '3.9000', '3.9000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9921, '2021-08-11', 1687, 9524, 970, 23573, '2.0000', '15.3580', '15.3580', '15.5000', '15.5000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9922, '2021-08-11', 1824, 9525, 970, 4959, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9923, '2021-08-11', 1550, 9526, 970, 16692, '1.0000', '90.0000', '90.0000', '18.5000', '18.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9924, '2021-08-11', 1533, 9527, 970, 10385, '2.0000', '3.0500', '3.0500', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9925, '2021-08-11', 1519, 9528, 970, 1524, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9926, '2021-08-11', 2847, 9529, 970, 17077, '3.0000', '13.8800', '13.8800', '18.0000', '18.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9927, '2021-08-11', 2393, 9530, 970, 17864, '1.0000', '2.0000', '2.0000', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9928, '2021-08-11', 1952, 9531, 970, 3401, '1.0000', '37.2300', '37.2300', '49.0000', '49.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9929, '2021-08-11', 2132, 9532, 970, 4404, '1.0000', '22.0000', '22.0000', '24.0000', '24.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9930, '2021-08-11', 2686, 9533, 970, 12777, '1.0000', '35.0000', '35.0000', '45.0000', '45.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9931, '2021-08-11', 2522, 9534, 970, 7523, '1.0000', '4.8000', '4.8000', '9.0000', '9.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9932, '2021-08-11', 1785, 9535, 970, 18440, '2.0000', '14.0500', '14.0500', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9933, '2021-08-11', 2403, 9536, 970, 13547, '1.0000', '17.8000', '17.8000', '24.0000', '24.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9934, '2021-08-11', 2390, 9537, 970, 4397, '4.0000', '7.4000', '7.4000', '9.0000', '9.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9935, '2021-08-11', 2556, 9538, 970, 7130, '2.0000', '0.5800', '0.5800', '1.0000', '1.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9936, '2021-08-11', 2655, 9539, 970, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9937, '2021-08-11', 2650, 9540, 971, 12033, '-1.0000', '7.3200', '7.3200', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9938, '2021-08-11', 2650, 9540, 971, NULL, '2.0000', '7.3200', '7.3200', '10.0000', '10.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9939, '2021-08-11', 1529, 9541, 971, NULL, '2.0000', '3.5500', '3.5500', '5.0000', '5.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9940, '2021-08-11', 2660, 9542, 971, NULL, '4.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9941, '2021-08-11', 2263, 9543, 971, 17334, '1.0000', '6.5600', '6.5600', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9942, '2021-08-11', 2286, 9544, 971, 2946, '-1.0000', '4.3000', '4.3000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9943, '2021-08-11', 2286, 9544, 971, NULL, '13.0000', '4.3000', '4.3000', '6.0000', '6.0000', '-13.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9944, '2021-08-11', 2320, 9545, 971, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9945, '2021-08-11', 1807, 9546, 971, 16442, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '12.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9946, '2021-08-11', 2556, 9547, 971, 7196, '-17.0000', '0.5800', '0.5800', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9947, '2021-08-11', 2556, 9547, 971, NULL, '18.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-18.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9948, '2021-08-11', 2285, 9548, 971, 2945, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9949, '2021-08-11', 2255, 9549, 971, 18849, '1.0000', '17.4900', '17.4900', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9950, '2021-08-11', 1502, 9550, 971, 18925, '1.0000', '7.8000', '7.8000', '10.5000', '10.5000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9951, '2021-08-11', 1667, 9551, 971, 9745, '-6.0000', '5.9400', '5.9400', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9952, '2021-08-11', 1667, 9551, 971, NULL, '7.0000', '5.9400', '5.9400', '8.0000', '8.0000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9953, '2021-08-11', 2821, 9552, 971, NULL, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9954, '2021-08-11', 1409, 9553, 971, NULL, '1.0000', '13.0000', '13.0000', '17.5000', '17.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9955, '2021-08-11', 1805, 9554, 971, NULL, '1.0000', '195.3170', '195.3170', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9956, '2021-08-11', 2951, 9555, 971, NULL, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9957, '2021-08-11', 1863, 9556, 971, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9958, '2021-08-11', 2302, 9557, 971, 2963, '-5.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9959, '2021-08-11', 2302, 9557, 971, NULL, '6.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9960, '2021-08-11', 1386, 9558, 971, 22316, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9961, '2021-08-11', 2360, 9559, 971, NULL, '4.0000', '0.5200', '0.5200', '0.6900', '0.6900', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9962, '2021-08-11', 1863, 9560, 972, 24011, '1.0000', '1.2242', '1.2242', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9963, '2021-08-11', 2135, 9561, 972, 16894, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9964, '2021-08-11', 1785, 9562, 972, 18441, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9965, '2021-08-11', 1541, 9563, 972, 18054, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9966, '2021-08-11', 1674, 9564, 972, 17855, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9967, '2021-08-11', 1947, 9565, 972, 2497, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '14.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9968, '2021-08-11', 1602, 9566, 972, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9969, '2021-08-11', 1809, 9567, 972, 22647, '1.0000', '9.2727', '9.2727', '12.5000', '12.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9970, '2021-08-11', 2169, 9568, 973, 23579, '1.0000', '0.8909', '0.8909', '1.5000', '1.5000', '22.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9971, '2021-08-11', 1651, 9569, 973, 23577, '1.0000', '7.2411', '7.2411', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9972, '2021-08-11', 2471, 9570, 974, 5091, '1.0000', '10.0000', '10.0000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9973, '2021-08-11', 1411, 9571, 974, 21565, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9974, '2021-08-11', 1533, 9572, 975, NULL, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9975, '2021-08-11', 1529, 9573, 975, 13747, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9976, '2021-08-11', 1665, 9574, 975, NULL, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9977, '2021-08-11', 2733, 9575, 975, 19362, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9978, '2021-08-11', 1863, 9576, 975, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9979, '2021-08-11', 1651, 9577, 976, 24031, '2.0000', '7.0117', '7.0117', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9980, '2021-08-11', 2974, 9578, 976, 22239, '1.0000', '5.0000', '5.0000', '8.0000', '8.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9981, '2021-08-12', 2547, 9579, 977, 10321, '2.0000', '8.7600', '8.7600', '11.5000', '11.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9982, '2021-08-12', 3037, 9580, 977, 24005, '1.0000', '46.9000', '46.9000', '62.0000', '62.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9983, '2021-08-12', 1609, 9581, 977, 9425, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9984, '2021-08-12', 2277, 9582, 977, 3117, '3.0000', '0.7800', '0.7800', '1.0000', '1.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9985, '2021-08-12', 2303, 9583, 977, 3139, '1.0000', '16.1000', '16.1000', '21.5000', '21.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9986, '2021-08-12', 2344, 9584, 977, 3887, '1.0000', '18.2000', '18.2000', '24.5000', '24.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9987, '2021-08-12', 2293, 9585, 977, 3064, '3.0000', '1.4400', '1.4400', '2.0000', '2.0000', '67.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9988, '2021-08-12', 2169, 9586, 977, 23579, '1.0000', '0.8909', '0.8909', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9989, '2021-08-12', 1748, 9587, 977, 1527, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9990, '2021-08-12', 1346, 9588, 977, 22215, '3.0000', '0.9300', '0.9300', '1.5000', '1.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9991, '2021-08-12', 1346, 9588, 977, NULL, '4.0000', '0.9300', '0.9300', '1.5000', '1.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9992, '2021-08-12', 1672, 9589, 977, 17044, '6.0000', '90.0000', '90.0000', '3.9000', '3.9000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9993, '2021-08-12', 1672, 9589, 977, 17045, '4.0000', '90.0000', '90.0000', '3.9000', '3.9000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9994, '2021-08-12', 1550, 9590, 977, 11855, '1.0000', '90.0000', '90.0000', '18.5000', '18.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9995, '2021-08-12', 1379, 9591, 977, 23595, '1.0000', '83.0000', '83.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (9996, '2021-08-12', 2934, 9592, 977, 21567, '1.0000', '9.8000', '9.8000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9997, '2021-08-12', 1912, 9593, 977, 9575, '-4.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9998, '2021-08-12', 1912, 9593, 977, 9575, '-4.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (9999, '2021-08-12', 1912, 9593, 977, 9575, '-4.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10000, '2021-08-12', 1912, 9593, 977, 1503, '6.0000', '0.3100', '0.3100', '1.0000', '1.0000', '31.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10001, '2021-08-12', 2384, 9594, 977, 23597, '2.0000', '0.0064', '0.0064', '0.7000', '0.7000', '48.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10002, '2021-08-12', 2825, 9595, 977, NULL, '1.0000', '12.0000', '12.0000', '10.5600', '10.5600', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10003, '2021-08-12', 1871, 9596, 977, 22495, '4.0000', '90.0000', '90.0000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10004, '2021-08-12', 2660, 9597, 977, 18686, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10005, '2021-08-12', 2237, 9598, 977, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10006, '2021-08-12', 2143, 9599, 977, NULL, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10007, '2021-08-12', 2558, 9600, 978, 24140, '1.0000', '6.0000', '6.0000', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10008, '2021-08-12', 1602, 9601, 978, NULL, '1.0000', '6.9900', '6.9900', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10009, '2021-08-12', 2108, 9602, 978, NULL, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10010, '2021-08-12', 2556, 9603, 978, NULL, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10011, '2021-08-12', 1367, 9604, 978, 18939, '10.0000', '49.2100', '49.2100', '7.0000', '7.0000', '90.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10012, '2021-08-12', 2061, 9605, 978, 13773, '1.0000', '10.9800', '10.9800', '15.0000', '15.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10013, '2021-08-12', 1953, 9606, 978, 22377, '1.0000', '2.4900', '2.4900', '4.0000', '4.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10014, '2021-08-12', 2378, 9607, 978, NULL, '1.0000', '18.0000', '18.0000', '23.5000', '23.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10015, '2021-08-12', 2169, 9608, 978, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10016, '2021-08-12', 2342, 9609, 978, 19387, '5.0000', '1.8600', '1.8600', '2.5000', '2.5000', '95.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10017, '2021-08-12', 1497, 9610, 978, NULL, '1.0000', '11.0000', '11.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10018, '2021-08-12', 2281, 9611, 978, NULL, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10019, '2021-08-12', 1499, 9612, 978, NULL, '1.0000', '0.4100', '0.4100', '0.6000', '0.6000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10020, '2021-08-12', 1577, 9613, 978, NULL, '1.0000', '2.1000', '2.1000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10021, '2021-08-12', 1825, 9614, 978, 23678, '1.0000', '4.7700', '4.7700', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10022, '2021-08-12', 2699, 9615, 978, NULL, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10023, '2021-08-12', 2083, 9616, 978, NULL, '2.0000', '0.5800', '0.5800', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10024, '2021-08-12', 1912, 9617, 978, NULL, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10025, '2021-08-12', 1573, 9618, 978, 23173, '1.0000', '24.6200', '24.6200', '32.5000', '32.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10026, '2021-08-12', 1942, 9619, 979, 18704, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10027, '2021-08-12', 1674, 9620, 979, 17855, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10028, '2021-08-12', 2305, 9621, 979, 10556, '1.0000', '1.3300', '1.3300', '9.0000', '9.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10029, '2021-08-12', 1761, 9622, 979, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10030, '2021-08-12', 1677, 9623, 979, 2442, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10031, '2021-08-12', 1942, 9624, 980, 5600, '1.0000', '19.5000', '19.5000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10032, '2021-08-12', 1674, 9625, 980, 2439, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10033, '2021-08-12', 2305, 9626, 980, 10556, '1.0000', '1.3300', '1.3300', '9.0000', '9.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10034, '2021-08-12', 1761, 9627, 980, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '19.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10035, '2021-08-12', 1677, 9628, 980, 2442, '1.0000', '7.8000', '7.8000', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10036, '2021-08-12', 2760, 9629, 981, NULL, '1.0000', '7.9300', '7.9300', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10037, '2021-08-12', 1812, 9630, 981, 23688, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10038, '2021-08-12', 1528, 9631, 981, NULL, '8.0000', '90.0000', '90.0000', '6.0000', '6.0000', '-8.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10039, '2021-08-12', 1780, 9632, 982, 22387, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10040, '2021-08-12', 2379, 9633, 982, 23165, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10041, '2021-08-12', 1386, 9634, 982, NULL, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10042, '2021-08-12', 1727, 9635, 982, 23113, '3.0000', '1.9500', '1.9500', '2.6000', '2.6000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10043, '2021-08-12', 2250, 9636, 983, 23681, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10044, '2021-08-12', 1629, 9637, 983, 23682, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10045, '2021-08-12', 2951, 9638, 983, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10046, '2021-08-12', 1519, 9639, 984, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '12.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10047, '2021-08-12', 1805, 9640, 984, NULL, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10048, '2021-08-12', 2169, 9641, 985, 23579, '2.0000', '0.8909', '0.8909', '1.5000', '1.5000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10049, '2021-08-12', 2486, 9642, 985, 21821, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '45.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10050, '2021-08-12', 2302, 9643, 985, 24104, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10051, '2021-08-12', 2289, 9644, 985, 22482, '3.0000', '0.2300', '0.2300', '0.5000', '0.5000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10052, '2021-08-12', 1828, 9645, 985, 4963, '2.0000', '0.7300', '0.7300', '1.0000', '1.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10053, '2021-08-12', 1841, 9646, 985, 24123, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '43.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10054, '2021-08-12', 1840, 9647, 985, 4973, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10055, '2021-08-12', 1871, 9648, 985, 22495, '6.0000', '90.0000', '90.0000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10056, '2021-08-12', 1871, 9648, 985, 18052, '4.0000', '90.0000', '90.0000', '3.0000', '3.0000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10057, '2021-08-12', 2289, 9649, 985, 22482, '3.0000', '0.2300', '0.2300', '0.5000', '0.5000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10058, '2021-08-12', 1536, 9650, 985, 3538, '6.0000', '99.4596', '99.4596', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10059, '2021-08-12', 1536, 9650, 985, 1666, '8.0000', '99.4596', '99.4596', '5.0000', '5.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10060, '2021-08-12', 2061, 9651, 985, 22484, '1.0000', '10.9800', '10.9800', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10061, '2021-08-12', 1675, 9652, 985, 2440, '1.0000', '44.1200', '44.1200', '29.0000', '29.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10062, '2021-08-12', 1433, 9653, 985, 11142, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10063, '2021-08-12', 2029, 9654, 985, 21811, '1.0000', '11.0000', '11.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10064, '2021-08-12', 1638, 9655, 985, 17314, '16.0000', '5.8200', '5.8200', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10065, '2021-08-12', 1905, 9656, 985, 5509, '1.0000', '0.4000', '0.4000', '1.0000', '1.0000', '76.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10066, '2021-08-12', 2967, 9657, 985, 21798, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10067, '2021-08-12', 2294, 9658, 985, 18667, '1.0000', '3.5000', '3.5000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10068, '2021-08-12', 2876, 9659, 985, 17901, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10069, '2021-08-12', 1713, 9660, 985, 9480, '1.0000', '15.1700', '15.1700', '20.0000', '20.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10070, '2021-08-12', 2221, 9661, 985, 22218, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10071, '2021-08-12', 1574, 9662, 985, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.5000', '41.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10072, '2021-08-12', 2514, 9663, 985, 7518, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10073, '2021-08-12', 1722, 9664, 985, 6809, '1.0000', '2.5900', '2.5900', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10074, '2021-08-12', 1812, 9665, 985, 23603, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '14.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10075, '2021-08-12', 1863, 9666, 985, 24011, '1.0000', '1.2242', '1.2242', '2.0000', '2.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10076, '2021-08-12', 1935, 9667, 985, 22646, '1.0000', '23.0400', '23.0400', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10077, '2021-08-12', 1626, 9668, 985, 24126, '1.0000', '7.5900', '7.5900', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10078, '2021-08-12', 1529, 9669, 985, 23578, '1.0000', '10292.4448', '10292.4448', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10079, '2021-08-12', 2618, 9670, 985, 10553, '2.0000', '4.1000', '4.1000', '5.5000', '5.5000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10080, '2021-08-12', 1603, 9671, 985, 16916, '1.0000', '55.1600', '55.1600', '78.5000', '78.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10081, '2021-08-12', 2291, 9672, 985, 3131, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10082, '2021-08-12', 1637, 9673, 985, 17491, '1.0000', '90.0000', '90.0000', '14.0000', '14.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10083, '2021-08-12', 1602, 9674, 985, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10084, '2021-08-12', 2701, 9675, 985, 12753, '1.0000', '31.9800', '31.9800', '42.0000', '42.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10085, '2021-08-12', 2365, 9676, 985, 9561, '20.0000', '15.0000', '15.0000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10086, '2021-08-12', 2618, 9677, 985, 10553, '2.0000', '4.1000', '4.1000', '5.5000', '5.5000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10087, '2021-08-12', 2309, 9678, 985, 6777, '3.0000', '1.9900', '1.9900', '2.6000', '2.6000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10088, '2021-08-12', 2592, 9679, 985, 22651, '1.0000', '7.8983', '7.8983', '11.0000', '11.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10089, '2021-08-12', 2592, 9679, 985, 18070, '1.0000', '7.8983', '7.8983', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10090, '2021-08-12', 1863, 9680, 985, 24011, '2.0000', '1.2242', '1.2242', '2.0000', '2.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10091, '2021-08-12', 1863, 9680, 985, 17319, '1.0000', '1.2242', '1.2242', '2.0000', '2.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10092, '2021-08-12', 2109, 9681, 985, 6021, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '124.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10093, '2021-08-12', 1811, 9682, 985, 18694, '1.0000', '14.5300', '14.5300', '19.5000', '19.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10094, '2021-08-12', 2402, 9683, 986, 4359, '2.0000', '1.0000', '1.0000', '1.5000', '1.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10095, '2021-08-12', 1846, 9684, 986, 24271, '1.0000', '131.0188', '131.0188', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10096, '2021-08-12', 1863, 9685, 986, 17319, '2.0000', '1.2242', '1.2242', '2.0000', '2.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10097, '2021-08-12', 1667, 9686, 986, 24265, '1.0000', '114.0069', '114.0069', '8.5000', '8.5000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10098, '2021-08-12', 1665, 9687, 986, 22236, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10099, '2021-08-12', 2487, 9688, 986, 5198, '1.0000', '30.0000', '30.0000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10100, '2021-08-12', 1411, 9689, 986, 21565, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10101, '2021-08-12', 1663, 9690, 986, 9062, '1.0000', '90.0000', '90.0000', '129.0000', '129.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10102, '2021-08-12', 2327, 9691, 987, 23984, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '25.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10103, '2021-08-12', 1805, 9692, 987, NULL, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10104, '2021-08-12', 1504, 9693, 987, 23186, '10.0000', '1.5000', '1.5000', '2.0000', '2.0000', '30.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10105, '2021-08-12', 2263, 9694, 988, 13623, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10106, '2021-08-12', 2005, 9695, 988, NULL, '2.0000', '2.3300', '2.3300', '3.5000', '3.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10107, '2021-08-12', 1377, 9696, 988, 21572, '1.0000', '90.0000', '90.0000', '45.0000', '45.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10108, '2021-08-12', 1728, 9697, 988, 17366, '6.0000', '90.0000', '90.0000', '2.5000', '2.5000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10109, '2021-08-12', 1456, 9698, 988, 6791, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10110, '2021-08-12', 2317, 9699, 988, 15799, '2.0000', '15.0000', '15.0000', '18.0000', '18.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10111, '2021-08-12', 2829, 9700, 988, 24351, '1.0000', '25.3646', '25.3646', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10112, '2021-08-12', 1678, 9701, 988, NULL, '1.0000', '90.0000', '90.0000', '34.0000', '34.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10113, '2021-08-12', 1715, 9702, 988, NULL, '1.0000', '4.9200', '4.9200', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10114, '2021-08-12', 1455, 9703, 988, 5620, '1.0000', '4.0000', '4.0000', '7.0000', '7.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10115, '2021-08-13', 1771, 9704, 989, 6775, '1.0000', '5.2450', '5.2450', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10116, '2021-08-13', 2237, 9705, 989, 2781, '-5.0000', '1.0600', '1.0600', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10117, '2021-08-13', 2237, 9705, 989, NULL, '6.0000', '1.0600', '1.0600', '2.0000', '2.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10118, '2021-08-13', 1689, 9706, 989, 549, '1.0000', '60.7198', '60.7198', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10119, '2021-08-13', 2749, 9707, 989, NULL, '1.0000', '20.5000', '20.5000', '27.0000', '27.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10120, '2021-08-13', 1863, 9708, 989, 10808, '2.0000', '0.4136', '0.4136', '2.0000', '2.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10121, '2021-08-13', 1876, 9709, 989, 6312, '1.0000', '0.9126', '0.9126', '34.5000', '34.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10122, '2021-08-13', 1610, 9710, 989, NULL, '1.0000', '15.7500', '15.7500', '21.0000', '21.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10123, '2021-08-13', 1519, 9711, 989, 22245, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10124, '2021-08-13', 2302, 9712, 989, 2963, '-6.0000', '5.2000', '5.2000', '7.0000', '7.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10125, '2021-08-13', 2302, 9712, 989, NULL, '7.0000', '5.2000', '5.2000', '7.0000', '7.0000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10126, '2021-08-13', 2414, 9713, 989, 13510, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10127, '2021-08-13', 2414, 9713, 989, NULL, '3.0000', '3.4000', '3.4000', '5.0000', '5.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10128, '2021-08-13', 1478, 9714, 989, 18919, '1.0000', '50.6858', '50.6858', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10129, '2021-08-13', 2135, 9715, 989, NULL, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10130, '2021-08-13', 2487, 9716, 989, 18714, '1.0000', '23.7500', '23.7500', '30.0000', '30.0000', '5.0000', 1, 0, NULL, 166);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10131, '2021-08-13', 1608, 9717, 989, 8222, '-6.0000', '3.3500', '3.3500', '5.0000', '5.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10132, '2021-08-13', 1608, 9717, 989, NULL, '7.0000', '3.3500', '3.3500', '5.0000', '5.0000', '-7.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10133, '2021-08-13', 2643, 9718, 989, NULL, '1.0000', '0.8700', '0.8700', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10134, '2021-08-13', 1863, 9719, 989, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10135, '2021-08-13', 2109, 9720, 989, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '145.0000', 1, 0, NULL, 57);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10136, '2021-08-13', 2056, 9721, 989, 1034, '2.0000', '5.4100', '5.4100', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10137, '2021-08-13', 2660, 9722, 989, NULL, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10138, '2021-08-13', 2548, 9723, 989, NULL, '1.0000', '6.7200', '6.7200', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10139, '2021-08-13', 2085, 9724, 989, 8628, '5.0000', '-1.0741', '-1.0741', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10140, '2021-08-13', 2085, 9724, 989, 1175, '1.0000', '-1.0741', '-1.0741', '2.0000', '2.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10141, '2021-08-13', 2169, 9725, 989, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '36.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10142, '2021-08-13', 2360, 9726, 989, 3862, '-4.0000', '0.5200', '0.5200', '0.6900', '0.6900', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10143, '2021-08-13', 2360, 9726, 989, NULL, '5.0000', '0.5200', '0.5200', '0.6900', '0.6900', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10144, '2021-08-13', 2555, 9727, 990, NULL, '5.0000', '4.2000', '4.2000', '5.0000', '5.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10145, '2021-08-13', 1529, 9728, 990, 24189, '1.0000', '39.1471', '39.1471', '5.0000', '5.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10146, '2021-08-13', 1810, 9729, 990, 24204, '1.0000', '8.6700', '8.6700', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10147, '2021-08-13', 2061, 9730, 990, 24178, '1.0000', '10.9800', '10.9800', '15.0000', '15.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10148, '2021-08-13', 2320, 9731, 990, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10149, '2021-08-13', 1695, 9732, 990, 24187, '1.0000', '-133.5000', '-133.5000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10150, '2021-08-13', 2951, 9733, 991, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10151, '2021-08-13', 1307, 9734, 991, NULL, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10152, '2021-08-13', 1533, 9735, 991, NULL, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10153, '2021-08-13', 2315, 9736, 991, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10154, '2021-08-13', 2760, 9737, 991, NULL, '1.0000', '7.9300', '7.9300', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10155, '2021-08-13', 2592, 9738, 991, 24190, '1.0000', '7.9800', '7.9800', '11.0000', '11.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10156, '2021-08-13', 1805, 9739, 992, NULL, '2.0000', '195.3170', '195.3170', '6.0000', '6.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10157, '2021-08-13', 1700, 9740, 992, NULL, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10158, '2021-08-13', 2545, 9741, 993, 19338, '1.0000', '5.8800', '5.8800', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10159, '2021-08-13', 2280, 9742, 993, NULL, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10160, '2021-08-13', 2907, 9743, 993, NULL, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10161, '2021-08-13', 1310, 9744, 993, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10162, '2021-08-13', 1822, 9745, 994, NULL, '10.0000', '2.4000', '2.4000', '3.0000', '3.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10163, '2021-08-13', 2448, 9746, 994, NULL, '1.0000', '5.0000', '5.0000', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10164, '2021-08-13', 1935, 9747, 994, 5586, '-12.0000', '0.7200', '0.7200', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10165, '2021-08-13', 1935, 9747, 994, NULL, '13.0000', '0.7200', '0.7200', '2.0000', '2.0000', '-13.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10166, '2021-08-13', 1863, 9748, 994, 10808, '1.0000', '0.4136', '0.4136', '2.0000', '2.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10167, '2021-08-13', 2342, 9749, 995, 24173, '10.0000', '1.8600', '1.8600', '2.5000', '2.5000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10168, '2021-08-13', 1863, 9750, 995, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10169, '2021-08-13', 1935, 9751, 995, NULL, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10170, '2021-08-13', 2109, 9752, 995, NULL, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10171, '2021-08-13', 2232, 9753, 996, 13737, '1.0000', '27.0000', '27.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10172, '2021-08-13', 2908, 9754, 996, NULL, '2.0000', '0.2700', '0.2700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10173, '2021-08-13', 2237, 9755, 997, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '21.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10174, '2021-08-13', 2821, 9756, 997, 19816, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10175, '2021-08-13', 2085, 9757, 997, NULL, '10.0000', '13.3400', '13.3400', '2.0000', '2.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10176, '2021-08-13', 1840, 9758, 998, 19856, '3.0000', '0.2400', '0.2400', '0.3000', '0.3000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10177, '2021-08-13', 1696, 9759, 998, NULL, '1.0000', '10.2900', '10.2900', '13.5000', '13.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10178, '2021-08-13', 1743, 9760, 998, 19380, '1.0000', '3.9800', '3.9800', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10179, '2021-08-13', 2167, 9761, 999, NULL, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10180, '2021-08-13', 2280, 9762, 999, NULL, '1.0000', '1.9000', '1.9000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10181, '2021-08-13', 2169, 9763, 999, NULL, '2.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10182, '2021-08-13', 1529, 9764, 1000, 24189, '1.0000', '39.1471', '39.1471', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10183, '2021-08-13', 1871, 9765, 1001, 23988, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10184, '2021-08-13', 1871, 9765, 1001, NULL, '9.0000', '2.0000', '2.0000', '3.0000', '3.0000', '-9.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10185, '2021-08-13', 1519, 9766, 1001, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '11.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10186, '2021-08-13', 1529, 9767, 1002, 24189, '1.0000', '39.1471', '39.1471', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10187, '2021-08-13', 2951, 9768, 1002, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10188, '2021-08-13', 2916, 9769, 1002, 23676, '1.0000', '15.0176', '15.0176', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10189, '2021-08-13', 2660, 9770, 1003, 23143, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '40.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10190, '2021-08-13', 2916, 9771, 1003, 23676, '1.0000', '15.0176', '15.0176', '20.0000', '20.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10191, '2021-08-13', 2760, 9772, 1003, NULL, '1.0000', '7.9300', '7.9300', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10192, '2021-08-13', 1337, 9773, 1004, 23131, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10193, '2021-08-13', 2135, 9774, 1005, 16894, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10194, '2021-08-13', 1501, 9775, 1005, 23580, '1.0000', '1566.1965', '1566.1965', '3.0000', '3.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10195, '2021-08-13', 2309, 9776, 1005, 6777, '6.0000', '1.9900', '1.9900', '2.6000', '2.6000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10196, '2021-08-13', 2926, 9777, 1005, 18789, '2.0000', '20.0000', '20.0000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10197, '2021-08-13', 1780, 9778, 1005, 24006, '1.0000', '35.6000', '35.6000', '47.0000', '47.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10198, '2021-08-13', 1602, 9779, 1005, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10199, '2021-08-13', 1411, 9780, 1005, 17866, '1.0000', '25.0000', '25.0000', '34.0000', '34.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10200, '2021-08-13', 1502, 9781, 1005, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10201, '2021-08-13', 1667, 9782, 1005, 24265, '1.0000', '114.0069', '114.0069', '8.5000', '8.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10202, '2021-08-13', 1602, 9783, 1005, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10203, '2021-08-13', 2221, 9784, 1005, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '23.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10204, '2021-08-13', 1728, 9785, 1005, 17366, '2.0000', '90.0000', '90.0000', '2.5000', '2.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10205, '2021-08-13', 2169, 9786, 1005, 24338, '1.0000', '0.9502', '0.9502', '1.5000', '1.5000', '29.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10206, '2021-08-13', 2315, 9787, 1005, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '365.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10207, '2021-08-13', 2693, 9788, 1005, 18066, '1.0000', '25.0100', '25.0100', '33.0000', '33.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10208, '2021-08-13', 2011, 9789, 1005, 6434, '1.0000', '0.5300', '0.5300', '1.0000', '1.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10209, '2021-08-13', 1429, 9790, 1005, 24332, '1.0000', '13.0444', '13.0444', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10210, '2021-08-13', 1432, 9791, 1006, NULL, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10211, '2021-08-13', 2248, 9792, 1006, 24415, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10212, '2021-08-13', 1700, 9793, 1006, NULL, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10213, '2021-08-13', 2699, 9794, 1006, NULL, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10214, '2021-08-13', 2366, 9795, 1006, NULL, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10215, '2021-08-13', 1867, 9796, 1006, 23685, '10.0000', '1.0500', '1.0500', '1.3000', '1.3000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10216, '2021-08-13', 2109, 9797, 1006, NULL, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10217, '2021-08-13', 1863, 9798, 1006, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10218, '2021-08-13', 1763, 9799, 1007, 19383, '1.0000', '4.6900', '4.6900', '7.0000', '7.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10219, '2021-08-13', 2232, 9800, 1007, 13737, '1.0000', '27.0000', '27.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10220, '2021-08-13', 1521, 9801, 1007, NULL, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10221, '2021-08-13', 1310, 9802, 1008, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10222, '2021-08-13', 1727, 9803, 1008, 23113, '2.0000', '1.9500', '1.9500', '2.6000', '2.6000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10223, '2021-08-14', 2825, 9804, 1009, NULL, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10224, '2021-08-14', 1840, 9805, 1009, 4973, '2.0000', '0.2400', '0.2400', '0.3000', '0.3000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10225, '2021-08-14', 1841, 9806, 1009, 24123, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '41.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10226, '2021-08-14', 2289, 9807, 1009, 22482, '2.0000', '0.2300', '0.2300', '0.5000', '0.5000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10227, '2021-08-14', 2821, 9808, 1009, 17043, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10228, '2021-08-14', 2272, 9809, 1009, 22653, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10229, '2021-08-14', 1577, 9810, 1009, 9448, '1.0000', '2.1000', '2.1000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10230, '2021-08-14', 1346, 9811, 1009, NULL, '2.0000', '0.9300', '0.9300', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10231, '2021-08-14', 2345, 9812, 1009, 18656, '1.0000', '7.6400', '7.6400', '10.5000', '10.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10232, '2021-08-14', 2297, 9813, 1009, 18055, '1.0000', '7.2000', '7.2000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10233, '2021-08-14', 1342, 9814, 1009, 18420, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10234, '2021-08-14', 2294, 9815, 1009, 18667, '1.0000', '3.5000', '3.5000', '6.0000', '6.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10235, '2021-08-14', 2313, 9816, 1009, 5631, '1.0000', '8.7000', '8.7000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10236, '2021-08-14', 1529, 9817, 1009, 23578, '1.0000', '10292.4448', '10292.4448', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10237, '2021-08-14', 1787, 9818, 1009, 4930, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10238, '2021-08-14', 2071, 9819, 1009, NULL, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10239, '2021-08-14', 1407, 9820, 1009, 18705, '1.0000', '16.8000', '16.8000', '22.5000', '22.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10240, '2021-08-14', 1406, 9821, 1009, 18708, '1.0000', '16.8000', '16.8000', '23.0000', '23.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10241, '2021-08-14', 2259, 9822, 1009, 22645, '1.0000', '19.3333', '19.3333', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10242, '2021-08-14', 2281, 9823, 1009, 3121, '2.0000', '3.0000', '3.0000', '4.0000', '4.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10243, '2021-08-14', 2135, 9824, 1009, 16894, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '25.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10244, '2021-08-14', 1992, 9825, 1009, 6451, '2.0000', '1.5000', '1.5000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10245, '2021-08-14', 1993, 9826, 1009, 6450, '3.0000', '0.6000', '0.6000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10246, '2021-08-14', 2221, 9827, 1009, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '22.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10247, '2021-08-14', 2252, 9828, 1009, 13538, '1.0000', '9.3000', '9.3000', '13.5000', '13.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10248, '2021-08-14', 1787, 9829, 1009, 4930, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10249, '2021-08-14', 1748, 9830, 1009, 1527, '2.0000', '0.3200', '0.3200', '0.5000', '0.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10250, '2021-08-14', 2320, 9831, 1010, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10251, '2021-08-14', 2514, 9832, 1010, 7518, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10252, '2021-08-14', 2366, 9833, 1011, 13636, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10253, '2021-08-14', 1822, 9834, 1012, NULL, '20.0000', '2.4000', '2.4000', '3.0000', '3.0000', '-20.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10254, '2021-08-14', 2320, 9835, 1012, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10255, '2021-08-14', 2350, 9836, 1012, NULL, '1.0000', '10.3800', '10.3800', '14.0000', '14.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10256, '2021-08-14', 2541, 9837, 1012, NULL, '1.0000', '9.7500', '9.7500', '13.5000', '13.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10257, '2021-08-14', 3045, 9838, 1012, 24186, '1.0000', '5.4200', '5.4200', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10258, '2021-08-14', 2085, 9839, 1012, NULL, '5.0000', '13.3400', '13.3400', '2.0000', '2.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10259, '2021-08-14', 1753, 9840, 1012, 19379, '1.0000', '4.6900', '4.6900', '6.0000', '6.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10260, '2021-08-14', 2315, 9841, 1012, 24410, '4.0000', '0.3617', '0.3617', '0.5100', '0.5100', '85.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10261, '2021-08-14', 2546, 9842, 1012, NULL, '1.0000', '13.6300', '13.6300', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10262, '2021-08-14', 2760, 9843, 1012, NULL, '1.0000', '7.9300', '7.9300', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10263, '2021-08-14', 1339, 9844, 1012, 23699, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10264, '2021-08-14', 1863, 9845, 1012, NULL, '3.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10265, '2021-08-14', 2169, 9846, 1012, NULL, '2.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10266, '2021-08-14', 2279, 9847, 1012, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '24.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10267, '2021-08-14', 1666, 9848, 1012, 24413, '1.0000', '-19.1125', '-19.1125', '3.5000', '3.5000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10268, '2021-08-14', 2916, 9849, 1012, 23676, '1.0000', '15.0176', '15.0176', '20.0000', '20.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10269, '2021-08-14', 1559, 9850, 1012, NULL, '1.0000', '22.1000', '22.1000', '30.0000', '30.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10270, '2021-08-14', 1871, 9851, 1012, NULL, '10.0000', '2.0000', '2.0000', '3.0000', '3.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10271, '2021-08-14', 1700, 9852, 1012, NULL, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10272, '2021-08-14', 2320, 9853, 1012, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10273, '2021-08-14', 2920, 9854, 1013, NULL, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10274, '2021-08-14', 2277, 9855, 1014, NULL, '2.0000', '0.7800', '0.7800', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10275, '2021-08-14', 1590, 9856, 1014, NULL, '1.0000', '1.7100', '1.7100', '2.2000', '2.2000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10276, '2021-08-14', 2293, 9857, 1014, NULL, '1.0000', '1.4400', '1.4400', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10277, '2021-08-14', 1947, 9858, 1014, NULL, '2.0000', '2.8000', '2.8000', '5.0000', '5.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10278, '2021-08-14', 2242, 9859, 1014, NULL, '1.0000', '0.4800', '0.4800', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10279, '2021-08-14', 1529, 9860, 1014, 24189, '1.0000', '39.1471', '39.1471', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10280, '2021-08-14', 1390, 9861, 1014, 19831, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10281, '2021-08-14', 1867, 9862, 1014, 23685, '10.0000', '1.0500', '1.0500', '1.3000', '1.3000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10282, '2021-08-14', 2061, 9863, 1014, 24178, '1.0000', '10.9800', '10.9800', '15.0000', '15.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10283, '2021-08-14', 1602, 9864, 1015, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10284, '2021-08-14', 2405, 9865, 1016, 18406, '21.0000', '1.2000', '1.2000', '1.6000', '1.6000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10285, '2021-08-14', 2405, 9865, 1016, 18407, '29.0000', '1.2000', '1.2000', '1.6000', '1.6000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10286, '2021-08-14', 2280, 9866, 1017, NULL, '2.0000', '1.9000', '1.9000', '5.0000', '5.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10287, '2021-08-14', 2275, 9867, 1017, 19353, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10288, '2021-08-14', 1863, 9868, 1017, NULL, '2.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10289, '2021-08-14', 1590, 9869, 1018, NULL, '2.0000', '1.7100', '1.7100', '2.2000', '2.2000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10290, '2021-08-14', 1435, 9870, 1018, 19832, '2.0000', '18.5000', '18.5000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10291, '2021-08-14', 1966, 9871, 1018, NULL, '1.0000', '2.7100', '2.7100', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10292, '2021-08-14', 2470, 9872, 1019, 5090, '3.0000', '8.5000', '8.5000', '12.0000', '12.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10293, '2021-08-14', 2284, 9873, 1020, NULL, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10294, '2021-08-14', 1837, 9874, 1020, NULL, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10295, '2021-08-14', 2379, 9875, 1020, 23165, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10296, '2021-08-14', 2237, 9876, 1020, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '20.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10297, '2021-08-14', 2169, 9877, 1020, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10298, '2021-08-14', 1386, 9878, 1020, NULL, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10299, '2021-08-14', 1667, 9879, 1020, 24412, '1.0000', '45.9421', '45.9421', '8.5000', '8.5000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10300, '2021-08-14', 1501, 9880, 1021, 24416, '1.0000', '-35.4143', '-35.4143', '3.0000', '3.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10301, '2021-08-14', 1947, 9881, 1021, NULL, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10302, '2021-08-14', 1841, 9882, 1021, NULL, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10303, '2021-08-14', 1888, 9883, 1022, 23117, '1.0000', '509.9086', '509.9086', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10304, '2021-08-14', 2293, 9884, 1022, NULL, '3.0000', '1.4400', '1.4400', '2.0000', '2.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10305, '2021-08-14', 1667, 9885, 1022, 24412, '1.0000', '45.9421', '45.9421', '8.5000', '8.5000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10306, '2021-08-14', 1612, 9886, 1022, NULL, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10307, '2021-08-14', 1912, 9887, 1022, NULL, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10308, '2021-08-14', 2821, 9888, 1022, 19816, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10309, '2021-08-14', 1807, 9889, 1023, NULL, '2.0000', '41.5000', '41.5000', '2.5000', '2.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10310, '2021-08-14', 2320, 9890, 1024, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10311, '2021-08-14', 1935, 9891, 1024, 22646, '2.0000', '23.0400', '23.0400', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10312, '2021-08-14', 1529, 9892, 1024, 23578, '1.0000', '10292.4448', '10292.4448', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10313, '2021-08-14', 2556, 9893, 1024, 7130, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10314, '2021-08-14', 1551, 9894, 1024, 1655, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10315, '2021-08-14', 1760, 9895, 1024, 6783, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10316, '2021-08-14', 1647, 9896, 1024, 3261, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10317, '2021-08-14', 1554, 9897, 1024, 1658, '1.0000', '3.1600', '3.1600', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10318, '2021-08-14', 2096, 9898, 1024, 6008, '1.0000', '1.5500', '1.5500', '5.0000', '5.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10319, '2021-08-14', 1602, 9899, 1024, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10320, '2021-08-14', 1665, 9900, 1024, 22236, '10.0000', '1.3000', '1.3000', '2.0000', '2.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10321, '2021-08-14', 2822, 9901, 1024, 17322, '2.0000', '2.7200', '2.7200', '4.0000', '4.0000', '41.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10322, '2021-08-14', 2416, 9902, 1024, 4827, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10323, '2021-08-14', 1863, 9903, 1024, 17319, '1.0000', '1.2242', '1.2242', '2.0000', '2.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10324, '2021-08-14', 2470, 9904, 1024, 5090, '3.0000', '8.5000', '8.5000', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10325, '2021-08-14', 1863, 9905, 1024, 17319, '1.0000', '1.2242', '1.2242', '2.0000', '2.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10326, '2021-08-14', 2466, 9906, 1024, 4845, '1.0000', '13.5900', '13.5900', '18.5000', '18.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10327, '2021-08-14', 1810, 9907, 1024, 24272, '1.0000', '8.2860', '8.2860', '11.0000', '11.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10328, '2021-08-14', 1402, 9908, 1024, 10243, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10329, '2021-08-14', 1402, 9909, 1024, 10243, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10330, '2021-08-14', 2108, 9910, 1024, 6020, '2.0000', '4.7500', '4.7500', '6.5000', '6.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10331, '2021-08-14', 1912, 9911, 1024, NULL, '2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10332, '2021-08-14', 2296, 9912, 1025, 16901, '1.0000', '13.2900', '13.2900', '18.0000', '18.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10333, '2021-08-14', 1484, 9913, 1025, 18674, '1.0000', '90.0000', '90.0000', '38.0000', '38.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10334, '2021-08-14', 2235, 9914, 1025, 24129, '1.0000', '17.8000', '17.8000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10335, '2021-08-14', 1334, 9915, 1025, 3373, '2.0000', '0.7000', '0.7000', '1.5000', '1.5000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10336, '2021-08-14', 1812, 9916, 1025, 23603, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '13.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10337, '2021-08-14', 2101, 9917, 1025, 6013, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10338, '2021-08-14', 2588, 9918, 1025, 14588, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10339, '2021-08-14', 1332, 9919, 1026, 3371, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10340, '2021-08-14', 1863, 9920, 1027, 17319, '1.0000', '1.2242', '1.2242', '2.0000', '2.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10341, '2021-08-14', 2279, 9921, 1027, 23614, '1.0000', '2.6280', '2.6280', '4.0000', '4.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10342, '2021-08-14', 2858, 9922, 1027, 17780, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10343, '2021-08-14', 1812, 9923, 1027, 23603, '5.0000', '7.8900', '7.8900', '10.5000', '10.5000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10344, '2021-08-14', 1602, 9924, 1027, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10345, '2021-08-14', 1310, 9925, 1027, NULL, '3.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10346, '2021-08-14', 1574, 9926, 1027, 23615, '2.0000', '82.8731', '82.8731', '2.5000', '2.5000', '39.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10347, '2021-08-14', 2602, 9927, 1027, 15795, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10348, '2021-08-14', 2250, 9928, 1027, 24340, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10349, '2021-08-14', 1573, 9929, 1027, NULL, '1.0000', '90.0000', '90.0000', '32.5000', '32.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10350, '2021-08-14', 1935, 9930, 1027, 22646, '1.0000', '23.0400', '23.0400', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10351, '2021-08-14', 2169, 9931, 1028, NULL, '4.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10352, '2021-08-14', 1577, 9932, 1029, 9448, '1.0000', '2.1000', '2.1000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10353, '2021-08-14', 2357, 9933, 1029, 3875, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10354, '2021-08-14', 2250, 9934, 1029, 24340, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10355, '2021-08-14', 2255, 9935, 1029, 24131, '1.0000', '17.4900', '17.4900', '26.0000', '26.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10356, '2021-08-14', 1746, 9936, 1029, NULL, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10357, '2021-08-14', 2353, 9937, 1029, NULL, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10358, '2021-08-14', 1785, 9938, 1029, 24279, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10359, '2021-08-14', 1646, 9939, 1029, 24107, '1.0000', '4.6016', '4.6016', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10360, '2021-08-14', 1543, 9940, 1029, 18701, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10361, '2021-08-14', 2444, 9941, 1030, 22549, '1.0000', '7.0800', '7.0800', '9.0000', '9.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10362, '2021-08-14', 1855, 9942, 1030, NULL, '1.0000', '1.4000', '1.4000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10363, '2021-08-14', 1856, 9943, 1030, NULL, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10364, '2021-08-14', 1708, 9944, 1031, 10383, '1.0000', '20.1900', '20.1900', '28.0000', '28.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10365, '2021-08-14', 2235, 9945, 1031, 24129, '1.0000', '17.8000', '17.8000', '25.0000', '25.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10366, '2021-08-14', 1812, 9946, 1031, 23603, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10367, '2021-08-14', 1602, 9947, 1032, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10368, '2021-08-14', 2135, 9948, 1032, 16894, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10369, '2021-08-15', 1651, 9949, 1033, 23126, '1.0000', '6.8300', '6.8300', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10370, '2021-08-15', 2237, 9950, 1033, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10371, '2021-08-15', 1519, 9951, 1033, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10372, '2021-08-15', 2108, 9952, 1033, NULL, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10373, '2021-08-15', 2275, 9953, 1033, 19353, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10374, '2021-08-15', 2221, 9954, 1033, 22606, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10375, '2021-08-15', 1856, 9955, 1033, NULL, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10376, '2021-08-15', 2169, 9956, 1033, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10377, '2021-08-15', 2760, 9957, 1033, NULL, '1.0000', '7.9300', '7.9300', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10378, '2021-08-15', 2280, 9958, 1033, 24541, '1.0000', '6.1555', '6.1555', '5.0000', '5.0000', '45.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10379, '2021-08-15', 1425, 9959, 1033, NULL, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10380, '2021-08-15', 1710, 9960, 1033, 19851, '1.0000', '3.4300', '3.4300', '4.5000', '4.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10381, '2021-08-15', 1771, 9961, 1033, 13766, '1.0000', '3.3900', '3.3900', '6.0000', '6.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10382, '2021-08-15', 2135, 9962, 1033, 23175, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '27.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10383, '2021-08-15', 2315, 9963, 1033, 24526, '3.0000', '0.8904', '0.8904', '0.5100', '0.5100', '82.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10384, '2021-08-15', 1519, 9964, 1033, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10385, '2021-08-15', 1501, 9965, 1033, 24532, '1.0000', '8.9063', '8.9063', '3.0000', '3.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10386, '2021-08-15', 2275, 9966, 1033, 19353, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10387, '2021-08-15', 2280, 9967, 1033, 24541, '1.0000', '6.1555', '6.1555', '5.0000', '5.0000', '45.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10388, '2021-08-15', 1912, 9968, 1033, NULL, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10389, '2021-08-15', 1667, 9969, 1033, 24528, '2.0000', '123.8143', '123.8143', '8.5000', '8.5000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10390, '2021-08-15', 1619, 9970, 1033, NULL, '2.0000', '9.8500', '9.8500', '13.0000', '13.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10391, '2021-08-15', 2143, 9971, 1033, NULL, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10392, '2021-08-15', 1529, 9972, 1033, 24189, '1.0000', '39.1471', '39.1471', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10393, '2021-08-15', 2011, 9973, 1033, NULL, '1.0000', '0.5300', '0.5300', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10394, '2021-08-15', 3041, 9974, 1033, 23990, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10395, '2021-08-15', 2237, 9975, 1034, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10396, '2021-08-15', 1499, 9976, 1034, NULL, '2.0000', '0.4100', '0.4100', '0.6000', '0.6000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10397, '2021-08-15', 2068, 9977, 1034, 24202, '1.0000', '12.0277', '12.0277', '17.0000', '17.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10398, '2021-08-15', 2236, 9978, 1034, 24551, '2.0000', '5.5000', '5.5000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10399, '2021-08-15', 1647, 9979, 1034, 24557, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10400, '2021-08-15', 2237, 9980, 1034, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10401, '2021-08-15', 2169, 9981, 1035, NULL, '2.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10402, '2021-08-15', 2353, 9982, 1035, NULL, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10403, '2021-08-15', 2280, 9983, 1036, 24541, '1.0000', '6.1555', '6.1555', '5.0000', '5.0000', '43.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10404, '2021-08-15', 2221, 9984, 1036, 22606, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10405, '2021-08-15', 1787, 9985, 1036, 19864, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10406, '2021-08-15', 2916, 9986, 1036, 23676, '1.0000', '15.0176', '15.0176', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10407, '2021-08-15', 2167, 9987, 1036, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10408, '2021-08-15', 2673, 9988, 1036, NULL, '1.0000', '11.0000', '11.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10409, '2021-08-15', 1935, 9989, 1036, NULL, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10410, '2021-08-15', 2154, 9990, 1036, 23109, '1.0000', '11.0000', '11.0000', '14.5000', '14.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10411, '2021-08-15', 2277, 9991, 1037, NULL, '1.0000', '0.7800', '0.7800', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10412, '2021-08-15', 1510, 9992, 1037, 23187, '1.0000', '8.8600', '8.8600', '12.0000', '12.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10413, '2021-08-15', 1844, 9993, 1037, NULL, '2.0000', '1.5000', '1.5000', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10414, '2021-08-15', 2558, 9994, 1037, 24140, '2.0000', '6.0000', '6.0000', '10.0000', '10.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10415, '2021-08-15', 2135, 9995, 1038, 23175, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '26.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10416, '2021-08-15', 2309, 9996, 1038, NULL, '2.0000', '1.9900', '1.9900', '2.6000', '2.6000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10417, '2021-08-15', 2169, 9997, 1038, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10418, '2021-08-15', 1666, 9998, 1038, 24529, '1.0000', '22.0645', '22.0645', '3.5000', '3.5000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10419, '2021-08-15', 1805, 9999, 1038, NULL, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10420, '2021-08-15', 2655, 10000, 1038, NULL, '2.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10421, '2021-08-15', 2766, 10001, 1038, NULL, '1.0000', '16.0000', '16.0000', '21.0000', '21.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10422, '2021-08-15', 1519, 10002, 1038, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10423, '2021-08-15', 2660, 10003, 1038, 23143, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '35.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10424, '2021-08-15', 2699, 10004, 1038, NULL, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10425, '2021-08-15', 1493, 10005, 1038, NULL, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10426, '2021-08-15', 2295, 10006, 1038, NULL, '3.0000', '0.7000', '0.7000', '1.5000', '1.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10427, '2021-08-15', 2135, 10007, 1038, 23175, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '26.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10428, '2021-08-15', 2293, 10008, 1038, NULL, '3.0000', '1.4400', '1.4400', '2.0000', '2.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10429, '2021-08-15', 2237, 10009, 1039, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10430, '2021-08-15', 1888, 10010, 1039, 24287, '1.0000', '-42.1250', '-42.1250', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10431, '2021-08-15', 1533, 10011, 1039, 10385, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10432, '2021-08-15', 2681, 10012, 1039, 18057, '1.0000', '12.4000', '12.4000', '16.5000', '16.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10433, '2021-08-15', 2363, 10013, 1039, 3868, '2.0000', '6.8800', '6.8800', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10434, '2021-08-15', 1502, 10014, 1039, 9542, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10435, '2021-08-15', 1602, 10015, 1039, 23620, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10436, '2021-08-15', 1712, 10016, 1039, 9479, '2.0000', '9.6500', '9.6500', '13.0000', '13.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10437, '2021-08-15', 2533, 10017, 1039, 6127, '1.0000', '18.0000', '18.0000', '24.0000', '24.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10438, '2021-08-15', 2876, 10018, 1039, 17901, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10439, '2021-08-15', 2262, 10019, 1039, 18683, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10440, '2021-08-15', 2315, 10020, 1039, 3069, '1.0000', '0.3300', '0.3300', '0.5000', '0.5000', '364.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10441, '2021-08-15', 2265, 10021, 1039, 24133, '1.0000', '36.0000', '36.0000', '43.0000', '43.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10442, '2021-08-15', 2313, 10022, 1039, 5631, '2.0000', '8.7000', '8.7000', '12.0000', '12.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10443, '2021-08-15', 1731, 10023, 1039, 22636, '1.0000', '19.9600', '19.9600', '27.0000', '27.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10444, '2021-08-15', 1452, 10024, 1039, 5632, '1.0000', '1.2300', '1.2300', '2.0000', '2.0000', '40.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10445, '2021-08-15', 1336, 10025, 1039, 24264, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10446, '2021-08-15', 1333, 10026, 1039, 3372, '1.0000', '0.5500', '0.5500', '2.0000', '2.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10447, '2021-08-15', 2296, 10027, 1039, 16901, '1.0000', '13.2900', '13.2900', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10448, '2021-08-15', 2320, 10028, 1039, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10449, '2021-08-15', 1863, 10029, 1039, 17319, '2.0000', '1.2242', '1.2242', '2.0000', '2.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10450, '2021-08-15', 2289, 10030, 1039, 22482, '1.0000', '0.2300', '0.2300', '0.5000', '0.5000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10451, '2021-08-15', 1841, 10031, 1039, 24123, '1.0000', '0.3700', '0.3700', '0.5000', '0.5000', '40.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10452, '2021-08-15', 2636, 10032, 1039, 16704, '1.0000', '7.5000', '7.5000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10453, '2021-08-15', 1346, 10033, 1039, NULL, '1.0000', '0.9300', '0.9300', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10454, '2021-08-15', 1572, 10034, 1039, 9452, '1.0000', '1.7000', '1.7000', '2.5000', '2.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10455, '2021-08-15', 1620, 10035, 1039, 22638, '4.0000', '39.8457', '39.8457', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10456, '2021-08-15', 2237, 10036, 1039, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10457, '2021-08-15', 2829, 10037, 1039, 24017, '1.0000', '25.3646', '25.3646', '39.5000', '39.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10458, '2021-08-15', 1401, 10038, 1039, 24000, '2.0000', '3.0000', '3.0000', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10459, '2021-08-15', 1602, 10039, 1039, 23620, '2.0000', '6.9347', '6.9347', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10460, '2021-08-15', 1863, 10040, 1039, 17319, '6.0000', '1.2242', '1.2242', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10461, '2021-08-15', 1863, 10040, 1039, 17076, '1.0000', '1.2242', '1.2242', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10462, '2021-08-15', 1863, 10040, 1039, 11171, '1.0000', '1.2242', '1.2242', '2.0000', '2.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10463, '2021-08-15', 1841, 10041, 1039, 24123, '9.0000', '0.3700', '0.3700', '0.5000', '0.5000', '32.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10464, '2021-08-15', 1707, 10042, 1039, 10389, '1.0000', '25.1200', '25.1200', '34.0000', '34.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10465, '2021-08-15', 1900, 10043, 1039, 3537, '10.0000', '2.4600', '2.4600', '3.3000', '3.3000', '40.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10466, '2021-08-15', 2916, 10044, 1039, 22658, '1.0000', '13.7500', '13.7500', '20.0000', '20.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10467, '2021-08-15', 1636, 10045, 1039, 10308, '2.0000', '90.0000', '90.0000', '13.0000', '13.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10468, '2021-08-15', 1346, 10046, 1039, NULL, '15.0000', '0.9300', '0.9300', '1.5000', '1.5000', '-15.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10469, '2021-08-15', 2574, 10047, 1039, 24014, '10.0000', '0.8967', '0.8967', '1.5000', '1.5000', '10.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10470, '2021-08-15', 1812, 10048, 1039, 23603, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10471, '2021-08-15', 1680, 10049, 1039, 21557, '1.0000', '4.9200', '4.9200', '7.0000', '7.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10472, '2021-08-15', 2288, 10050, 1039, 17488, '2.0000', '7.5900', '7.5900', '11.0000', '11.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10473, '2021-08-15', 2693, 10051, 1039, 13616, '1.0000', '25.0100', '25.0100', '33.0000', '33.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10474, '2021-08-15', 1680, 10052, 1039, 21557, '1.0000', '4.9200', '4.9200', '7.0000', '7.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10475, '2021-08-15', 1473, 10053, 1039, NULL, '1.0000', '90.0000', '90.0000', '30.0000', '30.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10476, '2021-08-15', 1828, 10054, 1039, 4963, '3.0000', '0.7300', '0.7300', '1.0000', '1.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10477, '2021-08-15', 2169, 10055, 1039, 24338, '1.0000', '0.9502', '0.9502', '1.5000', '1.5000', '28.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10478, '2021-08-15', 1574, 10056, 1039, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.5000', '38.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10479, '2021-08-15', 1760, 10057, 1039, 6783, '1.0000', '1.5900', '1.5900', '2.0000', '2.0000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10480, '2021-08-15', 1780, 10058, 1039, 24006, '1.0000', '35.6000', '35.6000', '47.0000', '47.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10481, '2021-08-15', 2135, 10059, 1039, 16894, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10482, '2021-08-15', 1379, 10060, 1039, 22635, '1.0000', '83.0000', '83.0000', '110.0000', '110.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10483, '2021-08-15', 2010, 10061, 1039, 10597, '1.0000', '1.2500', '1.2500', '1.5800', '1.5800', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10484, '2021-08-15', 2211, 10062, 1039, NULL, '1.0000', '10.0000', '10.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10485, '2021-08-15', 2360, 10063, 1039, 17042, '1.0000', '0.5200', '0.5200', '0.6000', '0.6000', '49.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10486, '2021-08-15', 2620, 10064, 1039, 9942, '1.0000', '21.0000', '21.0000', '23.0000', '23.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10487, '2021-08-15', 2923, 10065, 1039, 22627, '1.0000', '11.1200', '11.1200', '15.0000', '15.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10488, '2021-08-15', 1946, 10066, 1039, 6000, '1.0000', '10.0000', '10.0000', '6.5000', '6.5000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10489, '2021-08-15', 1651, 10067, 1039, 24103, '1.0000', '7.1386', '7.1386', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10490, '2021-08-15', 1888, 10068, 1039, 24287, '1.0000', '-42.1250', '-42.1250', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10491, '2021-08-15', 2109, 10069, 1039, 6021, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '122.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10492, '2021-08-15', 1846, 10070, 1039, 24271, '1.0000', '131.0188', '131.0188', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10493, '2021-08-15', 2293, 10071, 1039, 3064, '3.0000', '1.4400', '1.4400', '2.0000', '2.0000', '64.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10494, '2021-08-15', 1532, 10072, 1039, 1539, '3.0000', '90.0000', '90.0000', '1.5000', '1.5000', '26.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10495, '2021-08-15', 1333, 10073, 1039, 3372, '1.0000', '0.5500', '0.5500', '2.0000', '2.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10496, '2021-08-15', 1450, 10074, 1039, NULL, '10.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10497, '2021-08-15', 1447, 10075, 1039, 5626, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10498, '2021-08-15', 2772, 10076, 1039, NULL, '1.0000', '16.7000', '16.7000', '22.0000', '22.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10499, '2021-08-15', 2221, 10077, 1039, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '21.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10500, '2021-08-15', 1647, 10078, 1039, 3261, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10501, '2021-08-15', 1596, 10079, 1039, 23617, '1.0000', '2.5700', '2.5700', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10502, '2021-08-16', 1602, 10080, 1040, 22497, '1.0000', '6.9347', '6.9347', '10.0000', '10.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10503, '2021-08-16', 1493, 10081, 1040, 18691, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10504, '2021-08-16', 2616, 10082, 1040, 10537, '4.0000', '3.0000', '3.0000', '4.0000', '4.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10505, '2021-08-16', 1761, 10083, 1040, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10506, '2021-08-16', 2777, 10084, 1040, NULL, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10507, '2021-08-16', 2445, 10085, 1040, NULL, '8.0000', '3.2000', '3.2000', '5.0000', '5.0000', '-8.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10508, '2021-08-16', 2602, 10086, 1040, 15795, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10509, '2021-08-16', 2992, 10087, 1040, NULL, '1.0000', '2.6000', '2.6000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10510, '2021-08-16', 1993, 10088, 1040, 6450, '1.0000', '0.6000', '0.6000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10511, '2021-08-16', 1529, 10089, 1040, 23578, '1.0000', '10292.4448', '10292.4448', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10512, '2021-08-16', 2250, 10090, 1040, 24340, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10513, '2021-08-16', 1494, 10091, 1040, 23591, '1.0000', '7.2800', '7.2800', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10514, '2021-08-16', 1338, 10092, 1040, 24273, '1.0000', '2.0710', '2.0710', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10515, '2021-08-16', 2109, 10093, 1040, 6021, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '120.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10516, '2021-08-16', 2073, 10094, 1040, 5612, '3.0000', '2.3000', '2.3000', '3.0000', '3.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10517, '2021-08-16', 1867, 10095, 1040, NULL, '10.0000', '10.0500', '10.0500', '1.3000', '1.3000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10518, '2021-08-16', 2237, 10096, 1040, 24102, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '26.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10519, '2021-08-16', 2250, 10097, 1041, 23681, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10520, '2021-08-16', 2693, 10098, 1041, 23177, '1.0000', '25.3300', '25.3300', '33.0000', '33.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10521, '2021-08-16', 2286, 10099, 1041, NULL, '2.0000', '4.3000', '4.3000', '6.0000', '6.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10522, '2021-08-16', 2760, 10100, 1041, NULL, '1.0000', '7.9300', '7.9300', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10523, '2021-08-16', 2458, 10101, 1041, NULL, '1.0000', '9.9000', '9.9000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10524, '2021-08-16', 2167, 10102, 1041, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10525, '2021-08-16', 1888, 10103, 1041, 23117, '1.0000', '509.9086', '509.9086', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10526, '2021-08-16', 2660, 10104, 1041, 23143, '7.0000', '0.7000', '0.7000', '1.0000', '1.0000', '28.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10527, '2021-08-16', 1863, 10105, 1041, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10528, '2021-08-16', 1501, 10106, 1041, 24532, '1.0000', '8.9063', '8.9063', '3.0000', '3.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10529, '2021-08-16', 1519, 10107, 1041, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10530, '2021-08-16', 1839, 10108, 1041, 24538, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10531, '2021-08-16', 1863, 10109, 1041, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10532, '2021-08-16', 1935, 10110, 1041, NULL, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10533, '2021-08-16', 1612, 10111, 1041, NULL, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10534, '2021-08-16', 2237, 10112, 1041, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '16.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10535, '2021-08-16', 1369, 10113, 1041, 19356, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10536, '2021-08-16', 3006, 10114, 1041, NULL, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10537, '2021-08-16', 2521, 10115, 1041, 22548, '1.0000', '11.0000', '11.0000', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10538, '2021-08-16', 1758, 10116, 1041, 19345, '1.0000', '42.0000', '42.0000', '55.0000', '55.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10539, '2021-08-16', 1306, 10117, 1041, NULL, '1.0000', '2.1000', '2.1000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10540, '2021-08-16', 2094, 10118, 1041, NULL, '1.0000', '2.9000', '2.9000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10541, '2021-08-16', 3005, 10119, 1041, 23148, '1.0000', '8.0000', '8.0000', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10542, '2021-08-16', 2731, 10120, 1041, 19358, '1.0000', '2.8500', '2.8500', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10543, '2021-08-16', 2940, 10121, 1041, 24198, '1.0000', '6.3600', '6.3600', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10544, '2021-08-16', 3045, 10122, 1041, 24186, '1.0000', '5.4200', '5.4200', '7.5000', '7.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10545, '2021-08-16', 2220, 10123, 1041, 24539, '1.0000', '5.9300', '5.9300', '8.0000', '8.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10546, '2021-08-16', 1812, 10124, 1042, 23603, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10547, '2021-08-16', 2344, 10125, 1042, 3887, '1.0000', '18.2000', '18.2000', '26.0000', '26.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10548, '2021-08-16', 2358, 10126, 1042, 13546, '1.0000', '27.2100', '27.2100', '18.0000', '18.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10549, '2021-08-16', 2358, 10126, 1042, 3874, '1.0000', '27.2100', '27.2100', '18.0000', '18.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10550, '2021-08-16', 2868, 10127, 1042, 18448, '1.0000', '5.0000', '5.0000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10551, '2021-08-16', 2623, 10128, 1042, NULL, '1.0000', '4.3000', '4.3000', '5.5000', '5.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10552, '2021-08-16', 2161, 10129, 1042, NULL, '1.0000', '8.0000', '8.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10553, '2021-08-16', 2012, 10130, 1042, 6437, '1.0000', '12.0000', '12.0000', '15.0000', '15.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10554, '2021-08-16', 1986, 10131, 1043, 6457, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10555, '2021-08-16', 2109, 10132, 1043, 6021, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '118.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10556, '2021-08-16', 3044, 10133, 1044, 24185, '1.0000', '0.4000', '0.4000', '0.5000', '0.5000', '49.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10557, '2021-08-16', 1322, 10134, 1044, 23171, '1.0000', '3.6000', '3.6000', '6.0000', '6.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10558, '2021-08-16', 2156, 10135, 1044, 19853, '1.0000', '3.2500', '3.2500', '4.5000', '4.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10559, '2021-08-16', 2366, 10136, 1044, NULL, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10560, '2021-08-16', 1654, 10137, 1044, 24549, '1.0000', '29.1525', '29.1525', '12.0000', '12.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10561, '2021-08-16', 1863, 10138, 1044, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10562, '2021-08-16', 1523, 10139, 1044, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '45.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10563, '2021-08-16', 1947, 10140, 1044, NULL, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10564, '2021-08-16', 2104, 10141, 1044, 22380, '2.0000', '0.2000', '0.2000', '0.5000', '0.5000', '42.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10565, '2021-08-16', 1828, 10142, 1044, 19854, '1.0000', '0.7300', '0.7300', '1.0000', '1.0000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10566, '2021-08-16', 1612, 10143, 1044, NULL, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10567, '2021-08-16', 2284, 10144, 1044, NULL, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10568, '2021-08-16', 1557, 10145, 1044, NULL, '1.0000', '7.8800', '7.8800', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10569, '2021-08-16', 1837, 10146, 1044, NULL, '5.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10570, '2021-08-16', 2277, 10147, 1044, NULL, '2.0000', '0.7800', '0.7800', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10571, '2021-08-16', 1805, 10148, 1044, NULL, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10572, '2021-08-16', 2135, 10149, 1044, 23175, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '24.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10573, '2021-08-16', 2315, 10150, 1044, 24526, '2.0000', '0.8904', '0.8904', '0.5100', '0.5100', '80.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10574, '2021-08-16', 1867, 10151, 1044, NULL, '10.0000', '1.0500', '1.0500', '1.3000', '1.3000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10575, '2021-08-16', 1673, 10152, 1044, NULL, '2.0000', '12.9000', '12.9000', '2.5000', '2.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10576, '2021-08-16', 2320, 10153, 1045, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10577, '2021-08-16', 2403, 10154, 1045, 13547, '1.0000', '17.8000', '17.8000', '24.0000', '24.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10578, '2021-08-16', 1785, 10155, 1045, 24279, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10579, '2021-08-16', 1809, 10156, 1045, 22647, '1.0000', '9.2727', '9.2727', '12.5000', '12.5000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10580, '2021-08-16', 2390, 10157, 1045, 4397, '1.0000', '7.4000', '7.4000', '9.0000', '9.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10581, '2021-08-16', 2556, 10158, 1045, 7130, '1.0000', '0.5800', '0.5800', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10582, '2021-08-16', 2527, 10159, 1045, 15803, '1.0000', '40.0000', '40.0000', '48.0000', '48.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10583, '2021-08-16', 1338, 10160, 1045, 24273, '1.0000', '2.0710', '2.0710', '6.0000', '6.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10584, '2021-08-16', 1746, 10161, 1045, NULL, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10585, '2021-08-16', 1459, 10162, 1045, NULL, '1.0000', '78.7400', '78.7400', '104.0000', '104.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10586, '2021-08-16', 2506, 10163, 1045, NULL, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10587, '2021-08-16', 2366, 10164, 1045, 13636, '2.0000', '3.7500', '3.7500', '6.0000', '6.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10588, '2021-08-16', 2715, 10165, 1045, 13566, '1.0000', '9.2600', '9.2600', '12.0000', '12.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10589, '2021-08-16', 1962, 10166, 1045, 24349, '2.0000', '45.1900', '45.1900', '42.5000', '42.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10590, '2021-08-16', 2169, 10167, 1045, 24338, '1.0000', '0.9502', '0.9502', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10591, '2021-08-16', 2360, 10168, 1045, 17042, '1.0000', '0.5200', '0.5200', '0.6900', '0.6900', '48.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10592, '2021-08-16', 2020, 10169, 1045, 24118, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10593, '2021-08-16', 2169, 10170, 1045, 24338, '1.0000', '0.9502', '0.9502', '1.5000', '1.5000', '27.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10594, '2021-08-16', 3009, 10171, 1045, NULL, '1.0000', '22.0000', '22.0000', '29.0000', '29.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10595, '2021-08-16', 1336, 10172, 1045, 24264, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10596, '2021-08-16', 1307, 10173, 1045, NULL, '2.0000', '1.9000', '1.9000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10597, '2021-08-16', 2251, 10174, 1045, 24341, '1.0000', '11.7654', '11.7654', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10598, '2021-08-16', 2315, 10175, 1045, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '362.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10599, '2021-08-16', 2445, 10176, 1046, 22547, '10.0000', '3.2000', '3.2000', '5.0000', '5.0000', '30.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10600, '2021-08-16', 1680, 10177, 1046, 24533, '1.0000', '5.0259', '5.0259', '7.0000', '7.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10601, '2021-08-16', 2167, 10178, 1046, NULL, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10602, '2021-08-16', 2237, 10179, 1046, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '15.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10603, '2021-08-16', 1592, 10180, 1047, 24124, '1.0000', '43.5941', '43.5941', '47.0000', '47.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10604, '2021-08-16', 2109, 10181, 1047, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '117.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10605, '2021-08-16', 1428, 10182, 1047, 24333, '1.0000', '13.0000', '13.0000', '17.0000', '17.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10606, '2021-08-16', 1387, 10183, 1047, NULL, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10607, '2021-08-16', 2109, 10184, 1047, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '117.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10608, '2021-08-16', 2169, 10185, 1047, 24338, '1.0000', '0.9502', '0.9502', '1.5000', '1.5000', '25.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10609, '2021-08-16', 1338, 10186, 1047, 24273, '1.0000', '2.0710', '2.0710', '6.0000', '6.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10610, '2021-08-16', 1337, 10187, 1047, 23592, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10611, '2021-08-16', 1822, 10188, 1047, 23596, '20.0000', '2.9811', '2.9811', '3.0000', '3.0000', '20.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10612, '2021-08-16', 1824, 10189, 1047, 4959, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10613, '2021-08-16', 1837, 10190, 1047, NULL, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10614, '2021-08-16', 2618, 10191, 1047, 10553, '2.0000', '4.1000', '4.1000', '5.5000', '5.5000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10615, '2021-08-16', 1787, 10192, 1047, 4930, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10616, '2021-08-16', 2486, 10193, 1047, 21821, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10617, '2021-08-16', 2411, 10194, 1047, 24337, '1.0000', '1.5581', '1.5581', '2.0000', '2.0000', '17.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10618, '2021-08-16', 1504, 10195, 1048, 23186, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '29.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10619, '2021-08-16', 2280, 10196, 1048, 24541, '1.0000', '6.1555', '6.1555', '5.0000', '5.0000', '42.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10620, '2021-08-16', 1381, 10197, 1048, 24540, '1.0000', '6.4196', '6.4196', '10.0000', '10.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10621, '2021-08-16', 2302, 10198, 1048, 23683, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10622, '2021-08-16', 1746, 10199, 1048, 19863, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '59.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10623, '2021-08-16', 1529, 10200, 1048, 24189, '1.0000', '39.1471', '39.1471', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10624, '2021-08-16', 1912, 10201, 1048, NULL, '2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10625, '2021-08-16', 1523, 10202, 1048, 24139, '1.0000', '1.0061', '1.0061', '5.0000', '5.0000', '44.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10626, '2021-08-16', 2384, 10203, 1049, NULL, '1.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10627, '2021-08-16', 1407, 10204, 1050, 10404, '1.0000', '16.8000', '16.8000', '22.5000', '22.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10628, '2021-08-16', 2263, 10205, 1050, 13624, '1.0000', '4.9800', '4.9800', '8.0000', '8.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10629, '2021-08-16', 1668, 10206, 1050, 24323, '1.0000', '86.1047', '86.1047', '18.0000', '18.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10630, '2021-08-16', 2010, 10207, 1050, 10597, '1.0000', '1.2500', '1.2500', '1.5800', '1.5800', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10631, '2021-08-16', 2268, 10208, 1050, 18060, '2.0000', '14.6000', '14.6000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10632, '2021-08-16', 1674, 10209, 1050, 2439, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10633, '2021-08-16', 1368, 10210, 1050, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10634, '2021-08-16', 2109, 10211, 1050, 6021, '4.0000', '0.2500', '0.2500', '1.5000', '1.5000', '112.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10635, '2021-08-16', 2220, 10212, 1050, 23604, '1.0000', '2.1473', '2.1473', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10636, '2021-08-16', 1706, 10213, 1050, 23621, '1.0000', '14.8866', '14.8866', '20.5000', '20.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10637, '2021-08-16', 2163, 10214, 1050, NULL, '1.0000', '20.0000', '20.0000', '29.0000', '29.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10638, '2021-08-16', 2327, 10215, 1050, 12242, '2.0000', '4.5000', '4.5000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10639, '2021-08-16', 2169, 10216, 1050, 24338, '1.0000', '0.9502', '0.9502', '1.5000', '1.5000', '24.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10640, '2021-08-16', 1783, 10217, 1051, 23606, '3.0000', '105.6595', '105.6595', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10641, '2021-08-17', 1386, 10218, 1052, NULL, '1.0000', '90.0000', '90.0000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10642, '2021-08-17', 2506, 10219, 1052, 24534, '2.0000', '3.4900', '3.4900', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10643, '2021-08-17', 1531, 10220, 1052, NULL, '1.0000', '0.9600', '0.9600', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10644, '2021-08-17', 2237, 10221, 1052, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '14.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10645, '2021-08-17', 1529, 10222, 1052, 24189, '1.0000', '39.1471', '39.1471', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10646, '2021-08-17', 2916, 10223, 1052, 23676, '1.0000', '15.0176', '15.0176', '20.0000', '20.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10647, '2021-08-17', 2068, 10224, 1052, 24202, '1.0000', '12.0277', '12.0277', '17.0000', '17.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10648, '2021-08-17', 2990, 10225, 1052, 22611, '2.0000', '1.1200', '1.1200', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10649, '2021-08-17', 2167, 10226, 1052, NULL, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10650, '2021-08-17', 2609, 10227, 1052, NULL, '1.0000', '2.8000', '2.8000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10651, '2021-08-17', 2379, 10228, 1052, 23165, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10652, '2021-08-17', 1601, 10229, 1052, NULL, '1.0000', '90.0000', '90.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10653, '2021-08-17', 3045, 10230, 1052, 24186, '1.0000', '5.4200', '5.4200', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10654, '2021-08-17', 2940, 10231, 1052, 24198, '1.0000', '6.3600', '6.3600', '8.5000', '8.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10655, '2021-08-17', 2491, 10232, 1052, 24180, '1.0000', '12.2000', '12.2000', '16.5000', '16.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10656, '2021-08-17', 1666, 10233, 1052, 24529, '1.0000', '22.0645', '22.0645', '3.5000', '3.5000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10657, '2021-08-17', 1827, 10234, 1053, 4962, '4.0000', '0.2000', '0.2000', '0.3000', '0.3000', '96.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10658, '2021-08-17', 1493, 10235, 1053, 18691, '1.0000', '1.6300', '1.6300', '3.0000', '3.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10659, '2021-08-17', 2068, 10236, 1053, 22652, '1.0000', '12.8833', '12.8833', '17.0000', '17.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10660, '2021-08-17', 1307, 10237, 1053, NULL, '1.0000', '1.9000', '1.9000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10661, '2021-08-17', 1608, 10238, 1053, 11877, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10662, '2021-08-17', 2415, 10239, 1053, NULL, '2.0000', '5.0000', '5.0000', '7.0000', '7.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10663, '2021-08-17', 1698, 10240, 1053, 2461, '2.0000', '7.9800', '7.9800', '10.5000', '10.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10664, '2021-08-17', 2305, 10241, 1053, 10556, '1.0000', '1.3300', '1.3300', '9.0000', '9.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10665, '2021-08-17', 2320, 10242, 1053, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10666, '2021-08-17', 2678, 10243, 1053, 12224, '1.0000', '37.0000', '37.0000', '48.0000', '48.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10667, '2021-08-17', 2260, 10244, 1053, 11022, '1.0000', '4.2000', '4.2000', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10668, '2021-08-17', 2260, 10244, 1053, NULL, '3.0000', '4.2000', '4.2000', '6.0000', '6.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10669, '2021-08-17', 2660, 10245, 1053, 18686, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10670, '2021-08-17', 1748, 10246, 1053, 1527, '1.0000', '0.3200', '0.3200', '0.5000', '0.5000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10671, '2021-08-17', 1450, 10247, 1053, NULL, '2.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10672, '2021-08-17', 2315, 10248, 1053, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '360.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10673, '2021-08-17', 1912, 10249, 1053, 9575, '-2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10674, '2021-08-17', 1912, 10249, 1053, 9575, '-2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10675, '2021-08-17', 1912, 10249, 1053, 9575, '-2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10676, '2021-08-17', 1912, 10249, 1053, 1503, '3.0000', '0.3100', '0.3100', '1.0000', '1.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10677, '2021-08-17', 1450, 10250, 1053, NULL, '5.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10678, '2021-08-17', 1822, 10251, 1053, 23596, '2.0000', '2.9811', '2.9811', '3.0000', '3.0000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10679, '2021-08-17', 2237, 10252, 1054, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '13.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10680, '2021-08-17', 1519, 10253, 1055, 24128, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10681, '2021-08-17', 2307, 10254, 1055, 22502, '1.0000', '140.0000', '140.0000', '170.0000', '170.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10682, '2021-08-17', 2037, 10255, 1055, 18355, '1.0000', '10.0000', '10.0000', '14.0000', '14.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10683, '2021-08-17', 2541, 10256, 1055, 23602, '1.0000', '9.6622', '9.6622', '13.5000', '13.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10684, '2021-08-17', 2877, 10257, 1055, 17902, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '11.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10685, '2021-08-17', 2234, 10258, 1055, 18424, '1.0000', '13.6000', '13.6000', '20.0000', '20.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10686, '2021-08-17', 1302, 10259, 1055, 23594, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10687, '2021-08-17', 2483, 10260, 1055, 5195, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10688, '2021-08-17', 2109, 10261, 1055, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '111.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10689, '2021-08-17', 2247, 10262, 1055, 24101, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10690, '2021-08-17', 1641, 10263, 1055, 17454, '1.0000', '90.0000', '90.0000', '1.3000', '1.3000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10691, '2021-08-17', 2221, 10264, 1055, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '20.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10692, '2021-08-17', 1761, 10265, 1055, 3182, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10693, '2021-08-17', 2829, 10266, 1055, 24017, '1.0000', '25.3646', '25.3646', '39.5000', '39.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10694, '2021-08-17', 2670, 10267, 1055, 11896, '2.0000', '0.3200', '0.3200', '1.0000', '1.0000', '92.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10695, '2021-08-17', 2876, 10268, 1055, 17901, '2.0000', '7.0000', '7.0000', '10.0000', '10.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10696, '2021-08-17', 2877, 10269, 1055, 17902, '2.0000', '7.0000', '7.0000', '10.0000', '10.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10697, '2021-08-17', 2602, 10270, 1055, 15795, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10698, '2021-08-17', 2855, 10271, 1055, 17385, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10699, '2021-08-17', 1647, 10272, 1055, 3261, '1.0000', '4.7200', '4.7200', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10700, '2021-08-17', 1941, 10273, 1055, 5601, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10701, '2021-08-17', 2135, 10274, 1055, 16894, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '22.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10702, '2021-08-17', 2466, 10275, 1056, 23141, '1.0000', '13.5900', '13.5900', '18.5000', '18.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10703, '2021-08-17', 2979, 10276, 1056, 22536, '1.0000', '15.0000', '15.0000', '17.5000', '17.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10704, '2021-08-17', 1612, 10277, 1056, NULL, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10705, '2021-08-17', 2101, 10278, 1056, NULL, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10706, '2021-08-17', 1839, 10279, 1056, 24607, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10707, '2021-08-17', 2740, 10280, 1056, 19346, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10708, '2021-08-17', 1888, 10281, 1056, 23117, '1.0000', '509.9086', '509.9086', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10709, '2021-08-17', 1533, 10282, 1056, NULL, '2.0000', '3.0500', '3.0500', '5.0000', '5.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10710, '2021-08-17', 1501, 10283, 1056, 24601, '1.0000', '0.9345', '0.9345', '3.0000', '3.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10711, '2021-08-17', 1828, 10284, 1056, 19854, '1.0000', '0.7300', '0.7300', '1.0000', '1.0000', '38.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10712, '2021-08-17', 3040, 10285, 1056, 23986, '1.0000', '13.5000', '13.5000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10713, '2021-08-17', 1837, 10286, 1056, NULL, '3.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10714, '2021-08-17', 1928, 10287, 1056, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10715, '2021-08-17', 1863, 10288, 1056, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10716, '2021-08-17', 1529, 10289, 1056, 24189, '1.0000', '39.1471', '39.1471', '5.0000', '5.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10717, '2021-08-17', 1812, 10290, 1056, 23688, '1.0000', '7.8900', '7.8900', '10.5000', '10.5000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10718, '2021-08-17', 2235, 10291, 1056, 24203, '1.0000', '19.0000', '19.0000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10719, '2021-08-17', 2699, 10292, 1056, NULL, '1.0000', '3.0000', '3.0000', '4.5000', '4.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10720, '2021-08-17', 1761, 10293, 1056, 19369, '3.0000', '1.8200', '1.8200', '3.0000', '3.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10721, '2021-08-17', 1605, 10294, 1056, 18941, '1.0000', '24.8500', '24.8500', '39.0000', '39.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10722, '2021-08-17', 2650, 10295, 1056, NULL, '1.0000', '7.3200', '7.3200', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10723, '2021-08-17', 2491, 10296, 1056, 24180, '1.0000', '12.2000', '12.2000', '16.5000', '16.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10724, '2021-08-17', 1629, 10297, 1056, 23682, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10725, '2021-08-17', 2777, 10298, 1056, 24630, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10726, '2021-08-17', 2109, 10299, 1056, 24629, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '44.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10727, '2021-08-17', 1863, 10300, 1056, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10728, '2021-08-17', 1523, 10301, 1056, 24139, '2.0000', '1.0061', '1.0061', '5.0000', '5.0000', '42.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10729, '2021-08-17', 1557, 10302, 1056, NULL, '1.0000', '7.8800', '7.8800', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10730, '2021-08-17', 1529, 10303, 1057, 24189, '1.0000', '39.1471', '39.1471', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10731, '2021-08-17', 2236, 10304, 1057, 24675, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10732, '2021-08-17', 2224, 10305, 1057, 22520, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10733, '2021-08-17', 2289, 10306, 1057, 13744, '4.0000', '0.2300', '0.2300', '0.5000', '0.5000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10734, '2021-08-17', 1504, 10307, 1058, 23186, '1.0000', '1.5000', '1.5000', '2.0000', '2.0000', '28.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10735, '2021-08-17', 2729, 10308, 1059, 19355, '1.0000', '3.2900', '3.2900', '5.0000', '5.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10736, '2021-08-17', 1863, 10309, 1059, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10737, '2021-08-17', 3029, 10310, 1059, 23679, '1.0000', '4.7700', '4.7700', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10738, '2021-08-17', 1743, 10311, 1059, 19380, '1.0000', '3.9800', '3.9800', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10739, '2021-08-17', 1314, 10312, 1059, NULL, '1.0000', '1.2000', '1.2000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10740, '2021-08-17', 1349, 10313, 1059, NULL, '1.0000', '32.5000', '32.5000', '46.0000', '46.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10741, '2021-08-17', 1586, 10314, 1059, 13722, '1.0000', '90.0000', '90.0000', '65.0000', '65.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10742, '2021-08-17', 2280, 10315, 1059, 24780, '1.0000', '104.8859', '104.8859', '5.0000', '5.0000', '41.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10743, '2021-08-17', 2592, 10316, 1059, 24190, '1.0000', '7.9800', '7.9800', '11.0000', '11.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10744, '2021-08-17', 1592, 10317, 1060, NULL, '1.0000', '90.0000', '90.0000', '47.0000', '47.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10745, '2021-08-17', 1728, 10318, 1061, 6625, '-4.0000', '1.9000', '1.9000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10746, '2021-08-17', 1728, 10318, 1061, NULL, '8.0000', '1.9000', '1.9000', '2.5000', '2.5000', '-8.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10747, '2021-08-17', 2660, 10319, 1061, NULL, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10748, '2021-08-17', 2279, 10320, 1062, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '23.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10749, '2021-08-17', 2229, 10321, 1063, 22518, '1.0000', '24.5000', '24.5000', '28.0000', '28.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10750, '2021-08-17', 1639, 10322, 1064, NULL, '1.0000', '6.6300', '6.6300', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10751, '2021-08-17', 2177, 10323, 1065, 8147, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10752, '2021-08-17', 2197, 10324, 1065, 8189, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10753, '2021-08-17', 2460, 10325, 1065, 22492, '1.0000', '32.7700', '32.7700', '43.0000', '43.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10754, '2021-08-17', 2239, 10326, 1065, 3068, '1.0000', '26.0000', '26.0000', '35.0000', '35.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10755, '2021-08-17', 2602, 10327, 1065, 15795, '1.0000', '4.0000', '4.0000', '5.0000', '5.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10756, '2021-08-17', 1410, 10328, 1065, 11138, '1.0000', '2.2000', '2.2000', '3.5000', '3.5000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10757, '2021-08-17', 2109, 10329, 1065, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '110.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10758, '2021-08-17', 1612, 10330, 1065, 9422, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10759, '2021-08-17', 1501, 10331, 1065, 23580, '1.0000', '1566.1965', '1566.1965', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10760, '2021-08-17', 1666, 10332, 1065, 23584, '1.0000', '246.5993', '246.5993', '3.5000', '3.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10761, '2021-08-17', 1667, 10333, 1065, 24265, '1.0000', '114.0069', '114.0069', '8.5000', '8.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10762, '2021-08-17', 2109, 10334, 1065, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '110.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10763, '2021-08-17', 2445, 10335, 1065, NULL, '10.0000', '3.2000', '3.2000', '5.0000', '5.0000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10764, '2021-08-17', 2344, 10336, 1065, NULL, '1.0000', '18.2000', '18.2000', '26.0000', '26.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10765, '2021-08-17', 2489, 10337, 1065, NULL, '1.0000', '63.0300', '63.0300', '83.0000', '83.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10766, '2021-08-17', 1519, 10338, 1065, 24128, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '18.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10767, '2021-08-17', 1487, 10339, 1065, 10030, '1.0000', '90.0000', '90.0000', '6.5000', '6.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10768, '2021-08-17', 1854, 10340, 1065, 4985, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10769, '2021-08-17', 2109, 10341, 1065, 6021, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '110.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10770, '2021-08-17', 1533, 10342, 1065, 10385, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10771, '2021-08-17', 1649, 10343, 1065, NULL, '1.0000', '37.4600', '37.4600', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10772, '2021-08-17', 1765, 10344, 1066, NULL, '1.0000', '5.3900', '5.3900', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10773, '2021-08-17', 2521, 10345, 1066, 22548, '1.0000', '11.0000', '11.0000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10774, '2021-08-17', 1339, 10346, 1066, 23699, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10775, '2021-08-17', 2108, 10347, 1067, 6020, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10776, '2021-08-17', 2279, 10348, 1067, 23614, '3.0000', '2.6280', '2.6280', '4.0000', '4.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10777, '2021-08-17', 1609, 10349, 1067, 9425, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10778, '2021-08-17', 2331, 10350, 1067, 24324, '1.0000', '12.0700', '12.0700', '16.0000', '16.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10779, '2021-08-17', 3018, 10351, 1067, 24902, '2.0000', '4.9100', '4.9100', '6.5000', '6.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10780, '2021-08-17', 1624, 10352, 1067, 24100, '1.0000', '60.5720', '60.5720', '39.0000', '39.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10781, '2021-08-17', 2105, 10353, 1067, 2511, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10782, '2021-08-17', 2459, 10354, 1067, 24262, '1.0000', '-0.0719', '-0.0719', '7.5000', '7.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10783, '2021-08-17', 2272, 10355, 1067, 18419, '1.0000', '5.5000', '5.5000', '7.5000', '7.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10784, '2021-08-17', 2829, 10356, 1067, 24017, '1.0000', '25.3646', '25.3646', '39.5000', '39.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10785, '2021-08-17', 2858, 10357, 1067, 17780, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10786, '2021-08-17', 1551, 10358, 1067, 1655, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10787, '2021-08-17', 2062, 10359, 1068, 2178, '1.0000', '5.8900', '5.8900', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10788, '2021-08-17', 2094, 10360, 1068, 6002, '1.0000', '2.9000', '2.9000', '5.0000', '5.0000', '18.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10789, '2021-08-18', 2916, 10361, 1069, 22658, '1.0000', '13.7500', '13.7500', '20.0000', '20.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10790, '2021-08-18', 2169, 10362, 1069, 24338, '1.0000', '0.9502', '0.9502', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10791, '2021-08-18', 1782, 10363, 1069, 4935, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10792, '2021-08-18', 1986, 10364, 1069, 6457, '1.0000', '5.0000', '5.0000', '6.5000', '6.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10793, '2021-08-18', 2413, 10365, 1069, 24121, '2.0000', '1.0500', '1.0500', '1.5000', '1.5000', '48.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10794, '2021-08-18', 1401, 10366, 1069, 24000, '1.0000', '3.0000', '3.0000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10795, '2021-08-18', 1521, 10367, 1069, 18427, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10796, '2021-08-18', 1505, 10368, 1069, 17448, '1.0000', '90.0000', '90.0000', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10797, '2021-08-18', 1541, 10369, 1069, 18054, '1.0000', '90.0000', '90.0000', '25.0000', '25.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10798, '2021-08-18', 1573, 10370, 1069, NULL, '1.0000', '90.0000', '90.0000', '32.5000', '32.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10799, '2021-08-18', 1884, 10371, 1069, 5010, '1.0000', '4.8500', '4.8500', '6.7700', '6.7700', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10800, '2021-08-18', 2864, 10372, 1069, 18426, '2.0000', '1.5000', '1.5000', '2.0000', '2.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10801, '2021-08-18', 2283, 10373, 1069, 3123, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10802, '2021-08-18', 1452, 10374, 1069, 5632, '1.0000', '1.2300', '1.2300', '2.0000', '2.0000', '39.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10803, '2021-08-18', 1751, 10375, 1069, 2175, '1.0000', '3.6900', '3.6900', '5.0000', '5.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10804, '2021-08-18', 1727, 10376, 1069, NULL, '1.0000', '1.8000', '1.8000', '2.6000', '2.6000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10805, '2021-08-18', 1450, 10377, 1069, NULL, '2.0000', '0.8900', '0.8900', '1.2000', '1.2000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10806, '2021-08-18', 2384, 10378, 1069, 23597, '9.0000', '0.0064', '0.0064', '0.7000', '0.7000', '39.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10807, '2021-08-18', 2908, 10379, 1069, 18685, '1.0000', '0.2700', '0.2700', '0.5000', '0.5000', '97.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10808, '2021-08-18', 2305, 10380, 1069, 10556, '2.0000', '1.3300', '1.3300', '9.0000', '9.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10809, '2021-08-18', 1688, 10381, 1069, 24132, '1.0000', '17.5563', '17.5563', '24.5000', '24.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10810, '2021-08-18', 2366, 10382, 1069, 24898, '2.0000', '3.8193', '3.8193', '6.0000', '6.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10811, '2021-08-18', 2359, 10383, 1069, 17871, '1.0000', '16.2200', '16.2200', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10812, '2021-08-18', 2359, 10383, 1069, 17872, '1.0000', '16.2200', '16.2200', '11.0000', '11.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10813, '2021-08-18', 2416, 10384, 1069, 4827, '1.0000', '1.2000', '1.2000', '1.5000', '1.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10814, '2021-08-18', 1523, 10385, 1069, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '49.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10815, '2021-08-18', 2068, 10386, 1069, 22652, '1.0000', '12.8833', '12.8833', '17.0000', '17.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10816, '2021-08-18', 2169, 10387, 1069, 24338, '1.0000', '0.9502', '0.9502', '1.5000', '1.5000', '23.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10817, '2021-08-18', 2378, 10388, 1069, 4384, '3.0000', '18.0000', '18.0000', '23.5000', '23.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10818, '2021-08-18', 2024, 10389, 1069, 21814, '1.0000', '14.0000', '14.0000', '18.5000', '18.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10819, '2021-08-18', 1391, 10390, 1069, NULL, '1.0000', '90.0000', '90.0000', '14.5000', '14.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10820, '2021-08-18', 2315, 10391, 1069, 3069, '10.0000', '0.3300', '0.3300', '0.5100', '0.5100', '350.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10821, '2021-08-18', 1658, 10392, 1070, 13721, '1.0000', '90.0000', '90.0000', '37.0000', '37.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10822, '2021-08-18', 2250, 10393, 1070, 23681, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10823, '2021-08-18', 1704, 10394, 1070, NULL, '1.0000', '90.0000', '90.0000', '36.0000', '36.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10824, '2021-08-18', 2248, 10395, 1070, 24770, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10825, '2021-08-18', 2379, 10396, 1070, 23165, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10826, '2021-08-18', 2465, 10397, 1070, NULL, '1.0000', '7.8200', '7.8200', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10827, '2021-08-18', 2521, 10398, 1070, 22548, '1.0000', '11.0000', '11.0000', '14.0000', '14.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10828, '2021-08-18', 2135, 10399, 1070, 23175, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '23.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10829, '2021-08-18', 2989, 10400, 1070, 22602, '1.0000', '0.9200', '0.9200', '1.0000', '1.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10830, '2021-08-18', 1912, 10401, 1070, NULL, '2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10831, '2021-08-18', 1338, 10402, 1070, 18934, '1.0000', '4.0000', '4.0000', '6.0000', '6.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10832, '2021-08-18', 1313, 10403, 1070, NULL, '1.0000', '0.4200', '0.4200', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10833, '2021-08-18', 1828, 10404, 1070, 19854, '2.0000', '0.7300', '0.7300', '1.0000', '1.0000', '36.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10834, '2021-08-18', 2167, 10405, 1070, NULL, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10835, '2021-08-18', 2097, 10406, 1070, NULL, '1.0000', '1.6500', '1.6500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10836, '2021-08-18', 2268, 10407, 1070, 23169, '2.0000', '7.3000', '7.3000', '10.0000', '10.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10837, '2021-08-18', 1871, 10408, 1070, NULL, '5.0000', '2.0000', '2.0000', '3.0000', '3.0000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10838, '2021-08-18', 1342, 10409, 1070, 22390, '1.0000', '43.9000', '43.9000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10839, '2021-08-18', 2990, 10410, 1070, 22611, '1.0000', '1.1200', '1.1200', '1.5000', '1.5000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10840, '2021-08-18', 2320, 10411, 1070, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10841, '2021-08-18', 1572, 10412, 1071, NULL, '2.0000', '1.7000', '1.7000', '2.5000', '2.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10842, '2021-08-18', 2315, 10413, 1071, 24765, '2.0000', '5.3884', '5.3884', '0.5100', '0.5100', '78.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10843, '2021-08-18', 2086, 10414, 1071, 13770, '1.0000', '4.3200', '4.3200', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10844, '2021-08-18', 2706, 10415, 1071, 13759, '1.0000', '6.5900', '6.5900', '9.0000', '9.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10845, '2021-08-18', 1787, 10416, 1071, 19864, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10846, '2021-08-18', 2811, 10417, 1072, 16713, '1.0000', '3.4000', '3.4000', '5.0000', '5.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10847, '2021-08-18', 2038, 10418, 1073, 22539, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10848, '2021-08-18', 1388, 10419, 1073, NULL, '1.0000', '5.3000', '5.3000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10849, '2021-08-18', 2256, 10420, 1073, 23142, '1.0000', '12.7400', '12.7400', '17.0000', '17.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10850, '2021-08-18', 2951, 10421, 1073, NULL, '4.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10851, '2021-08-18', 1695, 10422, 1073, NULL, '1.0000', '-133.5000', '-133.5000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10852, '2021-08-18', 2280, 10423, 1073, 24780, '1.0000', '104.8859', '104.8859', '5.0000', '5.0000', '40.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10853, '2021-08-18', 2237, 10424, 1073, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10854, '2021-08-18', 1314, 10425, 1073, NULL, '1.0000', '1.2000', '1.2000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10855, '2021-08-18', 2315, 10426, 1073, 24765, '1.0000', '5.3884', '5.3884', '0.5100', '0.5100', '77.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10856, '2021-08-18', 2990, 10427, 1073, 22611, '1.0000', '1.1200', '1.1200', '1.5000', '1.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10857, '2021-08-18', 2284, 10428, 1073, NULL, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10858, '2021-08-18', 2302, 10429, 1073, 24882, '14.0000', '5.2000', '5.2000', '7.0000', '7.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10859, '2021-08-18', 1863, 10430, 1073, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10860, '2021-08-18', 2775, 10431, 1073, 23161, '1.0000', '18.9000', '18.9000', '25.0000', '25.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10861, '2021-08-18', 1337, 10432, 1073, 23131, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10862, '2021-08-18', 1410, 10433, 1073, NULL, '1.0000', '2.2000', '2.2000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10863, '2021-08-18', 2225, 10434, 1073, 22521, '1.0000', '14.0000', '14.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10864, '2021-08-18', 1851, 10435, 1073, 19852, '1.0000', '11.5600', '11.5600', '16.5000', '16.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10865, '2021-08-18', 2135, 10436, 1073, 23175, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '22.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10866, '2021-08-18', 1339, 10437, 1073, 23699, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10867, '2021-08-18', 2020, 10438, 1073, 23692, '1.0000', '7.5000', '7.5000', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10868, '2021-08-18', 2923, 10439, 1073, 24769, '1.0000', '11.1200', '11.1200', '15.0000', '15.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10869, '2021-08-18', 2237, 10440, 1073, 23675, '4.0000', '1.0600', '1.0600', '2.0000', '2.0000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10870, '2021-08-18', 1529, 10441, 1073, 24189, '1.0000', '39.1471', '39.1471', '5.0000', '5.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10871, '2021-08-18', 1673, 10442, 1073, NULL, '2.0000', '12.9000', '12.9000', '2.5000', '2.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10872, '2021-08-18', 1670, 10443, 1073, NULL, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10873, '2021-08-18', 2353, 10444, 1073, NULL, '1.0000', '4.4500', '4.4500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10874, '2021-08-18', 2237, 10445, 1073, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '12.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10875, '2021-08-18', 2293, 10446, 1073, NULL, '1.0000', '1.4400', '1.4400', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10876, '2021-08-18', 1309, 10447, 1073, NULL, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10877, '2021-08-18', 1533, 10448, 1073, NULL, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10878, '2021-08-18', 2379, 10449, 1073, 23165, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10879, '2021-08-18', 2503, 10450, 1073, 24914, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10880, '2021-08-18', 1339, 10451, 1073, 23699, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10881, '2021-08-18', 1574, 10452, 1074, 23615, '1.0000', '82.8731', '82.8731', '2.5000', '2.5000', '37.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10882, '2021-08-18', 1667, 10453, 1074, 24265, '1.0000', '114.0069', '114.0069', '8.5000', '8.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10883, '2021-08-18', 1910, 10454, 1074, NULL, '2.0000', '1.0200', '1.0200', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10884, '2021-08-18', 2315, 10455, 1074, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '348.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10885, '2021-08-18', 1523, 10456, 1074, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '48.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10886, '2021-08-18', 1666, 10457, 1074, 23584, '1.0000', '246.5993', '246.5993', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10887, '2021-08-18', 1809, 10458, 1074, 18696, '1.0000', '9.2727', '9.2727', '12.5000', '12.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10888, '2021-08-18', 2557, 10459, 1074, 12740, '1.0000', '1.0000', '1.0000', '1.5000', '1.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10889, '2021-08-18', 2772, 10460, 1074, NULL, '1.0000', '16.7000', '16.7000', '22.0000', '22.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10890, '2021-08-18', 2315, 10461, 1074, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '348.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10891, '2021-08-18', 2640, 10462, 1074, 11044, '1.0000', '7.0400', '7.0400', '10.0000', '10.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10892, '2021-08-18', 2279, 10463, 1074, 23614, '1.0000', '2.6280', '2.6280', '4.0000', '4.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10893, '2021-08-18', 2829, 10464, 1074, 24017, '1.0000', '25.3646', '25.3646', '39.5000', '39.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10894, '2021-08-18', 1837, 10465, 1074, NULL, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10895, '2021-08-18', 1306, 10466, 1074, 2477, '2.0000', '2.1000', '2.1000', '3.0000', '3.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10896, '2021-08-18', 2633, 10467, 1074, 10245, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10897, '2021-08-18', 1863, 10468, 1074, 11171, '1.0000', '1.2242', '1.2242', '2.0000', '2.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10898, '2021-08-18', 2360, 10469, 1074, 17042, '2.0000', '0.5200', '0.5200', '0.6900', '0.6900', '46.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10899, '2021-08-18', 1783, 10470, 1074, 23606, '1.0000', '105.6595', '105.6595', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10900, '2021-08-18', 2660, 10471, 1074, 18686, '5.0000', '0.7000', '0.7000', '1.0000', '1.0000', '34.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10901, '2021-08-18', 1763, 10472, 1074, 24015, '1.0000', '4.6900', '4.6900', '7.0000', '7.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10902, '2021-08-18', 2271, 10473, 1074, 14582, '1.0000', '12.0000', '12.0000', '16.5000', '16.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10903, '2021-08-18', 2972, 10474, 1074, 23605, '1.0000', '22.9800', '22.9800', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10904, '2021-08-18', 1368, 10475, 1074, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10905, '2021-08-18', 1863, 10476, 1074, 11171, '1.0000', '1.2242', '1.2242', '2.0000', '2.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10906, '2021-08-18', 1999, 10477, 1074, 21834, '1.0000', '6.0000', '6.0000', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10907, '2021-08-18', 2283, 10478, 1074, 3123, '1.0000', '1.4300', '1.4300', '2.0000', '2.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10908, '2021-08-18', 2221, 10479, 1074, 24336, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '19.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10909, '2021-08-18', 1863, 10480, 1074, 11171, '1.0000', '1.2242', '1.2242', '2.0000', '2.0000', '27.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10910, '2021-08-18', 2915, 10481, 1074, 18786, '1.0000', '15.4500', '15.4500', '20.0000', '20.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10911, '2021-08-18', 2275, 10482, 1075, 24983, '3.0000', '1.0900', '1.0900', '1.5000', '1.5000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10912, '2021-08-18', 2108, 10483, 1075, NULL, '1.0000', '4.7500', '4.7500', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10913, '2021-08-18', 2236, 10484, 1075, 24962, '1.0000', '5.5000', '5.5000', '8.0000', '8.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10914, '2021-08-18', 1665, 10485, 1075, NULL, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10915, '2021-08-18', 1863, 10486, 1075, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10916, '2021-08-18', 2288, 10487, 1075, 23684, '1.0000', '7.8600', '7.8600', '11.0000', '11.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10917, '2021-08-18', 1602, 10488, 1075, NULL, '1.0000', '7.0190', '7.0190', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10918, '2021-08-18', 1704, 10489, 1075, NULL, '1.0000', '90.0000', '90.0000', '36.0000', '36.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10919, '2021-08-18', 2454, 10490, 1075, 24915, '1.0000', '9.0000', '9.0000', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10920, '2021-08-18', 2256, 10491, 1075, 23142, '1.0000', '12.7400', '12.7400', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10921, '2021-08-18', 1507, 10492, 1075, NULL, '1.0000', '90.0000', '90.0000', '7.5000', '7.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10922, '2021-08-18', 1863, 10493, 1075, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10923, '2021-08-18', 2284, 10494, 1075, NULL, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10924, '2021-08-18', 2135, 10495, 1075, 23175, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '21.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10925, '2021-08-18', 1306, 10496, 1075, NULL, '2.0000', '2.1000', '2.1000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10926, '2021-08-18', 3018, 10497, 1075, NULL, '1.0000', '4.9100', '4.9100', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10927, '2021-08-18', 3067, 10498, 1076, 25025, '3.0000', '0.7000', '0.7000', '1.0000', '1.0000', '47.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10928, '2021-08-18', 2167, 10499, 1077, 22219, '1.0000', '2.2000', '2.2000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10929, '2021-08-18', 2022, 10500, 1077, 11856, '1.0000', '3.5000', '3.5000', '4.5000', '4.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10930, '2021-08-18', 2679, 10501, 1077, 22630, '1.0000', '32.3500', '32.3500', '44.0000', '44.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10931, '2021-08-18', 2286, 10502, 1077, 18659, '2.0000', '4.3000', '4.3000', '6.0000', '6.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10932, '2021-08-18', 1346, 10503, 1077, NULL, '9.0000', '0.9300', '0.9300', '1.5000', '1.5000', '-9.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10933, '2021-08-18', 1812, 10504, 1077, 23603, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10934, '2021-08-18', 1807, 10505, 1077, NULL, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10935, '2021-08-18', 1331, 10506, 1077, 3370, '1.0000', '4.2000', '4.2000', '5.5000', '5.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10936, '2021-08-18', 2633, 10507, 1078, NULL, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10937, '2021-08-18', 1756, 10508, 1078, NULL, '3.0000', '4.9900', '4.9900', '6.5000', '6.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10938, '2021-08-18', 1771, 10509, 1078, 13766, '1.0000', '3.3900', '3.3900', '6.0000', '6.0000', '17.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10939, '2021-08-18', 1867, 10510, 1078, NULL, '10.0000', '1.0500', '1.0500', '1.3000', '1.3000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10940, '2021-08-18', 2105, 10511, 1078, NULL, '3.0000', '1.3500', '1.3500', '3.0000', '3.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10941, '2021-08-19', 1646, 10512, 1079, 19840, '1.0000', '4.5300', '4.5300', '7.5000', '7.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10942, '2021-08-19', 1434, 10513, 1079, NULL, '1.0000', '14.5000', '14.5000', '23.0000', '23.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10943, '2021-08-19', 1337, 10514, 1079, 23131, '1.0000', '2.0000', '2.0000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10944, '2021-08-19', 1761, 10515, 1079, 19369, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10945, '2021-08-19', 1785, 10516, 1079, 19329, '1.0000', '14.0500', '14.0500', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10946, '2021-08-19', 2237, 10517, 1079, 23675, '1.0000', '1.0600', '1.0600', '2.0000', '2.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10947, '2021-08-19', 1912, 10518, 1079, NULL, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10948, '2021-08-19', 1912, 10519, 1079, NULL, '1.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10949, '2021-08-19', 2315, 10520, 1079, 24937, '4.0000', '-6.8895', '-6.8895', '0.5100', '0.5100', '73.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10950, '2021-08-19', 1828, 10521, 1079, 19854, '3.0000', '0.7300', '0.7300', '1.0000', '1.0000', '33.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10951, '2021-08-19', 1837, 10522, 1079, NULL, '2.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10952, '2021-08-19', 1310, 10523, 1079, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10953, '2021-08-19', 2768, 10524, 1079, NULL, '3.0000', '0.9600', '0.9600', '1.5000', '1.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10954, '2021-08-19', 2169, 10525, 1079, NULL, '2.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10955, '2021-08-19', 1519, 10526, 1079, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10956, '2021-08-19', 2169, 10527, 1079, NULL, '4.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10957, '2021-08-19', 2167, 10528, 1079, NULL, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10958, '2021-08-19', 1839, 10529, 1079, 24949, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10959, '2021-08-19', 1523, 10530, 1079, 24139, '2.0000', '1.0061', '1.0061', '5.0000', '5.0000', '40.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10960, '2021-08-19', 2068, 10531, 1079, 24202, '1.0000', '12.0277', '12.0277', '17.0000', '17.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10961, '2021-08-19', 1844, 10532, 1079, NULL, '2.0000', '1.5000', '1.5000', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10962, '2021-08-19', 1867, 10533, 1079, NULL, '10.0000', '1.0500', '1.0500', '1.3000', '1.3000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10963, '2021-08-19', 1689, 10534, 1079, 13742, '1.0000', '12.3500', '12.3500', '17.0000', '17.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10964, '2021-08-19', 2991, 10535, 1079, 22612, '1.0000', '0.5700', '0.5700', '1.0000', '1.0000', '99.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10965, '2021-08-19', 2068, 10536, 1080, 24202, '1.0000', '12.0277', '12.0277', '17.0000', '17.0000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10966, '2021-08-19', 1651, 10537, 1080, 23126, '1.0000', '6.8300', '6.8300', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10967, '2021-08-19', 1518, 10538, 1081, NULL, '1.0000', '6.9000', '6.9000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10968, '2021-08-19', 3068, 10539, 1081, NULL, '2.0000', '14.0000', '14.0000', '18.0000', '18.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10969, '2021-08-19', 1728, 10540, 1081, 6625, '-8.0000', '1.9000', '1.9000', '2.5000', '2.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10970, '2021-08-19', 1728, 10540, 1081, NULL, '16.0000', '1.9000', '1.9000', '2.5000', '2.5000', '-16.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10971, '2021-08-19', 2821, 10541, 1081, NULL, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10972, '2021-08-19', 1425, 10542, 1081, NULL, '1.0000', '6.4405', '6.4405', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10973, '2021-08-19', 1637, 10543, 1081, 13466, '3.0000', '10.2000', '10.2000', '14.0000', '14.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10974, '2021-08-19', 2690, 10544, 1081, NULL, '1.0000', '17.0000', '17.0000', '22.0000', '22.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10975, '2021-08-19', 2419, 10545, 1081, 5290, '-1.0000', '14.0000', '14.0000', '18.0000', '18.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10976, '2021-08-19', 2419, 10545, 1081, NULL, '2.0000', '14.0000', '14.0000', '18.0000', '18.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10977, '2021-08-19', 2296, 10546, 1081, 2955, '1.0000', '13.2900', '13.2900', '18.0000', '18.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10978, '2021-08-19', 1621, 10547, 1081, 7385, '-1.0000', '6.6000', '6.6000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10979, '2021-08-19', 1621, 10547, 1081, NULL, '2.0000', '6.6000', '6.6000', '9.0000', '9.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10980, '2021-08-19', 2283, 10548, 1081, 2943, '-3.0000', '1.4300', '1.4300', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10981, '2021-08-19', 2283, 10548, 1081, NULL, '4.0000', '1.4300', '1.4300', '2.0000', '2.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10982, '2021-08-19', 2247, 10549, 1081, NULL, '1.0000', '2.5000', '2.5000', '3.5000', '3.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10983, '2021-08-19', 2063, 10550, 1081, 6682, '2.0000', '1.9900', '1.9900', '3.5000', '3.5000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10984, '2021-08-19', 2821, 10551, 1081, NULL, '1.0000', '3.5100', '3.5100', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10985, '2021-08-19', 1912, 10552, 1081, 20584, '1.0000', '0.3200', '0.3200', '1.0000', '1.0000', '29.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10986, '2021-08-19', 1779, 10553, 1081, NULL, '1.0000', '90.0000', '90.0000', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10987, '2021-08-19', 1666, 10554, 1081, 3236, '-4.0000', '2.7100', '2.7100', '3.5000', '3.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10988, '2021-08-19', 1666, 10554, 1081, NULL, '5.0000', '2.7100', '2.7100', '3.5000', '3.5000', '-5.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10989, '2021-08-19', 1620, 10555, 1081, 8955, '4.0000', '408.8259', '408.8259', '4.0000', '4.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10990, '2021-08-19', 2169, 10556, 1081, 22244, '1.0000', '3.8397', '3.8397', '1.5000', '1.5000', '35.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10991, '2021-08-19', 1665, 10557, 1081, 3235, '-10.0000', '1.3000', '1.3000', '2.0000', '2.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10992, '2021-08-19', 1665, 10557, 1081, NULL, '11.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-11.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10993, '2021-08-19', 1708, 10558, 1082, NULL, '1.0000', '20.1900', '20.1900', '28.0000', '28.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10994, '2021-08-19', 2279, 10559, 1082, 23106, '1.0000', '2.6000', '2.6000', '4.0000', '4.0000', '22.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10995, '2021-08-19', 1519, 10560, 1082, 23167, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (10996, '2021-08-19', 2293, 10561, 1082, NULL, '1.0000', '1.4400', '1.4400', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10997, '2021-08-19', 2739, 10562, 1082, 19347, '1.0000', '6.7000', '6.7000', '2.2000', '2.2000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10998, '2021-08-19', 1580, 10563, 1082, 19875, '2.0000', '0.9900', '0.9900', '1.5000', '1.5000', '44.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (10999, '2021-08-19', 1945, 10564, 1082, 24197, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11000, '2021-08-19', 1425, 10565, 1082, 24975, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11001, '2021-08-19', 2284, 10566, 1082, NULL, '1.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11002, '2021-08-19', 1420, 10567, 1082, NULL, '1.0000', '1.2000', '1.2000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11003, '2021-08-19', 2109, 10568, 1082, 24971, '1.0000', '0.2500', '0.2500', '1.5000', '1.5000', '44.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11004, '2021-08-19', 1629, 10569, 1082, 23682, '1.0000', '15.5000', '15.5000', '21.0000', '21.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11005, '2021-08-19', 1935, 10570, 1082, NULL, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11006, '2021-08-19', 1863, 10571, 1082, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11007, '2021-08-19', 2740, 10572, 1082, 19346, '1.0000', '9.0000', '9.0000', '12.0000', '12.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11008, '2021-08-19', 1771, 10573, 1082, 13766, '1.0000', '3.3900', '3.3900', '6.0000', '6.0000', '16.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11009, '2021-08-19', 2379, 10574, 1082, 23165, '2.0000', '1.8000', '1.8000', '2.5000', '2.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11010, '2021-08-19', 1828, 10575, 1082, 19854, '1.0000', '0.7300', '0.7300', '1.0000', '1.0000', '32.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11011, '2021-08-19', 2655, 10576, 1083, NULL, '1.0000', '6.5000', '6.5000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11012, '2021-08-19', 2342, 10577, 1083, 24955, '15.0000', '1.8600', '1.8600', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11013, '2021-08-19', 1863, 10578, 1083, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11014, '2021-08-19', 2982, 10579, 1084, NULL, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11015, '2021-08-19', 2037, 10580, 1084, NULL, '1.0000', '10.5000', '10.5000', '14.0000', '14.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11016, '2021-08-19', 2109, 10581, 1084, 1053, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '143.0000', 1, 0, NULL, 57);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11017, '2021-08-19', 1590, 10582, 1084, 22260, '1.0000', '1.7100', '1.7100', '2.2000', '2.2000', '40.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11018, '2021-08-19', 1854, 10583, 1084, 22240, '2.0000', '2.5000', '2.5000', '3.5000', '3.5000', '17.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11019, '2021-08-19', 2293, 10584, 1084, 22262, '5.0000', '1.4400', '1.4400', '2.0000', '2.0000', '91.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11020, '2021-08-19', 1425, 10585, 1085, 23626, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11021, '2021-08-19', 1863, 10586, 1085, 11171, '1.0000', '1.2242', '1.2242', '2.0000', '2.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11022, '2021-08-19', 1309, 10587, 1085, 3074, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11023, '2021-08-19', 1744, 10588, 1085, 24007, '1.0000', '71.1690', '71.1690', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11024, '2021-08-19', 1945, 10589, 1085, 18071, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11025, '2021-08-19', 2068, 10590, 1085, 22652, '1.0000', '12.8833', '12.8833', '17.0000', '17.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11026, '2021-08-19', 1744, 10591, 1085, 24007, '1.0000', '71.1690', '71.1690', '36.0000', '36.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11027, '2021-08-19', 1574, 10592, 1085, 23615, '2.0000', '82.8731', '82.8731', '2.5000', '2.5000', '35.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11028, '2021-08-19', 1598, 10593, 1085, 9432, '1.0000', '2.9300', '2.9300', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11029, '2021-08-19', 2169, 10594, 1085, 24338, '1.0000', '0.9502', '0.9502', '1.5000', '1.5000', '21.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11030, '2021-08-19', 1612, 10595, 1085, 9422, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11031, '2021-08-19', 1672, 10596, 1085, 24288, '10.0000', '44.6198', '44.6198', '4.0000', '4.0000', '40.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11032, '2021-08-19', 2105, 10597, 1085, 2511, '1.0000', '1.3500', '1.3500', '3.0000', '3.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11033, '2021-08-19', 1824, 10598, 1085, 4959, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11034, '2021-08-19', 1385, 10599, 1085, 3428, '1.0000', '6.3000', '6.3000', '8.5000', '8.5000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11035, '2021-08-19', 1326, 10600, 1085, 3365, '1.0000', '3.0300', '3.0300', '6.0000', '6.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11036, '2021-08-19', 1947, 10601, 1085, 2497, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '13.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11037, '2021-08-19', 1502, 10602, 1085, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11038, '2021-08-19', 1502, 10603, 1085, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11039, '2021-08-19', 1502, 10604, 1085, 9542, '1.0000', '90.0000', '90.0000', '10.5000', '10.5000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11040, '2021-08-19', 2302, 10605, 1085, 24104, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11041, '2021-08-19', 1518, 10606, 1085, 22639, '1.0000', '48.4650', '48.4650', '10.0000', '10.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11042, '2021-08-19', 1529, 10607, 1085, 23578, '1.0000', '10292.4448', '10292.4448', '5.0000', '5.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11043, '2021-08-19', 1328, 10608, 1085, 3366, '1.0000', '3.1500', '3.1500', '4.5000', '4.5000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11044, '2021-08-19', 2584, 10609, 1085, 8156, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11045, '2021-08-19', 2877, 10610, 1085, 17902, '1.0000', '7.0000', '7.0000', '10.0000', '10.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11046, '2021-08-19', 1637, 10611, 1085, 17491, '1.0000', '90.0000', '90.0000', '14.0000', '14.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11047, '2021-08-19', 2858, 10612, 1085, 17780, '1.0000', '1.0000', '1.0000', '5.0000', '5.0000', '15.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11048, '2021-08-19', 1888, 10613, 1085, NULL, '1.0000', '-42.1250', '-42.1250', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11049, '2021-08-19', 2592, 10614, 1085, 24289, '1.0000', '7.9392', '7.9392', '11.0000', '11.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11050, '2021-08-19', 1841, 10615, 1086, NULL, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11051, '2021-08-19', 1493, 10616, 1087, NULL, '1.0000', '1.5425', '1.5425', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11052, '2021-08-19', 2285, 10617, 1088, NULL, '1.0000', '35.8000', '35.8000', '48.0000', '48.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11053, '2021-08-19', 1618, 10618, 1088, NULL, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11054, '2021-08-19', 1602, 10619, 1088, NULL, '1.0000', '7.0190', '7.0190', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11055, '2021-08-19', 1935, 10620, 1088, NULL, '2.0000', '90.0000', '90.0000', '2.0000', '2.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11056, '2021-08-19', 1637, 10621, 1088, 19388, '1.0000', '90.0000', '90.0000', '14.0000', '14.0000', '9.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11057, '2021-08-19', 1584, 10622, 1089, 9443, '1.0000', '90.0000', '90.0000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11058, '2021-08-19', 2704, 10623, 1089, 12743, '1.0000', '14.9700', '14.9700', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11059, '2021-08-19', 3013, 10624, 1089, 24112, '1.0000', '8.0000', '8.0000', '11.0000', '11.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11060, '2021-08-19', 2135, 10625, 1089, 16894, '1.0000', '2.5000', '2.5000', '5.0000', '5.0000', '21.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11061, '2021-08-19', 1860, 10626, 1089, 4990, '1.0000', '90.0000', '90.0000', '28.0000', '28.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11062, '2021-08-19', 1824, 10627, 1089, 4959, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11063, '2021-08-19', 3085, 10628, 1090, NULL, '1.0000', '55.0000', '55.0000', '72.0000', '72.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11064, '2021-08-19', 2209, 10629, 1090, 8191, '1.0000', '7.5000', '7.5000', '15.0000', '15.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11065, '2021-08-19', 2061, 10630, 1090, 22484, '1.0000', '10.9800', '10.9800', '15.0000', '15.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11066, '2021-08-20', 1650, 10631, 1091, 22499, '1.0000', '14.5800', '14.5800', '19.5000', '19.5000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11067, '2021-08-20', 2315, 10632, 1091, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '344.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11068, '2021-08-20', 1947, 10633, 1091, 2497, '1.0000', '5.0000', '5.0000', '5.0000', '5.0000', '12.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11069, '2021-08-20', 2818, 10634, 1091, 16780, '1.0000', '14.0000', '14.0000', '19.0000', '19.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11070, '2021-08-20', 1519, 10635, 1091, 24128, '1.0000', '3.3500', '3.3500', '5.0000', '5.0000', '17.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11071, '2021-08-20', 1342, 10636, 1091, 25038, '1.0000', '29.5000', '29.5000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11072, '2021-08-20', 1867, 10637, 1091, NULL, '10.0000', '10.0500', '10.0500', '1.3000', '1.3000', '-10.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11073, '2021-08-20', 2317, 10638, 1091, 15799, '1.0000', '15.0000', '15.0000', '18.0000', '18.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11074, '2021-08-20', 1440, 10639, 1091, 3280, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11075, '2021-08-20', 1782, 10640, 1091, 4935, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '8.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11076, '2021-08-20', 1846, 10641, 1091, 24271, '1.0000', '131.0188', '131.0188', '16.0000', '16.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11077, '2021-08-20', 2398, 10642, 1091, 18707, '2.0000', '15.0000', '15.0000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11078, '2021-08-20', 1818, 10643, 1091, 4954, '1.0000', '14.8000', '14.8000', '20.0000', '20.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11079, '2021-08-20', 1771, 10644, 1091, 21570, '1.0000', '3.3900', '3.3900', '6.0000', '6.0000', '10.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11080, '2021-08-20', 1912, 10645, 1091, NULL, '2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11081, '2021-08-20', 2995, 10646, 1091, 23583, '1.0000', '39.7000', '39.7000', '52.5000', '52.5000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11082, '2021-08-20', 1523, 10647, 1091, 24285, '1.0000', '0.9596', '0.9596', '5.0000', '5.0000', '47.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11083, '2021-08-20', 2327, 10648, 1092, 23984, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '24.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11084, '2021-08-20', 2167, 10649, 1092, NULL, '2.0000', '2.2000', '2.2000', '3.0000', '3.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11085, '2021-08-20', 2060, 10650, 1092, NULL, '2.0000', '0.3300', '0.3300', '0.5000', '0.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11086, '2021-08-20', 1888, 10651, 1092, 19330, '1.0000', '509.9086', '509.9086', '20.0000', '20.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11087, '2021-08-20', 1761, 10652, 1092, 19369, '1.0000', '1.8200', '1.8200', '3.0000', '3.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11088, '2021-08-20', 2759, 10653, 1092, 22378, '1.0000', '3.9500', '3.9500', '5.5000', '5.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11089, '2021-08-20', 2270, 10654, 1092, NULL, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11090, '2021-08-20', 1557, 10655, 1092, NULL, '1.0000', '7.9506', '7.9506', '10.5000', '10.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11091, '2021-08-20', 2280, 10656, 1092, 24952, '1.0000', '-177.9360', '-177.9360', '5.0000', '5.0000', '39.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11092, '2021-08-20', 1856, 10657, 1092, NULL, '1.0000', '4.2500', '4.2500', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11093, '2021-08-20', 1912, 10658, 1092, NULL, '2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11094, '2021-08-20', 2169, 10659, 1092, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11095, '2021-08-20', 1863, 10660, 1092, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11096, '2021-08-20', 2280, 10661, 1092, 24952, '1.0000', '-177.9360', '-177.9360', '5.0000', '5.0000', '39.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11097, '2021-08-20', 1721, 10662, 1092, 13740, '1.0000', '8.6900', '8.6900', '12.0000', '12.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11098, '2021-08-20', 2086, 10663, 1092, 13770, '1.0000', '4.3200', '4.3200', '6.0000', '6.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11099, '2021-08-20', 1675, 10664, 1093, 24322, '1.0000', '65.7753', '65.7753', '29.0000', '29.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11100, '2021-08-20', 1338, 10665, 1093, 24273, '1.0000', '2.0710', '2.0710', '6.0000', '6.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11101, '2021-08-20', 1494, 10666, 1093, 23591, '1.0000', '7.2800', '7.2800', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11102, '2021-08-20', 2648, 10667, 1094, 10607, '1.0000', '5.4000', '5.4000', '6.5000', '6.5000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11103, '2021-08-20', 2807, 10668, 1094, 16931, '1.0000', '1.0000', '1.0000', '2.0000', '2.0000', '7.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11104, '2021-08-20', 2169, 10669, 1094, 24338, '1.0000', '0.9502', '0.9502', '1.5000', '1.5000', '20.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11105, '2021-08-20', 2649, 10670, 1094, 24003, '1.0000', '69.5976', '69.5976', '95.0000', '95.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11106, '2021-08-20', 1349, 10671, 1094, 23576, '1.0000', '34.9000', '34.9000', '46.0000', '46.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11107, '2021-08-20', 1617, 10672, 1095, 9418, '1.0000', '4.6300', '4.6300', '6.5000', '6.5000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11108, '2021-08-20', 1606, 10673, 1096, 9428, '10.0000', '4.6200', '4.6200', '6.0000', '6.0000', '20.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11109, '2021-08-20', 2038, 10674, 1096, 18359, '1.0000', '10.0000', '10.0000', '14.0000', '14.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11110, '2021-08-20', 2059, 10675, 1096, NULL, '1.0000', '10.0000', '10.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11111, '2021-08-20', 2506, 10676, 1097, 24945, '1.0000', '3.4900', '3.4900', '5.0000', '5.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11112, '2021-08-20', 2109, 10677, 1097, 24971, '2.0000', '0.2500', '0.2500', '1.5000', '1.5000', '42.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11113, '2021-08-20', 2068, 10678, 1097, 24202, '1.0000', '12.0277', '12.0277', '17.0000', '17.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11114, '2021-08-20', 1935, 10679, 1097, NULL, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11115, '2021-08-20', 1787, 10680, 1098, 4930, '2.0000', '0.8100', '0.8100', '2.0000', '2.0000', '30.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11116, '2021-08-20', 2829, 10681, 1098, 24017, '1.0000', '25.3646', '25.3646', '39.5000', '39.5000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11117, '2021-08-20', 2829, 10681, 1098, 24021, '1.0000', '25.3646', '25.3646', '39.5000', '39.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11118, '2021-08-20', 2145, 10682, 1098, NULL, '1.0000', '15.0000', '15.0000', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11119, '2021-08-20', 2226, 10683, 1099, 22522, '1.0000', '14.0000', '14.0000', '17.0000', '17.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11120, '2021-08-20', 2068, 10684, 1099, 24202, '1.0000', '12.0277', '12.0277', '17.0000', '17.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11121, '2021-08-20', 1501, 10685, 1099, 24943, '3.0000', '2.2087', '2.2087', '3.0000', '3.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11122, '2021-08-20', 1381, 10686, 1099, 24951, '1.0000', '-6790.6178', '-6790.6178', '10.0000', '10.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11123, '2021-08-20', 1727, 10687, 1099, 23113, '2.0000', '1.9500', '1.9500', '2.6000', '2.6000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11124, '2021-08-20', 1529, 10688, 1099, 13747, '1.0000', '36.4099', '36.4099', '5.0000', '5.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11125, '2021-08-20', 1339, 10689, 1099, 23699, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11126, '2021-08-20', 2809, 10690, 1099, 23991, '1.0000', '28.0000', '28.0000', '35.0000', '35.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11127, '2021-08-20', 2027, 10691, 1099, 22551, '1.0000', '6.0000', '6.0000', '8.0000', '8.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11128, '2021-08-20', 2521, 10692, 1099, 25160, '1.0000', '11.0000', '11.0000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11129, '2021-08-20', 1704, 10693, 1099, NULL, '1.0000', '90.0000', '90.0000', '36.0000', '36.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11130, '2021-08-20', 2916, 10694, 1099, 23676, '1.0000', '15.0176', '15.0176', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11131, '2021-08-20', 1884, 10695, 1099, 23698, '1.0000', '5.1300', '5.1300', '6.7700', '6.7700', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11132, '2021-08-20', 1314, 10696, 1099, NULL, '2.0000', '1.2000', '1.2000', '4.0000', '4.0000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11133, '2021-08-20', 1746, 10697, 1099, 19863, '1.0000', '3.5000', '3.5000', '5.0000', '5.0000', '58.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11134, '2021-08-20', 1650, 10698, 1099, 24946, '1.0000', '14.8000', '14.8000', '19.5000', '19.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11135, '2021-08-20', 1945, 10699, 1099, 24197, '1.0000', '9.5000', '9.5000', '12.5000', '12.5000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11136, '2021-08-20', 2381, 10700, 1099, 25013, '1.0000', '12.0748', '12.0748', '16.0000', '16.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11137, '2021-08-20', 2220, 10701, 1099, 24950, '1.0000', '5.9300', '5.9300', '8.0000', '8.0000', '8.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11138, '2021-08-20', 2862, 10702, 1099, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11139, '2021-08-20', 2320, 10703, 1099, NULL, '1.0000', '5.0000', '5.0000', '10.0000', '10.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11140, '2021-08-20', 2916, 10704, 1099, 23676, '1.0000', '15.0176', '15.0176', '20.0000', '20.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11141, '2021-08-20', 2769, 10705, 1099, NULL, '2.0000', '0.5000', '0.5000', '2.5000', '2.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11142, '2021-08-20', 2673, 10706, 1100, NULL, '1.0000', '11.0000', '11.0000', '15.0000', '15.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11143, '2021-08-20', 1928, 10707, 1100, NULL, '1.0000', '90.0000', '90.0000', '7.0000', '7.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11144, '2021-08-20', 1912, 10708, 1100, NULL, '4.0000', '0.3100', '0.3100', '1.0000', '1.0000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11145, '2021-08-20', 1863, 10709, 1100, NULL, '1.0000', '1.2200', '1.2200', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11146, '2021-08-20', 2660, 10710, 1100, 23143, '2.0000', '0.7000', '0.7000', '1.0000', '1.0000', '26.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11147, '2021-08-20', 2384, 10711, 1100, NULL, '4.0000', '0.4000', '0.4000', '0.7000', '0.7000', '-4.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11148, '2021-08-20', 2544, 10712, 1100, NULL, '1.0000', '6.8800', '6.8800', '9.0000', '9.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11149, '2021-08-20', 2221, 10713, 1100, 22606, '1.0000', '15.0000', '15.0000', '25.0000', '25.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11150, '2021-08-20', 3018, 10714, 1100, NULL, '1.0000', '4.9100', '4.9100', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11151, '2021-08-20', 2169, 10715, 1100, NULL, '1.0000', '0.9800', '0.9800', '1.5000', '1.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11152, '2021-08-20', 2286, 10716, 1100, NULL, '3.0000', '4.3000', '4.3000', '6.0000', '6.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11153, '2021-08-20', 1501, 10717, 1100, 24943, '1.0000', '2.2087', '2.2087', '3.0000', '3.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11154, '2021-08-20', 1670, 10718, 1100, NULL, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11155, '2021-08-20', 1721, 10719, 1100, 13740, '1.0000', '8.6900', '8.6900', '12.0000', '12.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11156, '2021-08-20', 2772, 10720, 1101, NULL, '1.0000', '16.7000', '16.7000', '22.0000', '22.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11157, '2021-08-20', 2514, 10721, 1101, 7518, '1.0000', '10.0000', '10.0000', '13.0000', '13.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11158, '2021-08-20', 1736, 10722, 1101, 24113, '6.0000', '26.5160', '26.5160', '38.0000', '38.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11159, '2021-08-20', 1618, 10723, 1101, 17040, '1.0000', '90.0000', '90.0000', '16.0000', '16.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11160, '2021-08-20', 2582, 10724, 1101, 9573, '1.0000', '11.5000', '11.5000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11161, '2021-08-20', 1651, 10725, 1101, 24103, '1.0000', '7.1386', '7.1386', '10.5000', '10.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11162, '2021-08-20', 1432, 10726, 1101, 22228, '1.0000', '9.0000', '9.0000', '13.0000', '13.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11163, '2021-08-20', 1863, 10727, 1101, 11171, '1.0000', '1.2242', '1.2242', '2.0000', '2.0000', '23.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11164, '2021-08-20', 1612, 10728, 1101, 9422, '1.0000', '1.6000', '1.6000', '3.0000', '3.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11165, '2021-08-20', 2233, 10729, 1101, 18675, '1.0000', '19.0200', '19.0200', '27.0000', '27.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11166, '2021-08-20', 1819, 10730, 1101, 18415, '1.0000', '5.5000', '5.5000', '7.1700', '7.1700', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11167, '2021-08-20', 1347, 10731, 1101, NULL, '3.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11168, '2021-08-20', 2618, 10732, 1101, 10553, '1.0000', '4.1000', '4.1000', '5.5000', '5.5000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11169, '2021-08-20', 1670, 10733, 1101, 18413, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11170, '2021-08-20', 1787, 10734, 1101, 4930, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '29.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11171, '2021-08-20', 1841, 10735, 1101, 24123, '2.0000', '0.3700', '0.3700', '0.5000', '0.5000', '29.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11172, '2021-08-20', 1744, 10736, 1101, 24007, '1.0000', '71.1690', '71.1690', '36.0000', '36.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11173, '2021-08-20', 2315, 10737, 1101, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '342.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11174, '2021-08-20', 1638, 10738, 1101, 17068, '16.0000', '5.8200', '5.8200', '8.0000', '8.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11175, '2021-08-20', 1637, 10739, 1101, 17491, '1.0000', '90.0000', '90.0000', '14.0000', '14.0000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11176, '2021-08-20', 1905, 10740, 1101, 5509, '1.0000', '0.4000', '0.4000', '1.0000', '1.0000', '75.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11177, '2021-08-20', 1644, 10741, 1101, 25035, '1.0000', '94.4888', '94.4888', '45.0000', '45.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11178, '2021-08-20', 1700, 10742, 1101, 22235, '1.0000', '90.0000', '90.0000', '11.0000', '11.0000', '4.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11179, '2021-08-20', 2886, 10743, 1101, 17911, '1.0000', '25.0000', '25.0000', '35.0000', '35.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11180, '2021-08-20', 2023, 10744, 1101, 21813, '1.0000', '14.0000', '14.0000', '19.8000', '19.8000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11181, '2021-08-20', 2534, 10745, 1101, 6126, '1.0000', '25.0000', '25.0000', '28.0000', '28.0000', '5.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11182, '2021-08-20', 1347, 10746, 1101, NULL, '3.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11183, '2021-08-20', 1670, 10747, 1101, 18413, '1.0000', '90.0000', '90.0000', '26.0000', '26.0000', '1.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11184, '2021-08-20', 1837, 10748, 1101, NULL, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11185, '2021-08-20', 2618, 10749, 1101, 10553, '1.0000', '4.1000', '4.1000', '5.5000', '5.5000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11186, '2021-08-20', 2309, 10750, 1101, 6777, '4.0000', '1.9900', '1.9900', '2.6000', '2.6000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11187, '2021-08-20', 1888, 10751, 1101, NULL, '1.0000', '-42.1250', '-42.1250', '20.0000', '20.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11188, '2021-08-20', 2355, 10752, 1101, 22643, '10.0000', '-90.6000', '-90.6000', '7.2000', '7.2000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11189, '2021-08-20', 2250, 10753, 1101, 24340, '1.0000', '6.8900', '6.8900', '10.0000', '10.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11190, '2021-08-20', 2992, 10754, 1101, NULL, '2.0000', '2.6000', '2.6000', '3.5000', '3.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11191, '2021-08-20', 1912, 10755, 1101, 9575, '-2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11192, '2021-08-20', 1912, 10755, 1101, 9575, '-2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11193, '2021-08-20', 1912, 10755, 1101, 9575, '-2.0000', '0.3100', '0.3100', '1.0000', '1.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11194, '2021-08-20', 1912, 10755, 1101, 1503, '4.0000', '0.3100', '0.3100', '1.0000', '1.0000', '24.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11195, '2021-08-20', 2248, 10756, 1101, 22624, '1.0000', '2.5000', '2.5000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11196, '2021-08-20', 1533, 10757, 1101, 10385, '1.0000', '3.0500', '3.0500', '5.0000', '5.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11197, '2021-08-20', 1546, 10758, 1101, 12050, '2.0000', '90.0000', '90.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11198, '2021-08-20', 1546, 10758, 1101, 1665, '2.0000', '90.0000', '90.0000', '4.0000', '4.0000', '0.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11199, '2021-08-20', 1546, 10758, 1101, NULL, '6.0000', '90.0000', '90.0000', '4.0000', '4.0000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11200, '2021-08-20', 2163, 10759, 1101, NULL, '1.0000', '20.0000', '20.0000', '29.0000', '29.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11201, '2021-08-20', 3002, 10760, 1102, 23120, '1.0000', '6.2000', '6.2000', '8.0000', '8.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11202, '2021-08-20', 1839, 10761, 1103, 24949, '1.0000', '6.1500', '6.1500', '8.0000', '8.0000', '7.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11203, '2021-08-20', 1501, 10762, 1104, NULL, '1.0000', '2.2087', '2.2087', '3.0000', '3.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11204, '2021-08-20', 2275, 10763, 1104, 24983, '1.0000', '1.0900', '1.0900', '1.5000', '1.5000', '6.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11205, '2021-08-20', 3067, 10764, 1105, 25025, '1.0000', '0.7000', '0.7000', '1.0000', '1.0000', '46.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11206, '2021-08-20', 2459, 10765, 1106, 24262, '1.0000', '-0.0719', '-0.0719', '7.5000', '7.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11207, '2021-08-20', 1347, 10766, 1106, NULL, '6.0000', '3.4000', '3.4000', '4.5000', '4.5000', '-6.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11208, '2021-08-20', 1787, 10767, 1106, 4930, '1.0000', '0.8100', '0.8100', '2.0000', '2.0000', '28.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11209, '2021-08-20', 1837, 10768, 1106, NULL, '1.0000', '0.5500', '0.5500', '1.0000', '1.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11210, '2021-08-20', 1651, 10769, 1106, 24103, '1.0000', '7.1386', '7.1386', '10.5000', '10.5000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11211, '2021-08-20', 3046, 10770, 1106, 24270, '1.0000', '5.4000', '5.4000', '7.5000', '7.5000', '9.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11212, '2021-08-20', 1529, 10771, 1106, 23578, '1.0000', '10292.4448', '10292.4448', '5.0000', '5.0000', '3.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11213, '2021-08-20', 1425, 10772, 1106, 23626, '1.0000', '6.5000', '6.5000', '9.0000', '9.0000', '0.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11214, '2021-08-20', 2315, 10773, 1106, 3069, '2.0000', '0.3300', '0.3300', '0.5100', '0.5100', '340.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11215, '2021-08-20', 2303, 10774, 1106, 3139, '2.0000', '16.1000', '16.1000', '21.5000', '21.5000', '3.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11216, '2021-08-20', 1637, 10775, 1106, 17491, '1.0000', '90.0000', '90.0000', '14.0000', '14.0000', '2.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11217, '2021-08-20', 1602, 10776, 1106, 22497, '2.0000', '6.9347', '6.9347', '10.0000', '10.0000', '6.0000', 1, 0, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11218, '2021-08-20', 1372, 10777, 1107, NULL, '2.0000', '7.8900', '7.8900', '10.5000', '10.5000', '-2.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11219, '2021-08-20', 1788, 10778, 1107, NULL, '1.0000', '4.5000', '4.5000', '6.0000', '6.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11220, '2021-08-20', 2441, 10779, 1107, NULL, '1.0000', '4.6000', '4.6000', '6.5000', '6.5000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11221, '2021-08-20', 3338, 10780, 1108, 25450, '1.0000', '6.4000', '6.4000', '0.0000', '0.0000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11222, '2021-08-20', 3728, 10781, 1109, NULL, '1.0000', '21.0000', '21.0000', '0.0000', '0.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11223, '2021-08-20', 4988, 10782, 1109, 27100, '1.0000', '5.0000', '5.0000', '0.0000', '0.0000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11224, '2021-08-20', 3174, 10783, 1109, 25286, '1.0000', '14.5300', '14.5300', '0.0000', '0.0000', '1.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11225, '2021-08-20', 2302, 10784, 1110, 24882, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '5.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11226, '2021-08-20', 1674, 10785, 1110, NULL, '1.0000', '90.0000', '90.0000', '5.0000', '5.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11227, '2021-08-20', 1935, 10786, 1110, NULL, '1.0000', '90.0000', '90.0000', '2.0000', '2.0000', '-1.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11228, '2021-08-20', 1339, 10787, 1110, 23699, '1.0000', '1.8000', '1.8000', '2.5000', '2.5000', '4.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11229, '2021-08-20', 2252, 10788, 1110, 24920, '1.0000', '10.0900', '10.0900', '13.5000', '13.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11230, '2021-08-20', 1665, 10789, 1111, NULL, '3.0000', '1.3000', '1.3000', '2.0000', '2.0000', '-3.0000', 1, 1, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`) VALUES (11231, '2021-08-20', 1831, 10790, 1112, 25032, '1.0000', '0.3848', '0.3848', '11.5000', '11.5000', '2.0000', 1, 0, NULL, 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`, `purchase_id`) VALUES (11232, '2021-08-20', 2302, 10791, 1112, 24104, '1.0000', '5.2000', '5.2000', '7.0000', '7.0000', '7.0000', 1, 0, NULL, 187);


#
# 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=4 DEFAULT CHARSET=utf8;

INSERT INTO `sma_currencies` (`id`, `code`, `name`, `rate`, `auto_update`, `symbol`) VALUES (3, 'GHC', 'CEDI', '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,
  `discount` tinyint(4) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

INSERT INTO `sma_customer_groups` (`id`, `name`, `percent`, `discount`) VALUES (1, 'General', 0, NULL);
INSERT INTO `sma_customer_groups` (`id`, `name`, `percent`, `discount`) VALUES (2, 'Reseller', -5, NULL);
INSERT INTO `sma_customer_groups` (`id`, `name`, `percent`, `discount`) VALUES (3, 'Distributor', -15, NULL);
INSERT INTO `sma_customer_groups` (`id`, `name`, `percent`, `discount`) VALUES (4, 'New Customer (+10)', 10, NULL);


#
# 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 DEFAULT CHARSET=utf8;

#
# 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 DEFAULT CHARSET=utf8;

#
# 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 DEFAULT CHARSET=utf8;

#
# 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=203 DEFAULT CHARSET=utf8;

INSERT INTO `sma_login_attempts` (`id`, `ip_address`, `login`, `time`) VALUES (200, '41.155.2.168', 'rabi', 1629493833);
INSERT INTO `sma_login_attempts` (`id`, `ip_address`, `login`, `time`) VALUES (201, '41.155.2.168', 'rabi', 1629493914);
INSERT INTO `sma_login_attempts` (`id`, `ip_address`, `login`, `time`) VALUES (202, '41.155.2.168', 'rabi', 1629493951);


#
# TABLE STRUCTURE FOR: sma_logs
#

DROP TABLE IF EXISTS `sma_logs`;

CREATE TABLE `sma_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `detail` varchar(190) NOT NULL,
  `model` longtext DEFAULT NULL,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=451 DEFAULT CHARSET=utf8;

INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"10\",\"date\":\"2021-03-23 04:04:35\",\"reference_no\":\"SALE\\/POS2021\\/03\\/0010\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"520.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"520.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"5200.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"3e05b76da319e9a02bdedb66bb6990766a044a1e1406b3e12f5d7bb8fc76ab75\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"14\",\"sale_id\":\"10\",\"product_id\":\"1\",\"product_code\":\"76263173\",\"product_name\":\"tes01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"260.0000\",\"unit_price\":\"260.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"260.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"009\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"009\"},{\"id\":\"15\",\"sale_id\":\"10\",\"product_id\":\"1\",\"product_code\":\"76263173\",\"product_name\":\"tes01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"260.0000\",\"unit_price\":\"260.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"260.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"009\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"009\"}]}', '2021-03-23 20:02:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"9\",\"date\":\"2021-03-23 02:24:19\",\"reference_no\":\"SALE\\/POS2021\\/03\\/0009\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1040.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1040.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"1\",\"paid\":\"10400.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"7afb5803c7ecfc2c46371d772e16a8cfa6b120ad9d7f1b9dedc1eaf43f37bbbf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"10\",\"sale_id\":\"9\",\"product_id\":\"1\",\"product_code\":\"76263173\",\"product_name\":\"tes01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"260.0000\",\"unit_price\":\"260.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"260.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"009\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"009\"},{\"id\":\"11\",\"sale_id\":\"9\",\"product_id\":\"1\",\"product_code\":\"76263173\",\"product_name\":\"tes01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"260.0000\",\"unit_price\":\"260.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"260.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"009\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"009\"},{\"id\":\"12\",\"sale_id\":\"9\",\"product_id\":\"1\",\"product_code\":\"76263173\",\"product_name\":\"tes01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"260.0000\",\"unit_price\":\"260.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"260.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"009\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"009\"},{\"id\":\"13\",\"sale_id\":\"9\",\"product_id\":\"1\",\"product_code\":\"76263173\",\"product_name\":\"tes01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"260.0000\",\"unit_price\":\"260.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"260.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"009\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"009\"}]}', '2021-03-23 20:02:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"8\",\"date\":\"2021-03-23 02:11:19\",\"reference_no\":\"SALE\\/POS2021\\/03\\/0008\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"260.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"260.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"260.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"ec53c3813748af011f75f5902ecc772a83b71820c5e54db54b745f488f5d33f1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"9\",\"sale_id\":\"8\",\"product_id\":\"1\",\"product_code\":\"76263173\",\"product_name\":\"tes01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"260.0000\",\"unit_price\":\"260.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"260.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"009\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"009\"}]}', '2021-03-23 20:02:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7\",\"date\":\"2021-03-23 02:10:07\",\"reference_no\":\"SALE\\/POS2021\\/03\\/0007\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"260.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"260.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"260.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"ebe674a86695d82c1891ebe0ce65a7f54688d5e5be056cc0fcfec43bd02b9b47\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8\",\"sale_id\":\"7\",\"product_id\":\"1\",\"product_code\":\"76263173\",\"product_name\":\"tes01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"260.0000\",\"unit_price\":\"260.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"260.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"009\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"009\"}]}', '2021-03-23 20:02:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (5, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6\",\"date\":\"2021-03-23 02:03:04\",\"reference_no\":\"SALE\\/POS2021\\/03\\/0006\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"260.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"260.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"260.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"865e8cf5a9b7a3bb4eb16ddf9a5f5ddfb8bf30aa24a7b11665a33aecac621bff\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"7\",\"sale_id\":\"6\",\"product_id\":\"1\",\"product_code\":\"76263173\",\"product_name\":\"tes01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"260.0000\",\"unit_price\":\"260.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"260.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"009\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"009\"}]}', '2021-03-23 20:02:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (6, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5\",\"date\":\"2021-03-23 01:53:29\",\"reference_no\":\"SALE\\/POS2021\\/03\\/0005\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"260.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"260.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"260.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"2317b724a27dc8143eff2cbd7b5cbe93831c9e2c9c5fbf659f51df89473bd131\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"6\",\"sale_id\":\"5\",\"product_id\":\"1\",\"product_code\":\"76263173\",\"product_name\":\"tes01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"260.0000\",\"unit_price\":\"260.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"260.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"009\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"009\"}]}', '2021-03-23 20:02:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (7, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4\",\"date\":\"2021-03-23 01:52:42\",\"reference_no\":\"SALE\\/POS2021\\/03\\/0004\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"260.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"260.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"260.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"c5f11b973bfd8a7ff545354917a378f9c080e6f696edc30204163316faf879d8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5\",\"sale_id\":\"4\",\"product_id\":\"1\",\"product_code\":\"76263173\",\"product_name\":\"tes01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"260.0000\",\"unit_price\":\"260.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"260.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"009\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"009\"}]}', '2021-03-23 20:02:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (8, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3\",\"date\":\"2021-03-23 01:47:16\",\"reference_no\":\"SALE\\/POS2021\\/03\\/0003\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"520.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"520.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"520.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"2514d503efc1fdd259e11fd8f98fdc4c182828517b008ac5d48284c401b82bd2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3\",\"sale_id\":\"3\",\"product_id\":\"1\",\"product_code\":\"76263173\",\"product_name\":\"tes01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"260.0000\",\"unit_price\":\"260.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"260.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"009\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"009\"},{\"id\":\"4\",\"sale_id\":\"3\",\"product_id\":\"1\",\"product_code\":\"76263173\",\"product_name\":\"tes01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"260.0000\",\"unit_price\":\"260.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"260.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"009\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"009\"}]}', '2021-03-23 20:02:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (9, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"2\",\"date\":\"2021-03-23 01:45:56\",\"reference_no\":\"SALE\\/POS2021\\/03\\/0002\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"260.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"260.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"260.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"71f8210f3bd47a9197aae264bc8a56f19f1df9143d5f43504818831b0e00c554\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2\",\"sale_id\":\"2\",\"product_id\":\"1\",\"product_code\":\"76263173\",\"product_name\":\"tes01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"260.0000\",\"unit_price\":\"260.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"260.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"009\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"009\"}]}', '2021-03-23 20:02:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (10, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"1\",\"date\":\"2021-03-23 01:43:15\",\"reference_no\":\"SALE\\/POS2021\\/03\\/0001\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"260.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"260.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"260.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"87a06eb5653ed0761c8956995b8f6a580e061f3bc9b5337c7b04a2eed09a8138\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1\",\"sale_id\":\"1\",\"product_id\":\"1\",\"product_code\":\"76263173\",\"product_name\":\"tes01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"260.0000\",\"unit_price\":\"260.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"260.0000\",\"serial_no\":\"\",\"real_unit_price\":\"260.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"009\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":\"NT\",\"tax_name\":\"No Tax\",\"tax_rate\":\"0.0000\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"009\"}]}', '2021-03-23 20:02:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (11, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"339\",\"code\":\"\",\"name\":\"CYCLOGEST 400MG PESS 15\'5\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code465\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cyclogest-400mg-pess-155\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:29:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (12, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"345\",\"code\":\",\",\"name\":\"STREPSILS ORANGE NIT C 36\'\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code471\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"strepsils-orange-nit-c-36\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:29:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (13, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"2\",\"code\":\"9\",\"name\":\"Product 11\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"product-11\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:29:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (14, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"738\",\"code\":\"PR-99\",\"name\":\"ABONIK BALM (48)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"abonik-balm-48\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (15, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"737\",\"code\":\"PR-98\",\"name\":\"AZIS TABS. 500MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"azis-tabs-500mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (16, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"736\",\"code\":\"PR-97\",\"name\":\"STARWIN MILK. 0 .M B\\/S\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"starwin-milk-0-m-bs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (17, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"735\",\"code\":\"PR-96\",\"name\":\"ZULU - MR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zulu-mr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (18, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"734\",\"code\":\"PR-95\",\"name\":\"ZULU EXTRA\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zulu-extra\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (19, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"733\",\"code\":\"PR-94\",\"name\":\"10 GOLDY FORTE OS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"10-goldy-forte-os\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (20, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"732\",\"code\":\"PR-93\",\"name\":\"PRIMOLUT N TABS 5MG- ORIGINAL\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"primolut-n-tabs-5mg-original\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (21, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"731\",\"code\":\"PR-92\",\"name\":\"DIFLUCAN CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diflucan-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (22, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"730\",\"code\":\"PR-91\",\"name\":\"BONJELA BABY\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bonjela-baby\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (23, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"729\",\"code\":\"PR-90\",\"name\":\"BONJELA ADULT\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bonjela-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (24, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"728\",\"code\":\"PR-89\",\"name\":\"IXYLO-MEPHA 0.05%\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ixylo-mepha-005\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (25, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"727\",\"code\":\"PR-88\",\"name\":\"OSTEOCARE TABS - UK\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"osteocare-tabs-uk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (26, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"726\",\"code\":\"PR-87\",\"name\":\"TEGRETOL CR 400MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tegretol-cr-400mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (27, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"725\",\"code\":\"PR-86\",\"name\":\"TEGRETOL CR 200MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tegretol-cr-200mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (28, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"724\",\"code\":\"PR-85\",\"name\":\"PARACETAMOL TAB 32\'S\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"paracetamol-tab-32s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (29, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"723\",\"code\":\"PR-84\",\"name\":\"PARACETAMOL TABS -UK 16\'S\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"paracetamol-tabs-uk-16s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (30, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"722\",\"code\":\"PR-83\",\"name\":\"LIVERPLEX-B ADULT SYR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"liverplex-b-adult-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (31, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"721\",\"code\":\"PR-82\",\"name\":\"NAPROX EC TABS ECL\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"naprox-ec-tabs-ecl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (32, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"720\",\"code\":\"PR-81\",\"name\":\"JET INHALER N\'PKT-(12S)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jet-inhaler-npkt-12s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (33, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"719\",\"code\":\"PR-80\",\"name\":\"PROXIMEXA 500MG TABS 10X1\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"proximexa-500mg-tabs-10x1\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (34, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"718\",\"code\":\"PR-79\",\"name\":\"ITHYROXINE 100MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ithyroxine-100mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (35, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"717\",\"code\":\"PR-78\",\"name\":\"IPROWOMAN\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"iprowoman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (36, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"716\",\"code\":\"PR-77\",\"name\":\"WELLWOMAN CAPS 70+\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellwoman-caps-70\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (37, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"715\",\"code\":\"PR-76\",\"name\":\"CRESTOR 5MG TABS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"crestor-5mg-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (38, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"714\",\"code\":\"PR-75\",\"name\":\"BET A-CORT EEN DROPS 0.1 %\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bet-a-cort-een-drops-01\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (39, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"713\",\"code\":\"PR-74\",\"name\":\"PREGNACARE (BE4) CONCEPTION 2 MENOPACE CAPS (UK)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pregnacare-be4-conception-2-menopace-caps-uk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (40, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"712\",\"code\":\"PR-73\",\"name\":\"GALVUS MET FCT 50\\/1000MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"galvus-met-fct-501000mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (41, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"711\",\"code\":\"PR-72\",\"name\":\"GALVUS 50 2X14\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"galvus-50-2x14\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (42, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"710\",\"code\":\"PR-71\",\"name\":\"LUEX BABY CHESTY COUGH\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"luex-baby-chesty-cough\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (43, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"709\",\"code\":\"PR-70\",\"name\":\"LUEX CHILD CHESTY\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"luex-child-chesty\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (44, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"708\",\"code\":\"PR-69\",\"name\":\"CARDIOACE CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cardioace-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (45, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"707\",\"code\":\"PR-68\",\"name\":\"iLIVOPAT CAPS- INDUS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ilivopat-caps-indus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (46, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"706\",\"code\":\"PR-67\",\"name\":\"HEALTH LINK WOMAN\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"health-link-woman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (47, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"705\",\"code\":\"PR-66\",\"name\":\"SELEVITE TABS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"selevite-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (48, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"704\",\"code\":\"PR-65\",\"name\":\"KURE ANTACID 125ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kure-antacid-125ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (49, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"703\",\"code\":\"PR-64\",\"name\":\"PEPTO BISMOL 240ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pepto-bismol-240ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (50, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"702\",\"code\":\"PR-63\",\"name\":\"PEPTOBISMOL S\\/S 120ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"peptobismol-ss-120ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (51, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"701\",\"code\":\"PR-62\",\"name\":\"CALPOL SYR 2+\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"calpol-syr-2\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (52, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"700\",\"code\":\"PR-61\",\"name\":\"APDYL-H COUGH SYRUP 200ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"apdyl-h-cough-syrup-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (53, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"699\",\"code\":\"PR-60\",\"name\":\"ENTEROGERMINA ORAL SUSP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"enterogermina-oral-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (54, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"698\",\"code\":\"PR-59\",\"name\":\"PIRITON TABS 30\'8 ORIGINAL\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"piriton-tabs-308-original\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (55, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"697\",\"code\":\"PR-58\",\"name\":\"ADDYZOA CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"addyzoa-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (56, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"696\",\"code\":\"PR-57\",\"name\":\"EVANOVA CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"evanova-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (57, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"695\",\"code\":\"PR-56\",\"name\":\"PROGYNOVA 2MG TABS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"progynova-2mg-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (58, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"694\",\"code\":\"PR-55\",\"name\":\"CARTEF -OS 80\\/480 TAB\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cartef-os-80480-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (59, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"693\",\"code\":\"PR-54\",\"name\":\"COTTON WOOL 500G\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cotton-wool-500g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (60, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"692\",\"code\":\"PR-53\",\"name\":\"COTTON WOOL 50G\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cotton-wool-50g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (61, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"691\",\"code\":\"PR-52\",\"name\":\"COTTON WOOL 25G\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cotton-wool-25g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (62, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"690\",\"code\":\"PR-51\",\"name\":\"COTTON WOOL 1 00G\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cotton-wool-1-00g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (63, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"689\",\"code\":\"PR-50\",\"name\":\"SPIRIT\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"spirit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (64, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"688\",\"code\":\"PR-49\",\"name\":\"RUBBING ALCOHOL -MUL TITI\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rubbing-alcohol-mul-titi\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (65, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"687\",\"code\":\"PR-48\",\"name\":\"GAUSE BANDAGE 61CH\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gause-bandage-61ch\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (66, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"686\",\"code\":\"PR-47\",\"name\":\"GAUSE BANDAGE 41CH\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gause-bandage-41ch\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (67, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"685\",\"code\":\"PR-46\",\"name\":\"GAUSE BANDAGE 31CH\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gause-bandage-31ch\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (68, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"684\",\"code\":\"PR-45\",\"name\":\"ZINC OXIDE PLATER ROLL 31CH\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zinc-oxide-plater-roll-31ch\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (69, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"683\",\"code\":\"PR-44\",\"name\":\"ZINC OXIDE PLATER ROLL 2\'1CH\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zinc-oxide-plater-roll-21ch\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (70, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"682\",\"code\":\"PR-43\",\"name\":\"HIGH ELASTIC CREPE BANDAGE 3\\\"\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"high-elastic-crepe-bandage-3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (71, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"681\",\"code\":\"PR-42\",\"name\":\"ZINC OXIDE PLASTER ROLL 41CHS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zinc-oxide-plaster-roll-41chs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (72, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"680\",\"code\":\"PR-41\",\"name\":\"HIGH ELASTIC CREPE BANDAGE 4\\\"\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"high-elastic-crepe-bandage-4\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (73, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"679\",\"code\":\"PR-40\",\"name\":\"H1GH ELASTIC CREPE BANDAGE 2\\\"\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"h1gh-elastic-crepe-bandage-2\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (74, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"678\",\"code\":\"PR-39\",\"name\":\"DERMIRON PLUS CREAM\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dermiron-plus-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (75, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"677\",\"code\":\"PR-38\",\"name\":\"MUPIROCIN OINTMENT 15G\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mupirocin-ointment-15g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (76, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"676\",\"code\":\"PR-37\",\"name\":\"3 MEDICAL ICE COOL\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3-medical-ice-cool\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (77, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"675\",\"code\":\"PR-36\",\"name\":\"3 GLIZONE 30MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"3-glizone-30mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (78, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"674\",\"code\":\"PR-35\",\"name\":\"BADRUF CREAM 30MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"badruf-cream-30mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (79, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"985\",\"code\":\"PR-346\",\"name\":\"TENTEX ROYAL CAP ?\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (80, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"984\",\"code\":\"PR-345\",\"name\":\"VALUPAK VITE 4001U\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"valupak-vite-4001u\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (81, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"983\",\"code\":\"PR-344\",\"name\":\"ENAT 4001U CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"enat-4001u-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (82, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"982\",\"code\":\"PR-343\",\"name\":\"GEN-M TAB 80\\/480\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gen-m-tab-80480\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (83, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"981\",\"code\":\"PR-342\",\"name\":\"GEN-M SUSP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gen-m-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (84, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"980\",\"code\":\"PR-341\",\"name\":\"GUDAPET SYR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gudapet-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (85, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"979\",\"code\":\"PR-340\",\"name\":\"S\\/SEAS C.L.O CAPS 60\'\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sseas-clo-caps-60\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (86, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"673\",\"code\":\"PR-34\",\"name\":\"TRES ORIX FORTE 1 00ML(S\\/S)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tres-orix-forte-1-00mlss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (87, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"978\",\"code\":\"PR-339\",\"name\":\"VITAFOL CAP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitafol-cap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (88, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"977\",\"code\":\"PR-338\",\"name\":\"PROMAN CAPS 30\'\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"proman-caps-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (89, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"976\",\"code\":\"PR-337\",\"name\":\"IMMUNACE CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"immunace-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (90, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"975\",\"code\":\"PR-336\",\"name\":\"PERFECTIL PLUS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"perfectil-plus\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (91, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"974\",\"code\":\"PR-335\",\"name\":\"WELLWOMAN 50+ CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wellwoman-50-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (92, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"973\",\"code\":\"PR-334\",\"name\":\"MARK 2 INHALER\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mark-2-inhaler\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (93, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"972\",\"code\":\"PR-333\",\"name\":\"COMIT 50MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"comit-50mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (94, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"971\",\"code\":\"PR-332\",\"name\":\"KLINDA300MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"klinda300mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (95, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"970\",\"code\":\"PR-331\",\"name\":\"AZILEX 250MG CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"azilex-250mg-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (96, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"969\",\"code\":\"PR-330\",\"name\":\"ENTRAMOL 125MG SUPP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"entramol-125mg-supp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (97, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"672\",\"code\":\"PR-33\",\"name\":\"PARALEX BABY\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"paralex-baby\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (98, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"968\",\"code\":\"PR-329\",\"name\":\"GACET SUPP 250MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gacet-supp-250mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (99, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"967\",\"code\":\"PR-328\",\"name\":\"CRESTOR 20MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"crestor-20mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (100, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"966\",\"code\":\"PR-327\",\"name\":\"TEEDAR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"teedar\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (101, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"965\",\"code\":\"PR-326\",\"name\":\"GYPRON SYR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gypron-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (102, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"964\",\"code\":\"PR-325\",\"name\":\"GYPRONE PLUS TABS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gyprone-plus-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (103, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"963\",\"code\":\"PR-324\",\"name\":\"M ETAGYL SUSP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"m-etagyl-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (104, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"962\",\"code\":\"PR-323\",\"name\":\"MYCOLEX-3\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mycolex-3\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (105, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"961\",\"code\":\"PR-322\",\"name\":\"MYCOLEX CREAM 20G\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mycolex-cream-20g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (106, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"960\",\"code\":\"PR-321\",\"name\":\"CETAPOL SUS (PHYTO)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cetapol-sus-phyto\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (107, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"959\",\"code\":\"PR-320\",\"name\":\"DORETATAB\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"doretatab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (108, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"671\",\"code\":\"PR-32\",\"name\":\"PARA SYR AYRTON\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"para-syr-ayrton\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (109, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"958\",\"code\":\"PR-319\",\"name\":\"CLOMID 50MG (BRUNO)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clomid-50mg-bruno\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (110, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"957\",\"code\":\"PR-318\",\"name\":\"AUGMENTIN SUSP 228MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"augmentin-susp-228mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (111, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"956\",\"code\":\"PR-317\",\"name\":\"AUGMENTIN 1G\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"augmentin-1g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (112, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"955\",\"code\":\"PR-316\",\"name\":\"AUGMENTIN TAB 625MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"augmentin-tab-625mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (113, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"954\",\"code\":\"PR-315\",\"name\":\"LYDIA POSTPILL\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lydia-postpill\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (114, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"953\",\"code\":\"PR-314\",\"name\":\"CANDIDERM CREAM 15MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"candiderm-cream-15mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (115, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"952\",\"code\":\"PR-313\",\"name\":\"OMZOL CAPS 30\' (OMEPRAZOLE) SEDITA\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"omzol-caps-30-omeprazole-sedita\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (116, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"951\",\"code\":\"PR-312\",\"name\":\"RONZOLE 20MG CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ronzole-20mg-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (117, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"950\",\"code\":\"PR-311\",\"name\":\"GO COUGH SYR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"go-cough-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (118, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"949\",\"code\":\"PR-310\",\"name\":\"KOFLET SYR 100ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"koflet-syr-100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (119, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"670\",\"code\":\"PR-31\",\"name\":\"MENTHOX SYR ADULT\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"menthox-syr-adult\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (120, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"948\",\"code\":\"PR-309\",\"name\":\"SALINE NASAL DROPS (LOCAL)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"saline-nasal-drops-local\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (121, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"947\",\"code\":\"PR-308\",\"name\":\"BEEHIVE COUGH SYR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"beehive-cough-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (122, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"946\",\"code\":\"PR-307\",\"name\":\"PARA-DENK 125MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"para-denk-125mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (123, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"945\",\"code\":\"PR-306\",\"name\":\"LYRICA 75MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lyrica-75mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (124, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"944\",\"code\":\"PR-305\",\"name\":\"FEROGLOBIN SYR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"feroglobin-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (125, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"943\",\"code\":\"PR-304\",\"name\":\"FUROSEMIDE 20MG TAB (CRESCENT)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"furosemide-20mg-tab-crescent\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (126, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"942\",\"code\":\"PR-303\",\"name\":\"CHLORAM CAP (LETAP)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"chloram-cap-letap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (127, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"941\",\"code\":\"PR-302\",\"name\":\"GASTRACID SUSP (GR)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gastracid-susp-gr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (128, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"940\",\"code\":\"PR-301\",\"name\":\"CORORANGE DROP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cororange-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (129, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"939\",\"code\":\"PR-300\",\"name\":\"NUGEL SUSP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nugel-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (130, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"669\",\"code\":\"PR-30\",\"name\":\"KOFLET COUGH SYR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"koflet-cough-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (131, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"938\",\"code\":\"PR-299\",\"name\":\"ABIDEC DROP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"abidec-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (132, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"937\",\"code\":\"PR-298\",\"name\":\"ZUBES CHILDREN\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zubes-children\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (133, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"936\",\"code\":\"PR-297\",\"name\":\"PROMAN DRINK 250ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"proman-drink-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (134, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"935\",\"code\":\"PR-296\",\"name\":\"PROWOMAN DRINK 250ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prowoman-drink-250ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (135, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"934\",\"code\":\"PR-295\",\"name\":\"WARFARIN TAB 5MG 28\'\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"warfarin-tab-5mg-28\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (136, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"933\",\"code\":\"PR-294\",\"name\":\"TOUCH AND GO\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"touch-and-go\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (137, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"932\",\"code\":\"PR-293\",\"name\":\"TETRACYCLIN CAP (LETAP)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tetracyclin-cap-letap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (138, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"931\",\"code\":\"PR-292\",\"name\":\"LUFART SUSP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lufart-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (139, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"930\",\"code\":\"PR-291\",\"name\":\"SAMALIN LOZENGES\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"samalin-lozenges\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (140, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"929\",\"code\":\"PR-290\",\"name\":\"MALIN LOZ\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"malin-loz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (141, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"668\",\"code\":\"PR-29\",\"name\":\"FAMACOLD SYR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"famacold-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (142, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"928\",\"code\":\"PR-289\",\"name\":\"GRISORAL SUSP (MILDLAND)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"grisoral-susp-mildland\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (143, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"927\",\"code\":\"PR-288\",\"name\":\"LOSARTAN POTASSIUM 50MG (TEVA)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"losartan-potassium-50mg-teva\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (144, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"926\",\"code\":\"PR-287\",\"name\":\"PARA 500MG CAPS 100\' (CRESCENT)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"para-500mg-caps-100-crescent\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (145, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"925\",\"code\":\"PR-286\",\"name\":\"POSTINOR ORIGINAL\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"postinor-original\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (146, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"924\",\"code\":\"PR-285\",\"name\":\"EZIPEN TABS 100MG 30\'\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ezipen-tabs-100mg-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (147, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"923\",\"code\":\"PR-284\",\"name\":\"DIABETMIN TABS 500MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diabetmin-tabs-500mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (148, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"922\",\"code\":\"PR-283\",\"name\":\"PROCOMIL MALE DELAY SPRAY\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"procomil-male-delay-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (149, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"921\",\"code\":\"PR-282\",\"name\":\"TIGER CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tiger-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (150, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"920\",\"code\":\"PR-281\",\"name\":\"TAMSULOSIN MR CAPS 400MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tamsulosin-mr-caps-400mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (151, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"919\",\"code\":\"PR-280\",\"name\":\"BRENEX SYRUP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"brenex-syrup\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (152, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"667\",\"code\":\"PR-28\",\"name\":\"8 HOUR FEVER MIX\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"8-hour-fever-mix\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (153, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"918\",\"code\":\"PR-279\",\"name\":\"PRE-MECO\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pre-meco\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (154, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"917\",\"code\":\"PR-278\",\"name\":\"PARLODEL TABLETS 2.5MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"parlodel-tablets-25mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (155, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"916\",\"code\":\"PR-277\",\"name\":\"TADOL 100MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tadol-100mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (156, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"915\",\"code\":\"PR-276\",\"name\":\"AMICLOX SUSP. (ECL)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amiclox-susp-ecl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (157, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"914\",\"code\":\"PR-275\",\"name\":\"SULPHUR OINT.\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sulphur-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (158, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"913\",\"code\":\"PR-274\",\"name\":\"SPORANOX CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sporanox-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (159, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"912\",\"code\":\"PR-273\",\"name\":\"STUGERON\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"stugeron\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (160, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"911\",\"code\":\"PR-272\",\"name\":\"SIRDALUD 4MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sirdalud-4mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (161, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"910\",\"code\":\"PR-271\",\"name\":\"CO-TRIM TAB (LETAP)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"co-trim-tab-letap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (162, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"909\",\"code\":\"PR-270\",\"name\":\"SE\'CLEAR EYE DROP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"seclear-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (163, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"666\",\"code\":\"PR-27\",\"name\":\"WORMBASE SUSP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wormbase-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (164, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"908\",\"code\":\"PR-269\",\"name\":\"RHINATHOIL ENFANT SYR 125ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rhinathoil-enfant-syr-125ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (165, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"907\",\"code\":\"PR-268\",\"name\":\"RHINATHIOL ADULT SYR 125ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rhinathiol-adult-syr-125ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (166, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"906\",\"code\":\"PR-267\",\"name\":\"COTRI SUS (M&G)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cotri-sus-mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (167, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"905\",\"code\":\"PR-266\",\"name\":\"LIPITOR 20MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lipitor-20mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (168, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"904\",\"code\":\"PR-265\",\"name\":\"LIPITOR 10MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lipitor-10mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (169, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"903\",\"code\":\"PR-264\",\"name\":\"LEVOTHYROXINE TAB 50MG (MERC PHARMA)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"levothyroxine-tab-50mg-merc-pharma\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (170, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"902\",\"code\":\"PR-263\",\"name\":\"GYNOMYCOLEX PESS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gynomycolex-pess\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (171, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"901\",\"code\":\"PR-262\",\"name\":\"LAVET\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lavet\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (172, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"900\",\"code\":\"PR-261\",\"name\":\"DAFLON S00MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"daflon-s00mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (173, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"899\",\"code\":\"PR-260\",\"name\":\"ANUSOL OINTMENT 25G\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"anusol-ointment-25g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (174, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"665\",\"code\":\"PR-26\",\"name\":\"J.V  WORMBASE 400 TAB\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jv-wormbase-400-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (175, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"898\",\"code\":\"PR-259\",\"name\":\"ANUSOL SUPP 12\'S\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"anusol-supp-12s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (176, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"897\",\"code\":\"PR-258\",\"name\":\"CANDID V6 PESS G\'S\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"candid-v6-pess-gs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (177, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"896\",\"code\":\"PR-257\",\"name\":\"CLOTRI DENK PESS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clotri-denk-pess\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (178, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"895\",\"code\":\"PR-256\",\"name\":\"CLOTRI DENK CREAM\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clotri-denk-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (179, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"894\",\"code\":\"PR-255\",\"name\":\"INFAV OINT\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"infav-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (180, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"893\",\"code\":\"PR-254\",\"name\":\"INFA V PESS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"infa-v-pess\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (181, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"892\",\"code\":\"PR-253\",\"name\":\"LAWASH 100ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lawash-100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (182, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"891\",\"code\":\"PR-252\",\"name\":\"O\'YES FEMININE WASH 200ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"oyes-feminine-wash-200ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (183, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"890\",\"code\":\"PR-251\",\"name\":\"TINY VITE DROP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tiny-vite-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (184, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"889\",\"code\":\"PR-250\",\"name\":\"VITANE SYR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vitane-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (185, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"664\",\"code\":\"PR-25\",\"name\":\"MILK OF MAGNESIA S\\/S\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"milk-of-magnesia-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (186, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"888\",\"code\":\"PR-249\",\"name\":\"AXACEF S00MG 10\'S\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"axacef-s00mg-10s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (187, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"887\",\"code\":\"PR-248\",\"name\":\"PINEK XL 30MG TAB\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pinek-xl-30mg-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (188, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"886\",\"code\":\"PR-247\",\"name\":\"PINEK 20MG TAB\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pinek-20mg-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (189, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"885\",\"code\":\"PR-246\",\"name\":\"AMOXYL S00MG CAPS (ESKAY)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amoxyl-s00mg-caps-eskay\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (190, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"884\",\"code\":\"PR-245\",\"name\":\"AMPICILLIN 250MG CAPS (LETAP)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ampicillin-250mg-caps-letap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (191, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"883\",\"code\":\"PR-244\",\"name\":\"CLOXA CAP 250MG (LETAP)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cloxa-cap-250mg-letap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (192, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"882\",\"code\":\"PR-243\",\"name\":\"METFORMIN DENK 1G\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metformin-denk-1g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (193, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"881\",\"code\":\"PR-242\",\"name\":\"DYMOL TAB\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dymol-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (194, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"880\",\"code\":\"PR-241\",\"name\":\"METFORMIN DENK S00MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"metformin-denk-s00mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (195, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"879\",\"code\":\"PR-240\",\"name\":\"PREGASAFE 75MG TAB\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pregasafe-75mg-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (196, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"663\",\"code\":\"PR-24\",\"name\":\"MARTINS LIVER SALT (ORANGE)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"martins-liver-salt-orange\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (197, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"878\",\"code\":\"PR-239\",\"name\":\"K-Y JELLY 82G\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"k-y-jelly-82g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (198, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"877\",\"code\":\"PR-238\",\"name\":\"LEMSIP SACHETS S\'S\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lemsip-sachets-ss\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (199, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"876\",\"code\":\"PR-237\",\"name\":\"MALARIA SELF TEST KITS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"malaria-self-test-kits\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (200, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"875\",\"code\":\"PR-236\",\"name\":\"EASY STEP ONE PREG. TEST KIT\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"easy-step-one-preg-test-kit\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (201, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"874\",\"code\":\"PR-235\",\"name\":\"FERROUSSULPHATETABSS00ECL\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferroussulphatetabss00ecl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (202, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"873\",\"code\":\"PR-234\",\"name\":\"PAINGAYCAP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"paingaycap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (203, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"872\",\"code\":\"PR-233\",\"name\":\"DICLOLEX 100MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diclolex-100mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (204, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"871\",\"code\":\"PR-232\",\"name\":\"ZULU TAB 10\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zulu-tab-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (205, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"870\",\"code\":\"PR-231\",\"name\":\"SOLUBLE ASPIRIN 75MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"soluble-aspirin-75mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (206, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"869\",\"code\":\"PR-230\",\"name\":\"NEOCORT EYE DROP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"neocort-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (207, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"662\",\"code\":\"PR-23\",\"name\":\"MARTIN LIVER SALT (LEMON)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"martin-liver-salt-lemon\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (208, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"868\",\"code\":\"PR-229\",\"name\":\"OPTIMOL EYE DROP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"optimol-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (209, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"867\",\"code\":\"PR-228\",\"name\":\"CANDIDERM CREAM 1SMG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"candiderm-cream-1smg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (210, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"866\",\"code\":\"PR-227\",\"name\":\"DEXATROL EYE OINT\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dexatrol-eye-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (211, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"865\",\"code\":\"PR-226\",\"name\":\"DEXATROL EYE DROP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dexatrol-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (212, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"864\",\"code\":\"PR-225\",\"name\":\"CIPAC EYE ROP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cipac-eye-rop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (213, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"863\",\"code\":\"PR-224\",\"name\":\"TEARS NATURAL 11\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tears-natural-11\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (214, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"862\",\"code\":\"PR-223\",\"name\":\"CIPROLEX EYE & EAR DROP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ciprolex-eye-ear-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (215, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"861\",\"code\":\"PR-222\",\"name\":\"DAKTACORT CREAM\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"daktacort-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (216, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"860\",\"code\":\"PR-221\",\"name\":\"FLAREX 0.1% EYE DROP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"flarex-01-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (217, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"859\",\"code\":\"PR-220\",\"name\":\"SE\'FLOX EYE\\/EAR DROP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"seflox-eyeear-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (218, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"661\",\"code\":\"PR-22\",\"name\":\"GENTBASE EYE\\/EAR DROP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gentbase-eyeear-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (219, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"858\",\"code\":\"PR-219\",\"name\":\"MAXITROL EYE DROP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"maxitrol-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (220, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"857\",\"code\":\"PR-218\",\"name\":\"NEO YCOLEXEYEDROP5ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"neo-ycolexeyedrop5ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (221, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"856\",\"code\":\"PR-217\",\"name\":\"NAKLOFEN DUO CAPS 75MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"naklofen-duo-caps-75mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (222, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"855\",\"code\":\"PR-216\",\"name\":\"ADVIL CAPLET 24\'\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"advil-caplet-24\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (223, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"854\",\"code\":\"PR-215\",\"name\":\"GOFEX400MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gofex400mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (224, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"853\",\"code\":\"PR-214\",\"name\":\"RONFIT FORTE CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ronfit-forte-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (225, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"852\",\"code\":\"PR-213\",\"name\":\"KWIKACTION\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kwikaction\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (226, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"851\",\"code\":\"PR-212\",\"name\":\"RAPINOL\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rapinol\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (227, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"850\",\"code\":\"PR-211\",\"name\":\"PAIN OFF TAB\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pain-off-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (228, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"849\",\"code\":\"PR-210\",\"name\":\"JARIFAN 2 CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"jarifan-2-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (229, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"660\",\"code\":\"PR-21\",\"name\":\"FOLIC ACID 5MG OVAL\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"folic-acid-5mg-oval\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (230, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"848\",\"code\":\"PR-209\",\"name\":\"ENACEF SUSP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"enacef-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (231, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"847\",\"code\":\"PR-208\",\"name\":\"MYCOLEX POWDER\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mycolex-powder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (232, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"846\",\"code\":\"PR-207\",\"name\":\"METHYLATED SPIRIT 125ML(ECL)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"methylated-spirit-125mlecl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (233, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"845\",\"code\":\"PR-206\",\"name\":\"GV PAINT\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gv-paint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (234, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"844\",\"code\":\"PR-205\",\"name\":\"NERVE & BONE LINIMENT\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nerve-bone-liniment\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (235, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"843\",\"code\":\"PR-204\",\"name\":\"BADRUF OINT\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"badruf-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (236, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"842\",\"code\":\"PR-203\",\"name\":\"ACNEL GEL 20MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"acnel-gel-20mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (237, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"841\",\"code\":\"PR-202\",\"name\":\"SAMOCID(SKIN AND NAIL)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"samocidskin-and-nail\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (238, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"840\",\"code\":\"PR-201\",\"name\":\"EPIDERM CREAM 30G LIS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"epiderm-cream-30g-lis\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (239, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"839\",\"code\":\"PR-200\",\"name\":\"KETAZOL CREAM\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ketazol-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (240, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"659\",\"code\":\"PR-20\",\"name\":\"FENBASE EXTRA\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fenbase-extra\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (241, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"838\",\"code\":\"PR-199\",\"name\":\"HYDROCORTISONE CREAM\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hydrocortisone-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (242, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"837\",\"code\":\"PR-198\",\"name\":\"NIZORAL CREAM\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nizoral-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (243, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"836\",\"code\":\"PR-197\",\"name\":\"SILVER DERMA CREAM 50G\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"silver-derma-cream-50g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (244, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"835\",\"code\":\"PR-196\",\"name\":\"DEEP HEAT RUB 67G\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"deep-heat-rub-67g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (245, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"834\",\"code\":\"PR-195\",\"name\":\"DEEP HEAT RUB 35G\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"deep-heat-rub-35g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (246, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"833\",\"code\":\"PR-194\",\"name\":\"DEEP HEAT SPRAY 150ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"deep-heat-spray-150ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (247, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"832\",\"code\":\"PR-193\",\"name\":\"DEEP FREEZE SPRAY\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"deep-freeze-spray\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (248, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"831\",\"code\":\"PR-192\",\"name\":\"IMPRESSER OIL\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"impresser-oil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (249, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"830\",\"code\":\"PR-191\",\"name\":\"IMPRESSER CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"impresser-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (250, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"829\",\"code\":\"PR-190\",\"name\":\"CORSODY 300ML (ALCOHOL FREE)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"corsody-300ml-alcohol-free\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (251, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"658\",\"code\":\"PR-19\",\"name\":\"DOMI 10: TAB\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"domi-10-tab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (252, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"828\",\"code\":\"PR-189\",\"name\":\"OPTREX SOOTHING EYE DROP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"optrex-soothing-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (253, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"827\",\"code\":\"PR-188\",\"name\":\"OPTREX REFRESHING EYE WASH 100ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"optrex-refreshing-eye-wash-100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (254, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"826\",\"code\":\"PR-187\",\"name\":\"OPTREX MULTICATION EYE WASH 100ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"optrex-multication-eye-wash-100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (255, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"825\",\"code\":\"PR-186\",\"name\":\"HOT WATER BOTTLE (JACKET)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hot-water-bottle-jacket\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (256, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"824\",\"code\":\"PR-185\",\"name\":\"BLUSOPT EYE DROP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"blusopt-eye-drop\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (257, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"823\",\"code\":\"PR-184\",\"name\":\"LEXOFEN SUS 100ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lexofen-sus-100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (258, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"822\",\"code\":\"PR-183\",\"name\":\"LEXOFEN SUSP 150ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lexofen-susp-150ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (259, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"821\",\"code\":\"PR-182\",\"name\":\"LISINOVA 5MG TABS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lisinova-5mg-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (260, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"820\",\"code\":\"PR-181\",\"name\":\"AQUAFREAH T\\/PASTE 125ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aquafreah-tpaste-125ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (261, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"819\",\"code\":\"PR-180\",\"name\":\"AQUAFRESH HERBAL TOOTHPASTE 100ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aquafresh-herbal-toothpaste-100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (262, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"657\",\"code\":\"PR-18\",\"name\":\"BASEKOF SYR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"basekof-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (263, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"818\",\"code\":\"PR-179\",\"name\":\"AQUAFRESH FRESH & MINTY TOOTHPASTE 100ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aquafresh-fresh-minty-toothpaste-100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (264, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"817\",\"code\":\"PR-178\",\"name\":\"SENSOOYNE EXTRA FRESH PASTE 75ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sensooyne-extra-fresh-paste-75ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (265, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"816\",\"code\":\"PR-177\",\"name\":\"SENSONDYN ORIGINAL 75ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sensondyn-original-75ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (266, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"815\",\"code\":\"PR-176\",\"name\":\"EUTHYMOO TOOTHPASTE\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"euthymoo-toothpaste\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (267, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"814\",\"code\":\"PR-175\",\"name\":\"OVACARE TABS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ovacare-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (268, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"813\",\"code\":\"PR-174\",\"name\":\"MAGIC POWDER FRAGRANT SHAVE POWDER\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"magic-powder-fragrant-shave-powder\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (269, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"812\",\"code\":\"PR-173\",\"name\":\"ZOFLORA 120ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zoflora-120ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (270, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"811\",\"code\":\"PR-172\",\"name\":\"ZINNAT SUSP 125MG\\/100ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zinnat-susp-125mg100ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (271, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"810\",\"code\":\"PR-171\",\"name\":\"ALPHA GINSENG CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"alpha-ginseng-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (272, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"809\",\"code\":\"PR-170\",\"name\":\"ALPHA FOLIC ACID\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"alpha-folic-acid\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (273, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"656\",\"code\":\"PR-17\",\"name\":\"BASECHLOR DROPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"basechlor-drops\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (274, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"808\",\"code\":\"PR-169\",\"name\":\"ALPHA VITAMIN C TABS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"alpha-vitamin-c-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (275, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"807\",\"code\":\"PR-168\",\"name\":\"Gacet125MP KIACK006\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gacet125mp-kiack006\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (276, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"806\",\"code\":\"PR-167\",\"name\":\"Ancigel L033E001\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ancigel-l033e001\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (277, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"805\",\"code\":\"PR-166\",\"name\":\"Muscoto 5% L018D002\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"muscoto-5-l018d002\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (278, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"804\",\"code\":\"PR-165\",\"name\":\"Tobufon 400 T002e001\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tobufon-400-t002e001\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (279, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"803\",\"code\":\"PR-164\",\"name\":\"X?mox 500 BC03B017\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (280, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"802\",\"code\":\"PR-163\",\"name\":\"Lofnac 100 supp WABG035\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lofnac-100-supp-wabg035\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (281, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"801\",\"code\":\"PR-162\",\"name\":\"Wormee 4 tab wr036\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"wormee-4-tab-wr036\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (282, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"800\",\"code\":\"PR-161\",\"name\":\"Lyfast Ds T017D073\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lyfast-ds-t017d073\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (283, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"799\",\"code\":\"PR-160\",\"name\":\"Herbal Lofnac HLB001\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"herbal-lofnac-hlb001\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (284, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"655\",\"code\":\"PR-16\",\"name\":\"BASE BOOM JELLY\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"base-boom-jelly\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (285, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"798\",\"code\":\"PR-159\",\"name\":\"Tobufen syr L00YADW6\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tobufen-syr-l00yadw6\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (286, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"797\",\"code\":\"PR-158\",\"name\":\"Iburex Caps c013D002\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"iburex-caps-c013d002\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (287, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"796\",\"code\":\"PR-157\",\"name\":\"Entarcian 300 coo50003\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"entarcian-300-coo50003\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (288, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"795\",\"code\":\"PR-156\",\"name\":\"XForm Caps c0120007\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xform-caps-c0120007\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (289, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"794\",\"code\":\"PR-155\",\"name\":\"YAFO MAN CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"yafo-man-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (290, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"793\",\"code\":\"PR-154\",\"name\":\"X DRIVE CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"x-drive-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (291, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"792\",\"code\":\"PR-153\",\"name\":\"VICTORY GARLIC\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"victory-garlic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (292, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"791\",\"code\":\"PR-152\",\"name\":\"VICTAGO s s\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"victago-s-s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (293, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"790\",\"code\":\"PR-151\",\"name\":\"TRUMAN\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"truman\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (294, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"789\",\"code\":\"PR-150\",\"name\":\"TOP TONIC\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"top-tonic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (295, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"654\",\"code\":\"PR-15\",\"name\":\"BASE COLD SYR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"base-cold-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (296, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"788\",\"code\":\"PR-149\",\"name\":\"TOP FEVER ( 24)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"top-fever-24\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (297, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"787\",\"code\":\"PR-148\",\"name\":\"TINATETT VENECARE 75O0ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tinatett-venecare-75o0ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (298, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"786\",\"code\":\"PR-147\",\"name\":\"TINATETT MALAKARE S00ML (25)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"tinatett-malakare-s00ml-25\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (299, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"785\",\"code\":\"PR-146\",\"name\":\"TIME HERBAL MIX(25)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"time-herbal-mix25\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (300, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"784\",\"code\":\"PR-145\",\"name\":\"TAABEA MIX(25)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"taabea-mix25\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (301, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"783\",\"code\":\"PR-144\",\"name\":\"SPARNIS GARLIC MIXTURE(30)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sparnis-garlic-mixture30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (302, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"782\",\"code\":\"PR-143\",\"name\":\"SOLAK MIXTURE(25)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"solak-mixture25\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (303, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"781\",\"code\":\"PR-142\",\"name\":\"SIBI WOMEN CAPS(100)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sibi-women-caps100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (304, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"780\",\"code\":\"PR-141\",\"name\":\"SIBI MEN CAPS(l00)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"sibi-men-capsl00\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (305, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"779\",\"code\":\"PR-140\",\"name\":\"ROOTER TYTONIC(l2)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rooter-tytonicl2\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (306, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"653\",\"code\":\"PR-14\",\"name\":\"BASE COLD 1X6X10\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"base-cold-1x6x10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (307, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"778\",\"code\":\"PR-139\",\"name\":\"ROOTER LIFE\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rooter-life\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (308, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"777\",\"code\":\"PR-138\",\"name\":\"ROOTER MIXTURE (12)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rooter-mixture-12\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (309, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"776\",\"code\":\"PR-137\",\"name\":\"PROSTAT 60\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prostat-60\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (310, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"775\",\"code\":\"PR-136\",\"name\":\"PROSTACURE X\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prostacure-x\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (311, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"774\",\"code\":\"PR-135\",\"name\":\"PROSTACURE TEA (32)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prostacure-tea-32\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (312, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"773\",\"code\":\"PR-134\",\"name\":\"PROSLUV CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"prosluv-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (313, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"772\",\"code\":\"PR-133\",\"name\":\"NAZO\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nazo\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (314, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"771\",\"code\":\"PR-132\",\"name\":\"MIGHTY POWER SYS LS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"mighty-power-sys-ls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (315, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"770\",\"code\":\"PR-131\",\"name\":\"MADAM CATERINE\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"madam-caterine\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (316, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"769\",\"code\":\"PR-130\",\"name\":\"LUCKY V CARE\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lucky-v-care\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (317, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"652\",\"code\":\"PR-13\",\"name\":\"ARTIBASE FORTE 80\\/4801X6\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"artibase-forte-804801x6\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (318, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"768\",\"code\":\"PR-129\",\"name\":\"LUCKY MIXTURE\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lucky-mixture\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (319, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"767\",\"code\":\"PR-128\",\"name\":\"LIVING BITTERS SYP S s\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"living-bitters-syp-s-s\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (320, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"766\",\"code\":\"PR-127\",\"name\":\"LIVING BITTERS CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"living-bitters-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (321, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"765\",\"code\":\"PR-126\",\"name\":\"KINGDOM GARLIC CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kingdom-garlic-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (322, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"764\",\"code\":\"PR-125\",\"name\":\"KINGDOM GARLIC BITTERS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kingdom-garlic-bitters\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (323, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"763\",\"code\":\"PR-124\",\"name\":\"JOY VIKIL\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"joy-vikil\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (324, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"762\",\"code\":\"PR-123\",\"name\":\"JOY OINT S\\/S(200)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"joy-oint-ss200\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (325, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"761\",\"code\":\"PR-122\",\"name\":\"IMBOOST\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"imboost\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (326, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"760\",\"code\":\"PR-121\",\"name\":\"HAPIMAN CAPS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"hapiman-caps\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (327, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"759\",\"code\":\"PR-120\",\"name\":\"GIVERS POWER CAPS(140)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"givers-power-caps140\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (328, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"651\",\"code\":\"PR-12\",\"name\":\"ARTIBASE : SUSP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"artibase-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (329, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"758\",\"code\":\"PR-119\",\"name\":\"GIVERS KOO CAPS(l40)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"givers-koo-capsl40\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (330, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"757\",\"code\":\"PR-118\",\"name\":\"ARLIC BITTERS(30)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"arlic-bitters30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (331, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"756\",\"code\":\"PR-117\",\"name\":\"GBEDEMAH G\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"gbedemah-g\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (332, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"755\",\"code\":\"PR-116\",\"name\":\"FEMACURE\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"femacure\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (333, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"754\",\"code\":\"PR-115\",\"name\":\"ERNEST OINT(200)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ernest-oint200\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (334, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"753\",\"code\":\"PR-114\",\"name\":\"EKURO BEWU\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ekuro-bewu\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (335, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"752\",\"code\":\"PR-113\",\"name\":\"DIAGELLETS 500ML(24)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diagellets-500ml24\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (336, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"751\",\"code\":\"PR-112\",\"name\":\"DIAGELLETS 250ML(50)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diagellets-250ml50\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (337, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"750\",\"code\":\"PR-111\",\"name\":\"DIAGEI.LETS 125ML(70)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"diageilets-125ml70\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (338, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"749\",\"code\":\"PR-110\",\"name\":\"ANGEL FETWEK3K3(200)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"angel-fetwek3k3200\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (339, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"650\",\"code\":\"PR-11\",\"name\":\"Product 11\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"product-11\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (340, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"748\",\"code\":\"PR-109\",\"name\":\"ANGEL CREAM(200)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"angel-cream200\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (341, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"747\",\"code\":\"PR-108\",\"name\":\"AMUZU GARLIC\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"amuzu-garlic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (342, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"746\",\"code\":\"PR-107\",\"name\":\"AGBEVE TONIC(30)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"agbeve-tonic30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (343, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"745\",\"code\":\"PR-106\",\"name\":\"AGBEVE PHEVER( 30)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"agbeve-phever-30\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (344, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"744\",\"code\":\"PR-105\",\"name\":\"AFRO MOSES\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"afro-moses\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (345, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"743\",\"code\":\"PR-104\",\"name\":\"ADUWUMWAA CAPS (240)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"aduwumwaa-caps-240\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (346, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"742\",\"code\":\"PR-103\",\"name\":\"_ADUTW I MWAA BITTERS ( 2 5)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"_adutw-i-mwaa-bitters-2-5\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (347, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"741\",\"code\":\"PR-102\",\"name\":\"ADOM PAWAY CAPS(l00)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adom-paway-capsl00\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (348, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"740\",\"code\":\"PR-101\",\"name\":\"ADOM KOKO SYP(20)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adom-koko-syp20\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (349, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"739\",\"code\":\"PR-100\",\"name\":\"ADOM KOKO CAPS (100)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"adom-koko-caps-100\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (350, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"986\",\"code\":\"?\",\"name\":\"HYPONIDD TABS 20\' ?\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (351, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"1\",\"code\":\"76263173\",\"name\":\"tes01\",\"unit\":\"1\",\"cost\":\"200.0000\",\"price\":\"260.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"1000.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"76263173\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (352, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"993\",\"code\":\",\",\"name\":\"STREPSILS ORANGE NIT C 36\'\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"strepsils-orange-nit-c-36\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (353, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"987\",\"code\":\"\",\"name\":\"CYCLOGEST 400MG PESS 15\'5\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cyclogest-400mg-pess-155\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-23 20:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (354, 'Purchase is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"1\",\"reference_no\":\"001\",\"date\":\"2021-03-22 07:40:00\",\"supplier_id\":\"2\",\"supplier\":\"Supplier Company Name\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"200000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"200000.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"attachment\":\"0\",\"payment_term\":\"0\",\"due_date\":null,\"return_id\":null,\"surcharge\":\"0.0000\",\"return_purchase_ref\":null,\"purchase_id\":null,\"return_purchase_total\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1\",\"purchase_id\":\"1\",\"transfer_id\":null,\"product_id\":\"1\",\"product_code\":\"76263173\",\"product_name\":\"tes01\",\"option_id\":null,\"net_unit_cost\":\"200.0000\",\"quantity\":\"1000.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"200000.0000\",\"quantity_balance\":\"1000.0000\",\"date\":\"2021-03-22\",\"status\":\"received\",\"unit_cost\":\"200.0000\",\"real_unit_cost\":\"200.0000\",\"quantity_received\":\"1000.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"009\",\"unit_quantity\":\"1000.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"200.0000\"}]}', '2021-03-23 20:34:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (355, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"12\",\"date\":\"2021-03-23 23:21:01\",\"reference_no\":\"SALE\\/POS2021\\/03\\/0012\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"100.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"b9f7dda77916bdd7dff0a754b02a1bc35f326de170a1618dd5dd05a5213a6259\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"18\",\"sale_id\":\"12\",\"product_id\":\"1387\",\"product_code\":\"PR-100\",\"product_name\":\"ADOM KOKO CAPS (100)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2021-03-24 15:12:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (356, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"11\",\"date\":\"2021-03-23 23:16:08\",\"reference_no\":\"SALE\\/POS2021\\/03\\/0011\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"1\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"200.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"9472528cccb8868cc65925e8ae3ded52a79ae9eccb9e1c80b7fefb0b87c6807e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"16\",\"sale_id\":\"11\",\"product_id\":\"1381\",\"product_code\":\"PR-94\",\"product_name\":\"10 GOLDY FORTE OS\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"},{\"id\":\"17\",\"sale_id\":\"11\",\"product_id\":\"1324\",\"product_code\":\"PR-37\",\"product_name\":\"3 MEDICAL ICE COOL\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"\",\"details\":null,\"variant\":null,\"hsn_code\":\"0\",\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2021-03-24 15:12:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (357, 'Transfer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"1\",\"transfer_no\":\"00020\",\"date\":\"2021-03-24 12:48:00\",\"from_warehouse_id\":\"1\",\"from_warehouse_code\":\"001\",\"from_warehouse_name\":\"Lake Side Road\",\"to_warehouse_id\":\"2\",\"to_warehouse_code\":\"002\",\"to_warehouse_name\":\"Commandos\",\"note\":\"\",\"total\":\"35.9700\",\"total_tax\":\"0.0000\",\"grand_total\":\"35.9700\",\"created_by\":\"1\",\"status\":\"completed\",\"shipping\":\"0.0000\",\"attachment\":\"0\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"15\",\"purchase_id\":null,\"transfer_id\":\"1\",\"product_id\":\"1325\",\"product_code\":\"PR-38\",\"product_name\":\"MUPIROCIN OINTMENT 15G\",\"option_id\":null,\"net_unit_cost\":\"23.9800\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"23.9800\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-03-24\",\"status\":\"received\",\"unit_cost\":\"23.9800\",\"real_unit_cost\":\"23.9800\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":\"0\",\"second_name\":\"\"},{\"id\":\"16\",\"purchase_id\":null,\"transfer_id\":\"1\",\"product_id\":\"1324\",\"product_code\":\"PR-37\",\"product_name\":\"MEDICAL ICE COOL\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"4.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-03-24\",\"status\":\"received\",\"unit_cost\":\"4.0000\",\"real_unit_cost\":\"4.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"17\",\"purchase_id\":null,\"transfer_id\":\"1\",\"product_id\":\"1323\",\"product_code\":\"PR-36\",\"product_name\":\"GLIZONE 30MG\",\"option_id\":null,\"net_unit_cost\":\"7.9900\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"7.9900\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-03-24\",\"status\":\"received\",\"unit_cost\":\"7.9900\",\"real_unit_cost\":\"7.9900\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"}]}', '2021-03-24 16:01:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (358, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1705\",\"code\":\"PR-418\",\"name\":\"CYPRODINE CAPS 30\'5\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"cyprodine-caps-305\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-26 03:54:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (359, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1515\",\"code\":\"PR-228\",\"name\":\"CANDIDERM CREAM 1SMG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"candiderm-cream-1smg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-28 21:57:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (360, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1716\",\"code\":\"PR-429\",\"name\":\"MEDICATED CHARCOAL\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"medicated-charcoal\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-29 00:05:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (361, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1770\",\"code\":\"PR-483\",\"name\":\"CIPRINOL TABS 500MG 10\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ciprinol-tabs-500mg-10\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-29 00:08:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (362, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1977\",\"code\":\"54969236\",\"name\":\"QUEEN ELISABETH COCOA BUTTER 800ML\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"15.5000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"54969236\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-29 02:55:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (363, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1979\",\"code\":\"45165186\",\"name\":\"QUEEN ELISABETH COCOA BUTTER LOTION 800ML\",\"unit\":\"1\",\"cost\":\"11.0000\",\"price\":\"15.5000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"45165186\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-29 02:55:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (364, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1906\",\"code\":\"PR-619\",\"name\":\"Rhyin Tablet taking\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rhyin-tablet-taking\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-30 13:49:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (365, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1357\",\"code\":\"PR-70\",\"name\":\"LUEX CHILD CHESTY\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"luex-child-chesty\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-03-31 12:56:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (366, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"2082\",\"code\":\"05357673\",\"name\":\"K-Y JELLY 82G\",\"unit\":\"1\",\"cost\":\"33.4700\",\"price\":\"44.0000\",\"alert_quantity\":\"2.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"05357673\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-01 12:19:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (367, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1558\",\"code\":\"PR-271\",\"name\":\"CO-TRIM TAB (LETAP)\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"co-trim-tab-letap\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-01 12:20:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (368, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1566\",\"code\":\"PR-279\",\"name\":\"PRE-MECO\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"pre-meco\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-01 12:21:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (369, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1594\",\"code\":\"PR-307\",\"name\":\"PARA-DENK 125MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"para-denk-125mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-01 12:22:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (370, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"2087\",\"code\":\"40384732\",\"name\":\"VIT-B DENK\",\"unit\":\"1\",\"cost\":\"9.8000\",\"price\":\"13.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"40384732\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-01 12:23:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (371, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1679\",\"code\":\"PR-392\",\"name\":\"LETAUN EXPECTORANT SYR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"letaun-expectorant-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-01 12:25:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (372, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1815\",\"code\":\"PR-528\",\"name\":\"V-FIRM\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"v-firm\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-02 04:35:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (373, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"2090\",\"code\":\"47035538\",\"name\":\"V-FIRM\",\"unit\":\"1\",\"cost\":\"15.8500\",\"price\":\"21.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"47035538\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-02 04:35:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (374, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1842\",\"code\":\"PR-555\",\"name\":\"CA-C 1000 SANDOZ\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ca-c-1000-sandoz\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-02 04:36:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (375, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1870\",\"code\":\"PR-583\",\"name\":\"HAEMOGLOBIN L\\/P SYR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"5.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"haemoglobin-lp-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-02 13:43:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (376, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1948\",\"code\":\"57316675\",\"name\":\"Cough & Cold  100ml Child Care\",\"unit\":\"1\",\"cost\":\"3.0000\",\"price\":\"3.6000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"57316675\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-02 15:04:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (377, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1869\",\"code\":\"PR-582\",\"name\":\"DYNEWELL SYR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"10.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"dynewell-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-02 15:09:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (378, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1777\",\"code\":\"PR-490\",\"name\":\"ZINCOVIT TABS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zincovit-tabs\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-02 19:22:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (379, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1778\",\"code\":\"PR-491\",\"name\":\"ZINCOVIT SYRUB200 MLS\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"zincovit-syrub200-mls\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-02 19:22:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (380, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1587\",\"code\":\"PR-300\",\"name\":\"NUGEL SUSP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"nugel-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-02 22:09:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (381, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1786\",\"code\":\"PR-499\",\"name\":\"BONGELA TEETHING GEL INFANT\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"2.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"bongela-teething-gel-infant\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-02 22:12:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (382, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1556\",\"code\":\"PR-269\",\"name\":\"RHINATHOIL ENFANT SYR 125ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"rhinathoil-enfant-syr-125ml\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-02 23:10:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (383, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1801\",\"code\":\"PR-514\",\"name\":\"RHINATHIOL 5?ULT 125ML (BLUE)\",\"unit\":\"1\",\"cost\":\"22.2400\",\"price\":\"29.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"RHINATHOL 5?ULT 125ML\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-02 23:16:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (384, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1683\",\"code\":\"PR-396\",\"name\":\"VERMOXTAB\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"vermoxtab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-02 23:41:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (385, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1823\",\"code\":\"PR-536\",\"name\":\"TOUCH & GO\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"5.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"touch-go\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-03 00:00:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (386, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1838\",\"code\":\"PR-551\",\"name\":\"LOFNAC 100MG SUPP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lofnac-100mg-supp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-03 00:36:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (387, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1853\",\"code\":\"PR-566\",\"name\":\"FENBASE EYTRA\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"fenbase-eytra\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-03 01:08:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (388, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1861\",\"code\":\"PR-574\",\"name\":\"UK MENOPACE\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"uk-menopace\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-03 01:24:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (389, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1879\",\"code\":\"PR-592\",\"name\":\"PERMOXYL SUSP\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"25.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"permoxyl-susp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-03 01:56:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (390, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1500\",\"code\":\"PR-213\",\"name\":\"KWIKACTION\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"kwikaction\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-03 04:35:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (391, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1913\",\"code\":\"PR-626\",\"name\":\"Magacid tablet\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"magacid-tablet\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-03 04:36:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (392, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"1491\",\"code\":\"PR-204\",\"name\":\"BADRUF OINT\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"5.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"badruf-oint\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-03 05:30:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (393, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2134\",\"code\":\"62214103\",\"name\":\"SIBI MEN CAPS\",\"unit\":\"1\",\"cost\":\"13.0000\",\"price\":\"17.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"62214103\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-04 21:41:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (394, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1509\",\"code\":\"PR-222\",\"name\":\"DAKTACORT CREAM\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"3.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"daktacort-cream\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-05 00:16:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (395, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1522\",\"code\":\"PR-235\",\"name\":\"FERROUSSULPHATETABSS00ECL\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"ferroussulphatetabss00ecl\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-05 00:59:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (396, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1858\",\"code\":\"PR-571\",\"name\":\"LIPITOR OMG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lipitor-omg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-05 02:33:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (397, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1794\",\"code\":\"PR-507\",\"name\":\"LIPTOR 10MG 30S\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"liptor-10mg-30s\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-05 02:34:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (398, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1597\",\"code\":\"010\",\"name\":\"KOFLET SYR 100ML\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"3.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"koflet-syr-100ml\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-06 01:33:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (399, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1607\",\"code\":\"PR-320\",\"name\":\"DORETATAB\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"doretatab\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-06 01:49:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (400, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1865\",\"code\":\"PR-578\",\"name\":\"MYCOLEX CREAM 20G\",\"unit\":\"1\",\"cost\":\"12.0500\",\"price\":\"16.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"mycolex-cream-20g\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-06 01:52:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (401, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1614\",\"code\":\"PR-327\",\"name\":\"TEEDAR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"6.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"teedar\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-06 02:00:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (402, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1919\",\"code\":\"PR-632\",\"name\":\"Firelife tonic\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"4.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"firelife-tonic\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-07 01:38:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (403, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1887\",\"code\":\"PR-600\",\"name\":\"VISIONACE UK\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"visionace-uk\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-07 02:06:17');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (404, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1448\",\"code\":\"PR-161\",\"name\":\"Lyfast Ds T017D073\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"lyfast-ds-t017d073\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-07 02:18:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (405, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1453\",\"code\":\"PR-166\",\"name\":\"Muscoto 5% L018D002\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"5.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"muscoto-5-l018d002\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-07 02:21:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (406, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1898\",\"code\":\"PR-611\",\"name\":\"Martins Plan one taking\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"martins-plan-one-taking\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-07 02:31:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (407, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1899\",\"code\":\"PR-612\",\"name\":\"Martins Orange two taking\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"martins-orange-two-taking\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-07 02:31:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (408, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1907\",\"code\":\"PR-620\",\"name\":\"Martins Orange  taking\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"martins-orange-taking\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-07 02:31:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (409, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2158\",\"code\":\"89036880\",\"name\":\"GEBEDOL EXTRA\",\"unit\":\"1\",\"cost\":\"0.9400\",\"price\":\"1.5000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"40.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"89036880\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-07 05:07:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (410, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2300\",\"code\":\"3582910066095\",\"name\":\"NO-SPA 40MG S\\/S 20\'S\",\"unit\":\"1\",\"cost\":\"1.3300\",\"price\":\"2.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"no-spa-40mg-ss-20s\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-11 16:34:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (411, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2301\",\"code\":\"4031571049507\",\"name\":\"PARA DENK SUPP 250MG\",\"unit\":\"1\",\"cost\":\"1.5400\",\"price\":\"2.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"para-denk-supp-250mg\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-11 16:35:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (412, 'Transfer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"11\",\"transfer_no\":\"TR2021\\/04\\/0003\",\"date\":\"2021-04-11 23:33:00\",\"from_warehouse_id\":\"2\",\"from_warehouse_code\":\"002\",\"from_warehouse_name\":\"Commandos\",\"to_warehouse_id\":\"4\",\"to_warehouse_code\":\"004\",\"to_warehouse_name\":\"Warehouse\",\"note\":\"\",\"total\":\"2130.4000\",\"total_tax\":\"0.0000\",\"grand_total\":\"2130.4000\",\"created_by\":\"1\",\"status\":\"completed\",\"shipping\":\"0.0000\",\"attachment\":\"0\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"2201\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1442\",\"product_code\":\"005\",\"product_name\":\"YAFO MAN CAPS\",\"option_id\":null,\"net_unit_cost\":\"13.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"39.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"13.0000\",\"real_unit_cost\":\"13.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2202\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1441\",\"product_code\":\"2150546225301\",\"product_name\":\"X DRIVE CAPS\",\"option_id\":null,\"net_unit_cost\":\"13.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"39.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"13.0000\",\"real_unit_cost\":\"13.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2203\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1440\",\"product_code\":\"PR-153\",\"product_name\":\"VICTORY GARLIC\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"40.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"10.0000\",\"real_unit_cost\":\"10.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2204\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1439\",\"product_code\":\"PR-152\",\"product_name\":\"VICTAGO s s\",\"option_id\":null,\"net_unit_cost\":\"1.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"12.0000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"1.0000\",\"real_unit_cost\":\"1.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2205\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1438\",\"product_code\":\"004\",\"product_name\":\"TRUMAN\",\"option_id\":null,\"net_unit_cost\":\"14.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"44.4000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"14.8000\",\"real_unit_cost\":\"14.8000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2206\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1437\",\"product_code\":\"PR-150\",\"product_name\":\"TOP TONIC\",\"option_id\":null,\"net_unit_cost\":\"9.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"19.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"9.5000\",\"real_unit_cost\":\"9.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2207\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1436\",\"product_code\":\"PR-149\",\"product_name\":\"TOP FEVER ( 24)\",\"option_id\":null,\"net_unit_cost\":\"9.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"19.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"9.5000\",\"real_unit_cost\":\"9.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2208\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1435\",\"product_code\":\"PR-148\",\"product_name\":\"TINATETT VENECARE 75O0ML\",\"option_id\":null,\"net_unit_cost\":\"18.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"55.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"18.5000\",\"real_unit_cost\":\"18.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2209\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1434\",\"product_code\":\"PR-147\",\"product_name\":\"TINATETT MALAKARE S00ML (25)\",\"option_id\":null,\"net_unit_cost\":\"14.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"29.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"14.5000\",\"real_unit_cost\":\"14.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2210\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1433\",\"product_code\":\"PR-146\",\"product_name\":\"TIME HERBAL MIX(25)\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"10.0000\",\"real_unit_cost\":\"10.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2211\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1432\",\"product_code\":\"2546546415413\",\"product_name\":\"TAABEA MIX(25)\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"54.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"9.0000\",\"real_unit_cost\":\"9.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2212\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1431\",\"product_code\":\"PR-144\",\"product_name\":\"SPARNIS GARLIC MIXTURE(30)\",\"option_id\":null,\"net_unit_cost\":\"10.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"52.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"10.5000\",\"real_unit_cost\":\"10.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2213\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1430\",\"product_code\":\"PR-143\",\"product_name\":\"SOLAK MIXTURE(25)\",\"option_id\":null,\"net_unit_cost\":\"13.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"39.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"13.0000\",\"real_unit_cost\":\"13.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2214\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1429\",\"product_code\":\"PR-142\",\"product_name\":\"SIBI WOMEN CAPS(100)\",\"option_id\":null,\"net_unit_cost\":\"13.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"39.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"13.0000\",\"real_unit_cost\":\"13.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2215\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1429\",\"product_code\":\"PR-142\",\"product_name\":\"SIBI WOMEN CAPS(100)\",\"option_id\":null,\"net_unit_cost\":\"13.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"52.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"13.0000\",\"real_unit_cost\":\"13.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2216\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1427\",\"product_code\":\"003\",\"product_name\":\"ROOTER TYTONIC\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"45.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"15.0000\",\"real_unit_cost\":\"15.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2217\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1426\",\"product_code\":\"6034600108426\",\"product_name\":\"ROOTER LIFE\",\"option_id\":null,\"net_unit_cost\":\"36.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"72.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"36.0000\",\"real_unit_cost\":\"36.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2218\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1425\",\"product_code\":\"6034600108402\",\"product_name\":\"ROOTER MIXTURE (12)\",\"option_id\":null,\"net_unit_cost\":\"6.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"26.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"6.5000\",\"real_unit_cost\":\"6.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2219\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1424\",\"product_code\":\"6036000070709\",\"product_name\":\"PROSTAT 60\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"90.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"30.0000\",\"real_unit_cost\":\"30.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2220\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1423\",\"product_code\":\"6036000115455\",\"product_name\":\"PROSTACURE X\",\"option_id\":null,\"net_unit_cost\":\"30.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"90.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"30.0000\",\"real_unit_cost\":\"30.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2221\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1422\",\"product_code\":\"PR-135\",\"product_name\":\"PROSTACURE TEA (32)\",\"option_id\":null,\"net_unit_cost\":\"21.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"42.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"21.0000\",\"real_unit_cost\":\"21.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2222\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1421\",\"product_code\":\"6666666666666\",\"product_name\":\"PROSLUV CAPS\",\"option_id\":null,\"net_unit_cost\":\"19.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"59.4000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"19.8000\",\"real_unit_cost\":\"19.8000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2223\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1420\",\"product_code\":\"PR-133\",\"product_name\":\"NAZO\",\"option_id\":null,\"net_unit_cost\":\"1.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"14.4000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"1.2000\",\"real_unit_cost\":\"1.2000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2224\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1419\",\"product_code\":\"5024389122233\",\"product_name\":\"MIGHTY POWER SYS LS\",\"option_id\":null,\"net_unit_cost\":\"10.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"21.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"10.5000\",\"real_unit_cost\":\"10.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2225\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1418\",\"product_code\":\"PR-131\",\"product_name\":\"MADAM CATERINE\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"16.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"8.0000\",\"real_unit_cost\":\"8.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2226\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1417\",\"product_code\":\"PR-130\",\"product_name\":\"LUCKY V CARE\",\"option_id\":null,\"net_unit_cost\":\"11.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"34.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"11.5000\",\"real_unit_cost\":\"11.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2227\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1416\",\"product_code\":\"PR-129\",\"product_name\":\"LUCKY MIXTURE\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"30.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"10.0000\",\"real_unit_cost\":\"10.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2228\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1415\",\"product_code\":\"6034000157055\",\"product_name\":\"LIVING BITTERS SYP S s\",\"option_id\":null,\"net_unit_cost\":\"14.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"29.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"14.5000\",\"real_unit_cost\":\"14.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2229\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1414\",\"product_code\":\"6034000157048\",\"product_name\":\"LIVING BITTERS CAPS\",\"option_id\":null,\"net_unit_cost\":\"19.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"38.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"19.0000\",\"real_unit_cost\":\"19.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2230\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1413\",\"product_code\":\"PR-126\",\"product_name\":\"KINGDOM GARLIC CAPS\",\"option_id\":null,\"net_unit_cost\":\"16.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"48.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"16.0000\",\"real_unit_cost\":\"16.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2231\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1412\",\"product_code\":\"PR-125\",\"product_name\":\"KINGDOM GARLIC BITTERS\",\"option_id\":null,\"net_unit_cost\":\"14.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"28.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"14.0000\",\"real_unit_cost\":\"14.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2232\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1411\",\"product_code\":\"6036000038952\",\"product_name\":\"JOY VIKIL\",\"option_id\":null,\"net_unit_cost\":\"25.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"50.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"25.0000\",\"real_unit_cost\":\"25.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2233\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1410\",\"product_code\":\"PR-123\",\"product_name\":\"JOY OINT S\\/S(200)\",\"option_id\":null,\"net_unit_cost\":\"2.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"22.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"2.2000\",\"real_unit_cost\":\"2.2000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2234\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1409\",\"product_code\":\"PR-122\",\"product_name\":\"IMBOOST\",\"option_id\":null,\"net_unit_cost\":\"13.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"65.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"13.0000\",\"real_unit_cost\":\"13.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2235\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1408\",\"product_code\":\"6050125568200\",\"product_name\":\"HAPIMAN CAPS\",\"option_id\":null,\"net_unit_cost\":\"9.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"28.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"9.5000\",\"real_unit_cost\":\"9.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2236\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1407\",\"product_code\":\"001\",\"product_name\":\"GIVERS POWER CAPS(140)\",\"option_id\":null,\"net_unit_cost\":\"16.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"67.2000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"16.8000\",\"real_unit_cost\":\"16.8000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2237\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1406\",\"product_code\":\"16564749\",\"product_name\":\"GIVERS KOO CAPS(l40)\",\"option_id\":null,\"net_unit_cost\":\"16.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"67.2000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"16.8000\",\"real_unit_cost\":\"16.8000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2238\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1404\",\"product_code\":\"PR-117\",\"product_name\":\"GBEDEMAH Garlic bitters\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"27.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"9.0000\",\"real_unit_cost\":\"9.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2239\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1403\",\"product_code\":\"6036000115448\",\"product_name\":\"FEMACURE\",\"option_id\":null,\"net_unit_cost\":\"13.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"26.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"13.0000\",\"real_unit_cost\":\"13.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2240\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1402\",\"product_code\":\"PR-115\",\"product_name\":\"ERNEST OINT(200)\",\"option_id\":null,\"net_unit_cost\":\"2.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"13.2000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"2.2000\",\"real_unit_cost\":\"2.2000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2241\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1401\",\"product_code\":\"PR-114\",\"product_name\":\"EKURO BEWU\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"18.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"3.0000\",\"real_unit_cost\":\"3.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2242\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1400\",\"product_code\":\"PR-113\",\"product_name\":\"DIAGELLETS 500ML(24)\",\"option_id\":null,\"net_unit_cost\":\"22.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"66.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"22.0000\",\"real_unit_cost\":\"22.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2243\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1399\",\"product_code\":\"PR-112\",\"product_name\":\"DIAGELLETS 250ML(50)\",\"option_id\":null,\"net_unit_cost\":\"12.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"50.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"12.5000\",\"real_unit_cost\":\"12.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2244\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1398\",\"product_code\":\"PR-111\",\"product_name\":\"DIAGEI.LETS 125ML(70)\",\"option_id\":null,\"net_unit_cost\":\"7.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"37.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"7.5000\",\"real_unit_cost\":\"7.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2245\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1397\",\"product_code\":\"PR-110\",\"product_name\":\"ANGEL FETWEK3K3(200)\",\"option_id\":null,\"net_unit_cost\":\"3.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"16.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"3.2000\",\"real_unit_cost\":\"3.2000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2246\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1396\",\"product_code\":\"PR-109\",\"product_name\":\"ANGEL CREAM(200)\",\"option_id\":null,\"net_unit_cost\":\"2.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"13.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"2.7000\",\"real_unit_cost\":\"2.7000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2247\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1395\",\"product_code\":\"PR-108\",\"product_name\":\"AMUZU GARLIC\",\"option_id\":null,\"net_unit_cost\":\"8.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"25.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"8.5000\",\"real_unit_cost\":\"8.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2248\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1394\",\"product_code\":\"PR-107\",\"product_name\":\"AGBEVE TONIC(30)\",\"option_id\":null,\"net_unit_cost\":\"6.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"32.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"6.5000\",\"real_unit_cost\":\"6.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2249\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1393\",\"product_code\":\"PR-106\",\"product_name\":\"AGBEVE PHEVER( 30)\",\"option_id\":null,\"net_unit_cost\":\"6.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"19.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"6.5000\",\"real_unit_cost\":\"6.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2250\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1392\",\"product_code\":\"6036000115400\",\"product_name\":\"AFRO MOSES\",\"option_id\":null,\"net_unit_cost\":\"13.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"40.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"13.5000\",\"real_unit_cost\":\"13.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2251\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1391\",\"product_code\":\"6036000005930\",\"product_name\":\"ADUWUMWAA CAPS (240)\",\"option_id\":null,\"net_unit_cost\":\"11.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"22.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"11.0000\",\"real_unit_cost\":\"11.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2252\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1390\",\"product_code\":\"PR-103\",\"product_name\":\"_ADUTW I MWAA BITTERS ( 2 5)\",\"option_id\":null,\"net_unit_cost\":\"7.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"22.5000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"7.5000\",\"real_unit_cost\":\"7.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2253\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1389\",\"product_code\":\"6034000189360\",\"product_name\":\"ADOM PAWAY CAPS(l00)\",\"option_id\":null,\"net_unit_cost\":\"16.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"32.8000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"16.4000\",\"real_unit_cost\":\"16.4000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2254\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1388\",\"product_code\":\"PR-101\",\"product_name\":\"ADOM KOKO SYP(20)\",\"option_id\":null,\"net_unit_cost\":\"5.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"26.5000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"5.3000\",\"real_unit_cost\":\"5.3000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2255\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1387\",\"product_code\":\"6034000189100\",\"product_name\":\"ADOM KOKO CAPS (100)\",\"option_id\":null,\"net_unit_cost\":\"11.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"67.8000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"11.3000\",\"real_unit_cost\":\"11.3000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2256\",\"purchase_id\":null,\"transfer_id\":\"11\",\"product_id\":\"1386\",\"product_code\":\"6156000046105\",\"product_name\":\"ABONIK BALM (48)\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"27.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"4.5000\",\"real_unit_cost\":\"4.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"}]}', '2021-04-11 21:47:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (413, 'Transfer is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7\",\"transfer_no\":\"TR2021\\/04\\/0003\",\"date\":\"2021-04-11 23:33:00\",\"from_warehouse_id\":\"2\",\"from_warehouse_code\":\"002\",\"from_warehouse_name\":\"Commandos\",\"to_warehouse_id\":\"4\",\"to_warehouse_code\":\"004\",\"to_warehouse_name\":\"Warehouse\",\"note\":\"\",\"total\":\"0.0000\",\"total_tax\":\"0.0000\",\"grand_total\":\"0.0000\",\"created_by\":\"3\",\"status\":\"completed\",\"shipping\":\"0.0000\",\"attachment\":\"0\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"1978\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1442\",\"product_code\":\"005\",\"product_name\":\"YAFO MAN CAPS\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"1980\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1441\",\"product_code\":\"2150546225301\",\"product_name\":\"X DRIVE CAPS\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"1982\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1440\",\"product_code\":\"PR-153\",\"product_name\":\"VICTORY GARLIC\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"1984\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1439\",\"product_code\":\"PR-152\",\"product_name\":\"VICTAGO s s\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"1986\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1438\",\"product_code\":\"004\",\"product_name\":\"TRUMAN\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"1988\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1437\",\"product_code\":\"PR-150\",\"product_name\":\"TOP TONIC\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"1990\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1436\",\"product_code\":\"PR-149\",\"product_name\":\"TOP FEVER ( 24)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"1992\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1435\",\"product_code\":\"PR-148\",\"product_name\":\"TINATETT VENECARE 75O0ML\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"1994\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1434\",\"product_code\":\"PR-147\",\"product_name\":\"TINATETT MALAKARE S00ML (25)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"1996\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1433\",\"product_code\":\"PR-146\",\"product_name\":\"TIME HERBAL MIX(25)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"1998\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1432\",\"product_code\":\"2546546415413\",\"product_name\":\"TAABEA MIX(25)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2000\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1431\",\"product_code\":\"PR-144\",\"product_name\":\"SPARNIS GARLIC MIXTURE(30)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2002\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1430\",\"product_code\":\"PR-143\",\"product_name\":\"SOLAK MIXTURE(25)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2004\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1429\",\"product_code\":\"PR-142\",\"product_name\":\"SIBI WOMEN CAPS(100)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2006\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1429\",\"product_code\":\"PR-142\",\"product_name\":\"SIBI WOMEN CAPS(100)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2007\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1427\",\"product_code\":\"003\",\"product_name\":\"ROOTER TYTONIC\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2009\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1426\",\"product_code\":\"6034600108426\",\"product_name\":\"ROOTER LIFE\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2011\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1425\",\"product_code\":\"6034600108402\",\"product_name\":\"ROOTER MIXTURE (12)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2013\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1424\",\"product_code\":\"6036000070709\",\"product_name\":\"PROSTAT 60\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2015\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1423\",\"product_code\":\"6036000115455\",\"product_name\":\"PROSTACURE X\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2017\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1422\",\"product_code\":\"PR-135\",\"product_name\":\"PROSTACURE TEA (32)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2019\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1421\",\"product_code\":\"6666666666666\",\"product_name\":\"PROSLUV CAPS\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2021\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1420\",\"product_code\":\"PR-133\",\"product_name\":\"NAZO\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2023\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1419\",\"product_code\":\"5024389122233\",\"product_name\":\"MIGHTY POWER SYS LS\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2025\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1418\",\"product_code\":\"PR-131\",\"product_name\":\"MADAM CATERINE\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2027\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1417\",\"product_code\":\"PR-130\",\"product_name\":\"LUCKY V CARE\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2029\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1416\",\"product_code\":\"PR-129\",\"product_name\":\"LUCKY MIXTURE\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2031\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1415\",\"product_code\":\"6034000157055\",\"product_name\":\"LIVING BITTERS SYP S s\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2033\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1414\",\"product_code\":\"6034000157048\",\"product_name\":\"LIVING BITTERS CAPS\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2035\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1413\",\"product_code\":\"PR-126\",\"product_name\":\"KINGDOM GARLIC CAPS\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2037\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1412\",\"product_code\":\"PR-125\",\"product_name\":\"KINGDOM GARLIC BITTERS\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2039\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1411\",\"product_code\":\"6036000038952\",\"product_name\":\"JOY VIKIL\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2041\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1410\",\"product_code\":\"PR-123\",\"product_name\":\"JOY OINT S\\/S(200)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2043\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1409\",\"product_code\":\"PR-122\",\"product_name\":\"IMBOOST\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2045\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1408\",\"product_code\":\"6050125568200\",\"product_name\":\"HAPIMAN CAPS\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2047\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1407\",\"product_code\":\"001\",\"product_name\":\"GIVERS POWER CAPS(140)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2049\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1406\",\"product_code\":\"16564749\",\"product_name\":\"GIVERS KOO CAPS(l40)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2051\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1404\",\"product_code\":\"PR-117\",\"product_name\":\"GBEDEMAH Garlic bitters\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2053\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1403\",\"product_code\":\"6036000115448\",\"product_name\":\"FEMACURE\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2055\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1402\",\"product_code\":\"PR-115\",\"product_name\":\"ERNEST OINT(200)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2057\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1401\",\"product_code\":\"PR-114\",\"product_name\":\"EKURO BEWU\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2059\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1400\",\"product_code\":\"PR-113\",\"product_name\":\"DIAGELLETS 500ML(24)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2061\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1399\",\"product_code\":\"PR-112\",\"product_name\":\"DIAGELLETS 250ML(50)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2063\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1398\",\"product_code\":\"PR-111\",\"product_name\":\"DIAGEI.LETS 125ML(70)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2065\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1397\",\"product_code\":\"PR-110\",\"product_name\":\"ANGEL FETWEK3K3(200)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2067\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1396\",\"product_code\":\"PR-109\",\"product_name\":\"ANGEL CREAM(200)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2069\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1395\",\"product_code\":\"PR-108\",\"product_name\":\"AMUZU GARLIC\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2071\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1394\",\"product_code\":\"PR-107\",\"product_name\":\"AGBEVE TONIC(30)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2073\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1393\",\"product_code\":\"PR-106\",\"product_name\":\"AGBEVE PHEVER( 30)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2075\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1392\",\"product_code\":\"6036000115400\",\"product_name\":\"AFRO MOSES\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2077\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1391\",\"product_code\":\"6036000005930\",\"product_name\":\"ADUWUMWAA CAPS (240)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2079\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1390\",\"product_code\":\"PR-103\",\"product_name\":\"_ADUTW I MWAA BITTERS ( 2 5)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2081\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1389\",\"product_code\":\"6034000189360\",\"product_name\":\"ADOM PAWAY CAPS(l00)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2083\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1388\",\"product_code\":\"PR-101\",\"product_name\":\"ADOM KOKO SYP(20)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2085\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1387\",\"product_code\":\"6034000189100\",\"product_name\":\"ADOM KOKO CAPS (100)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"},{\"id\":\"2087\",\"purchase_id\":null,\"transfer_id\":\"7\",\"product_id\":\"1386\",\"product_code\":\"6156000046105\",\"product_name\":\"ABONIK BALM (48)\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":null,\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-04-12\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":null,\"variant\":null,\"unit\":\"1\",\"hsn_code\":null,\"second_name\":\"\"}]}', '2021-04-11 21:47:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (414, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"15\",\"date\":\"2021-04-12 02:22:30\",\"reference_no\":\"SALE\\/POS2021\\/04\\/0015\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Commandos\",\"warehouse_id\":\"4\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"5.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"3f69d55b8b8e81b14224f85924cb467ab46b99c64b7d7245edd40ed38f5a4eb5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"21\",\"sale_id\":\"15\",\"product_id\":\"1949\",\"product_code\":\"68032552\",\"product_name\":\" Foliron tonic 200ML\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"5.0000\",\"unit_price\":\"5.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"5.0000\",\"serial_no\":\"\",\"real_unit_price\":\"5.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2021-04-11 22:22:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (415, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"14\",\"date\":\"2021-04-12 02:20:03\",\"reference_no\":\"SALE\\/POS2021\\/04\\/0014\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Commandos\",\"warehouse_id\":\"4\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"6.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"31fa9118691f6671b915182fdba0358878d9e44beaec1ed1419670491f1666eb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"20\",\"sale_id\":\"14\",\"product_id\":\"1825\",\"product_code\":\"PR-538\",\"product_name\":\" ASCORYL SYRUP VITAMIN C M\\/G\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6.0000\",\"unit_price\":\"6.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.0000\",\"serial_no\":\"\",\"real_unit_price\":\"6.0000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2021-04-11 22:22:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (416, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"13\",\"date\":\"2021-04-12 02:17:12\",\"reference_no\":\"SALE\\/POS2021\\/04\\/0013\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Commandos\",\"warehouse_id\":\"4\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6.5000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6.5000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"7.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.5000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"ab43c3b2ac1616f4d8a767cc8c0b296ec6bd8f605e1b2f67c8259ac159427361\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"19\",\"sale_id\":\"13\",\"product_id\":\"2014\",\"product_code\":\"08906045943697\",\"product_name\":\"ACNE CLEAR GEL\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"6.5000\",\"unit_price\":\"6.5000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"subtotal\":\"6.5000\",\"serial_no\":\"\",\"real_unit_price\":\"6.5000\",\"sale_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":\"pc\"}]}', '2021-04-11 22:22:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (417, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"2310\",\"code\":\"22519199\",\"name\":\"PREGNACARE 19\",\"unit\":\"1\",\"cost\":\"46.0000\",\"price\":\"60.7200\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"22519199\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-11 23:01:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (418, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2146\",\"code\":\"28780424\",\"name\":\"DICLOKIN-TR\",\"unit\":\"1\",\"cost\":\"1.8100\",\"price\":\"2.5000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"37.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"28780424\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-15 07:30:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (419, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1299\",\"code\":\"PR-12\",\"name\":\"ARTIBASE : SUSP\",\"unit\":\"1\",\"cost\":\"3.9000\",\"price\":\"5.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"6.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"artibase-susp\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-15 09:02:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (420, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2141\",\"code\":\"93746523\",\"name\":\"PROXIMEXA 500MG\",\"unit\":\"1\",\"cost\":\"4.5000\",\"price\":\"5.5000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"20.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"93746523\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-15 09:49:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (421, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2246\",\"code\":\"5017007023364\",\"name\":\"AMILODIPINE 5MG TEVA\",\"unit\":\"1\",\"cost\":\"3.4000\",\"price\":\"5.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"12.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"amilodipine-5mg-teva\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-20 05:31:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (422, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2364\",\"code\":\"23331\",\"name\":\"AMLODIPINE 10MG (TEVA)\",\"unit\":\"1\",\"cost\":\"3.8000\",\"price\":\"5.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"54222463\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-20 05:37:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (423, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2330\",\"code\":\"5017007023371\",\"name\":\"AMLODIPINE 10MG (TEVA)\",\"unit\":\"1\",\"cost\":\"3.7500\",\"price\":\"5.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"amlodipine-10mg-teva\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-20 05:37:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (424, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1443\",\"code\":\"PR-156\",\"name\":\"XForm Caps c0120007\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"xform-caps-c0120007\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-24 12:33:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (425, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2501\",\"code\":\"38191376\",\"name\":\"TCP SOAP\",\"unit\":\"1\",\"cost\":\"5.8000\",\"price\":\"8.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"12.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"38191376\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-04-27 13:40:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (426, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1749\",\"code\":\"PR-462\",\"name\":\"BENYLIN DRY COUGH SYR  100ML\",\"unit\":\"1\",\"cost\":\"25.5000\",\"price\":\"34.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"3.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"benylin-dry-cough-syr-100ml\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-05-03 08:17:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (427, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1664\",\"code\":\"5010058089785\",\"name\":\"PREGNACARE  ORIGINAL 19\'\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"2.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"pregnacare-original-19\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-05-03 08:35:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (428, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1784\",\"code\":\"PR-497\",\"name\":\"DROP CORORANGE\",\"unit\":\"1\",\"cost\":\"4.8000\",\"price\":\"6.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"3.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"drop-cororange\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-05-07 14:35:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (429, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1317\",\"code\":\"PR-30\",\"name\":\"KOFLET COUGH SYR\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"koflet-cough-syr\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-05-08 17:40:01');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (430, 'Product is being deleted by stella (User Id: 4)', '{\"model\":{\"id\":\"2639\",\"code\":\"50308562\",\"name\":\"GIVERS P CAPS\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"22.5000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"50308562\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-05-25 19:07:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (431, 'Purchase is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"119\",\"reference_no\":\"F0001\\/28\\/5\\/21\\/COM\\/STELLA\\/TINATT HERBAL\",\"date\":\"2021-05-29 19:25:00\",\"supplier_id\":\"10\",\"supplier\":\"TINATTET HERBAL MANUFACTURING COMPANY\",\"warehouse_id\":\"4\",\"note\":\"\",\"total\":\"127.6000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"127.6000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"3\",\"updated_by\":\"3\",\"updated_at\":\"2021-05-29 20:14:08\",\"attachment\":\"0\",\"payment_term\":\"0\",\"due_date\":null,\"return_id\":null,\"surcharge\":\"0.0000\",\"return_purchase_ref\":null,\"purchase_id\":null,\"return_purchase_total\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"11129\",\"purchase_id\":\"119\",\"transfer_id\":null,\"product_id\":\"2452\",\"product_code\":\"56056492\",\"product_name\":\"FINE FINE SOAP\",\"option_id\":null,\"net_unit_cost\":\"2.5000\",\"product_selling_price\":\"4.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"7.5000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-05-29\",\"status\":\"received\",\"unit_cost\":\"2.5000\",\"real_unit_cost\":\"2.5000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.5000\"},{\"id\":\"11130\",\"purchase_id\":\"119\",\"transfer_id\":null,\"product_id\":\"1410\",\"product_code\":\"PR-123\",\"product_name\":\"JOY OINT S\\/S(200)\",\"option_id\":null,\"net_unit_cost\":\"2.2000\",\"product_selling_price\":\"3.5000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"22.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-05-29\",\"status\":\"received\",\"unit_cost\":\"2.2000\",\"real_unit_cost\":\"2.2000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.2000\"},{\"id\":\"11131\",\"purchase_id\":\"119\",\"transfer_id\":null,\"product_id\":\"1432\",\"product_code\":\"2546546415413\",\"product_name\":\"TAABEA MIX(25)\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"product_selling_price\":\"13.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"45.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-05-29\",\"status\":\"received\",\"unit_cost\":\"9.0000\",\"real_unit_cost\":\"9.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"11132\",\"purchase_id\":\"119\",\"transfer_id\":null,\"product_id\":\"1433\",\"product_code\":\"PR-146\",\"product_name\":\"TIME HERBAL MIX(25)\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"13.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"20.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-05-29\",\"status\":\"received\",\"unit_cost\":\"10.0000\",\"real_unit_cost\":\"10.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"11133\",\"purchase_id\":\"119\",\"transfer_id\":null,\"product_id\":\"2652\",\"product_code\":\"49336316\",\"product_name\":\"ADOM TONIC\",\"option_id\":null,\"net_unit_cost\":\"12.5000\",\"product_selling_price\":\"16.5000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"25.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-05-29\",\"status\":\"received\",\"unit_cost\":\"12.5000\",\"real_unit_cost\":\"12.5000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"12.5000\"},{\"id\":\"11134\",\"purchase_id\":\"119\",\"transfer_id\":null,\"product_id\":\"2653\",\"product_code\":\"35881608\",\"product_name\":\"MONA KRIM\",\"option_id\":null,\"net_unit_cost\":\"2.7000\",\"product_selling_price\":\"3.5000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"4\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"8.1000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-05-29\",\"status\":\"received\",\"unit_cost\":\"2.7000\",\"real_unit_cost\":\"2.7000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.7000\"}]}', '2021-05-31 15:04:08');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (432, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1496\",\"code\":\"PR-209\",\"name\":\"ENACEF SUSP\",\"unit\":\"1\",\"cost\":\"8.8400\",\"price\":\"12.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"2.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"enacef-susp\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-05-31 16:57:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (433, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1752\",\"code\":\"4031571063787\",\"name\":\"FLUCONA-DENK (FLUCONAZOLE) CAP 150MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"flucona-denk-fluconazole-cap-150mg\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-06-13 16:58:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (434, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2550\",\"code\":\"62235222\",\"name\":\"CYCLOGIST\",\"unit\":\"1\",\"cost\":\"8.2000\",\"price\":\"11.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"62235222\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-06-15 05:56:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (435, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2718\",\"code\":\"5647332\",\"name\":\"FRESH LADI CAPSULES\",\"unit\":\"1\",\"cost\":\"17.0000\",\"price\":\"20.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"56473329\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-06-15 14:19:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (436, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1327\",\"code\":\"PR-40\",\"name\":\"H1GH ELASTIC CREPE BANDAGE 2\\\"\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"h1gh-elastic-crepe-bandage-2\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-06-17 10:03:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (437, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2746\",\"code\":\"18679930\",\"name\":\"COARTEM 12\'S TAB\",\"unit\":\"1\",\"cost\":\"17.7000\",\"price\":\"24.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"coartem-12s-tab\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-06-17 16:41:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (438, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2747\",\"code\":\"44209147\",\"name\":\"RELCER GEL\",\"unit\":\"1\",\"cost\":\"8.8700\",\"price\":\"12.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"44209147\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-06-17 16:42:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (439, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1850\",\"code\":\"PR-563\",\"name\":\"CLUCOSE C L\\/P\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"clucose-c-lp\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-06-20 17:10:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (440, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1579\",\"code\":\"PR-292\",\"name\":\"LUFART SUSP\",\"unit\":\"1\",\"cost\":\"9.3600\",\"price\":\"12.5000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"-1.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"lufart-susp\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-06-27 16:04:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (441, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2711\",\"code\":\"72613257\",\"name\":\"VINKA CHOCOLATE TOFFEE\",\"unit\":\"1\",\"cost\":\"0.2600\",\"price\":\"0.3400\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"72613257\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-06-27 16:05:21');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (442, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1360\",\"code\":\"PR-73\",\"name\":\"GALVUS MET FCT 50\\/1000MG\",\"unit\":\"1\",\"cost\":\"90.0000\",\"price\":\"100.0000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"12.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":null,\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":null,\"tax_method\":\"0\",\"type\":\"standard\",\"supplier1\":null,\"supplier1price\":\"0.0000\",\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":\"0\",\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":null,\"slug\":\"galvus-met-fct-501000mg\",\"featured\":null,\"weight\":null,\"hsn_code\":\"0\",\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-06-27 16:06:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (443, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1359\",\"code\":\"PR-72\",\"name\":\"GALVUS 50 2X14\",\"unit\":\"1\",\"cost\":\"74.6800\",\"price\":\"98.5000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"12.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"4\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"galvus-50-2x14\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-06-27 16:07:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (444, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2764\",\"code\":\"35743782\",\"name\":\"ALKA SELTZER S\\/S\",\"unit\":\"1\",\"cost\":\"2.1000\",\"price\":\"3.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"35743782\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-06-27 16:08:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (445, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2230\",\"code\":\"8886472104437\",\"name\":\"SMA GOLD 1\",\"unit\":\"1\",\"cost\":\"43.5000\",\"price\":\"46.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"sma-gold-1\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-06-29 13:00:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (446, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"1847\",\"code\":\"5028268050358\",\"name\":\"BEEHIVE BALSAM SYR\",\"unit\":\"1\",\"cost\":\"18.5000\",\"price\":\"24.5000\",\"alert_quantity\":\"10.0000\",\"image\":\"\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":null,\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"beehive-balsam-syr\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-06-29 13:15:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (447, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2591\",\"code\":\"10410900\",\"name\":\"Nivea men lotion \",\"unit\":\"1\",\"cost\":\"21.0000\",\"price\":\"24.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"10410900\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-07-18 16:08:26');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (448, 'Product is being deleted by appiah (User Id: 3)', '{\"model\":{\"id\":\"2913\",\"code\":\"0003373\",\"name\":\"SAGE LEAVES\",\"unit\":\"1\",\"cost\":\"10.0000\",\"price\":\"14.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"15\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"000337-3\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"sage-leaves\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-08-20 19:38:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (449, 'Purchase is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"200\",\"reference_no\":\"LAK-0002\",\"date\":\"2021-08-20 19:04:00\",\"supplier_id\":\"2\",\"supplier\":\"Supplier Company Name\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"5761.5700\",\"product_discount\":\"0.0000\",\"order_discount_id\":null,\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5761.5700\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"0\",\"updated_by\":\"3\",\"updated_at\":\"2021-08-21 02:18:12\",\"attachment\":\"0\",\"payment_term\":null,\"due_date\":null,\"return_id\":null,\"surcharge\":\"0.0000\",\"return_purchase_ref\":null,\"purchase_id\":null,\"return_purchase_total\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"27341\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5075\",\"product_code\":\"3221\",\"product_name\":\"SOFT&GENTLE LOTION\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"22.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"88.0000\",\"quantity_balance\":\"22.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"4.0000\",\"real_unit_cost\":\"4.0000\",\"quantity_received\":\"22.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"22.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"27342\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5076\",\"product_code\":\"3222\",\"product_name\":\"RIGHT GUARD LOTION\",\"option_id\":null,\"net_unit_cost\":\"2.8100\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"25.2900\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"2.8100\",\"real_unit_cost\":\"2.8100\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"2.8100\"},{\"id\":\"27343\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5077\",\"product_code\":\"3223\",\"product_name\":\"ZULU EXTRA\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"27.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"9.0000\",\"real_unit_cost\":\"9.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"27344\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5078\",\"product_code\":\"3224\",\"product_name\":\"BORIC ACID EAR DROP\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"48.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"12.0000\"},{\"id\":\"27345\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5079\",\"product_code\":\"3225\",\"product_name\":\"YAAKSON MIXTURE\",\"option_id\":null,\"net_unit_cost\":\"0.1600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"28.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"4.4800\",\"quantity_balance\":\"28.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"0.1600\",\"real_unit_cost\":\"0.1600\",\"quantity_received\":\"28.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"28.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.1600\"},{\"id\":\"27346\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5080\",\"product_code\":\"3226\",\"product_name\":\"DUO COTTON PADS\",\"option_id\":null,\"net_unit_cost\":\"3.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"26.4000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"3.3000\",\"real_unit_cost\":\"3.3000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.3000\"},{\"id\":\"27347\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5081\",\"product_code\":\"3227\",\"product_name\":\"YOVANNY COUGH LOZENGES\",\"option_id\":null,\"net_unit_cost\":\"3.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"15.6000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"3.9000\",\"real_unit_cost\":\"3.9000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.9000\"},{\"id\":\"27348\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5082\",\"product_code\":\"3228\",\"product_name\":\"ABYVITA CAPS\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"27.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"9.0000\",\"real_unit_cost\":\"9.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"27349\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5083\",\"product_code\":\"3229\",\"product_name\":\"CIPRO TAB OSONS\",\"option_id\":null,\"net_unit_cost\":\"6.6600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"6.6600\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"6.6600\",\"real_unit_cost\":\"6.6600\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.6600\"},{\"id\":\"27350\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5084\",\"product_code\":\"3230\",\"product_name\":\"BROWN SUGAR\",\"option_id\":null,\"net_unit_cost\":\"6.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"13.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"6.5000\",\"real_unit_cost\":\"6.5000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.5000\"},{\"id\":\"27351\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5085\",\"product_code\":\"3231\",\"product_name\":\"SAVANNA DRINK\",\"option_id\":null,\"net_unit_cost\":\"9.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"9.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"9.5000\",\"real_unit_cost\":\"9.5000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.5000\"},{\"id\":\"27352\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5086\",\"product_code\":\"3232\",\"product_name\":\"JUVER PAPER DRINK\",\"option_id\":null,\"net_unit_cost\":\"11.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"11.0000\",\"real_unit_cost\":\"11.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.0000\"},{\"id\":\"27353\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5087\",\"product_code\":\"3233\",\"product_name\":\"SUN EXOTIC DRINK\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"36.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"12.0000\"},{\"id\":\"27354\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5088\",\"product_code\":\"3234\",\"product_name\":\"RUBICON DRINK\",\"option_id\":null,\"net_unit_cost\":\"10.2400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"10.2400\",\"real_unit_cost\":\"10.2400\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.2400\"},{\"id\":\"27355\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5089\",\"product_code\":\"3235\",\"product_name\":\"ADIDAS SPRAY\",\"option_id\":null,\"net_unit_cost\":\"12.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"12.5000\",\"real_unit_cost\":\"12.5000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"12.5000\"},{\"id\":\"27356\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5090\",\"product_code\":\"3236\",\"product_name\":\"LOSARTAN POTASSIUM 100MG TEVA\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"20.0000\"},{\"id\":\"27357\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5091\",\"product_code\":\"3237\",\"product_name\":\"ADOM NATURAL MAN MIXTURE\",\"option_id\":null,\"net_unit_cost\":\"12.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"24.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"12.0000\",\"real_unit_cost\":\"12.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"12.0000\"},{\"id\":\"27358\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5092\",\"product_code\":\"3238\",\"product_name\":\"GIANT EAGLE MOUTH WASH\",\"option_id\":null,\"net_unit_cost\":\"9.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"18.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"9.0000\",\"real_unit_cost\":\"9.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.0000\"},{\"id\":\"27359\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5093\",\"product_code\":\"3239\",\"product_name\":\"PAMPERS S\\/S\",\"option_id\":null,\"net_unit_cost\":\"13.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"13.0000\",\"real_unit_cost\":\"13.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.0000\"},{\"id\":\"27360\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5094\",\"product_code\":\"3240\",\"product_name\":\"HONEYKOF HERBAL COUGH SYRUP\",\"option_id\":null,\"net_unit_cost\":\"8.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"8.5000\",\"real_unit_cost\":\"8.5000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"27361\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5095\",\"product_code\":\"3241\",\"product_name\":\"~\",\"option_id\":null,\"net_unit_cost\":\"13.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"13.0000\",\"real_unit_cost\":\"13.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.0000\"},{\"id\":\"27362\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5096\",\"product_code\":\"3242\",\"product_name\":\"\",\"option_id\":null,\"net_unit_cost\":\"13.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"13.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"13.0000\",\"real_unit_cost\":\"13.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.0000\"},{\"id\":\"27363\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5097\",\"product_code\":\"3243\",\"product_name\":\"\",\"option_id\":null,\"net_unit_cost\":\"8.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"34.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"8.5000\",\"real_unit_cost\":\"8.5000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"27364\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5098\",\"product_code\":\"3244\",\"product_name\":\"ADUSA MIXTURE\",\"option_id\":null,\"net_unit_cost\":\"13.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"26.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"13.0000\",\"real_unit_cost\":\"13.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"13.0000\"},{\"id\":\"27365\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5099\",\"product_code\":\"3245\",\"product_name\":\"LAWSON HERBAL MIXTURE\",\"option_id\":null,\"net_unit_cost\":\"92.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"184.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"92.0000\",\"real_unit_cost\":\"92.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"92.0000\"},{\"id\":\"27366\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5100\",\"product_code\":\"3246\",\"product_name\":\"DELAY MAN CAPS\",\"option_id\":null,\"net_unit_cost\":\"8.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"32.0000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"8.0000\",\"real_unit_cost\":\"8.0000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.0000\"},{\"id\":\"27367\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5101\",\"product_code\":\"3247\",\"product_name\":\"MALARONE PAED TABS\",\"option_id\":null,\"net_unit_cost\":\"5.9500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"5.9500\",\"real_unit_cost\":\"5.9500\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.9500\"},{\"id\":\"27368\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5102\",\"product_code\":\"3248\",\"product_name\":\"BELLS OLIVE OIL ORIGNAL\",\"option_id\":null,\"net_unit_cost\":\"7.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"7.9000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"7.9000\",\"real_unit_cost\":\"7.9000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.9000\"},{\"id\":\"27369\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5103\",\"product_code\":\"3249\",\"product_name\":\"ASCORYL PLUS SYRUP\",\"option_id\":null,\"net_unit_cost\":\"72.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"72.0000\",\"real_unit_cost\":\"72.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"72.0000\"},{\"id\":\"27370\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5104\",\"product_code\":\"3250\",\"product_name\":\"APETATRUST\",\"option_id\":null,\"net_unit_cost\":\"11.9900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"23.9800\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"11.9900\",\"real_unit_cost\":\"11.9900\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.9900\"},{\"id\":\"27371\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5105\",\"product_code\":\"3251\",\"product_name\":\"\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"20.0000\"},{\"id\":\"27372\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5106\",\"product_code\":\"3252\",\"product_name\":\"ARZIGLOBIN SYRUP\",\"option_id\":null,\"net_unit_cost\":\"72.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"72.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"72.0000\",\"real_unit_cost\":\"72.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"72.0000\"},{\"id\":\"27373\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5107\",\"product_code\":\"3253\",\"product_name\":\"COVONIA DRY TICKLY 150ML\",\"option_id\":null,\"net_unit_cost\":\"24.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"48.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"24.0000\",\"real_unit_cost\":\"24.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"24.0000\"},{\"id\":\"27374\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5108\",\"product_code\":\"3254\",\"product_name\":\"GALFER SYRUP 300ML\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.0000\"},{\"id\":\"27375\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5109\",\"product_code\":\"3255\",\"product_name\":\"IROVIT DROP\",\"option_id\":null,\"net_unit_cost\":\"0.6600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"30.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"19.8000\",\"quantity_balance\":\"30.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"0.6600\",\"real_unit_cost\":\"0.6600\",\"quantity_received\":\"30.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"30.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.6600\"},{\"id\":\"27376\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5110\",\"product_code\":\"3256\",\"product_name\":\"WIDALUM SUSP\",\"option_id\":null,\"net_unit_cost\":\"14.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"149.8000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"14.9800\",\"real_unit_cost\":\"14.9800\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.9800\"},{\"id\":\"27377\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5111\",\"product_code\":\"3257\",\"product_name\":\"ANDREWS LIVER SALTS\",\"option_id\":null,\"net_unit_cost\":\"5.7200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"5.7200\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"5.7200\",\"real_unit_cost\":\"5.7200\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.7200\"},{\"id\":\"27378\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5112\",\"product_code\":\"3258\",\"product_name\":\"RESCOFER SYRUP\",\"option_id\":null,\"net_unit_cost\":\"3.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"15.2000\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"3.8000\",\"real_unit_cost\":\"3.8000\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.8000\"},{\"id\":\"27379\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5113\",\"product_code\":\"3259\",\"product_name\":\"LIVERTONE BLOOD TONIC\",\"option_id\":null,\"net_unit_cost\":\"89.0400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"178.0800\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"89.0400\",\"real_unit_cost\":\"89.0400\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"89.0400\"},{\"id\":\"27380\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5114\",\"product_code\":\"3260\",\"product_name\":\"ARTETAB SUSP\",\"option_id\":null,\"net_unit_cost\":\"26.2800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"52.5600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"26.2800\",\"real_unit_cost\":\"26.2800\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"26.2800\"},{\"id\":\"27381\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5115\",\"product_code\":\"3261\",\"product_name\":\"COQ 10 WINMILL\",\"option_id\":null,\"net_unit_cost\":\"31.3200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"31.3200\",\"real_unit_cost\":\"31.3200\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"31.3200\"},{\"id\":\"27382\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5116\",\"product_code\":\"3262\",\"product_name\":\"FISH OIL GOOD NEIGH. PHARM\",\"option_id\":null,\"net_unit_cost\":\"52.0200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"104.0400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"52.0200\",\"real_unit_cost\":\"52.0200\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"52.0200\"},{\"id\":\"27383\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5117\",\"product_code\":\"3263\",\"product_name\":\"VIT A GOOD NEIGH.PHARM\",\"option_id\":null,\"net_unit_cost\":\"91.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"91.8000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"91.8000\",\"real_unit_cost\":\"91.8000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"91.8000\"},{\"id\":\"27384\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5118\",\"product_code\":\"3264\",\"product_name\":\"ONE A DAY WOMEN TAB\",\"option_id\":null,\"net_unit_cost\":\"17.9400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"71.7600\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"17.9400\",\"real_unit_cost\":\"17.9400\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"17.9400\"},{\"id\":\"27385\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5119\",\"product_code\":\"3265\",\"product_name\":\"PURE MARK VEGAN PRO\",\"option_id\":null,\"net_unit_cost\":\"53.4600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"53.4600\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"53.4600\",\"real_unit_cost\":\"53.4600\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"53.4600\"},{\"id\":\"27386\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5120\",\"product_code\":\"3266\",\"product_name\":\"VIT A  MAJOR\",\"option_id\":null,\"net_unit_cost\":\"41.0400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"41.0400\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"41.0400\",\"real_unit_cost\":\"41.0400\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"41.0400\"},{\"id\":\"27387\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5121\",\"product_code\":\"3267\",\"product_name\":\"MULTIVITANIM GUMMIES\",\"option_id\":null,\"net_unit_cost\":\"40.4400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"80.8800\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"40.4400\",\"real_unit_cost\":\"40.4400\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"40.4400\"},{\"id\":\"27388\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5122\",\"product_code\":\"3268\",\"product_name\":\"BCOMPLEX  NAT BOUNTY\",\"option_id\":null,\"net_unit_cost\":\"16.0200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"48.0600\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"16.0200\",\"real_unit_cost\":\"16.0200\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"16.0200\"},{\"id\":\"27389\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5123\",\"product_code\":\"3269\",\"product_name\":\"FISH OIL SUNDOWN\",\"option_id\":null,\"net_unit_cost\":\"33.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"67.2000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"33.6000\",\"real_unit_cost\":\"33.6000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"33.6000\"},{\"id\":\"27390\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5124\",\"product_code\":\"3270\",\"product_name\":\"FOLIC ACID SUNDOWN\",\"option_id\":null,\"net_unit_cost\":\"52.0200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"104.0400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"52.0200\",\"real_unit_cost\":\"52.0200\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"52.0200\"},{\"id\":\"27391\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5125\",\"product_code\":\"3271\",\"product_name\":\"ECHINACEA  COMPLEX GOOD NEIGH PHARM\",\"option_id\":null,\"net_unit_cost\":\"39.9000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"79.8000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"39.9000\",\"real_unit_cost\":\"39.9000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"39.9000\"},{\"id\":\"27392\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5126\",\"product_code\":\"3272\",\"product_name\":\"ONE A DAY MEN\",\"option_id\":null,\"net_unit_cost\":\"41.2200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"82.4400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"41.2200\",\"real_unit_cost\":\"41.2200\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"41.2200\"},{\"id\":\"27393\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5127\",\"product_code\":\"3273\",\"product_name\":\"VALERIAN ROOT NAT BOUNTY\",\"option_id\":null,\"net_unit_cost\":\"38.2800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"76.5600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"38.2800\",\"real_unit_cost\":\"38.2800\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"38.2800\"},{\"id\":\"27394\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5128\",\"product_code\":\"3274\",\"product_name\":\"VIT B12  NAT BOUNTY\",\"option_id\":null,\"net_unit_cost\":\"17.8200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"35.6400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"17.8200\",\"real_unit_cost\":\"17.8200\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"17.8200\"},{\"id\":\"27395\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5129\",\"product_code\":\"3275\",\"product_name\":\"VIT K2 MASON\",\"option_id\":null,\"net_unit_cost\":\"35.5800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"71.1600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"35.5800\",\"real_unit_cost\":\"35.5800\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"35.5800\"},{\"id\":\"27396\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5130\",\"product_code\":\"3276\",\"product_name\":\"CALCIUM 600 + D3\",\"option_id\":null,\"net_unit_cost\":\"30.7800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"92.3400\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"30.7800\",\"real_unit_cost\":\"30.7800\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"30.7800\"},{\"id\":\"27397\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5131\",\"product_code\":\"3277\",\"product_name\":\"COD LIVER OIL MASON\",\"option_id\":null,\"net_unit_cost\":\"27.4800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"27.4800\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"27.4800\",\"real_unit_cost\":\"27.4800\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"27.4800\"},{\"id\":\"27398\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5132\",\"product_code\":\"3278\",\"product_name\":\"HEALTHY EYE GOOD NEIGH PHARM\",\"option_id\":null,\"net_unit_cost\":\"28.3800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"56.7600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"28.3800\",\"real_unit_cost\":\"28.3800\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"28.3800\"},{\"id\":\"27399\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5133\",\"product_code\":\"3279\",\"product_name\":\"MELATONIN SUNDOWN\",\"option_id\":null,\"net_unit_cost\":\"45.3600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"90.7200\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"45.3600\",\"real_unit_cost\":\"45.3600\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"45.3600\"},{\"id\":\"27400\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5134\",\"product_code\":\"3280\",\"product_name\":\"MENTHOLATUM NIGHT RUB\",\"option_id\":null,\"net_unit_cost\":\"65.8800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"131.7600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"65.8800\",\"real_unit_cost\":\"65.8800\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"65.8800\"},{\"id\":\"27401\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5135\",\"product_code\":\"3281\",\"product_name\":\"SAW PALMETTO CAP\",\"option_id\":null,\"net_unit_cost\":\"52.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"52.2000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"52.2000\",\"real_unit_cost\":\"52.2000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"52.2000\"},{\"id\":\"27402\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5136\",\"product_code\":\"3282\",\"product_name\":\"SCANDISHAKE POWER\",\"option_id\":null,\"net_unit_cost\":\"0.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"0.0000\",\"real_unit_cost\":\"0.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.0000\"},{\"id\":\"27403\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5137\",\"product_code\":\"3283\",\"product_name\":\"VIT E OIL\",\"option_id\":null,\"net_unit_cost\":\"8.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"8.5000\",\"real_unit_cost\":\"8.5000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"8.5000\"},{\"id\":\"27404\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5138\",\"product_code\":\"3284\",\"product_name\":\"FISH OIL MAJOR\",\"option_id\":null,\"net_unit_cost\":\"7.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"7.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"7.5000\",\"real_unit_cost\":\"7.5000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.5000\"},{\"id\":\"27405\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5139\",\"product_code\":\"3285\",\"product_name\":\"BLACK SOAP BIG\",\"option_id\":null,\"net_unit_cost\":\"17.6500\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"35.3000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"17.6500\",\"real_unit_cost\":\"17.6500\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"17.6500\"},{\"id\":\"27406\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5140\",\"product_code\":\"3286\",\"product_name\":\"BLACK SOAP SMALL\",\"option_id\":null,\"net_unit_cost\":\"17.2900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"17.2900\",\"real_unit_cost\":\"17.2900\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"17.2900\"},{\"id\":\"27407\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5141\",\"product_code\":\"3287\",\"product_name\":\"D ARTEPP TAB 60\\/480MG\",\"option_id\":null,\"net_unit_cost\":\"32.9800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"65.9600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"32.9800\",\"real_unit_cost\":\"32.9800\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"32.9800\"},{\"id\":\"27408\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5142\",\"product_code\":\"3288\",\"product_name\":\"MEDULAC SUPP 250MLS\",\"option_id\":null,\"net_unit_cost\":\"9.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"9.3000\",\"real_unit_cost\":\"9.3000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.3000\"},{\"id\":\"27409\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5143\",\"product_code\":\"3289\",\"product_name\":\"GAVISCON DOUBLE ACTION\",\"option_id\":null,\"net_unit_cost\":\"51.7800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"103.5600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"51.7800\",\"real_unit_cost\":\"51.7800\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"51.7800\"},{\"id\":\"27410\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5144\",\"product_code\":\"3290\",\"product_name\":\"DEEP HEAT OINT 15G\",\"option_id\":null,\"net_unit_cost\":\"70.5800\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"141.1600\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"70.5800\",\"real_unit_cost\":\"70.5800\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"70.5800\"},{\"id\":\"27411\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5145\",\"product_code\":\"3291\",\"product_name\":\"ALPHA LIPOIC  MASON\",\"option_id\":null,\"net_unit_cost\":\"14.7000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"117.6000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"14.7000\",\"real_unit_cost\":\"14.7000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"14.7000\"},{\"id\":\"27412\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5146\",\"product_code\":\"3292\",\"product_name\":\"CHOLESOFF NATURE MADE\",\"option_id\":null,\"net_unit_cost\":\"42.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"84.6000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"42.3000\",\"real_unit_cost\":\"42.3000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"42.3000\"},{\"id\":\"27413\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5147\",\"product_code\":\"3293\",\"product_name\":\"FEROSUL MAJOR\",\"option_id\":null,\"net_unit_cost\":\"46.7300\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"46.7300\",\"real_unit_cost\":\"46.7300\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"46.7300\"},{\"id\":\"27414\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5148\",\"product_code\":\"3294\",\"product_name\":\"FISH OIL 100MG MAJOR\",\"option_id\":null,\"net_unit_cost\":\"37.7400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"75.4800\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"37.7400\",\"real_unit_cost\":\"37.7400\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"37.7400\"},{\"id\":\"27415\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5149\",\"product_code\":\"3295\",\"product_name\":\"GINGKO BILOBA EXTRACT\",\"option_id\":null,\"net_unit_cost\":\"38.0400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"76.0800\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"38.0400\",\"real_unit_cost\":\"38.0400\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"38.0400\"},{\"id\":\"27416\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5150\",\"product_code\":\"3296\",\"product_name\":\"MELATONIN  GOOD NEIGHBOUR PHRM\",\"option_id\":null,\"net_unit_cost\":\"61.9200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"123.8400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"61.9200\",\"real_unit_cost\":\"61.9200\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"61.9200\"},{\"id\":\"27417\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5151\",\"product_code\":\"3297\",\"product_name\":\"LUTEIN SOFTGEL MASON\",\"option_id\":null,\"net_unit_cost\":\"62.0200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"124.0400\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"62.0200\",\"real_unit_cost\":\"62.0200\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"62.0200\"},{\"id\":\"27418\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5152\",\"product_code\":\"3298\",\"product_name\":\"OMEGA 3 1000 EPA\",\"option_id\":null,\"net_unit_cost\":\"24.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"24.8000\",\"real_unit_cost\":\"24.8000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"24.8000\"},{\"id\":\"27419\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5153\",\"product_code\":\"3299\",\"product_name\":\"ONE A DAY MEN 50+ 65CT\",\"option_id\":null,\"net_unit_cost\":\"9.9200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"49.6000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"9.9200\",\"real_unit_cost\":\"9.9200\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"9.9200\"},{\"id\":\"27420\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5154\",\"product_code\":\"3300\",\"product_name\":\"MUPIROCIN OINT\",\"option_id\":null,\"net_unit_cost\":\"1.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"2.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"1.0000\",\"real_unit_cost\":\"1.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.0000\"},{\"id\":\"27421\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5155\",\"product_code\":\"3301\",\"product_name\":\"LORSATAN 100MG EXETER\",\"option_id\":null,\"net_unit_cost\":\"5.6200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"5.6200\",\"real_unit_cost\":\"5.6200\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.6200\"},{\"id\":\"27422\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5156\",\"product_code\":\"3302\",\"product_name\":\"BELLA AQUA WATER M\\/S\",\"option_id\":null,\"net_unit_cost\":\"5.2000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"5.2000\",\"real_unit_cost\":\"5.2000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.2000\"},{\"id\":\"27423\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5157\",\"product_code\":\"3303\",\"product_name\":\"CEFTRIA DOR 1000\",\"option_id\":null,\"net_unit_cost\":\"7.9400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"31.7600\",\"quantity_balance\":\"4.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"7.9400\",\"real_unit_cost\":\"7.9400\",\"quantity_received\":\"4.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"4.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.9400\"},{\"id\":\"27424\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5158\",\"product_code\":\"3304\",\"product_name\":\"CEFURO DOR 750\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"60.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"20.0000\"},{\"id\":\"27425\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5159\",\"product_code\":\"3305\",\"product_name\":\"LUEX CHILD CHESTY\",\"option_id\":null,\"net_unit_cost\":\"45.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"90.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"45.0000\",\"real_unit_cost\":\"45.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"45.0000\"},{\"id\":\"27426\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5160\",\"product_code\":\"3306\",\"product_name\":\"CREST CHARCOAL TOOTHPASTE\",\"option_id\":null,\"net_unit_cost\":\"4.9900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"89.8200\",\"quantity_balance\":\"18.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"4.9900\",\"real_unit_cost\":\"4.9900\",\"quantity_received\":\"18.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"18.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.9900\"},{\"id\":\"27427\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5161\",\"product_code\":\"3307\",\"product_name\":\"LISTERINE MOUNTH WASH 1L\",\"option_id\":null,\"net_unit_cost\":\"6.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"6.0000\",\"real_unit_cost\":\"6.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.0000\"},{\"id\":\"27428\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5162\",\"product_code\":\"3308\",\"product_name\":\"FLUXACIN CAPS 500MG\",\"option_id\":null,\"net_unit_cost\":\"1.1400\",\"product_selling_price\":\"0.0000\",\"quantity\":\"43.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"49.0200\",\"quantity_balance\":\"43.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"1.1400\",\"real_unit_cost\":\"1.1400\",\"quantity_received\":\"43.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"43.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.1400\"},{\"id\":\"27429\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5163\",\"product_code\":\"3309\",\"product_name\":\"FERROUS SULPHATE 200MG\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"18.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"270.0000\",\"quantity_balance\":\"18.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"15.0000\",\"real_unit_cost\":\"15.0000\",\"quantity_received\":\"18.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"18.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"27430\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5164\",\"product_code\":\"3310\",\"product_name\":\"DICLONOVA 100MG\",\"option_id\":null,\"net_unit_cost\":\"25.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"10.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"250.0000\",\"quantity_balance\":\"10.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"25.0000\",\"real_unit_cost\":\"25.0000\",\"quantity_received\":\"10.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"10.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"25.0000\"},{\"id\":\"27431\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5165\",\"product_code\":\"3311\",\"product_name\":\"HERBAL TEA\",\"option_id\":null,\"net_unit_cost\":\"3.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"18.0000\",\"quantity_balance\":\"6.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"3.0000\",\"real_unit_cost\":\"3.0000\",\"quantity_received\":\"6.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"6.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.0000\"},{\"id\":\"27432\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5166\",\"product_code\":\"3312\",\"product_name\":\"SWEET ALMOND\",\"option_id\":null,\"net_unit_cost\":\"10.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"9.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"90.0000\",\"quantity_balance\":\"9.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"10.0000\",\"real_unit_cost\":\"10.0000\",\"quantity_received\":\"9.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"9.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.0000\"},{\"id\":\"27433\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5167\",\"product_code\":\"3313\",\"product_name\":\"CLOVES\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"15.0000\",\"real_unit_cost\":\"15.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"27434\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5168\",\"product_code\":\"3314\",\"product_name\":\"CHIA SEED\",\"option_id\":null,\"net_unit_cost\":\"5.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"11.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"5.5000\",\"real_unit_cost\":\"5.5000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.5000\"},{\"id\":\"27435\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5169\",\"product_code\":\"3315\",\"product_name\":\"GLODEN RAISON\",\"option_id\":null,\"net_unit_cost\":\"15.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"75.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"15.0000\",\"real_unit_cost\":\"15.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"15.0000\"},{\"id\":\"27436\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5170\",\"product_code\":\"3316\",\"product_name\":\"BULLET ENERGY DRINK\",\"option_id\":null,\"net_unit_cost\":\"4.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"4.5000\",\"real_unit_cost\":\"4.5000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.5000\"},{\"id\":\"27437\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5171\",\"product_code\":\"3317\",\"product_name\":\"GOLDEN RAISON\",\"option_id\":null,\"net_unit_cost\":\"0.5600\",\"product_selling_price\":\"0.0000\",\"quantity\":\"33.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"18.4800\",\"quantity_balance\":\"33.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"0.5600\",\"real_unit_cost\":\"0.5600\",\"quantity_received\":\"33.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"33.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.5600\"},{\"id\":\"27438\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5172\",\"product_code\":\"3318\",\"product_name\":\"MARIE PANTY LINER\",\"option_id\":null,\"net_unit_cost\":\"4.4200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"35.3600\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"4.4200\",\"real_unit_cost\":\"4.4200\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.4200\"},{\"id\":\"27439\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5173\",\"product_code\":\"3319\",\"product_name\":\"LETACAM (PIROXICAM)\",\"option_id\":null,\"net_unit_cost\":\"4.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"13.2000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"4.4000\",\"real_unit_cost\":\"4.4000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.4000\"},{\"id\":\"27440\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5174\",\"product_code\":\"3320\",\"product_name\":\"LETAVIN TAB 500MG\",\"option_id\":null,\"net_unit_cost\":\"0.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"40.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"20.0000\",\"quantity_balance\":\"40.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"0.5000\",\"real_unit_cost\":\"0.5000\",\"quantity_received\":\"40.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"40.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"0.5000\"},{\"id\":\"27441\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5175\",\"product_code\":\"3321\",\"product_name\":\"KOFOF ADULT SYRUP\",\"option_id\":null,\"net_unit_cost\":\"3.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"3.5000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.5000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.5000\"},{\"id\":\"27442\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5176\",\"product_code\":\"3322\",\"product_name\":\"METFORMIN 500MG OA&J\",\"option_id\":null,\"net_unit_cost\":\"3.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"3.5000\",\"real_unit_cost\":\"3.5000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"3.5000\"},{\"id\":\"27443\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5177\",\"product_code\":\"3323\",\"product_name\":\"CEFUROXINE 750 INJ\",\"option_id\":null,\"net_unit_cost\":\"1.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"8.0000\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"1.0000\",\"real_unit_cost\":\"1.0000\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.0000\"},{\"id\":\"27444\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5178\",\"product_code\":\"3324\",\"product_name\":\"CEFTRIAZONE 1G INJ\",\"option_id\":null,\"net_unit_cost\":\"27.1000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"54.2000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"27.1000\",\"real_unit_cost\":\"27.1000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"27.1000\"},{\"id\":\"27445\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5179\",\"product_code\":\"3325\",\"product_name\":\"ENTRAMOL SINGLES\",\"option_id\":null,\"net_unit_cost\":\"5.4000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"5.4000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"5.4000\",\"real_unit_cost\":\"5.4000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.4000\"},{\"id\":\"27446\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5180\",\"product_code\":\"3326\",\"product_name\":\"S\\/S SEAS C.L.O 30\'S\",\"option_id\":null,\"net_unit_cost\":\"10.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"21.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"10.5000\",\"real_unit_cost\":\"10.5000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.5000\"},{\"id\":\"27447\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5181\",\"product_code\":\"3327\",\"product_name\":\"LUMETHER SUSP\",\"option_id\":null,\"net_unit_cost\":\"5.3000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"63.6000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"5.3000\",\"real_unit_cost\":\"5.3000\",\"quantity_received\":\"12.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.3000\"},{\"id\":\"27448\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5182\",\"product_code\":\"3328\",\"product_name\":\"ADOM MALAKARE\",\"option_id\":null,\"net_unit_cost\":\"4.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"12.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"55.2000\",\"quantity_balance\":\"12.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"4.6000\",\"real_unit_cost\":\"4.6000\",\"quantity_received\":\"12.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"12.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.6000\"},{\"id\":\"27449\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5183\",\"product_code\":\"3329\",\"product_name\":\"SNICKERS S\\/S\",\"option_id\":null,\"net_unit_cost\":\"11.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"22.0000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"11.0000\",\"real_unit_cost\":\"11.0000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"11.0000\"},{\"id\":\"27450\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5184\",\"product_code\":\"3330\",\"product_name\":\"SKITTLES\",\"option_id\":null,\"net_unit_cost\":\"20.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"7.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"140.0000\",\"quantity_balance\":\"7.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"20.0000\",\"real_unit_cost\":\"20.0000\",\"quantity_received\":\"7.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"7.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"20.0000\"},{\"id\":\"27451\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5185\",\"product_code\":\"3331\",\"product_name\":\"JOHNSON BABY OIL S\\/S\",\"option_id\":null,\"net_unit_cost\":\"6.8700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"8.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"54.9600\",\"quantity_balance\":\"8.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"6.8700\",\"real_unit_cost\":\"6.8700\",\"quantity_received\":\"8.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"8.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"6.8700\"},{\"id\":\"27452\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5186\",\"product_code\":\"3332\",\"product_name\":\"ALMOND SEED\",\"option_id\":null,\"net_unit_cost\":\"33.4700\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"33.4700\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"33.4700\",\"real_unit_cost\":\"33.4700\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"33.4700\"},{\"id\":\"27453\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5187\",\"product_code\":\"3333\",\"product_name\":\"MALAR 2 DS\",\"option_id\":null,\"net_unit_cost\":\"12.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"12.8000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"12.8000\",\"real_unit_cost\":\"12.8000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"12.8000\"},{\"id\":\"27454\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5188\",\"product_code\":\"3334\",\"product_name\":\"PROMAN 50+\",\"option_id\":null,\"net_unit_cost\":\"5.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"5.0000\",\"real_unit_cost\":\"5.0000\",\"quantity_received\":\"0.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.0000\"},{\"id\":\"27455\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5189\",\"product_code\":\"3335\",\"product_name\":\"HYDROCORTISONE CREAM\",\"option_id\":null,\"net_unit_cost\":\"1.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"32.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"1.6000\",\"real_unit_cost\":\"1.6000\",\"quantity_received\":\"20.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.6000\"},{\"id\":\"27456\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5190\",\"product_code\":\"3336\",\"product_name\":\"WELCH DRINK SMALL\",\"option_id\":null,\"net_unit_cost\":\"7.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"35.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"7.0000\",\"real_unit_cost\":\"7.0000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"7.0000\"},{\"id\":\"27457\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5191\",\"product_code\":\"3337\",\"product_name\":\"DORCO RAZOR\",\"option_id\":null,\"net_unit_cost\":\"1.8000\",\"product_selling_price\":\"3.0000\",\"quantity\":\"20.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"36.0000\",\"quantity_balance\":\"20.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"1.8000\",\"real_unit_cost\":\"1.8000\",\"quantity_received\":\"20.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"20.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.8000\"},{\"id\":\"27458\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5192\",\"product_code\":\"3338\",\"product_name\":\"ALVITE CAPS\",\"option_id\":null,\"net_unit_cost\":\"19.8000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"39.6000\",\"quantity_balance\":\"2.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"19.8000\",\"real_unit_cost\":\"19.8000\",\"quantity_received\":\"2.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"2.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"19.8000\"},{\"id\":\"27459\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5193\",\"product_code\":\"3339\",\"product_name\":\"MENTOS CHN\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"50.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"200.0000\",\"quantity_balance\":\"50.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"4.0000\",\"real_unit_cost\":\"4.0000\",\"quantity_received\":\"50.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"50.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"27460\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5194\",\"product_code\":\"3340\",\"product_name\":\"SEPTILIN\",\"option_id\":null,\"net_unit_cost\":\"5.5900\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"16.7700\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"5.5900\",\"real_unit_cost\":\"5.5900\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"5.5900\"},{\"id\":\"27461\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5195\",\"product_code\":\"3341\",\"product_name\":\"TRO XIME CEFUROXINE 750\",\"option_id\":null,\"net_unit_cost\":\"4.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"12.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"4.0000\",\"real_unit_cost\":\"4.0000\",\"quantity_received\":\"3.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.0000\"},{\"id\":\"27462\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5196\",\"product_code\":\"3342\",\"product_name\":\"ECL ANTACID\",\"option_id\":null,\"net_unit_cost\":\"4.3200\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"21.6000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"4.3200\",\"real_unit_cost\":\"4.3200\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"4.3200\"},{\"id\":\"27463\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5197\",\"product_code\":\"3343\",\"product_name\":\"KOFFEX C\",\"option_id\":null,\"net_unit_cost\":\"1.6000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"8.0000\",\"quantity_balance\":\"5.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"1.6000\",\"real_unit_cost\":\"1.6000\",\"quantity_received\":\"5.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"5.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"1.6000\"},{\"id\":\"27464\",\"purchase_id\":\"200\",\"transfer_id\":null,\"product_id\":\"5198\",\"product_code\":\"3344\",\"product_name\":\"RONFIT SYRUP\",\"option_id\":null,\"net_unit_cost\":\"68.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":null,\"item_discount\":\"0.0000\",\"expiry\":null,\"subtotal\":\"68.0000\",\"quantity_balance\":\"1.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"68.0000\",\"real_unit_cost\":\"68.0000\",\"quantity_received\":\"1.0000\",\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"1.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"68.0000\"}]}', '2021-08-21 05:21:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (450, 'Purchase is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"199\",\"reference_no\":\"LAK-0001\",\"date\":\"2021-08-20 19:04:00\",\"supplier_id\":\"2\",\"supplier\":\"Supplier Company Name\",\"warehouse_id\":\"1\",\"note\":\"\",\"total\":\"141.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"order_discount\":\"0.0000\",\"total_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":null,\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"141.0000\",\"paid\":\"0.0000\",\"status\":\"received\",\"payment_status\":\"pending\",\"created_by\":\"0\",\"updated_by\":null,\"updated_at\":null,\"attachment\":\"0\",\"payment_term\":null,\"due_date\":null,\"return_id\":null,\"surcharge\":\"0.0000\",\"return_purchase_ref\":null,\"purchase_id\":null,\"return_purchase_total\":\"0.0000\",\"cgst\":null,\"sgst\":null,\"igst\":null},\"items\":[{\"id\":\"25196\",\"purchase_id\":\"199\",\"transfer_id\":null,\"product_id\":\"3086\",\"product_code\":\"5010058089785\",\"product_name\":\"PREGNACARE 19S\",\"option_id\":null,\"net_unit_cost\":\"47.0000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"141.0000\",\"quantity_balance\":\"3.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"47.0000\",\"real_unit_cost\":\"47.0000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"3.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"47.0000\"},{\"id\":\"25197\",\"purchase_id\":\"199\",\"transfer_id\":null,\"product_id\":\"3087\",\"product_code\":\"8906009234915\",\"product_name\":\"LONART FORTE TABS\",\"option_id\":null,\"net_unit_cost\":\"10.5000\",\"product_selling_price\":\"0.0000\",\"quantity\":\"0.0000\",\"warehouse_id\":\"1\",\"item_tax\":\"0.0000\",\"tax_rate_id\":\"1\",\"tax\":\"0\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"expiry\":\"0000-00-00\",\"subtotal\":\"0.0000\",\"quantity_balance\":\"0.0000\",\"date\":\"2021-08-20\",\"status\":\"received\",\"unit_cost\":\"10.5000\",\"real_unit_cost\":\"10.5000\",\"quantity_received\":null,\"supplier_part_no\":null,\"purchase_item_id\":null,\"product_unit_id\":\"1\",\"product_unit_code\":\"pc\",\"unit_quantity\":\"0.0000\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"base_unit_cost\":\"10.5000\"}]}', '2021-08-21 05:21:56');


#
# 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>.</p>', '2014-08-15 09:00: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,
  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`) VALUES (1, '2015-03-01', 5, 1, 6, 6, 1063, 1, 1061, 1, 1, 1, 1, 3);


#
# 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=1062 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 (16, '2021-04-12 16:30:56', 16, NULL, NULL, 'IPAY2021/04/0016', NULL, 'cash', '', '', '', '', '', '', '39.5000', NULL, 7, NULL, 'received', '', '39.5000', '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, '2021-04-12 16:35:48', 17, NULL, NULL, 'IPAY2021/04/0017', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 7, NULL, 'received', '', '7.5000', '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, '2021-04-12 16:38:39', 18, NULL, NULL, 'IPAY2021/04/0018', NULL, 'cash', '', '', '', '', '', '', '1.3000', NULL, 6, NULL, 'received', '', '1.3000', '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, '2021-04-12 19:18:05', 19, NULL, NULL, 'IPAY2021/04/0019', NULL, 'cash', '', '', '', '', '', '', '74.5000', NULL, 7, NULL, 'received', '', '74.5000', '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, '2021-04-13 11:45:33', 20, NULL, NULL, 'IPAY2021/04/0020', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 7, NULL, 'received', '', '24.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, '2021-04-13 17:58:30', 21, NULL, NULL, 'IPAY2021/04/0021', NULL, 'cash', '', '', '', '', '', '', '68.5000', NULL, 6, NULL, 'received', '', '68.5000', '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, '2021-04-13 17:59:05', 22, NULL, NULL, 'IPAY2021/04/0022', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 6, NULL, 'received', '', '30.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, '2021-04-13 18:12:55', 23, NULL, NULL, 'IPAY2021/04/0023', NULL, 'cash', '', '', '', '', '', '', '33.5000', NULL, 6, NULL, 'received', '', '33.5000', '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, '2021-04-13 18:18:22', 24, NULL, NULL, 'IPAY2021/04/0024', NULL, 'cash', '', '', '', '', '', '', '42.5000', NULL, 6, NULL, 'received', '', '42.5000', '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, '2021-04-13 18:33:31', 25, NULL, NULL, 'IPAY2021/04/0025', NULL, 'cash', '', '', '', '', '', '', '39.0000', NULL, 6, NULL, 'received', '', '39.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, '2021-04-13 20:48:52', 26, NULL, NULL, 'IPAY2021/04/0026', NULL, 'cash', '', '', '', '', '', '', '78.5000', NULL, 6, NULL, 'received', '', '78.5000', '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, '2021-04-13 21:19:03', 27, NULL, NULL, 'IPAY2021/04/0027', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 6, NULL, 'received', '', '20.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, '2021-04-13 21:32:56', 28, NULL, NULL, 'IPAY2021/04/0028', NULL, 'cash', '', '', '', '', '', '', '31.5000', NULL, 6, NULL, 'received', '', '31.5000', '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, '2021-04-13 21:35:46', 29, NULL, NULL, 'IPAY2021/04/0029', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 6, NULL, 'received', '', '14.5000', '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, '2021-04-13 21:37:20', 30, NULL, NULL, 'IPAY2021/04/0030', NULL, 'cash', '', '', '', '', '', '', '47.0000', NULL, 6, NULL, 'received', '', '47.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, '2021-04-14 13:06:05', 31, NULL, NULL, 'IPAY2021/04/0031', NULL, 'cash', '', '', '', '', '', '', '31.8000', NULL, 7, NULL, 'received', '', '31.8000', '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, '2021-04-14 15:25:00', 32, NULL, NULL, 'IPAY2021/04/0032', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 7, NULL, 'received', '', '10.5000', '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, '2021-04-14 16:04:10', 33, NULL, NULL, 'IPAY2021/04/0033', NULL, 'cash', '', '', '', '', '', '', '59.5000', NULL, 7, NULL, 'received', '', '59.5000', '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, '2021-04-14 16:20:38', 34, NULL, NULL, 'IPAY2021/04/0034', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 7, NULL, 'received', '', '37.5000', '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, '2021-04-14 18:48:14', 35, NULL, NULL, 'IPAY2021/04/0035', NULL, 'cash', '', '', '', '', '', '', '42.7600', NULL, 7, NULL, 'received', '', '42.7600', '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, '2021-04-14 19:10:46', 36, NULL, NULL, 'IPAY2021/04/0036', NULL, 'cash', '', '', '', '', '', '', '20.5000', NULL, 7, NULL, 'received', '', '20.5000', '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, '2021-04-14 20:17:49', 37, NULL, NULL, 'IPAY2021/04/0037', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 7, NULL, 'received', '', '22.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, '2021-04-14 20:21:11', 38, NULL, NULL, 'IPAY2021/04/0038', NULL, 'cash', '', '', '', '', '', '', '46.6000', NULL, 7, NULL, 'received', '', '46.6000', '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, '2021-04-14 20:38:30', 39, NULL, NULL, 'IPAY2021/04/0039', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 7, NULL, 'received', '', '13.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, '2021-04-14 20:39:35', 40, NULL, NULL, 'IPAY2021/04/0040', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 7, NULL, 'received', '', '10.5000', '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, '2021-04-14 21:33:54', 41, NULL, NULL, 'IPAY2021/04/0041', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 7, NULL, 'received', '', '20.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, '2021-04-14 21:44:17', 42, NULL, NULL, 'IPAY2021/04/0042', NULL, 'cash', '', '', '', '', '', '', '49.0000', NULL, 7, NULL, 'received', '', '49.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, '2021-04-15 11:22:37', 43, NULL, NULL, 'IPAY2021/04/0043', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 7, NULL, 'received', '', '7.5000', '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, '2021-04-15 12:14:45', 44, NULL, NULL, 'IPAY2021/04/0044', NULL, 'cash', '', '', '', '', '', '', '200.8000', NULL, 7, NULL, 'received', '', '200.8000', '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, '2021-04-15 15:48:25', 45, NULL, NULL, 'IPAY2021/04/0045', NULL, 'cash', '', '', '', '', '', '', '66.6000', NULL, 7, NULL, 'received', '', '66.6000', '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, '2021-04-15 15:55:38', 46, NULL, NULL, 'IPAY2021/04/0046', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 7, NULL, 'received', '', '8.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, '2021-04-15 17:11:51', 47, NULL, NULL, 'IPAY2021/04/0047', NULL, 'cash', '', '', '', '', '', '', '33.5000', NULL, 7, NULL, 'received', '', '33.5000', '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, '2021-04-15 17:54:32', 48, NULL, NULL, 'IPAY2021/04/0048', NULL, 'cash', '', '', '', '', '', '', '23.5000', NULL, 7, NULL, 'received', '', '23.5000', '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, '2021-04-15 17:57:45', 49, NULL, NULL, 'IPAY2021/04/0049', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 7, NULL, 'received', '', '13.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, '2021-04-15 18:05:57', 50, NULL, NULL, 'IPAY2021/04/0050', NULL, 'cash', '', '', '', '', '', '', '73.0000', NULL, 7, NULL, 'received', '', '73.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, '2021-04-15 19:23:59', 51, NULL, NULL, 'IPAY2021/04/0051', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 7, NULL, 'received', '', '10.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-04-15 19:47:03', 52, NULL, NULL, 'IPAY2021/04/0052', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 7, NULL, 'received', '', '46.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 (53, '2021-04-15 20:20:31', 53, NULL, NULL, 'IPAY2021/04/0053', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 7, NULL, 'received', '', '24.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 (54, '2021-04-15 20:32:23', 54, NULL, NULL, 'IPAY2021/04/0054', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 7, NULL, 'received', '', '37.5000', '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 (55, '2021-04-15 20:55:07', 55, NULL, NULL, 'IPAY2021/04/0055', NULL, 'cash', '', '', '', '', '', '', '67.0000', NULL, 7, NULL, 'received', '', '67.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 (56, '2021-04-15 20:59:29', 56, NULL, NULL, 'IPAY2021/04/0056', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 7, NULL, 'received', '', '10.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 (57, '2021-04-16 10:44:26', 57, NULL, NULL, 'IPAY2021/04/0057', NULL, 'cash', '', '', '', '', '', '', '75.0000', NULL, 7, NULL, 'received', '', '75.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 (58, '2021-04-16 10:46:22', 58, NULL, NULL, 'IPAY2021/04/0058', NULL, 'cash', '', '', '', '', '', '', '141.0000', NULL, 7, NULL, 'received', '', '141.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 (59, '2021-04-16 10:56:32', 59, NULL, NULL, 'IPAY2021/04/0059', NULL, 'cash', '', '', '', '', '', '', '56.0000', NULL, 7, NULL, 'received', '', '56.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 (60, '2021-04-16 11:05:32', 60, NULL, NULL, 'IPAY2021/04/0060', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 7, NULL, 'received', '', '10.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 (61, '2021-04-16 11:59:37', 61, NULL, NULL, 'IPAY2021/04/0061', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 7, NULL, 'received', '', '10.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 (62, '2021-04-16 12:25:37', 62, NULL, NULL, 'IPAY2021/04/0062', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 7, NULL, 'received', '', '8.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 (63, '2021-04-16 16:21:47', 63, NULL, NULL, 'IPAY2021/04/0063', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 6, NULL, 'received', '', '14.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 (64, '2021-04-16 17:52:08', 64, NULL, NULL, 'IPAY2021/04/0064', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 6, NULL, 'received', '', '24.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 (65, '2021-04-16 18:08:35', 65, NULL, NULL, 'IPAY2021/04/0065', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 6, NULL, 'received', '', '22.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 (66, '2021-04-16 18:11:35', 66, NULL, NULL, 'IPAY2021/04/0066', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 6, NULL, 'received', '', '14.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 (67, '2021-04-16 18:27:51', 67, NULL, NULL, 'IPAY2021/04/0067', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 6, NULL, 'received', '', '6.5000', '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 (68, '2021-04-16 18:31:55', 68, NULL, NULL, 'IPAY2021/04/0068', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 6, NULL, 'received', '', '12.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 (69, '2021-04-16 20:25:02', 69, NULL, NULL, 'IPAY2021/04/0069', NULL, 'cash', '', '', '', '', '', '', '98.5000', NULL, 6, NULL, 'received', '', '98.5000', '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 (70, '2021-04-16 20:29:12', 70, NULL, NULL, 'IPAY2021/04/0070', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 6, NULL, 'received', '', '28.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 (71, '2021-04-16 21:56:51', 71, NULL, NULL, 'IPAY2021/04/0071', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 6, NULL, 'received', '', '50.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 (72, '2021-04-16 22:17:39', 72, NULL, NULL, 'IPAY2021/04/0072', NULL, 'cash', '', '', '', '', '', '', '116.0000', NULL, 6, NULL, 'received', '', '116.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 (73, '2021-04-17 16:01:38', 73, NULL, NULL, 'IPAY2021/04/0073', NULL, 'cash', '', '', '', '', '', '', '387.0000', NULL, 7, NULL, 'received', '', '387.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 (74, '2021-04-17 18:06:05', 74, NULL, NULL, 'IPAY2021/04/0074', NULL, 'cash', '', '', '', '', '', '', '200.5000', NULL, 6, NULL, 'received', '', '200.5000', '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 (75, '2021-04-17 19:23:54', 75, NULL, NULL, 'IPAY2021/04/0075', NULL, 'cash', '', '', '', '', '', '', '181.5000', NULL, 6, NULL, 'received', '', '181.5000', '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 (76, '2021-04-17 21:44:37', 76, NULL, NULL, 'IPAY2021/04/0076', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 6, NULL, 'received', '', '36.5000', '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 (77, '2021-04-17 21:53:09', 77, NULL, NULL, 'IPAY2021/04/0077', NULL, 'cash', '', '', '', '', '', '', '24.5000', NULL, 6, NULL, 'received', '', '24.5000', '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 (78, '2021-04-18 18:03:02', 78, NULL, NULL, 'IPAY2021/04/0078', NULL, 'cash', '', '', '', '', '', '', '118.0000', NULL, 7, NULL, 'received', '', '118.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 (79, '2021-04-18 18:49:51', 79, NULL, NULL, 'IPAY2021/04/0079', NULL, 'cash', '', '', '', '', '', '', '19.5000', NULL, 7, NULL, 'received', '', '19.5000', '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 (80, '2021-04-18 18:51:09', 80, NULL, NULL, 'IPAY2021/04/0080', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 7, NULL, 'received', '', '8.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 (81, '2021-04-18 20:21:13', 81, NULL, NULL, 'IPAY2021/04/0081', NULL, 'cash', '', '', '', '', '', '', '146.4000', NULL, 7, NULL, 'received', '', '146.4000', '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 (82, '2021-04-18 20:50:24', 82, NULL, NULL, 'IPAY2021/04/0082', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 7, NULL, 'received', '', '7.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 (83, '2021-04-18 21:31:08', 83, NULL, NULL, 'IPAY2021/04/0083', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 7, NULL, 'received', '', '5.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 (84, '2021-04-18 21:32:37', 84, NULL, NULL, 'IPAY2021/04/0084', NULL, 'cash', '', '', '', '', '', '', '19.0000', NULL, 7, NULL, 'received', '', '19.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 (85, '2021-04-18 22:08:20', 85, NULL, NULL, 'IPAY2021/04/0085', NULL, 'cash', '', '', '', '', '', '', '78.0000', NULL, 7, NULL, 'received', '', '78.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 (86, '2021-04-19 14:55:58', 86, NULL, NULL, 'IPAY2021/04/0086', NULL, 'cash', '', '', '', '', '', '', '186.5000', NULL, 7, NULL, 'received', '', '186.5000', '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 (87, '2021-04-19 18:37:43', 87, NULL, NULL, 'IPAY2021/04/0087', NULL, 'cash', '', '', '', '', '', '', '131.0000', NULL, 7, NULL, 'received', '', '131.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 (88, '2021-04-19 21:11:17', 88, NULL, NULL, 'IPAY2021/04/0088', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 6, NULL, 'received', '', '11.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 (89, '2021-04-19 21:25:38', 89, NULL, NULL, 'IPAY2021/04/0089', NULL, 'cash', '', '', '', '', '', '', '184.8000', NULL, 6, NULL, 'received', '', '184.8000', '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 (90, '2021-04-20 14:53:18', 90, NULL, NULL, 'IPAY2021/04/0090', NULL, 'cash', '', '', '', '', '', '', '79.5000', NULL, 7, NULL, 'received', '', '79.5000', '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 (91, '2021-04-20 18:11:29', 91, NULL, NULL, 'IPAY2021/04/0091', NULL, 'cash', '', '', '', '', '', '', '118.5000', NULL, 6, NULL, 'received', '', '118.5000', '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 (92, '2021-04-20 19:14:23', 92, NULL, NULL, 'IPAY2021/04/0092', NULL, 'cash', '', '', '', '', '', '', '19.5000', NULL, 6, NULL, 'received', '', '19.5000', '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 (93, '2021-04-20 19:15:28', 93, NULL, NULL, 'IPAY2021/04/0093', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 6, NULL, 'received', '', '1.5000', '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 (94, '2021-04-20 20:10:42', 94, NULL, NULL, 'IPAY2021/04/0094', NULL, 'cash', '', '', '', '', '', '', '279.0000', NULL, 6, NULL, 'received', '', '279.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 (95, '2021-04-20 20:32:12', 95, NULL, NULL, 'IPAY2021/04/0095', NULL, 'cash', '', '', '', '', '', '', '203.0000', NULL, 6, NULL, 'received', '', '203.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 (96, '2021-04-20 22:03:44', 96, NULL, NULL, 'IPAY2021/04/0096', NULL, 'cash', '', '', '', '', '', '', '151.0000', NULL, 6, NULL, 'received', '', '151.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 (97, '2021-04-21 13:20:05', 97, NULL, NULL, 'IPAY2021/04/0097', NULL, 'cash', '', '', '', '', '', '', '147.5000', NULL, 7, NULL, 'received', '', '147.5000', '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 (98, '2021-04-21 14:48:46', 98, NULL, NULL, 'IPAY2021/04/0098', NULL, 'cash', '', '', '', '', '', '', '49.0000', NULL, 7, NULL, 'received', '', '49.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 (99, '2021-04-22 08:12:06', 115, NULL, NULL, 'IPAY2021/04/0099', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 7, NULL, 'received', '', '8.5000', '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 (100, '2021-04-22 13:22:48', 118, NULL, NULL, 'IPAY2021/04/0100', NULL, 'cash', '', '', '', '', '', '', '92.5000', NULL, 7, NULL, 'received', '', '92.5000', '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 (101, '2021-04-22 14:38:11', 121, NULL, NULL, 'IPAY2021/04/0101', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 7, NULL, 'received', '', '7.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 (102, '2021-04-22 17:27:49', 122, NULL, NULL, 'IPAY2021/04/0102', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 7, NULL, 'received', '', '15.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 (103, '2021-04-22 19:48:13', 123, NULL, NULL, 'IPAY2021/04/0103', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 7, NULL, 'received', '', '2.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 (104, '2021-04-22 19:58:35', 124, NULL, NULL, 'IPAY2021/04/0104', NULL, 'cash', '', '', '', '', '', '', '339.6000', NULL, 7, NULL, 'received', '', '339.6000', '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 (105, '2021-04-22 21:29:03', 125, NULL, NULL, 'IPAY2021/04/0105', NULL, 'cash', '', '', '', '', '', '', '204.5000', NULL, 7, NULL, 'received', '', '204.5000', '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 (106, '2021-04-22 21:34:46', 126, NULL, NULL, 'IPAY2021/04/0106', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 7, NULL, 'received', '', '29.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 (107, '2021-04-22 21:40:25', 127, NULL, NULL, 'IPAY2021/04/0107', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 7, NULL, 'received', '', '6.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 (108, '2021-04-23 09:16:21', 128, NULL, NULL, 'IPAY2021/04/0108', NULL, 'cash', '', '', '', '', '', '', '161.0000', NULL, 7, NULL, 'received', '', '161.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 (109, '2021-04-23 09:48:40', 129, NULL, NULL, 'IPAY2021/04/0109', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 7, NULL, 'received', '', '12.5000', '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 (110, '2021-04-23 11:44:05', 130, NULL, NULL, 'IPAY2021/04/0110', NULL, 'cash', '', '', '', '', '', '', '28.5000', NULL, 7, NULL, 'received', '', '28.5000', '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 (111, '2021-04-23 15:16:02', 131, NULL, NULL, 'IPAY2021/04/0111', NULL, 'cash', '', '', '', '', '', '', '24.5000', NULL, 7, NULL, 'received', '', '24.5000', '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 (112, '2021-04-23 16:50:21', 132, NULL, NULL, 'IPAY2021/04/0112', NULL, 'cash', '', '', '', '', '', '', '38.0000', NULL, 7, NULL, 'received', '', '38.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 (113, '2021-04-23 17:40:26', 133, NULL, NULL, 'IPAY2021/04/0113', NULL, 'cash', '', '', '', '', '', '', '217.0000', NULL, 7, NULL, 'received', '', '217.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 (114, '2021-04-23 20:44:13', 134, NULL, NULL, 'IPAY2021/04/0114', NULL, 'cash', '', '', '', '', '', '', '199.0000', NULL, 7, NULL, 'received', '', '199.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 (115, '2021-04-23 21:11:47', 135, NULL, NULL, 'IPAY2021/04/0115', NULL, 'cash', '', '', '', '', '', '', '129.5000', NULL, 7, NULL, 'received', '', '129.5000', '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 (116, '2021-04-23 21:52:49', 136, NULL, NULL, 'IPAY2021/04/0116', NULL, 'cash', '', '', '', '', '', '', '117.0000', NULL, 7, NULL, 'received', '', '117.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 (117, '2021-04-23 21:59:59', 137, NULL, NULL, 'IPAY2021/04/0117', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 7, NULL, 'received', '', '11.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 (118, '2021-04-24 10:33:21', 138, NULL, NULL, 'IPAY2021/04/0118', NULL, 'cash', '', '', '', '', '', '', '460.8000', NULL, 7, NULL, 'received', '', '460.8000', '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 (119, '2021-04-24 11:49:53', 139, NULL, NULL, 'IPAY2021/04/0119', NULL, 'cash', '', '', '', '', '', '', '63.5000', NULL, 7, NULL, 'received', '', '63.5000', '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 (120, '2021-04-24 12:31:20', 140, NULL, NULL, 'IPAY2021/04/0120', NULL, 'cash', '', '', '', '', '', '', '52.0000', NULL, 7, NULL, 'received', '', '52.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 (121, '2021-04-24 15:16:05', 141, NULL, NULL, 'IPAY2021/04/0121', NULL, 'cash', '', '', '', '', '', '', '67.5000', NULL, 7, NULL, 'received', '', '67.5000', '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 (122, '2021-04-24 15:25:39', 142, NULL, NULL, 'IPAY2021/04/0122', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 7, NULL, 'received', '', '10.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 (123, '2021-04-24 16:45:34', 143, NULL, NULL, 'IPAY2021/04/0123', NULL, 'cash', '', '', '', '', '', '', '39.0000', NULL, 7, NULL, 'received', '', '39.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 (124, '2021-04-24 19:08:48', 144, NULL, NULL, 'IPAY2021/04/0124', NULL, 'cash', '', '', '', '', '', '', '216.0000', NULL, 6, NULL, 'received', '', '216.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 (125, '2021-04-24 22:04:58', 145, NULL, NULL, 'IPAY2021/04/0125', NULL, 'cash', '', '', '', '', '', '', '170.5000', NULL, 6, NULL, 'received', '', '170.5000', '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 (126, '2021-04-25 19:04:33', 146, NULL, NULL, 'IPAY2021/04/0126', NULL, 'cash', '', '', '', '', '', '', '312.3000', NULL, 7, NULL, 'received', '', '312.3000', '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 (127, '2021-04-25 20:02:18', 151, NULL, NULL, 'IPAY2021/04/0127', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 7, NULL, 'received', '', '12.5000', '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 (128, '2021-04-25 20:05:24', 154, NULL, NULL, 'IPAY2021/04/0128', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 7, NULL, 'received', '', '1.5000', '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 (129, '2021-04-25 20:08:39', 157, NULL, NULL, 'IPAY2021/04/0129', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 7, NULL, 'received', '', '18.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 (130, '2021-04-25 20:09:20', 158, NULL, NULL, 'IPAY2021/04/0130', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 7, NULL, 'received', '', '18.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 (131, '2021-04-25 20:09:43', 159, NULL, NULL, 'IPAY2021/04/0131', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 7, NULL, 'received', '', '9.5000', '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 (132, '2021-04-25 20:10:34', 160, NULL, NULL, 'IPAY2021/04/0132', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 7, NULL, 'received', '', '4.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 (133, '2021-04-25 20:10:57', 161, NULL, NULL, 'IPAY2021/04/0133', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 7, NULL, 'received', '', '8.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 (134, '2021-04-25 20:11:16', 162, NULL, NULL, 'IPAY2021/04/0134', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 7, NULL, 'received', '', '18.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 (135, '2021-04-25 20:11:36', 163, NULL, NULL, 'IPAY2021/04/0135', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 7, NULL, 'received', '', '6.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 (136, '2021-04-25 20:11:53', 164, NULL, NULL, 'IPAY2021/04/0136', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 7, NULL, 'received', '', '9.5000', '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 (137, '2021-04-25 20:12:39', 165, NULL, NULL, 'IPAY2021/04/0137', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 7, NULL, 'received', '', '36.5000', '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 (138, '2021-04-25 20:17:34', 166, NULL, NULL, 'IPAY2021/04/0138', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 7, NULL, 'received', '', '13.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 (139, '2021-04-25 20:26:43', 167, NULL, NULL, 'IPAY2021/04/0139', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 7, NULL, 'received', '', '12.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 (140, '2021-04-25 20:26:53', 168, NULL, NULL, 'IPAY2021/04/0140', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 7, NULL, 'received', '', '12.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 (141, '2021-04-25 20:28:14', 169, NULL, NULL, 'IPAY2021/04/0141', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 7, NULL, 'received', '', '30.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 (142, '2021-04-25 20:41:18', 170, NULL, NULL, 'IPAY2021/04/0142', NULL, 'cash', '', '', '', '', '', '', '32.5000', NULL, 7, NULL, 'received', '', '32.5000', '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 (143, '2021-04-25 21:17:33', 171, NULL, NULL, 'IPAY2021/04/0143', NULL, 'cash', '', '', '', '', '', '', '21.0000', NULL, 7, NULL, 'received', '', '21.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 (144, '2021-04-25 21:25:43', 172, NULL, NULL, 'IPAY2021/04/0144', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 7, NULL, 'received', '', '2.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 (145, '2021-04-26 15:10:15', 173, NULL, NULL, 'IPAY2021/04/0145', NULL, 'cash', '', '', '', '', '', '', '105.9000', NULL, 7, NULL, 'received', '', '105.9000', '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 (146, '2021-04-26 19:22:15', 174, NULL, NULL, 'IPAY2021/04/0146', NULL, 'cash', '', '', '', '', '', '', '43.0000', NULL, 7, NULL, 'received', '', '43.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 (147, '2021-04-26 20:27:22', 175, NULL, NULL, 'IPAY2021/04/0147', NULL, 'cash', '', '', '', '', '', '', '164.6800', NULL, 7, NULL, 'received', '', '164.6800', '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 (148, '2021-04-26 21:51:42', 176, NULL, NULL, 'IPAY2021/04/0148', NULL, 'cash', '', '', '', '', '', '', '102.0000', NULL, 7, NULL, 'received', '', '102.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 (149, '2021-04-28 20:26:11', 177, NULL, NULL, 'IPAY2021/04/0149', NULL, 'cash', '', '', '', '', '', '', '138.7000', NULL, 6, NULL, 'received', '', '138.7000', '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 (150, '2021-04-29 14:31:47', 178, NULL, NULL, 'IPAY2021/04/0150', NULL, 'cash', '', '', '', '', '', '', '118.7000', NULL, 7, NULL, 'received', '', '118.7000', '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 (151, '2021-04-29 20:44:48', 179, NULL, NULL, 'IPAY2021/04/0151', NULL, 'cash', '', '', '', '', '', '', '250.5000', NULL, 6, NULL, 'received', '', '250.5000', '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 (152, '2021-04-29 21:56:32', 180, NULL, NULL, 'IPAY2021/04/0152', NULL, 'cash', '', '', '', '', '', '', '77.5000', NULL, 6, NULL, 'received', '', '77.5000', '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 (153, '2021-04-30 13:49:13', 181, NULL, NULL, 'IPAY2021/04/0153', NULL, 'cash', '', '', '', '', '', '', '122.0000', NULL, 7, NULL, 'received', '', '122.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 (154, '2021-04-30 14:14:13', 182, NULL, NULL, 'IPAY2021/04/0154', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 7, NULL, 'received', '', '24.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 (155, '2021-04-30 16:21:08', 183, NULL, NULL, 'IPAY2021/04/0155', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 6, NULL, 'received', '', '20.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 (156, '2021-04-30 19:19:05', 184, NULL, NULL, 'IPAY2021/04/0156', NULL, 'cash', '', '', '', '', '', '', '325.5000', NULL, 6, NULL, 'received', '', '325.5000', '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 (157, '2021-04-30 21:47:40', 185, NULL, NULL, 'IPAY2021/04/0157', NULL, 'cash', '', '', '', '', '', '', '433.0000', NULL, 6, NULL, 'received', '', '433.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 (158, '2021-05-01 10:57:11', 186, NULL, NULL, 'IPAY2021/05/0158', NULL, 'cash', '', '', '', '', '', '', '138.0000', NULL, 7, NULL, 'received', '', '138.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 (159, '2021-05-01 14:26:51', 187, NULL, NULL, 'IPAY2021/05/0159', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 7, NULL, 'received', '', '40.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 (160, '2021-05-01 15:33:33', 188, NULL, NULL, 'IPAY2021/05/0160', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 7, NULL, 'received', '', '20.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 (161, '2021-05-01 15:55:55', 189, NULL, NULL, 'IPAY2021/05/0161', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 7, NULL, 'received', '', '8.5000', '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 (162, '2021-05-01 16:36:08', 190, NULL, NULL, 'IPAY2021/05/0162', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 7, NULL, 'received', '', '2.5000', '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 (163, '2021-05-01 16:47:31', 191, NULL, NULL, 'IPAY2021/05/0163', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 7, NULL, 'received', '', '33.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 (164, '2021-05-01 20:38:37', 192, NULL, NULL, 'IPAY2021/05/0164', NULL, 'cash', '', '', '', '', '', '', '113.5000', NULL, 6, NULL, 'received', '', '113.5000', '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 (165, '2021-05-01 21:37:46', 193, NULL, NULL, 'IPAY2021/05/0165', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 6, NULL, 'received', '', '17.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 (166, '2021-05-01 21:41:51', 194, NULL, NULL, 'IPAY2021/05/0166', NULL, 'cash', '', '', '', '', '', '', '53.0000', NULL, 6, NULL, 'received', '', '53.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 (167, '2021-05-01 22:12:04', 195, NULL, NULL, 'IPAY2021/05/0167', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 6, NULL, 'received', '', '28.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 (168, '2021-05-02 20:03:16', 196, NULL, NULL, 'IPAY2021/05/0168', NULL, 'cash', '', '', '', '', '', '', '223.5000', NULL, 7, NULL, 'received', '', '223.5000', '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 (169, '2021-05-02 21:51:51', 197, NULL, NULL, 'IPAY2021/05/0169', NULL, 'cash', '', '', '', '', '', '', '25.5000', NULL, 7, NULL, 'received', '', '25.5000', '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 (170, '2021-05-03 14:43:40', 198, NULL, NULL, 'IPAY2021/05/0170', NULL, 'cash', '', '', '', '', '', '', '289.5000', NULL, 7, NULL, 'received', '', '289.5000', '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 (171, '2021-05-03 15:17:18', 199, NULL, NULL, 'IPAY2021/05/0171', NULL, 'cash', '', '', '', '', '', '', '42.0000', NULL, 6, NULL, 'received', '', '42.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 (172, '2021-05-03 16:57:49', 200, NULL, NULL, 'IPAY2021/05/0172', NULL, 'cash', '', '', '', '', '', '', '7.5000', NULL, 6, NULL, 'received', '', '7.5000', '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 (173, '2021-05-03 17:15:15', 201, NULL, NULL, 'IPAY2021/05/0173', NULL, 'cash', '', '', '', '', '', '', '43.0000', NULL, 6, NULL, 'received', '', '43.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 (174, '2021-05-04 14:44:16', 202, NULL, NULL, 'IPAY2021/05/0174', NULL, 'cash', '', '', '', '', '', '', '312.0000', NULL, 7, NULL, 'received', '', '312.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 (175, '2021-05-04 18:38:07', 203, NULL, NULL, 'IPAY2021/05/0175', NULL, 'cash', '', '', '', '', '', '', '156.5000', NULL, 6, NULL, 'received', '', '156.5000', '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 (176, '2021-05-05 15:01:52', 204, NULL, NULL, 'IPAY2021/05/0176', NULL, 'cash', '', '', '', '', '', '', '376.9000', NULL, 7, NULL, 'received', '', '376.9000', '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 (177, '2021-05-05 19:30:38', 205, NULL, NULL, 'IPAY2021/05/0177', NULL, 'cash', '', '', '', '', '', '', '358.5000', NULL, 6, NULL, 'received', '', '358.5000', '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 (178, '2021-05-05 20:53:31', 206, NULL, NULL, 'IPAY2021/05/0178', NULL, 'cash', '', '', '', '', '', '', '144.2500', NULL, 6, NULL, 'received', '', '144.2500', '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 (179, '2021-05-05 21:32:01', 207, NULL, NULL, 'IPAY2021/05/0179', NULL, 'cash', '', '', '', '', '', '', '68.1000', NULL, 6, NULL, 'received', '', '68.1000', '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 (180, '2021-05-05 21:56:25', 208, NULL, NULL, 'IPAY2021/05/0180', NULL, 'cash', '', '', '', '', '', '', '75.5000', NULL, 6, NULL, 'received', '', '75.5000', '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 (181, '2021-05-06 14:12:22', 209, NULL, NULL, 'IPAY2021/05/0181', NULL, 'cash', '', '', '', '', '', '', '180.0000', NULL, 7, NULL, 'received', '', '180.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 (182, '2021-05-06 15:19:10', 210, NULL, NULL, 'IPAY2021/05/0182', NULL, 'cash', '', '', '', '', '', '', '82.0000', NULL, 7, NULL, 'received', '', '82.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 (183, '2021-05-06 19:24:48', 211, NULL, NULL, 'IPAY2021/05/0183', NULL, 'cash', '', '', '', '', '', '', '394.7000', NULL, 6, NULL, 'received', '', '394.7000', '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 (184, '2021-05-07 16:40:05', 212, NULL, NULL, 'IPAY2021/05/0184', NULL, 'cash', '', '', '', '', '', '', '78.2000', NULL, 6, NULL, 'received', '', '78.2000', '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 (185, '2021-05-07 19:57:48', 213, NULL, NULL, 'IPAY2021/05/0185', NULL, 'cash', '', '', '', '', '', '', '557.0000', NULL, 6, NULL, 'received', '', '557.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 (186, '2021-05-07 21:33:36', 214, NULL, NULL, 'IPAY2021/05/0186', NULL, 'cash', '', '', '', '', '', '', '64.0000', NULL, 6, NULL, 'received', '', '64.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 (187, '2021-05-07 21:51:39', 215, NULL, NULL, 'IPAY2021/05/0187', NULL, 'cash', '', '', '', '', '', '', '51.5000', NULL, 6, NULL, 'received', '', '51.5000', '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 (188, '2021-05-08 14:32:01', 216, NULL, NULL, 'IPAY2021/05/0188', NULL, 'cash', '', '', '', '', '', '', '65.5000', NULL, 7, NULL, 'received', '', '65.5000', '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 (189, '2021-05-08 15:33:26', 217, NULL, NULL, 'IPAY2021/05/0189', NULL, 'cash', '', '', '', '', '', '', '23.5000', NULL, 7, NULL, 'received', '', '23.5000', '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 (190, '2021-05-08 19:52:36', 218, NULL, NULL, 'IPAY2021/05/0190', NULL, 'cash', '', '', '', '', '', '', '314.5000', NULL, 6, NULL, 'received', '', '314.5000', '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 (191, '2021-05-08 21:10:14', 219, NULL, NULL, 'IPAY2021/05/0191', NULL, 'cash', '', '', '', '', '', '', '101.0000', NULL, 6, NULL, 'received', '', '101.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 (192, '2021-05-08 21:16:55', 220, NULL, NULL, 'IPAY2021/05/0192', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 6, NULL, 'received', '', '5.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 (193, '2021-05-08 22:14:14', 221, NULL, NULL, 'IPAY2021/05/0193', NULL, 'cash', '', '', '', '', '', '', '113.5000', NULL, 6, NULL, 'received', '', '113.5000', '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 (194, '2021-05-09 20:41:43', 222, NULL, NULL, 'IPAY2021/05/0194', NULL, 'cash', '', '', '', '', '', '', '363.0000', NULL, 7, NULL, 'received', '', '363.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 (195, '2021-05-09 20:44:52', 223, NULL, NULL, 'IPAY2021/05/0195', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 7, NULL, 'received', '', '23.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 (196, '2021-05-09 21:30:59', 224, NULL, NULL, 'IPAY2021/05/0196', NULL, 'cash', '', '', '', '', '', '', '21.5000', NULL, 7, NULL, 'received', '', '21.5000', '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 (197, '2021-05-09 21:38:14', 225, NULL, NULL, 'IPAY2021/05/0197', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 7, NULL, 'received', '', '37.5000', '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 (198, '2021-05-09 21:58:36', 226, NULL, NULL, 'IPAY2021/05/0198', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 7, NULL, 'received', '', '20.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 (199, '2021-05-10 14:01:30', 227, NULL, NULL, 'IPAY2021/05/0199', NULL, 'cash', '', '', '', '', '', '', '354.3000', NULL, 7, NULL, 'received', '', '354.3000', '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 (200, '2021-05-10 14:03:22', 228, NULL, NULL, 'IPAY2021/05/0200', NULL, 'cash', '', '', '', '', '', '', '354.3000', NULL, 7, NULL, 'received', '', '354.3000', '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 (201, '2021-05-10 14:48:04', 229, NULL, NULL, 'IPAY2021/05/0201', NULL, 'cash', '', '', '', '', '', '', '31.3000', NULL, 7, NULL, 'received', '', '31.3000', '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 (202, '2021-05-10 15:05:17', 230, NULL, NULL, 'IPAY2021/05/0202', NULL, 'cash', '', '', '', '', '', '', '15.5000', NULL, 7, NULL, 'received', '', '15.5000', '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 (203, '2021-05-10 19:25:32', 231, NULL, NULL, 'IPAY2021/05/0203', NULL, 'cash', '', '', '', '', '', '', '74.5000', NULL, 6, NULL, 'received', '', '74.5000', '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 (204, '2021-05-10 19:29:16', 232, NULL, NULL, 'IPAY2021/05/0204', NULL, 'cash', '', '', '', '', '', '', '156.5000', NULL, 6, NULL, 'received', '', '156.5000', '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 (205, '2021-05-10 19:36:45', 233, NULL, NULL, 'IPAY2021/05/0205', NULL, 'cash', '', '', '', '', '', '', '158.5000', NULL, 6, NULL, 'received', '', '158.5000', '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 (206, '2021-05-10 20:50:12', 234, NULL, NULL, 'IPAY2021/05/0206', NULL, 'cash', '', '', '', '', '', '', '116.0000', NULL, 6, NULL, 'received', '', '116.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 (207, '2021-05-10 21:44:50', 235, NULL, NULL, 'IPAY2021/05/0207', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 6, NULL, 'received', '', '37.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 (208, '2021-05-10 21:57:14', 236, NULL, NULL, 'IPAY2021/05/0208', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 6, NULL, 'received', '', '9.5000', '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 (209, '2021-05-11 13:50:34', 237, NULL, NULL, 'IPAY2021/05/0209', NULL, 'cash', '', '', '', '', '', '', '221.0000', NULL, 8, NULL, 'received', '', '221.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 (210, '2021-05-11 14:40:20', 238, NULL, NULL, 'IPAY2021/05/0210', NULL, 'cash', '', '', '', '', '', '', '97.5000', NULL, 8, NULL, 'received', '', '97.5000', '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 (211, '2021-05-11 19:56:35', 239, NULL, NULL, 'IPAY2021/05/0211', NULL, 'cash', '', '', '', '', '', '', '281.8000', NULL, 8, NULL, 'received', '', '281.8000', '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 (212, '2021-05-11 21:29:46', 240, NULL, NULL, 'IPAY2021/05/0212', NULL, 'cash', '', '', '', '', '', '', '65.5000', NULL, 8, NULL, 'received', '', '65.5000', '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 (213, '2021-05-11 22:03:08', 241, NULL, NULL, 'IPAY2021/05/0213', NULL, 'cash', '', '', '', '', '', '', '77.0000', NULL, 8, NULL, 'received', '', '77.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 (214, '2021-05-12 14:37:00', 242, NULL, NULL, 'IPAY2021/05/0214', NULL, 'cash', '', '', '', '', '', '', '200.7000', NULL, 7, NULL, 'received', '', '200.7000', '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 (215, '2021-05-12 14:52:26', 243, NULL, NULL, 'IPAY2021/05/0215', NULL, 'cash', '', '', '', '', '', '', '60.7000', NULL, 7, NULL, 'received', '', '60.7000', '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 (216, '2021-05-12 18:56:24', 244, NULL, NULL, 'IPAY2021/05/0216', NULL, 'cash', '', '', '', '', '', '', '126.0000', NULL, 6, NULL, 'received', '', '126.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 (217, '2021-05-12 21:35:09', 245, NULL, NULL, 'IPAY2021/05/0217', NULL, 'cash', '', '', '', '', '', '', '342.4000', NULL, 6, NULL, 'received', '', '342.4000', '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 (218, '2021-05-12 21:53:55', 246, NULL, NULL, 'IPAY2021/05/0218', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 6, NULL, 'received', '', '36.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 (219, '2021-05-13 13:57:53', 248, NULL, NULL, 'IPAY2021/05/0219', NULL, 'cash', '', '', '', '', '', '', '374.8000', NULL, 7, NULL, 'received', '', '374.8000', '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 (220, '2021-05-13 14:37:02', 249, NULL, NULL, 'IPAY2021/05/0220', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 7, NULL, 'received', '', '2.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 (221, '2021-05-13 14:38:28', 250, NULL, NULL, 'IPAY2021/05/0221', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 7, NULL, 'received', '', '15.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 (222, '2021-05-13 19:56:33', 251, NULL, NULL, 'IPAY2021/05/0222', NULL, 'cash', '', '', '', '', '', '', '492.0000', NULL, 6, NULL, 'received', '', '492.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 (223, '2021-05-13 20:35:00', 252, NULL, NULL, 'IPAY2021/05/0223', NULL, 'cash', '', '', '', '', '', 'Visa', '-354.3000', NULL, 3, NULL, 'returned', NULL, '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 (224, '2021-05-13 20:54:27', 253, NULL, NULL, 'IPAY2021/05/0224', NULL, 'cash', '', '', '', '', '', '', '299.6000', NULL, 6, NULL, 'received', '', '299.6000', '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 (225, '2021-05-13 21:30:44', 254, NULL, NULL, 'IPAY2021/05/0225', NULL, 'cash', '', '', '', '', '', '', '-354.3000', NULL, 3, NULL, 'received', '', '-354.3000', '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 (226, '2021-05-13 21:37:00', 252, NULL, NULL, 'IPAY2021/05/0226', NULL, 'cash', '', '', '', '', '', 'Visa', '354.3000', NULL, 3, NULL, 'returned', '', '354.3000', '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 (227, '2021-05-13 22:15:36', 256, NULL, NULL, 'IPAY2021/05/0226', NULL, 'cash', '', '', '', '', '', '', '167.5000', NULL, 6, NULL, 'received', '', '167.5000', '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 (228, '2021-05-14 16:54:17', 257, NULL, NULL, 'IPAY2021/05/0227', NULL, 'cash', '', '', '', '', '', '', '197.1000', NULL, 6, NULL, 'received', '', '197.1000', '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 (229, '2021-05-14 17:00:24', 258, NULL, NULL, 'IPAY2021/05/0228', NULL, 'cash', '', '', '', '', '', '', '11.5000', NULL, 6, NULL, 'received', '', '11.5000', '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 (230, '2021-05-14 19:51:43', 259, NULL, NULL, 'IPAY2021/05/0229', NULL, 'cash', '', '', '', '', '', '', '223.7500', NULL, 6, NULL, 'received', '', '223.7500', '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 (231, '2021-05-14 20:38:07', 260, NULL, NULL, 'IPAY2021/05/0230', NULL, 'cash', '', '', '', '', '', '', '44.6000', NULL, 6, NULL, 'received', '', '44.6000', '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 (232, '2021-05-15 13:23:31', 262, NULL, NULL, 'IPAY2021/05/0231', NULL, 'cash', '', '', '', '', '', '', '351.0000', NULL, 7, NULL, 'received', '', '351.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 (233, '2021-05-15 14:24:03', 263, NULL, NULL, 'IPAY2021/05/0232', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 7, NULL, 'received', '', '26.5000', '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 (234, '2021-05-15 14:55:44', 264, NULL, NULL, 'IPAY2021/05/0233', NULL, 'cash', '', '', '', '', '', '', '179.0000', NULL, 7, NULL, 'received', '', '179.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 (235, '2021-05-15 15:01:51', 265, NULL, NULL, 'IPAY2021/05/0234', NULL, 'cash', '', '', '', '', '', '', '20.5000', NULL, 7, NULL, 'received', '', '20.5000', '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 (236, '2021-05-15 15:20:03', 266, NULL, NULL, 'IPAY2021/05/0235', NULL, 'cash', '', '', '', '', '', '', '51.0000', NULL, 7, NULL, 'received', '', '51.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 (237, '2021-05-15 16:13:03', 267, NULL, NULL, 'IPAY2021/05/0236', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 7, NULL, 'received', '', '3.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 (238, '2021-05-15 18:32:06', 268, NULL, NULL, 'IPAY2021/05/0237', NULL, 'cash', '', '', '', '', '', '', '478.8000', NULL, 7, NULL, 'received', '', '478.8000', '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 (239, '2021-05-15 20:19:13', 269, NULL, NULL, 'IPAY2021/05/0238', NULL, 'cash', '', '', '', '', '', '', '366.3000', NULL, 7, NULL, 'received', '', '366.3000', '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 (240, '2021-05-15 22:05:17', 270, NULL, NULL, 'IPAY2021/05/0239', NULL, 'cash', '', '', '', '', '', '', '90.5000', NULL, 7, NULL, 'received', '', '90.5000', '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 (241, '2021-05-16 18:46:17', 271, NULL, NULL, 'IPAY2021/05/0240', NULL, 'cash', '', '', '', '', '', '', '47.0000', NULL, 7, NULL, 'received', '', '47.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 (242, '2021-05-16 18:54:33', 272, NULL, NULL, 'IPAY2021/05/0241', NULL, 'cash', '', '', '', '', '', '', '275.4000', NULL, 7, NULL, 'received', '', '275.4000', '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 (243, '2021-05-16 21:31:56', 273, NULL, NULL, 'IPAY2021/05/0242', NULL, 'cash', '', '', '', '', '', '', '85.6000', NULL, 7, NULL, 'received', '', '85.6000', '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 (244, '2021-05-17 10:53:03', 274, NULL, NULL, 'IPAY2021/05/0243', NULL, 'cash', '', '', '', '', '', '', '68.0000', NULL, 7, NULL, 'received', '', '68.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 (245, '2021-05-17 15:00:11', 275, NULL, NULL, 'IPAY2021/05/0244', NULL, 'cash', '', '', '', '', '', '', '221.9500', NULL, 7, NULL, 'received', '', '221.9500', '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 (246, '2021-05-17 19:28:08', 276, NULL, NULL, 'IPAY2021/05/0245', NULL, 'cash', '', '', '', '', '', '', '344.8500', NULL, 6, NULL, 'received', '', '344.8500', '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 (247, '2021-05-17 19:51:27', 277, NULL, NULL, 'IPAY2021/05/0246', NULL, 'cash', '', '', '', '', '', '', '277.9000', NULL, 6, NULL, 'received', '', '277.9000', '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 (248, '2021-05-17 20:24:04', 278, NULL, NULL, 'IPAY2021/05/0247', NULL, 'cash', '', '', '', '', '', '', '109.0000', NULL, 6, NULL, 'received', '', '109.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 (249, '2021-05-17 20:51:41', 279, NULL, NULL, 'IPAY2021/05/0248', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 6, NULL, 'received', '', '33.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 (250, '2021-05-17 20:52:14', 280, NULL, NULL, 'IPAY2021/05/0249', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 6, NULL, 'received', '', '4.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 (251, '2021-05-17 20:59:32', 281, NULL, NULL, 'IPAY2021/05/0250', NULL, 'cash', '', '', '', '', '', '', '52.0000', NULL, 6, NULL, 'received', '', '52.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 (252, '2021-05-17 21:02:54', 282, NULL, NULL, 'IPAY2021/05/0251', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 6, NULL, 'received', '', '14.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 (253, '2021-05-17 21:53:19', 283, NULL, NULL, 'IPAY2021/05/0252', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 6, NULL, 'received', '', '18.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 (254, '2021-05-18 15:09:58', 284, NULL, NULL, 'IPAY2021/05/0253', NULL, 'cash', '', '', '', '', '', '', '214.2000', NULL, 7, NULL, 'received', '', '214.2000', '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 (255, '2021-05-18 15:12:18', 285, NULL, NULL, 'IPAY2021/05/0254', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 7, NULL, 'received', '', '1.5000', '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 (256, '2021-05-18 16:47:57', 286, NULL, NULL, 'IPAY2021/05/0255', NULL, 'cash', '', '', '', '', '', '', '12.5000', NULL, 7, NULL, 'received', '', '12.5000', '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 (257, '2021-05-18 16:49:31', 287, NULL, NULL, 'IPAY2021/05/0256', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 7, NULL, 'received', '', '10.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 (258, '2021-05-18 17:55:51', 288, NULL, NULL, 'IPAY2021/05/0257', NULL, 'cash', '', '', '', '', '', '', '240.0000', NULL, 7, NULL, 'received', '', '240.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 (259, '2021-05-18 19:18:36', 289, NULL, NULL, 'IPAY2021/05/0258', NULL, 'cash', '', '', '', '', '', '', '302.5000', NULL, 7, NULL, 'received', '', '302.5000', '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 (260, '2021-05-18 21:11:53', 290, NULL, NULL, 'IPAY2021/05/0259', NULL, 'cash', '', '', '', '', '', '', '135.0000', NULL, 7, NULL, 'received', '', '135.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 (261, '2021-05-18 22:15:26', 291, NULL, NULL, 'IPAY2021/05/0260', NULL, 'cash', '', '', '', '', '', '', '191.5000', NULL, 7, NULL, 'received', '', '191.5000', '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 (262, '2021-05-19 15:05:59', 292, NULL, NULL, 'IPAY2021/05/0261', NULL, 'cash', '', '', '', '', '', '', '117.0000', NULL, 7, NULL, 'received', '', '117.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 (263, '2021-05-19 18:42:21', 293, NULL, NULL, 'IPAY2021/05/0262', NULL, 'cash', '', '', '', '', '', '', '114.3800', NULL, 6, NULL, 'received', '', '114.3800', '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 (264, '2021-05-19 19:55:34', 294, NULL, NULL, 'IPAY2021/05/0263', NULL, 'cash', '', '', '', '', '', '', '174.0000', NULL, 6, NULL, 'received', '', '174.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 (265, '2021-05-19 20:03:18', 295, NULL, NULL, 'IPAY2021/05/0264', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 6, NULL, 'received', '', '25.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 (266, '2021-05-19 20:10:52', 296, NULL, NULL, 'IPAY2021/05/0265', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 6, NULL, 'received', '', '40.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 (267, '2021-05-19 21:52:07', 297, NULL, NULL, 'IPAY2021/05/0266', NULL, 'cash', '', '', '', '', '', '', '41.5000', NULL, 6, NULL, 'received', '', '41.5000', '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 (268, '2021-05-19 21:53:00', 298, NULL, NULL, 'IPAY2021/05/0267', NULL, 'cash', '', '', '', '', '', '', '45.0000', NULL, 6, NULL, 'received', '', '45.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 (269, '2021-05-20 14:17:38', 300, NULL, NULL, 'IPAY2021/05/0268', NULL, 'cash', '', '', '', '', '', '', '273.4000', NULL, 7, NULL, 'received', '', '273.4000', '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 (270, '2021-05-20 15:07:14', 301, NULL, NULL, 'IPAY2021/05/0269', NULL, 'cash', '', '', '', '', '', '', '35.5000', NULL, 7, NULL, 'received', '', '35.5000', '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 (271, '2021-05-20 15:13:29', 302, NULL, NULL, 'IPAY2021/05/0270', NULL, 'cash', '', '', '', '', '', '', '204.0000', NULL, 7, NULL, 'received', '', '204.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 (272, '2021-05-20 17:51:13', 303, NULL, NULL, 'IPAY2021/05/0271', NULL, 'cash', '', '', '', '', '', '', '290.0500', NULL, 7, NULL, 'received', '', '290.0500', '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 (273, '2021-05-20 19:37:08', 304, NULL, NULL, 'IPAY2021/05/0272', NULL, 'cash', '', '', '', '', '', '', '191.6000', NULL, 7, NULL, 'received', '', '191.6000', '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 (274, '2021-05-20 20:26:17', 305, NULL, NULL, 'IPAY2021/05/0273', NULL, 'cash', '', '', '', '', '', '', '219.0000', NULL, 7, NULL, 'received', '', '219.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 (275, '2021-05-20 20:30:47', 306, NULL, NULL, 'IPAY2021/05/0274', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 7, NULL, 'received', '', '2.5000', '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 (276, '2021-05-20 20:46:28', 307, NULL, NULL, 'IPAY2021/05/0275', NULL, 'cash', '', '', '', '', '', '', '44.5000', NULL, 7, NULL, 'received', '', '44.5000', '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 (277, '2021-05-20 20:48:22', 308, NULL, NULL, 'IPAY2021/05/0276', NULL, 'cash', '', '', '', '', '', '', '78.5000', NULL, 7, NULL, 'received', '', '78.5000', '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 (278, '2021-05-20 21:53:50', 309, NULL, NULL, 'IPAY2021/05/0277', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 7, NULL, 'received', '', '50.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 (279, '2021-05-21 16:29:53', 310, NULL, NULL, 'IPAY2021/05/0278', NULL, 'cash', '', '', '', '', '', '', '205.3800', NULL, 6, NULL, 'received', '', '205.3800', '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 (280, '2021-05-21 20:24:42', 311, NULL, NULL, 'IPAY2021/05/0279', NULL, 'cash', '', '', '', '', '', '', '504.4000', NULL, 6, NULL, 'received', '', '504.4000', '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 (281, '2021-05-21 20:25:39', 312, NULL, NULL, 'IPAY2021/05/0280', NULL, 'cash', '', '', '', '', '', '', '55.0000', NULL, 6, NULL, 'received', '', '55.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 (282, '2021-05-21 20:39:59', 313, NULL, NULL, 'IPAY2021/05/0281', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 6, NULL, 'received', '', '23.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 (283, '2021-05-21 21:08:56', 314, NULL, NULL, 'IPAY2021/05/0282', NULL, 'cash', '', '', '', '', '', '', '194.3000', NULL, 6, NULL, 'received', '', '194.3000', '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 (284, '2021-05-21 21:52:25', 315, NULL, NULL, 'IPAY2021/05/0283', NULL, 'cash', '', '', '', '', '', '', '51.5000', NULL, 6, NULL, 'received', '', '51.5000', '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 (285, '2021-05-22 11:00:04', 316, NULL, NULL, 'IPAY2021/05/0284', NULL, 'cash', '', '', '', '', '', '', '220.0000', NULL, 6, NULL, 'received', '', '220.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 (286, '2021-05-22 12:30:24', 317, NULL, NULL, 'IPAY2021/05/0285', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 6, NULL, 'received', '', '46.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 (287, '2021-05-22 14:08:16', 318, NULL, NULL, 'IPAY2021/05/0286', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 6, NULL, 'received', '', '46.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 (288, '2021-05-22 18:28:00', 319, NULL, NULL, 'IPAY2021/05/0287', NULL, 'cash', '', '', '', '', '', '', '299.1000', NULL, 7, NULL, 'received', '', '299.1000', '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 (289, '2021-05-22 20:23:07', 320, NULL, NULL, 'IPAY2021/05/0288', NULL, 'cash', '', '', '', '', '', '', '113.5000', NULL, 7, NULL, 'received', '', '113.5000', '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 (290, '2021-05-22 20:57:38', 321, NULL, NULL, 'IPAY2021/05/0289', NULL, 'cash', '', '', '', '', '', '', '73.0000', NULL, 7, NULL, 'received', '', '73.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 (291, '2021-05-22 21:30:32', 322, NULL, NULL, 'IPAY2021/05/0290', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 7, NULL, 'received', '', '13.5000', '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 (292, '2021-05-22 21:56:17', 323, NULL, NULL, 'IPAY2021/05/0291', NULL, 'cash', '', '', '', '', '', '', '75.4000', NULL, 7, NULL, 'received', '', '75.4000', '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 (293, '2021-05-23 19:43:03', 324, NULL, NULL, 'IPAY2021/05/0292', NULL, 'cash', '', '', '', '', '', '', '476.3000', NULL, 7, NULL, 'received', '', '476.3000', '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 (294, '2021-05-23 20:48:52', 325, NULL, NULL, 'IPAY2021/05/0293', NULL, 'cash', '', '', '', '', '', '', '127.0000', NULL, 7, NULL, 'received', '', '127.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 (295, '2021-05-23 21:13:13', 326, NULL, NULL, 'IPAY2021/05/0294', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 7, NULL, 'received', '', '37.5000', '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 (296, '2021-05-24 19:58:16', 327, NULL, NULL, 'IPAY2021/05/0295', NULL, 'cash', '', '', '', '', '', '', '246.5000', NULL, 6, NULL, 'received', '', '246.5000', '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 (297, '2021-05-24 20:37:40', 328, NULL, NULL, 'IPAY2021/05/0296', NULL, 'cash', '', '', '', '', '', '', '298.5000', NULL, 6, NULL, 'received', '', '298.5000', '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 (298, '2021-05-24 21:13:30', 329, NULL, NULL, 'IPAY2021/05/0297', NULL, 'cash', '', '', '', '', '', '', '218.0000', NULL, 6, NULL, 'received', '', '218.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 (299, '2021-05-24 22:04:19', 330, NULL, NULL, 'IPAY2021/05/0298', NULL, 'cash', '', '', '', '', '', '', '112.5000', NULL, 6, NULL, 'received', '', '112.5000', '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 (300, '2021-05-25 14:15:58', 333, NULL, NULL, 'IPAY2021/05/0299', NULL, 'cash', '', '', '', '', '', '', '87.5000', NULL, 7, NULL, 'received', '', '87.5000', '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 (301, '2021-05-25 17:52:31', 334, NULL, NULL, 'IPAY2021/05/0300', NULL, 'cash', '', '', '', '', '', '', '318.5800', NULL, 6, NULL, 'received', '', '318.5800', '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 (302, '2021-05-25 20:13:43', 335, NULL, NULL, 'IPAY2021/05/0301', NULL, 'cash', '', '', '', '', '', '', '178.0000', NULL, 6, NULL, 'received', '', '178.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 (303, '2021-05-25 20:27:36', 336, NULL, NULL, 'IPAY2021/05/0302', NULL, 'cash', '', '', '', '', '', '', '353.5000', NULL, 6, NULL, 'received', '', '353.5000', '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 (304, '2021-05-25 20:51:53', 337, NULL, NULL, 'IPAY2021/05/0303', NULL, 'cash', '', '', '', '', '', '', '197.0000', NULL, 6, NULL, 'received', '', '197.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 (305, '2021-05-25 21:10:41', 338, NULL, NULL, 'IPAY2021/05/0304', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 6, NULL, 'received', '', '26.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 (306, '2021-05-25 21:17:36', 339, NULL, NULL, 'IPAY2021/05/0305', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 6, NULL, 'received', '', '10.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 (307, '2021-05-25 21:19:51', 340, NULL, NULL, 'IPAY2021/05/0306', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 6, NULL, 'received', '', '30.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 (308, '2021-05-25 21:57:54', 341, NULL, NULL, 'IPAY2021/05/0307', NULL, 'cash', '', '', '', '', '', '', '104.5000', NULL, 6, NULL, 'received', '', '104.5000', '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 (309, '2021-05-26 10:44:28', 342, NULL, NULL, 'IPAY2021/05/0308', NULL, 'cash', '', '', '', '', '', '', '160.3500', NULL, 8, NULL, 'received', '', '160.3500', '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 (310, '2021-05-26 15:33:55', 343, NULL, NULL, 'IPAY2021/05/0309', NULL, 'cash', '', '', '', '', '', '', '76.0000', NULL, 8, NULL, 'received', '', '76.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 (311, '2021-05-26 20:43:24', 344, NULL, NULL, 'IPAY2021/05/0310', NULL, 'cash', '', '', '', '', '', '', '368.3500', NULL, 6, NULL, 'received', '', '368.3500', '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 (312, '2021-05-26 21:49:54', 345, NULL, NULL, 'IPAY2021/05/0311', NULL, 'cash', '', '', '', '', '', '', '244.9000', NULL, 6, NULL, 'received', '', '244.9000', '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 (313, '2021-05-26 22:36:31', 346, NULL, NULL, 'IPAY2021/05/0312', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 4, NULL, 'received', '', '37.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 (314, '2021-05-27 16:00:39', 347, NULL, NULL, 'IPAY2021/05/0313', NULL, 'cash', '', '', '', '', '', '', '240.8000', NULL, 8, NULL, 'received', '', '240.8000', '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 (315, '2021-05-27 16:26:32', 348, NULL, NULL, 'IPAY2021/05/0314', NULL, 'cash', '', '', '', '', '', '', '5.5000', NULL, 8, NULL, 'received', '', '5.5000', '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 (316, '2021-05-27 16:31:05', 349, NULL, NULL, 'IPAY2021/05/0315', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 8, NULL, 'received', '', '36.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 (317, '2021-05-27 20:17:16', 350, NULL, NULL, 'IPAY2021/05/0316', NULL, 'cash', '', '', '', '', '', '', '47.4000', NULL, 6, NULL, 'received', '', '47.4000', '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 (318, '2021-05-27 20:24:53', 351, NULL, NULL, 'IPAY2021/05/0317', NULL, 'cash', '', '', '', '', '', '', '493.0000', NULL, 6, NULL, 'received', '', '493.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 (319, '2021-05-27 20:26:16', 352, NULL, NULL, 'IPAY2021/05/0318', NULL, 'cash', '', '', '', '', '', '', '82.5000', NULL, 6, NULL, 'received', '', '82.5000', '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 (320, '2021-05-28 17:27:05', 354, NULL, NULL, 'IPAY2021/05/0319', NULL, 'cash', '', '', '', '', '', '', '70.1000', NULL, 7, NULL, 'received', '', '70.1000', '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 (321, '2021-05-28 18:23:08', 355, NULL, NULL, 'IPAY2021/05/0320', NULL, 'cash', '', '', '', '', '', '', '377.1000', NULL, 7, NULL, 'received', '', '377.1000', '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 (322, '2021-05-28 18:43:26', 356, NULL, NULL, 'IPAY2021/05/0321', NULL, 'cash', '', '', '', '', '', '', '332.3800', NULL, 7, NULL, 'received', '', '332.3800', '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 (323, '2021-05-28 21:51:34', 357, NULL, NULL, 'IPAY2021/05/0322', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 3, NULL, 'received', '', '18.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 (324, '2021-05-28 21:53:41', 358, NULL, NULL, 'IPAY2021/05/0323', NULL, 'cash', '', '', '', '', '', '', '272.5000', NULL, 7, NULL, 'received', '', '272.5000', '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 (325, '2021-05-29 13:30:11', 359, NULL, NULL, 'IPAY2021/05/0324', NULL, 'cash', '', '', '', '', '', '', '541.0000', NULL, 7, NULL, 'received', '', '541.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 (326, '2021-05-29 14:48:47', 360, NULL, NULL, 'IPAY2021/05/0325', NULL, 'cash', '', '', '', '', '', '', '2.8000', NULL, 7, NULL, 'received', '', '2.8000', '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 (327, '2021-05-29 14:53:24', 361, NULL, NULL, 'IPAY2021/05/0326', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 7, NULL, 'received', '', '36.5000', '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 (328, '2021-05-29 15:05:01', 362, NULL, NULL, 'IPAY2021/05/0327', NULL, 'cash', '', '', '', '', '', '', '32.6000', NULL, 7, NULL, 'received', '', '32.6000', '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 (329, '2021-05-29 18:38:35', 363, NULL, NULL, 'IPAY2021/05/0328', NULL, 'cash', '', '', '', '', '', '', '212.1000', NULL, 7, NULL, 'received', '', '212.1000', '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 (330, '2021-05-29 18:39:33', 364, NULL, NULL, 'IPAY2021/05/0329', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 7, NULL, 'received', '', '7.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 (331, '2021-05-29 19:57:37', 365, NULL, NULL, 'IPAY2021/05/0330', NULL, 'cash', '', '', '', '', '', '', '195.5000', NULL, 7, NULL, 'received', '', '195.5000', '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 (332, '2021-05-29 21:22:13', 366, NULL, NULL, 'IPAY2021/05/0331', NULL, 'cash', '', '', '', '', '', '', '82.1000', NULL, 7, NULL, 'received', '', '82.1000', '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 (333, '2021-05-29 21:57:20', 367, NULL, NULL, 'IPAY2021/05/0332', NULL, 'cash', '', '', '', '', '', '', '56.0000', NULL, 7, NULL, 'received', '', '56.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 (334, '2021-05-29 22:07:13', 368, NULL, NULL, 'IPAY2021/05/0333', NULL, 'cash', '', '', '', '', '', '', '70.0000', NULL, 7, NULL, 'received', '', '70.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 (335, '2021-05-30 18:59:40', 369, NULL, NULL, 'IPAY2021/05/0334', NULL, 'cash', '', '', '', '', '', '', '530.5000', NULL, 7, NULL, 'received', '', '530.5000', '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 (336, '2021-05-30 21:36:15', 370, NULL, NULL, 'IPAY2021/05/0335', NULL, 'cash', '', '', '', '', '', '', '183.0000', NULL, 7, NULL, 'received', '', '183.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 (337, '2021-05-30 21:50:57', 371, NULL, NULL, 'IPAY2021/05/0336', NULL, 'cash', '', '', '', '', '', '', '23.1000', NULL, 7, NULL, 'received', '', '23.1000', '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 (338, '2021-05-30 21:55:31', 372, NULL, NULL, 'IPAY2021/05/0337', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 7, NULL, 'received', '', '24.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 (339, '2021-05-31 14:22:12', 374, NULL, NULL, 'IPAY2021/05/0338', NULL, 'cash', '', '', '', '', '', '', '368.4000', NULL, 7, NULL, 'received', '', '368.4000', '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 (340, '2021-05-31 14:52:41', 375, NULL, NULL, 'IPAY2021/05/0339', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 7, NULL, 'received', '', '2.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 (341, '2021-05-31 14:54:49', 376, NULL, NULL, 'IPAY2021/05/0340', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 7, NULL, 'received', '', '10.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 (342, '2021-05-31 15:20:24', 377, NULL, NULL, 'IPAY2021/05/0341', NULL, 'cash', '', '', '', '', '', '', '199.5000', NULL, 7, NULL, 'received', '', '199.5000', '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 (343, '2021-05-31 19:20:44', 378, NULL, NULL, 'IPAY2021/05/0342', NULL, 'cash', '', '', '', '', '', '', '353.0000', NULL, 7, NULL, 'received', '', '353.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 (344, '2021-05-31 20:21:49', 379, NULL, NULL, 'IPAY2021/05/0343', NULL, 'cash', '', '', '', '', '', '', '127.5000', NULL, 7, NULL, 'received', '', '127.5000', '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 (345, '2021-05-31 21:57:52', 380, NULL, NULL, 'IPAY2021/05/0344', NULL, 'cash', '', '', '', '', '', '', '166.5000', NULL, 7, NULL, 'received', '', '166.5000', '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 (346, '2021-06-01 13:59:07', 381, NULL, NULL, 'IPAY2021/06/0345', NULL, 'cash', '', '', '', '', '', '', '168.5000', NULL, 7, NULL, 'received', '', '168.5000', '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 (347, '2021-06-01 14:52:45', 382, NULL, NULL, 'IPAY2021/06/0346', NULL, 'cash', '', '', '', '', '', '', '64.5000', NULL, 7, NULL, 'received', '', '64.5000', '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 (348, '2021-06-01 15:10:51', 383, NULL, NULL, 'IPAY2021/06/0347', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 7, NULL, 'received', '', '46.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 (349, '2021-06-01 19:39:55', 384, NULL, NULL, 'IPAY2021/06/0348', NULL, 'cash', '', '', '', '', '', '', '206.1900', NULL, 6, NULL, 'received', '', '206.1900', '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 (350, '2021-06-01 19:46:18', 385, NULL, NULL, 'IPAY2021/06/0349', NULL, 'cash', '', '', '', '', '', '', '326.5000', NULL, 6, NULL, 'received', '', '326.5000', '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 (351, '2021-06-01 19:58:24', 386, NULL, NULL, 'IPAY2021/06/0350', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 3, NULL, 'received', '', '20.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 (352, '2021-06-01 20:48:48', 387, NULL, NULL, 'IPAY2021/06/0351', NULL, 'cash', '', '', '', '', '', '', '171.5000', NULL, 6, NULL, 'received', '', '171.5000', '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 (353, '2021-06-01 22:13:16', 388, NULL, NULL, 'IPAY2021/06/0352', NULL, 'cash', '', '', '', '', '', '', '78.5000', NULL, 6, NULL, 'received', '', '78.5000', '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 (354, '2021-06-02 12:34:55', 390, NULL, NULL, 'IPAY2021/06/0353', NULL, 'cash', '', '', '', '', '', '', '292.0000', NULL, 7, NULL, 'received', '', '292.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 (355, '2021-06-02 14:39:33', 391, NULL, NULL, 'IPAY2021/06/0354', NULL, 'cash', '', '', '', '', '', '', '127.0000', NULL, 7, NULL, 'received', '', '127.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 (356, '2021-06-02 15:03:00', 392, NULL, NULL, 'IPAY2021/06/0355', NULL, 'cash', '', '', '', '', '', '', '31.0000', NULL, 7, NULL, 'received', '', '31.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 (357, '2021-06-02 19:46:12', 393, NULL, NULL, 'IPAY2021/06/0356', NULL, 'cash', '', '', '', '', '', '', '104.0000', NULL, 7, NULL, 'received', '', '104.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 (358, '2021-06-02 20:00:34', 394, NULL, NULL, 'IPAY2021/06/0357', NULL, 'cash', '', '', '', '', '', '', '154.1000', NULL, 7, NULL, 'received', '', '154.1000', '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 (359, '2021-06-02 20:15:54', 395, NULL, NULL, 'IPAY2021/06/0358', NULL, 'cash', '', '', '', '', '', '', '308.5000', NULL, 7, NULL, 'received', '', '308.5000', '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 (360, '2021-06-02 20:56:19', 396, NULL, NULL, 'IPAY2021/06/0359', NULL, 'cash', '', '', '', '', '', '', '223.0000', NULL, 7, NULL, 'received', '', '223.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 (361, '2021-06-02 21:30:26', 397, NULL, NULL, 'IPAY2021/06/0360', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 7, NULL, 'received', '', '15.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 (362, '2021-06-02 21:31:04', 398, NULL, NULL, 'IPAY2021/06/0361', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 7, NULL, 'received', '', '9.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 (363, '2021-06-02 21:46:35', 399, NULL, NULL, 'IPAY2021/06/0362', NULL, 'cash', '', '', '', '', '', '', '103.5000', NULL, 7, NULL, 'received', '', '103.5000', '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 (364, '2021-06-02 21:55:52', 400, NULL, NULL, 'IPAY2021/06/0363', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 7, NULL, 'received', '', '10.5000', '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 (365, '2021-06-03 13:47:01', 401, NULL, NULL, 'IPAY2021/06/0364', NULL, 'cash', '', '', '', '', '', '', '200.5000', NULL, 7, NULL, 'received', '', '200.5000', '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 (366, '2021-06-03 15:47:52', 402, NULL, NULL, 'IPAY2021/06/0365', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 7, NULL, 'received', '', '33.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 (367, '2021-06-03 18:52:27', 403, NULL, NULL, 'IPAY2021/06/0366', NULL, 'cash', '', '', '', '', '', '', '480.4900', NULL, 6, NULL, 'received', '', '480.4900', '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 (368, '2021-06-03 20:49:15', 404, NULL, NULL, 'IPAY2021/06/0367', NULL, 'cash', '', '', '', '', '', '', '179.5000', NULL, 6, NULL, 'received', '', '179.5000', '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 (369, '2021-06-03 20:56:46', 405, NULL, NULL, 'IPAY2021/06/0368', NULL, 'cash', '', '', '', '', '', '', '281.5000', NULL, 6, NULL, 'received', '', '281.5000', '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 (370, '2021-06-03 21:51:30', 406, NULL, NULL, 'IPAY2021/06/0369', NULL, 'cash', '', '', '', '', '', '', '35.8000', NULL, 6, NULL, 'received', '', '35.8000', '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 (371, '2021-06-04 16:19:17', 407, NULL, NULL, 'IPAY2021/06/0370', NULL, 'cash', '', '', '', '', '', '', '214.3000', NULL, 8, NULL, 'received', '', '214.3000', '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 (372, '2021-06-04 19:42:21', 408, NULL, NULL, 'IPAY2021/06/0371', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 3, NULL, 'received', '', '46.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 (373, '2021-06-04 19:50:16', 409, NULL, NULL, 'IPAY2021/06/0372', NULL, 'cash', '', '', '', '', '', '', '138.0000', NULL, 8, NULL, 'received', '', '138.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 (374, '2021-06-04 20:02:44', 410, NULL, NULL, 'IPAY2021/06/0373', NULL, 'cash', '', '', '', '', '', '', '336.0000', NULL, 8, NULL, 'received', '', '336.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 (375, '2021-06-04 20:07:04', 411, NULL, NULL, 'IPAY2021/06/0374', NULL, 'cash', '', '', '', '', '', '', '187.5000', NULL, 8, NULL, 'received', '', '187.5000', '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 (376, '2021-06-04 21:22:42', 412, NULL, NULL, 'IPAY2021/06/0375', NULL, 'cash', '', '', '', '', '', '', '161.1900', NULL, 8, NULL, 'received', '', '161.1900', '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 (377, '2021-06-04 21:53:43', 413, NULL, NULL, 'IPAY2021/06/0376', NULL, 'cash', '', '', '', '', '', '', '51.0000', NULL, 8, NULL, 'received', '', '51.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 (378, '2021-06-05 12:37:04', 414, NULL, NULL, 'IPAY2021/06/0377', NULL, 'cash', '', '', '', '', '', '', '361.9000', NULL, 7, NULL, 'received', '', '361.9000', '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 (379, '2021-06-05 15:07:54', 415, NULL, NULL, 'IPAY2021/06/0378', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 7, NULL, 'received', '', '60.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 (380, '2021-06-05 18:52:24', 416, NULL, NULL, 'IPAY2021/06/0379', NULL, 'cash', '', '', '', '', '', '', '227.6900', NULL, 6, NULL, 'received', '', '227.6900', '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 (381, '2021-06-05 20:19:26', 417, NULL, NULL, 'IPAY2021/06/0380', NULL, 'cash', '', '', '', '', '', '', '345.3000', NULL, 6, NULL, 'received', '', '345.3000', '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 (382, '2021-06-05 22:06:10', 418, NULL, NULL, 'IPAY2021/06/0381', NULL, 'cash', '', '', '', '', '', '', '313.5000', NULL, 6, NULL, 'received', '', '313.5000', '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 (383, '2021-06-06 21:18:36', 419, NULL, NULL, 'IPAY2021/06/0382', NULL, 'cash', '', '', '', '', '', '', '169.3000', NULL, 7, NULL, 'received', '', '169.3000', '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 (384, '2021-06-06 21:36:38', 420, NULL, NULL, 'IPAY2021/06/0383', NULL, 'cash', '', '', '', '', '', '', '59.0000', NULL, 7, NULL, 'received', '', '59.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 (385, '2021-06-06 21:44:58', 421, NULL, NULL, 'IPAY2021/06/0384', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 7, NULL, 'received', '', '18.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 (386, '2021-06-06 21:46:38', 422, NULL, NULL, 'IPAY2021/06/0385', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 7, NULL, 'received', '', '1.5000', '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 (387, '2021-06-06 21:55:15', 423, NULL, NULL, 'IPAY2021/06/0386', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 7, NULL, 'received', '', '12.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 (388, '2021-06-07 14:57:44', 424, NULL, NULL, 'IPAY2021/06/0387', NULL, 'cash', '', '', '', '', '', '', '116.3800', NULL, 7, NULL, 'received', '', '116.3800', '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 (389, '2021-06-07 15:07:10', 425, NULL, NULL, 'IPAY2021/06/0388', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 7, NULL, 'received', '', '8.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 (390, '2021-06-07 20:00:31', 426, NULL, NULL, 'IPAY2021/06/0389', NULL, 'cash', '', '', '', '', '', '', '628.5000', NULL, 7, NULL, 'received', '', '628.5000', '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 (391, '2021-06-07 20:27:02', 427, NULL, NULL, 'IPAY2021/06/0390', NULL, 'cash', '', '', '', '', '', '', '355.7000', NULL, 6, NULL, 'received', '', '355.7000', '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 (392, '2021-06-07 21:39:45', 428, NULL, NULL, 'IPAY2021/06/0391', NULL, 'cash', '', '', '', '', '', '', '155.2000', NULL, 6, NULL, 'received', '', '155.2000', '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 (393, '2021-06-07 22:14:17', 429, NULL, NULL, 'IPAY2021/06/0392', NULL, 'cash', '', '', '', '', '', '', '21.0000', NULL, 6, NULL, 'received', '', '21.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 (394, '2021-06-08 22:04:34', 430, NULL, NULL, 'IPAY2021/06/0393', NULL, 'cash', '', '', '', '', '', '', '341.0000', NULL, 6, NULL, 'received', '', '341.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 (395, '2021-06-08 23:11:56', 431, NULL, NULL, 'IPAY2021/06/0394', NULL, 'cash', '', '', '', '', '', '', '382.5000', NULL, 4, NULL, 'received', '', '382.5000', '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 (396, '2021-06-08 23:27:45', 432, NULL, NULL, 'IPAY2021/06/0395', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 4, NULL, 'received', '', '15.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 (397, '2021-06-09 13:24:01', 433, NULL, NULL, 'IPAY2021/06/0396', NULL, 'cash', '', '', '', '', '', '', '453.5000', NULL, 7, NULL, 'received', '', '453.5000', '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 (398, '2021-06-09 13:25:29', 434, NULL, NULL, 'IPAY2021/06/0397', NULL, 'cash', '', '', '', '', '', '', '149.0000', NULL, 7, NULL, 'received', '', '149.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 (399, '2021-06-09 14:24:11', 435, NULL, NULL, 'IPAY2021/06/0398', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 7, NULL, 'received', '', '29.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 (400, '2021-06-09 14:33:25', 436, NULL, NULL, 'IPAY2021/06/0399', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 7, NULL, 'received', '', '2.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 (401, '2021-06-09 19:15:58', 437, NULL, NULL, 'IPAY2021/06/0400', NULL, 'cash', '', '', '', '', '', '', '44.0000', NULL, 3, NULL, 'received', '', '44.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 (402, '2021-06-09 21:20:09', 438, NULL, NULL, 'IPAY2021/06/0401', NULL, 'cash', '', '', '', '', '', '', '470.0000', NULL, 6, NULL, 'received', '', '470.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 (403, '2021-06-09 21:28:58', 439, NULL, NULL, 'IPAY2021/06/0402', NULL, 'cash', '', '', '', '', '', '', '423.0000', NULL, 6, NULL, 'received', '', '423.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 (404, '2021-06-10 14:16:34', 440, NULL, NULL, 'IPAY2021/06/0403', NULL, 'cash', '', '', '', '', '', '', '385.2000', NULL, 7, NULL, 'received', '', '385.2000', '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 (405, '2021-06-10 14:22:56', 441, NULL, NULL, 'IPAY2021/06/0404', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 7, NULL, 'received', '', '10.5000', '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 (406, '2021-06-10 22:13:37', 442, NULL, NULL, 'IPAY2021/06/0405', NULL, 'cash', '', '', '', '', '', '', '700.5700', NULL, 6, NULL, 'received', '', '700.5700', '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 (407, '2021-06-11 15:42:09', 443, NULL, NULL, 'IPAY2021/06/0406', NULL, 'cash', '', '', '', '', '', '', '148.6000', NULL, 8, NULL, 'received', '', '148.6000', '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 (408, '2021-06-11 20:04:06', 444, NULL, NULL, 'IPAY2021/06/0407', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 3, NULL, 'received', '', '15.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 (409, '2021-06-11 20:11:11', 445, NULL, NULL, 'IPAY2021/06/0408', NULL, 'cash', '', '', '', '', '', '', '590.7000', NULL, 8, NULL, 'received', '', '590.7000', '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 (410, '2021-06-11 21:48:20', 446, NULL, NULL, 'IPAY2021/06/0409', NULL, 'cash', '', '', '', '', '', '', '63.0000', NULL, 8, NULL, 'received', '', '63.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 (411, '2021-06-12 14:45:39', 447, NULL, NULL, 'IPAY2021/06/0410', NULL, 'cash', '', '', '', '', '', '', '312.1000', NULL, 7, NULL, 'received', '', '312.1000', '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 (412, '2021-06-12 14:55:53', 448, NULL, NULL, 'IPAY2021/06/0411', NULL, 'cash', '', '', '', '', '', '', '19.5000', NULL, 7, NULL, 'received', '', '19.5000', '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 (413, '2021-06-12 19:50:43', 449, NULL, NULL, 'IPAY2021/06/0412', NULL, 'cash', '', '', '', '', '', '', '413.5000', NULL, 6, NULL, 'received', '', '413.5000', '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 (414, '2021-06-12 19:55:48', 450, NULL, NULL, 'IPAY2021/06/0413', NULL, 'cash', '', '', '', '', '', '', '234.1000', NULL, 6, NULL, 'received', '', '234.1000', '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 (415, '2021-06-12 21:32:02', 451, NULL, NULL, 'IPAY2021/06/0414', NULL, 'cash', '', '', '', '', '', '', '255.0000', NULL, 6, NULL, 'received', '', '255.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 (416, '2021-06-12 21:56:00', 452, NULL, NULL, 'IPAY2021/06/0415', NULL, 'cash', '', '', '', '', '', '', '88.5000', NULL, 6, NULL, 'received', '', '88.5000', '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 (417, '2021-06-12 21:56:23', 453, NULL, NULL, 'IPAY2021/06/0416', NULL, 'cash', '', '', '', '', '', '', '2.5000', NULL, 6, NULL, 'received', '', '2.5000', '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 (418, '2021-06-12 22:02:04', 454, NULL, NULL, 'IPAY2021/06/0417', NULL, 'cash', '', '', '', '', '', '', '47.0000', NULL, 6, NULL, 'received', '', '47.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 (419, '2021-06-13 21:37:18', 455, NULL, NULL, 'IPAY2021/06/0418', NULL, 'cash', '', '', '', '', '', '', '526.6000', NULL, 7, NULL, 'received', '', '526.6000', '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 (420, '2021-06-13 22:03:44', 456, NULL, NULL, 'IPAY2021/06/0419', NULL, 'cash', '', '', '', '', '', '', '21.0000', NULL, 7, NULL, 'received', '', '21.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 (421, '2021-06-13 23:27:19', 457, NULL, NULL, 'IPAY2021/06/0420', NULL, 'cash', '', '', '', '', '', '', '105.0000', NULL, 3, NULL, 'received', '', '105.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 (422, '2021-06-14 14:09:40', 458, NULL, NULL, 'IPAY2021/06/0421', NULL, 'cash', '', '', '', '', '', '', '166.9000', NULL, 7, NULL, 'received', '', '166.9000', '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 (423, '2021-06-14 14:56:15', 459, NULL, NULL, 'IPAY2021/06/0422', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 7, NULL, 'received', '', '9.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 (424, '2021-06-14 21:25:25', 460, NULL, NULL, 'IPAY2021/06/0423', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 3, NULL, 'received', '', '50.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 (425, '2021-06-14 21:55:07', 461, NULL, NULL, 'IPAY2021/06/0424', NULL, 'cash', '', '', '', '', '', '', '417.0000', NULL, 6, NULL, 'received', '', '417.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 (426, '2021-06-15 13:45:03', 462, NULL, NULL, 'IPAY2021/06/0425', NULL, 'cash', '', '', '', '', '', '', '194.0000', NULL, 7, NULL, 'received', '', '194.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 (427, '2021-06-15 15:01:29', 463, NULL, NULL, 'IPAY2021/06/0426', NULL, 'cash', '', '', '', '', '', '', '30.5000', NULL, 7, NULL, 'received', '', '30.5000', '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 (428, '2021-06-15 20:14:17', 464, NULL, NULL, 'IPAY2021/06/0427', NULL, 'cash', '', '', '', '', '', '', '378.5000', NULL, 6, NULL, 'received', '', '378.5000', '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 (429, '2021-06-15 21:12:43', 465, NULL, NULL, 'IPAY2021/06/0428', NULL, 'cash', '', '', '', '', '', '', '207.7000', NULL, 6, NULL, 'received', '', '207.7000', '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 (430, '2021-06-15 21:51:28', 466, NULL, NULL, 'IPAY2021/06/0429', NULL, 'cash', '', '', '', '', '', '', '97.5000', NULL, 6, NULL, 'received', '', '97.5000', '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 (431, '2021-06-16 13:17:44', 467, NULL, NULL, 'IPAY2021/06/0430', NULL, 'cash', '', '', '', '', '', '', '290.5000', NULL, 7, NULL, 'received', '', '290.5000', '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 (432, '2021-06-16 14:23:54', 468, NULL, NULL, 'IPAY2021/06/0431', NULL, 'cash', '', '', '', '', '', '', '51.0000', NULL, 7, NULL, 'received', '', '51.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 (433, '2021-06-16 14:25:27', 469, NULL, NULL, 'IPAY2021/06/0432', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 7, NULL, 'received', '', '22.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 (434, '2021-06-16 14:57:11', 470, NULL, NULL, 'IPAY2021/06/0433', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 7, NULL, 'received', '', '5.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 (435, '2021-06-16 15:13:10', 471, NULL, NULL, 'IPAY2021/06/0434', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 7, NULL, 'received', '', '6.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 (436, '2021-06-16 21:30:51', 472, NULL, NULL, 'IPAY2021/06/0435', NULL, 'cash', '', '', '', '', '', '', '304.3000', NULL, 6, NULL, 'received', '', '304.3000', '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 (437, '2021-06-16 21:58:18', 473, NULL, NULL, 'IPAY2021/06/0436', NULL, 'cash', '', '', '', '', '', '', '13.5000', NULL, 6, NULL, 'received', '', '13.5000', '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 (438, '2021-06-17 12:50:40', 474, NULL, NULL, 'IPAY2021/06/0437', NULL, 'cash', '', '', '', '', '', '', '389.0000', NULL, 7, NULL, 'received', '', '389.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 (439, '2021-06-17 15:04:31', 475, NULL, NULL, 'IPAY2021/06/0438', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 7, NULL, 'received', '', '14.5000', '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 (440, '2021-06-17 19:27:45', 476, NULL, NULL, 'IPAY2021/06/0439', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 3, NULL, 'received', '', '18.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 (441, '2021-06-17 20:41:16', 477, NULL, NULL, 'IPAY2021/06/0440', NULL, 'cash', '', '', '', '', '', '', '381.9000', NULL, 6, NULL, 'received', '', '381.9000', '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 (442, '2021-06-17 21:37:29', 478, NULL, NULL, 'IPAY2021/06/0441', NULL, 'cash', '', '', '', '', '', '', '193.3800', NULL, 6, NULL, 'received', '', '193.3800', '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 (443, '2021-06-18 15:39:40', 479, NULL, NULL, 'IPAY2021/06/0442', NULL, 'cash', '', '', '', '', '', '', '300.5000', NULL, 8, NULL, 'received', '', '300.5000', '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 (444, '2021-06-18 21:22:24', 480, NULL, NULL, 'IPAY2021/06/0443', NULL, 'cash', '', '', '', '', '', '', '467.0000', NULL, 6, NULL, 'received', '', '467.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 (445, '2021-06-18 21:50:31', 481, NULL, NULL, 'IPAY2021/06/0444', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 6, NULL, 'received', '', '30.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 (446, '2021-06-19 13:45:41', 482, NULL, NULL, 'IPAY2021/06/0445', NULL, 'cash', '', '', '', '', '', '', '218.5000', NULL, 7, NULL, 'received', '', '218.5000', '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 (447, '2021-06-19 13:59:03', 483, NULL, NULL, 'IPAY2021/06/0446', NULL, 'cash', '', '', '', '', '', '', '49.0000', NULL, 7, NULL, 'received', '', '49.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 (448, '2021-06-19 15:05:16', 484, NULL, NULL, 'IPAY2021/06/0447', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 7, NULL, 'received', '', '3.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 (449, '2021-06-19 21:46:56', 485, NULL, NULL, 'IPAY2021/06/0448', NULL, 'cash', '', '', '', '', '', '', '181.5000', NULL, 6, NULL, 'received', '', '181.5000', '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 (450, '2021-06-19 21:53:52', 486, NULL, NULL, 'IPAY2021/06/0449', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 6, NULL, 'received', '', '5.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 (451, '2021-06-19 23:42:46', 487, NULL, NULL, 'IPAY2021/06/0450', NULL, 'cash', '', '', '', '', '', '', '17.5000', NULL, 3, NULL, 'received', '', '17.5000', '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 (452, '2021-06-20 20:27:15', 488, NULL, NULL, 'IPAY2021/06/0451', NULL, 'cash', '', '', '', '', '', '', '437.7000', NULL, 7, NULL, 'received', '', '437.7000', '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 (453, '2021-06-20 21:28:23', 489, NULL, NULL, 'IPAY2021/06/0452', NULL, 'cash', '', '', '', '', '', '', '102.0000', NULL, 7, NULL, 'received', '', '102.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 (454, '2021-06-21 13:34:45', 490, NULL, NULL, 'IPAY2021/06/0453', NULL, 'cash', '', '', '', '', '', '', '591.0000', NULL, 7, NULL, 'received', '', '591.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 (455, '2021-06-21 13:54:40', 491, NULL, NULL, 'IPAY2021/06/0454', NULL, 'cash', '', '', '', '', '', '', '47.0000', NULL, 7, NULL, 'received', '', '47.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 (456, '2021-06-21 14:32:26', 492, NULL, NULL, 'IPAY2021/06/0455', NULL, 'cash', '', '', '', '', '', '', '71.0000', NULL, 7, NULL, 'received', '', '71.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 (457, '2021-06-21 15:10:04', 493, NULL, NULL, 'IPAY2021/06/0456', NULL, 'cash', '', '', '', '', '', '', '17.5000', NULL, 7, NULL, 'received', '', '17.5000', '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 (458, '2021-06-21 18:59:26', 494, NULL, NULL, 'IPAY2021/06/0457', NULL, 'cash', '', '', '', '', '', '', '321.8500', NULL, 7, NULL, 'received', '', '321.8500', '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 (459, '2021-06-21 20:27:22', 495, NULL, NULL, 'IPAY2021/06/0458', NULL, 'cash', '', '', '', '', '', '', '220.5000', NULL, 7, NULL, 'received', '', '220.5000', '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 (460, '2021-06-21 21:48:22', 496, NULL, NULL, 'IPAY2021/06/0459', NULL, 'cash', '', '', '', '', '', '', '196.5700', NULL, 7, NULL, 'received', '', '196.5700', '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 (461, '2021-06-22 13:25:13', 497, NULL, NULL, 'IPAY2021/06/0460', NULL, 'cash', '', '', '', '', '', '', '539.0000', NULL, 7, NULL, 'received', '', '539.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 (462, '2021-06-22 13:36:28', 498, NULL, NULL, 'IPAY2021/06/0461', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 7, NULL, 'received', '', '80.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 (463, '2021-06-22 14:20:35', 499, NULL, NULL, 'IPAY2021/06/0462', NULL, 'cash', '', '', '', '', '', '', '265.6000', NULL, 7, NULL, 'received', '', '265.6000', '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 (464, '2021-06-22 15:08:41', 500, NULL, NULL, 'IPAY2021/06/0463', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 7, NULL, 'received', '', '15.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 (465, '2021-06-22 15:20:12', 501, NULL, NULL, 'IPAY2021/06/0464', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 7, NULL, 'received', '', '34.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 (466, '2021-06-22 19:22:47', 502, NULL, NULL, 'IPAY2021/06/0465', NULL, 'cash', '', '', '', '', '', '', '315.5000', NULL, 7, NULL, 'received', '', '315.5000', '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 (467, '2021-06-22 19:51:18', 503, NULL, NULL, 'IPAY2021/06/0466', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 7, NULL, 'received', '', '3.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 (468, '2021-06-22 21:10:42', 504, NULL, NULL, 'IPAY2021/06/0467', NULL, 'cash', '', '', '', '', '', '', '326.0000', NULL, 7, NULL, 'received', '', '326.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 (469, '2021-06-22 21:50:53', 505, NULL, NULL, 'IPAY2021/06/0468', NULL, 'cash', '', '', '', '', '', '', '42.5000', NULL, 7, NULL, 'received', '', '42.5000', '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 (470, '2021-06-23 15:20:26', 506, NULL, NULL, 'IPAY2021/06/0469', NULL, 'cash', '', '', '', '', '', '', '180.0000', NULL, 7, NULL, 'received', '', '180.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 (471, '2021-06-23 20:45:02', 507, NULL, NULL, 'IPAY2021/06/0470', NULL, 'cash', '', '', '', '', '', '', '379.9000', NULL, 6, NULL, 'received', '', '379.9000', '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 (472, '2021-06-23 21:03:25', 508, NULL, NULL, 'IPAY2021/06/0471', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 3, NULL, 'received', '', '27.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 (473, '2021-06-23 21:04:51', 509, NULL, NULL, 'IPAY2021/06/0472', NULL, 'cash', '', '', '', '', '', '', '288.0000', NULL, 6, NULL, 'received', '', '288.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 (474, '2021-06-23 21:42:17', 510, NULL, NULL, 'IPAY2021/06/0473', NULL, 'cash', '', '', '', '', '', '', '51.0000', NULL, 6, NULL, 'received', '', '51.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 (475, '2021-06-23 21:45:41', 511, NULL, NULL, 'IPAY2021/06/0474', NULL, 'cash', '', '', '', '', '', '', '31.5000', NULL, 6, NULL, 'received', '', '31.5000', '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 (476, '2021-06-23 21:52:34', 512, NULL, NULL, 'IPAY2021/06/0475', NULL, 'cash', '', '', '', '', '', '', '34.0000', NULL, 6, NULL, 'received', '', '34.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 (477, '2021-06-24 10:41:40', 513, NULL, NULL, 'IPAY2021/06/0476', NULL, 'cash', '', '', '', '', '', '', '465.6000', NULL, 7, NULL, 'received', '', '465.6000', '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 (478, '2021-06-24 14:51:13', 514, NULL, NULL, 'IPAY2021/06/0477', NULL, 'cash', '', '', '', '', '', '', '70.5000', NULL, 7, NULL, 'received', '', '70.5000', '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 (479, '2021-06-24 21:16:48', 515, NULL, NULL, 'IPAY2021/06/0478', NULL, 'cash', '', '', '', '', '', '', '166.6900', NULL, 6, NULL, 'received', '', '166.6900', '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 (480, '2021-06-24 21:43:06', 516, NULL, NULL, 'IPAY2021/06/0479', NULL, 'cash', '', '', '', '', '', '', '106.5000', NULL, 6, NULL, 'received', '', '106.5000', '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 (481, '2021-06-24 22:01:37', 517, NULL, NULL, 'IPAY2021/06/0480', NULL, 'cash', '', '', '', '', '', '', '57.0000', NULL, 6, NULL, 'received', '', '57.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 (482, '2021-06-24 22:10:03', 518, NULL, NULL, 'IPAY2021/06/0481', NULL, 'cash', '', '', '', '', '', '', '96.5000', NULL, 6, NULL, 'received', '', '96.5000', '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 (483, '2021-06-24 22:23:06', 519, NULL, NULL, 'IPAY2021/06/0482', NULL, 'cash', '', '', '', '', '', '', '58.0000', NULL, 6, NULL, 'received', '', '58.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 (484, '2021-06-25 14:17:10', 521, NULL, NULL, 'IPAY2021/06/0483', NULL, 'cash', '', '', '', '', '', '', '489.0000', NULL, 8, NULL, 'received', '', '489.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 (485, '2021-06-25 15:21:11', 522, NULL, NULL, 'IPAY2021/06/0484', NULL, 'cash', '', '', '', '', '', '', '29.5000', NULL, 8, NULL, 'received', '', '29.5000', '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 (486, '2021-06-25 15:25:57', 523, NULL, NULL, 'IPAY2021/06/0485', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 8, NULL, 'received', '', '10.5000', '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 (487, '2021-06-25 19:31:53', 524, NULL, NULL, 'IPAY2021/06/0486', NULL, 'cash', '', '', '', '', '', '', '610.5000', NULL, 6, NULL, 'received', '', '610.5000', '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 (488, '2021-06-25 21:29:06', 525, NULL, NULL, 'IPAY2021/06/0487', NULL, 'cash', '', '', '', '', '', '', '287.5000', NULL, 6, NULL, 'received', '', '287.5000', '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 (489, '2021-06-25 21:53:49', 526, NULL, NULL, 'IPAY2021/06/0488', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 6, NULL, 'received', '', '13.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 (490, '2021-06-25 23:55:35', 527, NULL, NULL, 'IPAY2021/06/0489', NULL, 'cash', '', '', '', '', '', '', '2.9000', NULL, 3, NULL, 'received', '', '2.9000', '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 (491, '2021-06-25 23:56:35', 528, NULL, NULL, 'IPAY2021/06/0490', NULL, 'cash', '', '', '', '', '', '', '26.1000', NULL, 3, NULL, 'received', '', '26.1000', '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 (492, '2021-06-26 16:50:07', 529, NULL, NULL, 'IPAY2021/06/0491', NULL, 'cash', '', '', '', '', '', '', '361.6000', NULL, 7, NULL, 'received', '', '361.6000', '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 (493, '2021-06-26 17:30:58', 530, NULL, NULL, 'IPAY2021/06/0492', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 7, NULL, 'received', '', '29.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 (494, '2021-06-26 21:20:40', 531, NULL, NULL, 'IPAY2021/06/0493', NULL, 'cash', '', '', '', '', '', '', '585.5000', NULL, 6, NULL, 'received', '', '585.5000', '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 (495, '2021-06-26 21:56:41', 532, NULL, NULL, 'IPAY2021/06/0494', NULL, 'cash', '', '', '', '', '', '', '124.5000', NULL, 6, NULL, 'received', '', '124.5000', '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 (496, '2021-06-27 18:16:10', 533, NULL, NULL, 'IPAY2021/06/0495', NULL, 'cash', '', '', '', '', '', '', '355.5000', NULL, 7, NULL, 'received', '', '355.5000', '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 (497, '2021-06-27 19:48:49', 534, NULL, NULL, 'IPAY2021/06/0496', NULL, 'cash', '', '', '', '', '', '', '84.0000', NULL, 7, NULL, 'received', '', '84.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 (498, '2021-06-27 20:03:39', 535, NULL, NULL, 'IPAY2021/06/0497', NULL, 'cash', '', '', '', '', '', '', '73.0000', NULL, 7, NULL, 'received', '', '73.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 (499, '2021-06-27 20:23:26', 536, NULL, NULL, 'IPAY2021/06/0498', NULL, 'cash', '', '', '', '', '', '', '206.5000', NULL, 7, NULL, 'received', '', '206.5000', '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 (500, '2021-06-27 20:54:37', 537, NULL, NULL, 'IPAY2021/06/0499', NULL, 'cash', '', '', '', '', '', '', '64.5000', NULL, 7, NULL, 'received', '', '64.5000', '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 (501, '2021-06-27 21:17:36', 538, NULL, NULL, 'IPAY2021/06/0500', NULL, 'cash', '', '', '', '', '', '', '21.0000', NULL, 7, NULL, 'received', '', '21.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 (502, '2021-06-27 21:44:55', 539, NULL, NULL, 'IPAY2021/06/0501', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 7, NULL, 'received', '', '8.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 (503, '2021-06-27 23:30:04', 540, NULL, NULL, 'IPAY2021/06/0502', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 3, NULL, 'received', '', '22.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 (504, '2021-06-28 13:55:59', 541, NULL, NULL, 'IPAY2021/06/0503', NULL, 'cash', '', '', '', '', '', '', '314.0000', NULL, 7, NULL, 'received', '', '314.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 (505, '2021-06-28 15:39:50', 542, NULL, NULL, 'IPAY2021/06/0504', NULL, 'cash', '', '', '', '', '', '', '105.0000', NULL, 7, NULL, 'received', '', '105.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 (506, '2021-06-28 15:47:07', 543, NULL, NULL, 'IPAY2021/06/0505', NULL, 'cash', '', '', '', '', '', '', '5.5000', NULL, 7, NULL, 'received', '', '5.5000', '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 (507, '2021-06-28 20:39:24', 544, NULL, NULL, 'IPAY2021/06/0506', NULL, 'cash', '', '', '', '', '', '', '218.4000', NULL, 6, NULL, 'received', '', '218.4000', '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 (508, '2021-06-28 20:47:55', 545, NULL, NULL, 'IPAY2021/06/0507', NULL, 'cash', '', '', '', '', '', '', '659.5000', NULL, 6, NULL, 'received', '', '659.5000', '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 (509, '2021-06-28 21:44:55', 546, NULL, NULL, 'IPAY2021/06/0508', NULL, 'cash', '', '', '', '', '', '', '116.5000', NULL, 6, NULL, 'received', '', '116.5000', '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 (510, '2021-06-28 21:46:17', 547, NULL, NULL, 'IPAY2021/06/0509', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 6, NULL, 'received', '', '8.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 (511, '2021-06-28 21:50:20', 548, NULL, NULL, 'IPAY2021/06/0510', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 6, NULL, 'received', '', '6.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 (512, '2021-06-29 15:02:23', 549, NULL, NULL, 'IPAY2021/06/0511', NULL, 'cash', '', '', '', '', '', '', '1115.0000', NULL, 7, NULL, 'received', '', '1115.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 (513, '2021-06-29 20:41:02', 550, NULL, NULL, 'IPAY2021/06/0512', NULL, 'cash', '', '', '', '', '', '', '315.0000', NULL, 6, NULL, 'received', '', '315.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 (514, '2021-06-29 20:42:43', 551, NULL, NULL, 'IPAY2021/06/0513', NULL, 'cash', '', '', '', '', '', '', '123.5000', NULL, 6, NULL, 'received', '', '123.5000', '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 (515, '2021-06-29 21:56:01', 552, NULL, NULL, 'IPAY2021/06/0514', NULL, 'cash', '', '', '', '', '', '', '118.5000', NULL, 6, NULL, 'received', '', '118.5000', '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 (516, '2021-06-30 00:02:32', 553, NULL, NULL, 'IPAY2021/06/0515', NULL, 'cash', '', '', '', '', '', '', '54.0000', NULL, 3, NULL, 'received', '', '54.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 (517, '2021-06-30 00:24:37', 554, NULL, NULL, 'IPAY2021/06/0516', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 3, NULL, 'received', '', '25.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 (518, '2021-06-30 14:19:36', 555, NULL, NULL, 'IPAY2021/06/0517', NULL, 'cash', '', '', '', '', '', '', '295.8000', NULL, 7, NULL, 'received', '', '295.8000', '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 (519, '2021-06-30 15:21:44', 556, NULL, NULL, 'IPAY2021/06/0518', NULL, 'cash', '', '', '', '', '', '', '277.0000', NULL, 7, NULL, 'received', '', '277.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 (520, '2021-06-30 20:30:42', 557, NULL, NULL, 'IPAY2021/06/0519', NULL, 'cash', '', '', '', '', '', '', '761.5000', NULL, 6, NULL, 'received', '', '761.5000', '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 (521, '2021-06-30 21:24:36', 558, NULL, NULL, 'IPAY2021/06/0520', NULL, 'cash', '', '', '', '', '', '', '52.0000', NULL, 6, NULL, 'received', '', '52.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 (522, '2021-06-30 21:26:33', 559, NULL, NULL, 'IPAY2021/06/0521', NULL, 'cash', '', '', '', '', '', '', '54.6000', NULL, 6, NULL, 'received', '', '54.6000', '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 (523, '2021-06-30 21:34:28', 560, NULL, NULL, 'IPAY2021/06/0522', NULL, 'cash', '', '', '', '', '', '', '46.0000', NULL, 6, NULL, 'received', '', '46.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 (524, '2021-06-30 21:51:00', 561, NULL, NULL, 'IPAY2021/06/0523', NULL, 'cash', '', '', '', '', '', '', '36.5000', NULL, 6, NULL, 'received', '', '36.5000', '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 (525, '2021-07-01 14:27:16', 562, NULL, NULL, 'IPAY2021/07/0524', NULL, 'cash', '', '', '', '', '', '', '442.0000', NULL, 7, NULL, 'received', '', '442.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 (526, '2021-07-01 15:01:52', 563, NULL, NULL, 'IPAY2021/07/0525', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 7, NULL, 'received', '', '10.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 (527, '2021-07-01 15:04:10', 564, NULL, NULL, 'IPAY2021/07/0526', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 7, NULL, 'received', '', '17.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 (528, '2021-07-01 19:03:02', 565, NULL, NULL, 'IPAY2021/07/0527', NULL, 'cash', '', '', '', '', '', '', '290.0000', NULL, 6, NULL, 'received', '', '290.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 (529, '2021-07-01 22:53:46', 566, NULL, NULL, 'IPAY2021/07/0528', NULL, 'cash', '', '', '', '', '', '', '154.5000', NULL, 3, NULL, 'received', '', '154.5000', '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 (530, '2021-07-02 12:18:36', 567, NULL, NULL, 'IPAY2021/07/0529', NULL, 'cash', '', '', '', '', '', '', '98.0000', NULL, 3, NULL, 'received', '', '98.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 (531, '2021-07-02 13:01:14', 568, NULL, NULL, 'IPAY2021/07/0530', NULL, 'cash', '', '', '', '', '', '', '700.5000', NULL, 3, NULL, 'received', '', '700.5000', '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 (532, '2021-07-02 15:50:50', 569, NULL, NULL, 'IPAY2021/07/0531', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 3, NULL, 'received', '', '14.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 (533, '2021-07-02 20:52:36', 570, NULL, NULL, 'IPAY2021/07/0532', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 3, NULL, 'received', '', '2.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 (534, '2021-07-02 20:57:05', 571, NULL, NULL, 'IPAY2021/07/0533', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 3, NULL, 'received', '', '5.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 (535, '2021-07-02 21:10:17', 572, NULL, NULL, 'IPAY2021/07/0534', NULL, 'cash', '', '', '', '', '', '', '446.1900', NULL, 3, NULL, 'received', '', '446.1900', '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 (536, '2021-07-02 21:43:55', 573, NULL, NULL, 'IPAY2021/07/0535', NULL, 'cash', '', '', '', '', '', '', '104.2000', NULL, 3, NULL, 'received', '', '104.2000', '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 (537, '2021-07-02 21:58:34', 574, NULL, NULL, 'IPAY2021/07/0536', NULL, 'cash', '', '', '', '', '', '', '45.0000', NULL, 3, NULL, 'received', '', '45.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 (538, '2021-07-02 22:00:56', 575, NULL, NULL, 'IPAY2021/07/0537', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 3, NULL, 'received', '', '5.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 (539, '2021-07-05 19:32:38', 580, NULL, NULL, 'IPAY2021/07/0538', NULL, 'cash', '', '', '', '', '', '', '246.5000', NULL, 3, NULL, 'received', '', '246.5000', '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 (540, '2021-07-05 19:44:35', 581, NULL, NULL, 'IPAY2021/07/0539', NULL, 'cash', '', '', '', '', '', '', '439.5000', NULL, 3, NULL, 'received', '', '439.5000', '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 (541, '2021-07-05 21:43:06', 582, NULL, NULL, 'IPAY2021/07/0540', NULL, 'cash', '', '', '', '', '', '', '335.5000', NULL, 3, NULL, 'received', '', '335.5000', '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 (542, '2021-07-05 21:48:40', 583, NULL, NULL, 'IPAY2021/07/0541', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 3, NULL, 'received', '', '1.5000', '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 (543, '2021-07-06 15:28:54', 584, NULL, NULL, 'IPAY2021/07/0542', NULL, 'cash', '', '', '', '', '', '', '206.0000', NULL, 3, NULL, 'received', '', '206.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 (544, '2021-07-06 18:22:33', 585, NULL, NULL, 'IPAY2021/07/0543', NULL, 'cash', '', '', '', '', '', '', '285.0000', NULL, 3, NULL, 'received', '', '285.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 (545, '2021-07-06 19:35:13', 586, NULL, NULL, 'IPAY2021/07/0544', NULL, 'cash', '', '', '', '', '', '', '344.0000', NULL, 3, NULL, 'received', '', '344.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 (546, '2021-07-06 20:12:50', 587, NULL, NULL, 'IPAY2021/07/0545', NULL, 'cash', '', '', '', '', '', '', '63.5000', NULL, 3, NULL, 'received', '', '63.5000', '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 (547, '2021-07-06 20:24:30', 588, NULL, NULL, 'IPAY2021/07/0546', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 3, NULL, 'received', '', '2.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 (548, '2021-07-06 21:41:17', 589, NULL, NULL, 'IPAY2021/07/0547', NULL, 'cash', '', '', '', '', '', '', '14.5000', NULL, 3, NULL, 'received', '', '14.5000', '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 (549, '2021-07-06 22:02:48', 590, NULL, NULL, 'IPAY2021/07/0548', NULL, 'cash', '', '', '', '', '', '', '93.0000', NULL, 3, NULL, 'received', '', '93.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 (550, '2021-07-07 14:29:10', 591, NULL, NULL, 'IPAY2021/07/0549', NULL, 'cash', '', '', '', '', '', '', '242.0000', NULL, 3, NULL, 'received', '', '242.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 (551, '2021-07-07 14:55:24', 592, NULL, NULL, 'IPAY2021/07/0550', NULL, 'cash', '', '', '', '', '', '', '32.5000', NULL, 3, NULL, 'received', '', '32.5000', '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 (552, '2021-07-07 14:57:09', 593, NULL, NULL, 'IPAY2021/07/0551', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 3, NULL, 'received', '', '20.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 (553, '2021-07-07 21:43:43', 594, NULL, NULL, 'IPAY2021/07/0552', NULL, 'cash', '', '', '', '', '', '', '1247.1000', NULL, 3, NULL, 'received', '', '1247.1000', '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 (554, '2021-07-07 21:44:45', 595, NULL, NULL, 'IPAY2021/07/0553', NULL, 'cash', '', '', '', '', '', '', '53.0000', NULL, 3, NULL, 'received', '', '53.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 (555, '2021-07-07 21:51:15', 596, NULL, NULL, 'IPAY2021/07/0554', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 3, NULL, 'received', '', '9.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 (556, '2021-07-07 22:06:11', 597, NULL, NULL, 'IPAY2021/07/0555', NULL, 'cash', '', '', '', '', '', '', '75.5000', NULL, 3, NULL, 'received', '', '75.5000', '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 (557, '2021-07-08 12:30:20', 598, NULL, NULL, 'IPAY2021/07/0556', NULL, 'cash', '', '', '', '', '', '', '408.0000', NULL, 7, NULL, 'received', '', '408.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 (558, '2021-07-08 12:30:57', 599, NULL, NULL, 'IPAY2021/07/0557', NULL, 'cash', '', '', '', '', '', '', '0.5000', NULL, 7, NULL, 'received', '', '0.5000', '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 (559, '2021-07-08 12:32:37', 600, NULL, NULL, 'IPAY2021/07/0558', NULL, 'cash', '', '', '', '', '', '', '0.5000', NULL, 7, NULL, 'received', '', '0.5000', '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 (560, '2021-07-08 12:34:25', 601, NULL, NULL, 'IPAY2021/07/0559', NULL, 'cash', '', '', '', '', '', '', '0.5000', NULL, 7, NULL, 'received', '', '0.5000', '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 (561, '2021-07-08 15:06:50', 602, NULL, NULL, 'IPAY2021/07/0560', NULL, 'cash', '', '', '', '', '', '', '93.0000', NULL, 7, NULL, 'received', '', '93.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 (562, '2021-07-08 21:52:06', 603, NULL, NULL, 'IPAY2021/07/0561', NULL, 'cash', '', '', '', '', '', '', '771.8000', NULL, 6, NULL, 'received', '', '771.8000', '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 (563, '2021-07-08 21:52:21', 604, NULL, NULL, 'IPAY2021/07/0562', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 6, NULL, 'received', '', '1.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 (564, '2021-07-09 14:36:40', 605, NULL, NULL, 'IPAY2021/07/0563', NULL, 'cash', '', '', '', '', '', '', '396.5000', NULL, 8, NULL, 'received', '', '396.5000', '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 (565, '2021-07-09 14:53:52', 606, NULL, NULL, 'IPAY2021/07/0564', NULL, 'cash', '', '', '', '', '', '', '227.5000', NULL, 8, NULL, 'received', '', '227.5000', '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 (566, '2021-07-09 15:30:04', 607, NULL, NULL, 'IPAY2021/07/0565', NULL, 'cash', '', '', '', '', '', '', '48.5000', NULL, 8, NULL, 'received', '', '48.5000', '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 (567, '2021-07-09 19:09:50', 608, NULL, NULL, 'IPAY2021/07/0566', NULL, 'cash', '', '', '', '', '', '', '226.0000', NULL, 8, NULL, 'received', '', '226.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 (568, '2021-07-09 21:08:41', 609, NULL, NULL, 'IPAY2021/07/0567', NULL, 'cash', '', '', '', '', '', '', '324.4000', NULL, 8, NULL, 'received', '', '324.4000', '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 (569, '2021-07-09 21:52:11', 610, NULL, NULL, 'IPAY2021/07/0568', NULL, 'cash', '', '', '', '', '', '', '118.0000', NULL, 8, NULL, 'received', '', '118.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 (570, '2021-07-10 14:42:00', 611, NULL, NULL, 'IPAY2021/07/0569', NULL, 'cash', '', '', '', '', '', '', '432.0000', NULL, 7, NULL, 'received', '', '432.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 (571, '2021-07-10 15:03:54', 612, NULL, NULL, 'IPAY2021/07/0570', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 7, NULL, 'received', '', '27.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 (572, '2021-07-10 20:58:36', 613, NULL, NULL, 'IPAY2021/07/0571', NULL, 'cash', '', '', '', '', '', '', '498.7900', NULL, 6, NULL, 'received', '', '498.7900', '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 (573, '2021-07-10 21:51:31', 614, NULL, NULL, 'IPAY2021/07/0572', NULL, 'cash', '', '', '', '', '', '', '584.5000', NULL, 6, NULL, 'received', '', '584.5000', '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 (574, '2021-07-10 22:08:15', 615, NULL, NULL, 'IPAY2021/07/0573', NULL, 'cash', '', '', '', '', '', '', '18.0000', NULL, 6, NULL, 'received', '', '18.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 (575, '2021-07-10 23:04:42', 616, NULL, NULL, 'IPAY2021/07/0574', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 3, NULL, 'received', '', '12.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 (576, '2021-07-11 20:26:20', 617, NULL, NULL, 'IPAY2021/07/0575', NULL, 'cash', '', '', '', '', '', '', '743.0000', NULL, 7, NULL, 'received', '', '743.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 (577, '2021-07-11 20:44:33', 618, NULL, NULL, 'IPAY2021/07/0576', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 7, NULL, 'received', '', '5.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 (578, '2021-07-11 21:17:46', 619, NULL, NULL, 'IPAY2021/07/0577', NULL, 'cash', '', '', '', '', '', '', '61.0000', NULL, 7, NULL, 'received', '', '61.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 (579, '2021-07-11 21:41:10', 620, NULL, NULL, 'IPAY2021/07/0578', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 7, NULL, 'received', '', '5.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 (580, '2021-07-12 14:20:07', 621, NULL, NULL, 'IPAY2021/07/0579', NULL, 'cash', '', '', '', '', '', '', '606.1000', NULL, 7, NULL, 'received', '', '606.1000', '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 (581, '2021-07-12 21:08:09', 622, NULL, NULL, 'IPAY2021/07/0580', NULL, 'cash', '', '', '', '', '', '', '846.4600', NULL, 7, NULL, 'received', '', '846.4600', '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 (582, '2021-07-12 21:48:18', 623, NULL, NULL, 'IPAY2021/07/0581', NULL, 'cash', '', '', '', '', '', '', '74.2000', NULL, 7, NULL, 'received', '', '74.2000', '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 (583, '2021-07-12 21:53:28', 624, NULL, NULL, 'IPAY2021/07/0582', NULL, 'cash', '', '', '', '', '', '', '11.5000', NULL, 7, NULL, 'received', '', '11.5000', '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 (584, '2021-07-12 23:18:06', 625, NULL, NULL, 'IPAY2021/07/0583', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 3, NULL, 'received', '', '3.5000', '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 (585, '2021-07-13 15:00:26', 626, NULL, NULL, 'IPAY2021/07/0584', NULL, 'cash', '', '', '', '', '', '', '245.0000', NULL, 7, NULL, 'received', '', '245.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 (586, '2021-07-13 15:11:55', 627, NULL, NULL, 'IPAY2021/07/0585', NULL, 'cash', '', '', '', '', '', '', '5.5000', NULL, 7, NULL, 'received', '', '5.5000', '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 (587, '2021-07-13 21:52:04', 628, NULL, NULL, 'IPAY2021/07/0586', NULL, 'cash', '', '', '', '', '', '', '626.7000', NULL, 7, NULL, 'received', '', '626.7000', '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 (588, '2021-07-13 21:55:07', 629, NULL, NULL, 'IPAY2021/07/0587', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 7, NULL, 'received', '', '3.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 (589, '2021-07-14 14:12:23', 630, NULL, NULL, 'IPAY2021/07/0588', NULL, 'cash', '', '', '', '', '', '', '127.0000', NULL, 7, NULL, 'received', '', '127.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 (590, '2021-07-14 14:51:44', 631, NULL, NULL, 'IPAY2021/07/0589', NULL, 'cash', '', '', '', '', '', '', '151.0000', NULL, 7, NULL, 'received', '', '151.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 (591, '2021-07-14 15:44:26', 632, NULL, NULL, 'IPAY2021/07/0590', NULL, 'cash', '', '', '', '', '', '', '31.5000', NULL, 7, NULL, 'received', '', '31.5000', '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 (592, '2021-07-14 21:08:32', 633, NULL, NULL, 'IPAY2021/07/0591', NULL, 'cash', '', '', '', '', '', '', '928.0100', NULL, 6, NULL, 'received', '', '928.0100', '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 (593, '2021-07-14 21:49:59', 634, NULL, NULL, 'IPAY2021/07/0592', NULL, 'cash', '', '', '', '', '', '', '148.5000', NULL, 6, NULL, 'received', '', '148.5000', '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 (594, '2021-07-14 23:24:52', 635, NULL, NULL, 'IPAY2021/07/0593', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 3, NULL, 'received', '', '80.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 (595, '2021-07-15 15:26:52', 637, NULL, NULL, 'IPAY2021/07/0594', NULL, 'cash', '', '', '', '', '', '', '196.7300', NULL, 7, NULL, 'received', '', '196.7300', '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 (596, '2021-07-15 15:34:28', 638, NULL, NULL, 'IPAY2021/07/0595', NULL, 'cash', '', '', '', '', '', '', '19.5000', NULL, 7, NULL, 'received', '', '19.5000', '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 (597, '2021-07-15 20:03:38', 639, NULL, NULL, 'IPAY2021/07/0596', NULL, 'cash', '', '', '', '', '', '', '748.5000', NULL, 6, NULL, 'received', '', '748.5000', '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 (598, '2021-07-15 21:57:57', 640, NULL, NULL, 'IPAY2021/07/0597', NULL, 'cash', '', '', '', '', '', '', '174.3300', NULL, 6, NULL, 'received', '', '174.3300', '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 (599, '2021-07-15 22:01:56', 641, NULL, NULL, 'IPAY2021/07/0598', NULL, 'cash', '', '', '', '', '', '', '47.0100', NULL, 6, NULL, 'received', '', '47.0100', '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 (600, '2021-07-15 22:06:29', 642, NULL, NULL, 'IPAY2021/07/0599', NULL, 'cash', '', '', '', '', '', '', '30.5000', NULL, 3, NULL, 'received', '', '30.5000', '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 (601, '2021-07-16 15:24:57', 643, NULL, NULL, 'IPAY2021/07/0600', NULL, 'cash', '', '', '', '', '', '', '609.5000', NULL, 8, NULL, 'received', '', '609.5000', '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 (602, '2021-07-16 15:37:21', 644, NULL, NULL, 'IPAY2021/07/0601', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 3, NULL, 'received', '', '90.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 (603, '2021-07-16 16:39:24', 645, NULL, NULL, 'IPAY2021/07/0602', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 8, NULL, 'received', '', '11.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 (604, '2021-07-17 14:41:07', 647, NULL, NULL, 'IPAY2021/07/0603', NULL, 'cash', '', '', '', '', '', '', '211.5000', NULL, 7, NULL, 'received', '', '211.5000', '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 (605, '2021-07-17 14:41:25', 648, NULL, NULL, 'IPAY2021/07/0604', NULL, 'cash', '', '', '', '', '', '', '211.5000', NULL, 7, NULL, 'received', '', '211.5000', '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 (606, '2021-07-17 14:59:14', 649, NULL, NULL, 'IPAY2021/07/0605', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 7, NULL, 'received', '', '5.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 (607, '2021-07-17 15:03:46', 650, NULL, NULL, 'IPAY2021/07/0606', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 7, NULL, 'received', '', '25.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 (608, '2021-07-17 20:35:22', 651, NULL, NULL, 'IPAY2021/07/0607', NULL, 'cash', '', '', '', '', '', '', '209.1000', NULL, 6, NULL, 'received', '', '209.1000', '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 (609, '2021-07-17 20:37:59', 652, NULL, NULL, 'IPAY2021/07/0608', NULL, 'cash', '', '', '', '', '', '', '168.5000', NULL, 6, NULL, 'received', '', '168.5000', '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 (610, '2021-07-17 21:54:21', 653, NULL, NULL, 'IPAY2021/07/0609', NULL, 'cash', '', '', '', '', '', '', '243.8000', NULL, 6, NULL, 'received', '', '243.8000', '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 (611, '2021-07-18 20:18:48', 654, NULL, NULL, 'IPAY2021/07/0610', NULL, 'cash', '', '', '', '', '', '', '437.5000', NULL, 7, NULL, 'received', '', '437.5000', '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 (612, '2021-07-18 20:23:37', 655, NULL, NULL, 'IPAY2021/07/0611', NULL, 'cash', '', '', '', '', '', '', '132.3000', NULL, 7, NULL, 'received', '', '132.3000', '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 (613, '2021-07-18 20:30:39', 656, NULL, NULL, 'IPAY2021/07/0612', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 7, NULL, 'received', '', '23.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 (614, '2021-07-18 20:32:50', 657, NULL, NULL, 'IPAY2021/07/0613', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 7, NULL, 'received', '', '6.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 (615, '2021-07-18 21:09:37', 658, NULL, NULL, 'IPAY2021/07/0614', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 7, NULL, 'received', '', '28.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 (616, '2021-07-18 21:19:35', 659, NULL, NULL, 'IPAY2021/07/0615', NULL, 'cash', '', '', '', '', '', '', '109.5000', NULL, 7, NULL, 'received', '', '109.5000', '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 (617, '2021-07-18 21:29:34', 660, NULL, NULL, 'IPAY2021/07/0616', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 7, NULL, 'received', '', '23.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 (618, '2021-07-18 21:42:05', 661, NULL, NULL, 'IPAY2021/07/0617', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 7, NULL, 'received', '', '10.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 (619, '2021-07-18 22:02:42', 662, NULL, NULL, 'IPAY2021/07/0618', NULL, 'cash', '', '', '', '', '', '', '64.0000', NULL, 7, NULL, 'received', '', '64.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 (620, '2021-07-19 14:44:04', 663, NULL, NULL, 'IPAY2021/07/0619', NULL, 'cash', '', '', '', '', '', '', '267.5000', NULL, 7, NULL, 'received', '', '267.5000', '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 (621, '2021-07-19 15:15:33', 664, NULL, NULL, 'IPAY2021/07/0620', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 7, NULL, 'received', '', '60.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 (622, '2021-07-19 15:20:31', 665, NULL, NULL, 'IPAY2021/07/0621', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 7, NULL, 'received', '', '30.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 (623, '2021-07-20 13:40:35', 666, NULL, NULL, 'IPAY2021/07/0622', NULL, 'cash', '', '', '', '', '', '', '757.6900', NULL, 7, NULL, 'received', '', '757.6900', '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 (624, '2021-07-20 14:59:41', 667, NULL, NULL, 'IPAY2021/07/0623', NULL, 'cash', '', '', '', '', '', '', '249.1900', NULL, 7, NULL, 'received', '', '249.1900', '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 (625, '2021-07-20 15:24:59', 668, NULL, NULL, 'IPAY2021/07/0624', NULL, 'cash', '', '', '', '', '', '', '89.5000', NULL, 7, NULL, 'received', '', '89.5000', '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 (626, '2021-07-20 15:57:10', 669, NULL, NULL, 'IPAY2021/07/0625', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 7, NULL, 'received', '', '40.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 (627, '2021-07-20 19:29:02', 670, NULL, NULL, 'IPAY2021/07/0626', NULL, 'cash', '', '', '', '', '', '', '321.5000', NULL, 6, NULL, 'received', '', '321.5000', '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 (628, '2021-07-20 20:55:33', 671, NULL, NULL, 'IPAY2021/07/0627', NULL, 'cash', '', '', '', '', '', '', '276.0000', NULL, 6, NULL, 'received', '', '276.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 (629, '2021-07-20 21:37:32', 672, NULL, NULL, 'IPAY2021/07/0628', NULL, 'cash', '', '', '', '', '', '', '77.5000', NULL, 6, NULL, 'received', '', '77.5000', '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 (630, '2021-07-20 23:32:56', 673, NULL, NULL, 'IPAY2021/07/0629', NULL, 'cash', '', '', '', '', '', '', '178.0000', NULL, 3, NULL, 'received', '', '178.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 (631, '2021-07-21 14:32:34', 674, NULL, NULL, 'IPAY2021/07/0630', NULL, 'cash', '', '', '', '', '', '', '208.5000', NULL, 7, NULL, 'received', '', '208.5000', '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 (632, '2021-07-21 14:49:28', 675, NULL, NULL, 'IPAY2021/07/0631', NULL, 'cash', '', '', '', '', '', '', '103.5000', NULL, 7, NULL, 'received', '', '103.5000', '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 (633, '2021-07-21 15:30:54', 676, NULL, NULL, 'IPAY2021/07/0632', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 7, NULL, 'received', '', '3.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 (634, '2021-07-21 21:26:31', 677, NULL, NULL, 'IPAY2021/07/0633', NULL, 'cash', '', '', '', '', '', '', '541.1800', NULL, 6, NULL, 'received', '', '541.1800', '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 (635, '2021-07-21 21:50:24', 678, NULL, NULL, 'IPAY2021/07/0634', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 6, NULL, 'received', '', '3.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 (636, '2021-07-22 13:20:00', 679, NULL, NULL, 'IPAY2021/07/0635', NULL, 'cash', '', '', '', '', '', '', '483.5000', NULL, 7, NULL, 'received', '', '483.5000', '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 (637, '2021-07-22 14:48:08', 680, NULL, NULL, 'IPAY2021/07/0636', NULL, 'cash', '', '', '', '', '', '', '125.5000', NULL, 7, NULL, 'received', '', '125.5000', '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 (638, '2021-07-22 15:49:22', 681, NULL, NULL, 'IPAY2021/07/0637', NULL, 'cash', '', '', '', '', '', '', '63.0000', NULL, 7, NULL, 'received', '', '63.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 (639, '2021-07-22 19:17:08', 682, NULL, NULL, 'IPAY2021/07/0638', NULL, 'cash', '', '', '', '', '', '', '370.5000', NULL, 7, NULL, 'received', '', '370.5000', '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 (640, '2021-07-22 20:25:42', 683, NULL, NULL, 'IPAY2021/07/0639', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 7, NULL, 'received', '', '37.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 (641, '2021-07-22 20:51:05', 684, NULL, NULL, 'IPAY2021/07/0640', NULL, 'cash', '', '', '', '', '', '', '173.5000', NULL, 7, NULL, 'received', '', '173.5000', '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 (642, '2021-07-22 21:52:59', 685, NULL, NULL, 'IPAY2021/07/0641', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 7, NULL, 'received', '', '22.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 (643, '2021-07-23 15:56:52', 686, NULL, NULL, 'IPAY2021/07/0642', NULL, 'cash', '', '', '', '', '', '', '253.0000', NULL, 8, NULL, 'received', '', '253.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 (644, '2021-07-23 20:28:25', 687, NULL, NULL, 'IPAY2021/07/0643', NULL, 'cash', '', '', '', '', '', '', '669.5000', NULL, 6, NULL, 'received', '', '669.5000', '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 (645, '2021-07-23 21:25:46', 688, NULL, NULL, 'IPAY2021/07/0644', NULL, 'cash', '', '', '', '', '', '', '209.0000', NULL, 6, NULL, 'received', '', '209.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 (646, '2021-07-23 21:56:23', 689, NULL, NULL, 'IPAY2021/07/0645', NULL, 'cash', '', '', '', '', '', '', '209.0000', NULL, 6, NULL, 'received', '', '209.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 (647, '2021-07-23 21:59:44', 690, NULL, NULL, 'IPAY2021/07/0646', NULL, 'cash', '', '', '', '', '', '', '195.5000', NULL, 6, NULL, 'received', '', '195.5000', '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 (648, '2021-07-24 15:41:10', 691, NULL, NULL, 'IPAY2021/07/0647', NULL, 'cash', '', '', '', '', '', '', '158.0000', NULL, 7, NULL, 'received', '', '158.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 (649, '2021-07-24 18:51:08', 692, NULL, NULL, 'IPAY2021/07/0648', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 7, NULL, 'received', '', '15.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 (650, '2021-07-24 18:52:47', 693, NULL, NULL, 'IPAY2021/07/0649', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 7, NULL, 'received', '', '37.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 (651, '2021-07-24 19:29:33', 694, NULL, NULL, 'IPAY2021/07/0650', NULL, 'cash', '', '', '', '', '', '', '460.5000', NULL, 6, NULL, 'received', '', '460.5000', '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 (652, '2021-07-24 19:39:36', 695, NULL, NULL, 'IPAY2021/07/0651', NULL, 'cash', '', '', '', '', '', '', '153.8000', NULL, 6, NULL, 'received', '', '153.8000', '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 (653, '2021-07-24 21:24:44', 696, NULL, NULL, 'IPAY2021/07/0652', NULL, 'cash', '', '', '', '', '', '', '120.5000', NULL, 6, NULL, 'received', '', '120.5000', '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 (654, '2021-07-24 22:01:13', 697, NULL, NULL, 'IPAY2021/07/0653', NULL, 'cash', '', '', '', '', '', '', '176.0000', NULL, 6, NULL, 'received', '', '176.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 (655, '2021-07-24 22:02:29', 698, NULL, NULL, 'IPAY2021/07/0654', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 6, NULL, 'received', '', '100.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 (656, '2021-07-25 18:42:59', 699, NULL, NULL, 'IPAY2021/07/0655', NULL, 'cash', '', '', '', '', '', '', '183.9000', NULL, 7, NULL, 'received', '', '183.9000', '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 (657, '2021-07-25 19:18:21', 700, NULL, NULL, 'IPAY2021/07/0656', NULL, 'cash', '', '', '', '', '', '', '83.5000', NULL, 7, NULL, 'received', '', '83.5000', '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 (658, '2021-07-25 20:07:31', 701, NULL, NULL, 'IPAY2021/07/0657', NULL, 'cash', '', '', '', '', '', '', '255.5000', NULL, 7, NULL, 'received', '', '255.5000', '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 (659, '2021-07-25 20:22:28', 702, NULL, NULL, 'IPAY2021/07/0658', NULL, 'cash', '', '', '', '', '', '', '133.5000', NULL, 7, NULL, 'received', '', '133.5000', '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 (660, '2021-07-25 21:02:37', 703, NULL, NULL, 'IPAY2021/07/0659', NULL, 'cash', '', '', '', '', '', '', '54.5000', NULL, 7, NULL, 'received', '', '54.5000', '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 (661, '2021-07-25 21:20:07', 704, NULL, NULL, 'IPAY2021/07/0660', NULL, 'cash', '', '', '', '', '', '', '510.0000', NULL, 7, NULL, 'received', '', '510.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 (662, '2021-07-26 14:57:00', 705, NULL, NULL, 'IPAY2021/07/0661', NULL, 'cash', '', '', '', '', '', '', '369.0000', NULL, 8, NULL, 'received', '', '369.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 (663, '2021-07-26 15:32:54', 706, NULL, NULL, 'IPAY2021/07/0662', NULL, 'cash', '', '', '', '', '', '', '17.5000', NULL, 11, NULL, 'received', '', '17.5000', '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 (664, '2021-07-26 15:42:32', 707, NULL, NULL, 'IPAY2021/07/0663', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 11, NULL, 'received', '', '60.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 (665, '2021-07-26 15:58:53', 708, NULL, NULL, 'IPAY2021/07/0664', NULL, 'cash', '', '', '', '', '', '', '94.0000', NULL, 8, NULL, 'received', '', '94.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 (666, '2021-07-26 16:12:40', 709, NULL, NULL, 'IPAY2021/07/0665', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 8, NULL, 'received', '', '26.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 (667, '2021-07-26 18:07:37', 710, NULL, NULL, 'IPAY2021/07/0666', NULL, 'cash', '', '', '', '', '', '', '396.2000', NULL, 8, NULL, 'received', '', '396.2000', '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 (668, '2021-07-26 20:06:10', 711, NULL, NULL, 'IPAY2021/07/0667', NULL, 'cash', '', '', '', '', '', '', '165.0000', NULL, 8, NULL, 'received', '', '165.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 (669, '2021-07-26 20:08:14', 712, NULL, NULL, 'IPAY2021/07/0668', NULL, 'cash', '', '', '', '', '', '', '165.0000', NULL, 8, NULL, 'received', '', '165.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 (670, '2021-07-26 20:14:40', 713, NULL, NULL, 'IPAY2021/07/0669', NULL, 'cash', '', '', '', '', '', '', '501.5000', NULL, 8, NULL, 'received', '', '501.5000', '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 (671, '2021-07-26 20:21:11', 714, NULL, NULL, 'IPAY2021/07/0670', NULL, 'cash', '', '', '', '', '', '', '78.5000', NULL, 11, NULL, 'received', '', '78.5000', '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 (672, '2021-07-26 21:31:32', 715, NULL, NULL, 'IPAY2021/07/0671', NULL, 'cash', '', '', '', '', '', '', '29.5000', NULL, 11, NULL, 'received', '', '29.5000', '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 (673, '2021-07-26 21:31:43', 716, NULL, NULL, 'IPAY2021/07/0672', NULL, 'cash', '', '', '', '', '', '', '165.0000', NULL, 8, NULL, 'received', '', '165.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 (674, '2021-07-26 21:35:29', 717, NULL, NULL, 'IPAY2021/07/0673', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 11, NULL, 'received', '', '22.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 (675, '2021-07-26 21:46:23', 718, NULL, NULL, 'IPAY2021/07/0674', NULL, 'cash', '', '', '', '', '', '', '37.5000', NULL, 8, NULL, 'received', '', '37.5000', '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 (676, '2021-07-27 10:11:07', 719, NULL, NULL, 'IPAY2021/07/0675', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 10, NULL, 'received', '', '8.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 (677, '2021-07-27 10:11:44', 720, NULL, NULL, 'IPAY2021/07/0676', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 10, NULL, 'received', '', '5.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 (678, '2021-07-27 17:56:10', 721, NULL, NULL, 'IPAY2021/07/0677', NULL, 'cash', '', '', '', '', '', '', '187.8300', NULL, 11, NULL, 'received', '', '187.8300', '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 (679, '2021-07-27 19:38:31', 722, NULL, NULL, 'IPAY2021/07/0678', NULL, 'cash', '', '', '', '', '', '', '65.0000', NULL, 11, NULL, 'received', '', '65.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 (680, '2021-07-27 20:22:55', 723, NULL, NULL, 'IPAY2021/07/0679', NULL, 'cash', '', '', '', '', '', '', '635.2000', NULL, 6, NULL, 'received', '', '635.2000', '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 (681, '2021-07-27 21:31:42', 724, NULL, NULL, 'IPAY2021/07/0680', NULL, 'cash', '', '', '', '', '', '', '140.3300', NULL, 6, NULL, 'received', '', '140.3300', '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 (682, '2021-07-27 21:40:20', 725, NULL, NULL, 'IPAY2021/07/0681', NULL, 'cash', '', '', '', '', '', '', '5.8300', NULL, 6, NULL, 'received', '', '5.8300', '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 (683, '2021-07-27 21:40:54', 726, NULL, NULL, 'IPAY2021/07/0682', NULL, 'cash', '', '', '', '', '', '', '3.8300', NULL, 6, NULL, 'received', '', '3.8300', '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 (684, '2021-07-27 22:13:58', 727, NULL, NULL, 'IPAY2021/07/0683', NULL, 'cash', '', '', '', '', '', '', '305.2700', NULL, 11, NULL, 'received', '', '305.2700', '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 (685, '2021-07-28 11:03:53', 729, NULL, NULL, 'IPAY2021/07/0684', NULL, 'cash', '', '', '', '', '', '', '385.5000', NULL, 7, NULL, 'received', '', '385.5000', '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 (686, '2021-07-28 17:04:48', 730, NULL, NULL, 'IPAY2021/07/0685', NULL, 'cash', '', '', '', '', '', '', '134.0000', NULL, 11, NULL, 'received', '', '134.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 (687, '2021-07-28 18:51:59', 731, NULL, NULL, 'IPAY2021/07/0686', NULL, 'cash', '', '', '', '', '', '', '318.9000', NULL, 7, NULL, 'received', '', '318.9000', '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 (688, '2021-07-28 19:06:48', 732, NULL, NULL, 'IPAY2021/07/0687', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 11, NULL, 'received', '', '3.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 (689, '2021-07-28 20:30:20', 733, NULL, NULL, 'IPAY2021/07/0688', NULL, 'cash', '', '', '', '', '', '', '268.0000', NULL, 7, NULL, 'received', '', '268.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 (690, '2021-07-28 20:30:59', 734, NULL, NULL, 'IPAY2021/07/0689', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 7, NULL, 'received', '', '11.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 (691, '2021-07-28 20:44:32', 735, NULL, NULL, 'IPAY2021/07/0690', NULL, 'cash', '', '', '', '', '', '', '152.0000', NULL, 11, NULL, 'received', '', '152.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 (692, '2021-07-28 21:30:46', 736, NULL, NULL, 'IPAY2021/07/0691', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 7, NULL, 'received', '', '250.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 (693, '2021-07-28 21:41:00', 737, NULL, NULL, 'IPAY2021/07/0692', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 7, NULL, 'received', '', '20.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 (694, '2021-07-28 21:53:48', 738, NULL, NULL, 'IPAY2021/07/0693', NULL, 'cash', '', '', '', '', '', '', '209.0000', NULL, 6, NULL, 'received', '', '209.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 (695, '2021-07-28 22:20:44', 739, NULL, NULL, 'IPAY2021/07/0694', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 11, NULL, 'received', '', '29.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 (696, '2021-07-29 13:58:46', 740, NULL, NULL, 'IPAY2021/07/0695', NULL, 'cash', '', '', '', '', '', '', '799.5000', NULL, 7, NULL, 'received', '', '799.5000', '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 (697, '2021-07-29 15:04:43', 741, NULL, NULL, 'IPAY2021/07/0696', NULL, 'cash', '', '', '', '', '', '', '89.5000', NULL, 7, NULL, 'received', '', '89.5000', '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 (698, '2021-07-29 20:59:20', 742, NULL, NULL, 'IPAY2021/07/0697', NULL, 'cash', '', '', '', '', '', '', '430.3000', NULL, 6, NULL, 'received', '', '430.3000', '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 (699, '2021-07-29 21:49:38', 743, NULL, NULL, 'IPAY2021/07/0698', NULL, 'cash', '', '', '', '', '', '', '807.6000', NULL, 11, NULL, 'received', '', '807.6000', '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 (700, '2021-07-29 21:51:19', 744, NULL, NULL, 'IPAY2021/07/0699', NULL, 'cash', '', '', '', '', '', '', '807.6000', NULL, 11, NULL, 'received', '', '807.6000', '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 (701, '2021-07-29 22:09:37', 745, NULL, NULL, 'IPAY2021/07/0700', NULL, 'cash', '', '', '', '', '', '', '218.5000', NULL, 6, NULL, 'received', '', '218.5000', '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 (702, '2021-07-30 08:53:30', 746, NULL, NULL, 'IPAY2021/07/0701', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 10, NULL, 'received', '', '13.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 (703, '2021-07-30 09:58:10', 747, NULL, NULL, 'IPAY2021/07/0702', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 10, NULL, 'received', '', '33.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 (704, '2021-07-30 18:27:32', 748, NULL, NULL, 'IPAY2021/07/0703', NULL, 'cash', '', '', '', '', '', '', '183.4000', NULL, 11, NULL, 'received', '', '183.4000', '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 (705, '2021-07-30 18:33:44', 749, NULL, NULL, 'IPAY2021/07/0704', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 11, NULL, 'received', '', '3.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 (706, '2021-07-30 18:58:29', 750, NULL, NULL, 'IPAY2021/07/0705', NULL, 'cash', '', '', '', '', '', '', '4.9000', NULL, 11, NULL, 'received', '', '4.9000', '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 (707, '2021-07-30 19:07:37', 751, NULL, NULL, 'IPAY2021/07/0706', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 11, NULL, 'received', '', '17.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 (708, '2021-07-30 19:25:14', 752, NULL, NULL, 'IPAY2021/07/0707', NULL, 'cash', '', '', '', '', '', '', '55.0000', NULL, 11, NULL, 'received', '', '55.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 (709, '2021-07-30 19:50:01', 753, NULL, NULL, 'IPAY2021/07/0708', NULL, 'cash', '', '', '', '', '', '', '17.5000', NULL, 11, NULL, 'received', '', '17.5000', '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 (710, '2021-07-30 20:03:18', 754, NULL, NULL, 'IPAY2021/07/0709', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 11, NULL, 'received', '', '8.5000', '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 (711, '2021-07-30 20:08:33', 755, NULL, NULL, 'IPAY2021/07/0710', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 11, NULL, 'received', '', '1.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 (712, '2021-07-30 21:06:00', 756, NULL, NULL, 'IPAY2021/07/0711', NULL, 'cash', '', '', '', '', '', '', '62.0000', NULL, 11, NULL, 'received', '', '62.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 (713, '2021-07-30 21:32:38', 757, NULL, NULL, 'IPAY2021/07/0712', NULL, 'cash', '', '', '', '', '', '', '17.5000', NULL, 11, NULL, 'received', '', '17.5000', '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 (714, '2021-07-31 09:17:46', 758, NULL, NULL, 'IPAY2021/07/0713', NULL, 'cash', '', '', '', '', '', '', '30.5000', NULL, 10, NULL, 'received', '', '30.5000', '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 (715, '2021-07-31 10:09:52', 759, NULL, NULL, 'IPAY2021/07/0714', NULL, 'cash', '', '', '', '', '', '', '61.0000', NULL, 10, NULL, 'received', '', '61.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 (716, '2021-07-31 10:37:50', 760, NULL, NULL, 'IPAY2021/07/0715', NULL, 'cash', '', '', '', '', '', '', '18.5000', NULL, 10, NULL, 'received', '', '18.5000', '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 (717, '2021-07-31 11:01:40', 761, NULL, NULL, 'IPAY2021/07/0716', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 10, NULL, 'received', '', '33.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 (718, '2021-07-31 12:32:37', 762, NULL, NULL, 'IPAY2021/07/0717', NULL, 'cash', '', '', '', '', '', '', '112.8300', NULL, 10, NULL, 'received', '', '112.8300', '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 (719, '2021-07-31 12:50:01', 763, NULL, NULL, 'IPAY2021/07/0718', NULL, 'cash', '', '', '', '', '', '', '5.5000', NULL, 10, NULL, 'received', '', '5.5000', '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 (720, '2021-07-31 13:13:58', 764, NULL, NULL, 'IPAY2021/07/0719', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 10, NULL, 'received', '', '1.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 (721, '2021-07-31 13:40:06', 765, NULL, NULL, 'IPAY2021/07/0720', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 10, NULL, 'received', '', '11.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 (722, '2021-07-31 14:32:27', 766, NULL, NULL, 'IPAY2021/07/0721', NULL, 'cash', '', '', '', '', '', '', '70.5000', NULL, 10, NULL, 'received', '', '70.5000', '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 (723, '2021-07-31 15:23:58', 767, NULL, NULL, 'IPAY2021/07/0722', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 10, NULL, 'received', '', '36.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 (724, '2021-07-31 16:30:30', 768, NULL, NULL, 'IPAY2021/07/0723', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 10, NULL, 'received', '', '4.5000', '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 (725, '2021-07-31 17:37:12', 769, NULL, NULL, 'IPAY2021/07/0724', NULL, 'cash', '', '', '', '', '', '', '324.0000', NULL, 8, NULL, 'received', '', '324.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 (726, '2021-07-31 19:12:06', 770, NULL, NULL, 'IPAY2021/07/0725', NULL, 'cash', '', '', '', '', '', '', '18.5000', NULL, 10, NULL, 'received', '', '18.5000', '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 (727, '2021-07-31 19:21:20', 771, NULL, NULL, 'IPAY2021/07/0726', NULL, 'cash', '', '', '', '', '', '', '117.0000', NULL, 10, NULL, 'received', '', '117.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 (728, '2021-07-31 19:42:43', 772, NULL, NULL, 'IPAY2021/07/0727', NULL, 'cash', '', '', '', '', '', '', '54.0000', NULL, 10, NULL, 'received', '', '54.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 (729, '2021-07-31 19:46:35', 773, NULL, NULL, 'IPAY2021/07/0728', NULL, 'cash', '', '', '', '', '', '', '48.0000', NULL, 6, NULL, 'received', '', '48.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 (730, '2021-07-31 20:54:32', 774, NULL, NULL, 'IPAY2021/07/0729', NULL, 'cash', '', '', '', '', '', '', '38.6000', NULL, 10, NULL, 'received', '', '38.6000', '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 (731, '2021-07-31 21:05:54', 775, NULL, NULL, 'IPAY2021/07/0730', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 10, NULL, 'received', '', '8.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 (732, '2021-07-31 21:11:43', 776, NULL, NULL, 'IPAY2021/07/0731', NULL, 'cash', '', '', '', '', '', '', '3.5000', NULL, 10, NULL, 'received', '', '3.5000', '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 (733, '2021-07-31 21:15:04', 777, NULL, NULL, 'IPAY2021/07/0732', NULL, 'cash', '', '', '', '', '', '', '802.2000', NULL, 6, NULL, 'received', '', '802.2000', '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 (734, '2021-07-31 21:24:46', 778, NULL, NULL, 'IPAY2021/07/0733', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 6, NULL, 'received', '', '35.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 (735, '2021-07-31 21:30:33', 779, NULL, NULL, 'IPAY2021/07/0734', NULL, 'cash', '', '', '', '', '', '', '1.5000', NULL, 10, NULL, 'received', '', '1.5000', '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 (736, '2021-08-01 19:11:38', 781, NULL, NULL, 'IPAY2021/08/0735', NULL, 'cash', '', '', '', '', '', '', '219.3000', NULL, 13, NULL, 'received', '', '219.3000', '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 (737, '2021-08-01 19:36:27', 782, NULL, NULL, 'IPAY2021/08/0736', NULL, 'cash', '', '', '', '', '', '', '32.5000', NULL, 13, NULL, 'received', '', '32.5000', '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 (738, '2021-08-01 19:36:53', 783, NULL, NULL, 'IPAY2021/08/0737', NULL, 'cash', '', '', '', '', '', '', '34.3000', NULL, 13, NULL, 'received', '', '34.3000', '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 (739, '2021-08-01 19:45:35', 784, NULL, NULL, 'IPAY2021/08/0738', NULL, 'cash', '', '', '', '', '', '', '0.5000', NULL, 13, NULL, 'received', '', '0.5000', '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 (740, '2021-08-01 19:56:38', 785, NULL, NULL, 'IPAY2021/08/0739', NULL, 'cash', '', '', '', '', '', '', '519.1700', NULL, 8, NULL, 'received', '', '519.1700', '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 (741, '2021-08-01 20:27:16', 786, NULL, NULL, 'IPAY2021/08/0740', NULL, 'cash', '', '', '', '', '', '', '41.5000', NULL, 13, NULL, 'received', '', '41.5000', '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 (742, '2021-08-01 20:28:38', 787, NULL, NULL, 'IPAY2021/08/0741', NULL, 'cash', '', '', '', '', '', '', '38.0000', NULL, 13, NULL, 'received', '', '38.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 (743, '2021-08-01 20:56:36', 788, NULL, NULL, 'IPAY2021/08/0742', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 13, NULL, 'received', '', '28.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 (744, '2021-08-01 21:34:23', 789, NULL, NULL, 'IPAY2021/08/0743', NULL, 'cash', '', '', '', '', '', '', '239.0000', NULL, 8, NULL, 'received', '', '239.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 (745, '2021-08-01 21:41:02', 790, NULL, NULL, 'IPAY2021/08/0744', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 13, NULL, 'received', '', '17.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 (746, '2021-08-01 21:42:37', 791, NULL, NULL, 'IPAY2021/08/0745', NULL, 'cash', '', '', '', '', '', '', '49.5000', NULL, 8, NULL, 'received', '', '49.5000', '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 (747, '2021-08-01 22:00:50', 792, NULL, NULL, 'IPAY2021/08/0746', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 13, NULL, 'received', '', '2.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 (748, '2021-08-02 10:00:32', 793, NULL, NULL, 'IPAY2021/08/0747', NULL, 'cash', '', '', '', '', '', '', '16.5000', NULL, 10, NULL, 'received', '', '16.5000', '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 (749, '2021-08-02 11:03:14', 794, NULL, NULL, 'IPAY2021/08/0748', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 10, NULL, 'received', '', '20.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 (750, '2021-08-02 15:35:25', 795, NULL, NULL, 'IPAY2021/08/0749', NULL, 'cash', '', '', '', '', '', '', '174.5000', NULL, 7, NULL, 'received', '', '174.5000', '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 (751, '2021-08-02 16:05:14', 796, NULL, NULL, 'IPAY2021/08/0750', NULL, 'cash', '', '', '', '', '', '', '102.0000', NULL, 11, NULL, 'received', '', '102.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 (752, '2021-08-02 18:06:18', 797, NULL, NULL, 'IPAY2021/08/0751', NULL, 'cash', '', '', '', '', '', '', '69.0000', NULL, 11, NULL, 'received', '', '69.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 (753, '2021-08-02 18:53:25', 798, NULL, NULL, 'IPAY2021/08/0752', NULL, 'cash', '', '', '', '', '', '', '106.5000', NULL, 11, NULL, 'received', '', '106.5000', '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 (754, '2021-08-02 19:02:24', 799, NULL, NULL, 'IPAY2021/08/0753', NULL, 'cash', '', '', '', '', '', '', '57.0000', NULL, 11, NULL, 'received', '', '57.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 (755, '2021-08-02 19:13:36', 800, NULL, NULL, 'IPAY2021/08/0754', NULL, 'cash', '', '', '', '', '', '', '275.5000', NULL, 6, NULL, 'received', '', '275.5000', '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 (756, '2021-08-02 19:25:47', 801, NULL, NULL, 'IPAY2021/08/0755', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 11, NULL, 'received', '', '26.5000', '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 (757, '2021-08-02 19:46:01', 802, NULL, NULL, 'IPAY2021/08/0756', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 11, NULL, 'received', '', '23.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 (758, '2021-08-02 20:08:31', 803, NULL, NULL, 'IPAY2021/08/0757', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 11, NULL, 'received', '', '6.5000', '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 (759, '2021-08-02 20:29:59', 804, NULL, NULL, 'IPAY2021/08/0758', NULL, 'cash', '', '', '', '', '', '', '47.0000', NULL, 11, NULL, 'received', '', '47.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 (760, '2021-08-02 20:30:51', 805, NULL, NULL, 'IPAY2021/08/0759', NULL, 'cash', '', '', '', '', '', '', '403.0000', NULL, 6, NULL, 'received', '', '403.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 (761, '2021-08-02 21:14:29', 806, NULL, NULL, 'IPAY2021/08/0760', NULL, 'cash', '', '', '', '', '', '', '280.0000', NULL, 6, NULL, 'received', '', '280.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 (762, '2021-08-02 21:33:01', 807, NULL, NULL, 'IPAY2021/08/0761', NULL, 'cash', '', '', '', '', '', '', '54.5000', NULL, 11, NULL, 'received', '', '54.5000', '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 (763, '2021-08-02 21:49:06', 808, NULL, NULL, 'IPAY2021/08/0762', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 11, NULL, 'received', '', '6.5000', '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 (764, '2021-08-03 09:18:41', 809, NULL, NULL, 'IPAY2021/08/0763', NULL, 'cash', '', '', '', '', '', '', '11.5000', NULL, 10, NULL, 'received', '', '11.5000', '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 (765, '2021-08-03 10:40:46', 810, NULL, NULL, 'IPAY2021/08/0764', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 10, NULL, 'received', '', '5.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 (766, '2021-08-03 13:26:10', 811, NULL, NULL, 'IPAY2021/08/0765', NULL, 'cash', '', '', '', '', '', '', '163.8300', NULL, 10, NULL, 'received', '', '163.8300', '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 (767, '2021-08-03 13:54:25', 812, NULL, NULL, 'IPAY2021/08/0766', NULL, 'cash', '', '', '', '', '', '', '133.0000', NULL, 7, NULL, 'received', '', '133.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 (768, '2021-08-03 14:14:13', 813, NULL, NULL, 'IPAY2021/08/0767', NULL, 'cash', '', '', '', '', '', '', '88.0000', NULL, 7, NULL, 'received', '', '88.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 (769, '2021-08-03 14:31:59', 814, NULL, NULL, 'IPAY2021/08/0768', NULL, 'cash', '', '', '', '', '', '', '31.0000', NULL, 10, NULL, 'received', '', '31.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 (770, '2021-08-03 14:43:06', 815, NULL, NULL, 'IPAY2021/08/0769', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 7, NULL, 'received', '', '29.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 (771, '2021-08-03 15:05:20', 816, NULL, NULL, 'IPAY2021/08/0770', NULL, 'cash', '', '', '', '', '', '', '52.5000', NULL, 7, NULL, 'received', '', '52.5000', '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 (772, '2021-08-03 15:13:23', 817, NULL, NULL, 'IPAY2021/08/0771', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 7, NULL, 'received', '', '10.5000', '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 (773, '2021-08-03 16:23:30', 818, NULL, NULL, 'IPAY2021/08/0772', NULL, 'cash', '', '', '', '', '', '', '47.0000', NULL, 10, NULL, 'received', '', '47.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 (774, '2021-08-03 17:10:07', 819, NULL, NULL, 'IPAY2021/08/0773', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 10, NULL, 'received', '', '22.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 (775, '2021-08-03 17:13:25', 820, NULL, NULL, 'IPAY2021/08/0774', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 10, NULL, 'received', '', '35.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 (776, '2021-08-03 17:25:10', 821, NULL, NULL, 'IPAY2021/08/0775', NULL, 'cash', '', '', '', '', '', '', '258.0000', NULL, 6, NULL, 'received', '', '258.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 (777, '2021-08-03 17:55:27', 822, NULL, NULL, 'IPAY2021/08/0776', NULL, 'cash', '', '', '', '', '', '', '66.5000', NULL, 6, NULL, 'received', '', '66.5000', '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 (778, '2021-08-03 19:32:04', 823, NULL, NULL, 'IPAY2021/08/0777', NULL, 'cash', '', '', '', '', '', '', '162.5000', NULL, 6, NULL, 'received', '', '162.5000', '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 (779, '2021-08-03 20:33:14', 824, NULL, NULL, 'IPAY2021/08/0778', NULL, 'cash', '', '', '', '', '', '', '263.5000', NULL, 6, NULL, 'received', '', '263.5000', '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 (780, '2021-08-03 20:37:24', 825, NULL, NULL, 'IPAY2021/08/0779', NULL, 'cash', '', '', '', '', '', '', '187.5000', NULL, 6, NULL, 'received', '', '187.5000', '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 (781, '2021-08-03 21:23:24', 826, NULL, NULL, 'IPAY2021/08/0780', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 6, NULL, 'received', '', '40.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 (782, '2021-08-03 21:49:39', 827, NULL, NULL, 'IPAY2021/08/0781', NULL, 'cash', '', '', '', '', '', '', '240.6000', NULL, 10, NULL, 'received', '', '240.6000', '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 (783, '2021-08-04 11:49:52', 828, NULL, NULL, 'IPAY2021/08/0782', NULL, 'cash', '', '', '', '', '', '', '50.5000', NULL, 10, NULL, 'received', '', '50.5000', '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 (784, '2021-08-04 12:41:43', 829, NULL, NULL, 'IPAY2021/08/0783', NULL, 'cash', '', '', '', '', '', '', '20.5000', NULL, 10, NULL, 'received', '', '20.5000', '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 (785, '2021-08-04 14:00:11', 830, NULL, NULL, 'IPAY2021/08/0784', NULL, 'cash', '', '', '', '', '', '', '8.5000', NULL, 10, NULL, 'received', '', '8.5000', '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 (786, '2021-08-04 14:07:39', 831, NULL, NULL, 'IPAY2021/08/0785', NULL, 'cash', '', '', '', '', '', '', '435.0000', NULL, 7, NULL, 'received', '', '435.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 (787, '2021-08-04 15:45:50', 832, NULL, NULL, 'IPAY2021/08/0786', NULL, 'cash', '', '', '', '', '', '', '81.0000', NULL, 7, NULL, 'received', '', '81.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 (788, '2021-08-04 15:50:01', 833, NULL, NULL, 'IPAY2021/08/0787', NULL, 'cash', '', '', '', '', '', '', '10.5000', NULL, 7, NULL, 'received', '', '10.5000', '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 (789, '2021-08-04 18:12:16', 834, NULL, NULL, 'IPAY2021/08/0788', NULL, 'cash', '', '', '', '', '', '', '43.8000', NULL, 11, NULL, 'received', '', '43.8000', '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 (790, '2021-08-04 19:22:02', 835, NULL, NULL, 'IPAY2021/08/0789', NULL, 'cash', '', '', '', '', '', '', '359.5000', NULL, 6, NULL, 'received', '', '359.5000', '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 (791, '2021-08-04 20:37:52', 836, NULL, NULL, 'IPAY2021/08/0790', NULL, 'cash', '', '', '', '', '', '', '229.0000', NULL, 11, NULL, 'received', '', '229.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 (792, '2021-08-04 21:07:30', 837, NULL, NULL, 'IPAY2021/08/0791', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 3, NULL, 'received', '', '140.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 (793, '2021-08-04 21:13:49', 838, NULL, NULL, 'IPAY2021/08/0792', NULL, 'cash', '', '', '', '', '', '', '256.5000', NULL, 6, NULL, 'received', '', '256.5000', '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 (794, '2021-08-04 21:53:01', 839, NULL, NULL, 'IPAY2021/08/0793', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 6, NULL, 'received', '', '150.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 (795, '2021-08-04 23:31:21', 840, NULL, NULL, 'IPAY2021/08/0794', NULL, 'cash', '', '', '', '', '', '', '88.5000', NULL, 3, NULL, 'received', '', '88.5000', '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 (796, '2021-08-05 13:11:40', 841, NULL, NULL, 'IPAY2021/08/0795', NULL, 'cash', '', '', '', '', '', '', '211.0000', NULL, 10, NULL, 'received', '', '211.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 (797, '2021-08-05 13:33:59', 842, NULL, NULL, 'IPAY2021/08/0796', NULL, 'cash', '', '', '', '', '', '', '142.8000', NULL, 7, NULL, 'received', '', '142.8000', '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 (798, '2021-08-05 14:16:07', 843, NULL, NULL, 'IPAY2021/08/0797', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 7, NULL, 'received', '', '37.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 (799, '2021-08-05 15:05:20', 844, NULL, NULL, 'IPAY2021/08/0798', NULL, 'cash', '', '', '', '', '', '', '65.5000', NULL, 7, NULL, 'received', '', '65.5000', '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 (800, '2021-08-05 15:05:30', 845, NULL, NULL, 'IPAY2021/08/0799', NULL, 'cash', '', '', '', '', '', '', '224.0000', NULL, 10, NULL, 'received', '', '224.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 (801, '2021-08-05 15:40:43', 846, NULL, NULL, 'IPAY2021/08/0800', NULL, 'cash', '', '', '', '', '', '', '75.0000', NULL, 7, NULL, 'received', '', '75.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 (802, '2021-08-05 17:17:13', 847, NULL, NULL, 'IPAY2021/08/0801', NULL, 'cash', '', '', '', '', '', '', '33.5000', NULL, 11, NULL, 'received', '', '33.5000', '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 (803, '2021-08-05 17:30:46', 848, NULL, NULL, 'IPAY2021/08/0802', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 11, NULL, 'received', '', '23.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 (804, '2021-08-05 18:38:41', 849, NULL, NULL, 'IPAY2021/08/0803', NULL, 'cash', '', '', '', '', '', '', '93.0000', NULL, 11, NULL, 'received', '', '93.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 (805, '2021-08-05 18:40:01', 850, NULL, NULL, 'IPAY2021/08/0804', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 11, NULL, 'received', '', '22.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 (806, '2021-08-05 18:43:40', 851, NULL, NULL, 'IPAY2021/08/0805', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 11, NULL, 'received', '', '11.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 (807, '2021-08-05 19:41:12', 852, NULL, NULL, 'IPAY2021/08/0806', NULL, 'cash', '', '', '', '', '', '', '83.0000', NULL, 11, NULL, 'received', '', '83.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 (808, '2021-08-05 19:48:21', 853, NULL, NULL, 'IPAY2021/08/0807', NULL, 'cash', '', '', '', '', '', '', '879.0200', NULL, 6, NULL, 'received', '', '879.0200', '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 (809, '2021-08-05 20:29:18', 854, NULL, NULL, 'IPAY2021/08/0808', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 6, NULL, 'received', '', '9.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 (810, '2021-08-05 20:38:57', 855, NULL, NULL, 'IPAY2021/08/0809', NULL, 'cash', '', '', '', '', '', '', '65.5000', NULL, 11, NULL, 'received', '', '65.5000', '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 (811, '2021-08-05 21:07:54', 856, NULL, NULL, 'IPAY2021/08/0810', NULL, 'cash', '', '', '', '', '', '', '290.3000', NULL, 6, NULL, 'received', '', '290.3000', '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 (812, '2021-08-05 21:09:51', 857, NULL, NULL, 'IPAY2021/08/0811', NULL, 'cash', '', '', '', '', '', '', '108.5000', NULL, 11, NULL, 'received', '', '108.5000', '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 (813, '2021-08-05 21:48:35', 858, NULL, NULL, 'IPAY2021/08/0812', NULL, 'cash', '', '', '', '', '', '', '87.0000', NULL, 6, NULL, 'received', '', '87.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 (814, '2021-08-05 22:21:34', 859, NULL, NULL, 'IPAY2021/08/0813', NULL, 'cash', '', '', '', '', '', '', '151.5000', NULL, 11, NULL, 'received', '', '151.5000', '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 (815, '2021-08-05 23:41:48', 860, NULL, NULL, 'IPAY2021/08/0814', NULL, 'cash', '', '', '', '', '', '', '111.0000', NULL, 3, NULL, 'received', '', '111.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 (816, '2021-08-05 23:53:58', 862, NULL, NULL, 'IPAY2021/08/0815', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 3, NULL, 'received', '', '15.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 (817, '2021-08-06 09:22:12', 863, NULL, NULL, 'IPAY2021/08/0816', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 10, NULL, 'received', '', '29.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 (818, '2021-08-06 09:22:58', 864, NULL, NULL, 'IPAY2021/08/0817', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 10, NULL, 'received', '', '2.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 (819, '2021-08-06 09:57:31', 865, NULL, NULL, 'IPAY2021/08/0818', NULL, 'cash', '', '', '', '', '', '', '26.5000', NULL, 10, NULL, 'received', '', '26.5000', '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 (820, '2021-08-06 10:12:01', 866, NULL, NULL, 'IPAY2021/08/0819', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 10, NULL, 'received', '', '7.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 (821, '2021-08-06 10:29:55', 867, NULL, NULL, 'IPAY2021/08/0820', NULL, 'cash', '', '', '', '', '', '', '47.0000', NULL, 8, NULL, 'received', '', '47.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 (822, '2021-08-06 15:37:39', 868, NULL, NULL, 'IPAY2021/08/0821', NULL, 'cash', '', '', '', '', '', '', '139.5000', NULL, 10, NULL, 'received', '', '139.5000', '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 (823, '2021-08-06 16:11:43', 869, NULL, NULL, 'IPAY2021/08/0822', NULL, 'cash', '', '', '', '', '', '', '634.0000', NULL, 8, NULL, 'received', '', '634.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 (824, '2021-08-06 16:57:08', 870, NULL, NULL, 'IPAY2021/08/0823', NULL, 'cash', '', '', '', '', '', '', '85.0000', NULL, 11, NULL, 'received', '', '85.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 (825, '2021-08-06 18:09:41', 871, NULL, NULL, 'IPAY2021/08/0824', NULL, 'cash', '', '', '', '', '', '', '29.2000', NULL, 11, NULL, 'received', '', '29.2000', '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 (826, '2021-08-06 19:23:26', 872, NULL, NULL, 'IPAY2021/08/0825', NULL, 'cash', '', '', '', '', '', '', '72.5000', NULL, 11, NULL, 'received', '', '72.5000', '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 (827, '2021-08-06 19:35:19', 873, NULL, NULL, 'IPAY2021/08/0826', NULL, 'cash', '', '', '', '', '', '', '524.5000', NULL, 6, NULL, 'received', '', '524.5000', '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 (828, '2021-08-06 19:35:36', 874, NULL, NULL, 'IPAY2021/08/0827', NULL, 'cash', '', '', '', '', '', '', '45.0000', NULL, 6, NULL, 'received', '', '45.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 (829, '2021-08-06 20:08:43', 875, NULL, NULL, 'IPAY2021/08/0828', NULL, 'cash', '', '', '', '', '', '', '31.6000', NULL, 11, NULL, 'received', '', '31.6000', '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 (830, '2021-08-06 21:20:59', 876, NULL, NULL, 'IPAY2021/08/0829', NULL, 'cash', '', '', '', '', '', '', '187.0000', NULL, 6, NULL, 'received', '', '187.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 (831, '2021-08-06 21:24:56', 877, NULL, NULL, 'IPAY2021/08/0830', NULL, 'cash', '', '', '', '', '', '', '190.5000', NULL, 11, NULL, 'received', '', '190.5000', '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 (832, '2021-08-06 21:25:34', 878, NULL, NULL, 'IPAY2021/08/0831', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 11, NULL, 'received', '', '2.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 (833, '2021-08-06 21:26:54', 879, NULL, NULL, 'IPAY2021/08/0832', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 11, NULL, 'received', '', '10.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 (834, '2021-08-06 21:32:20', 880, NULL, NULL, 'IPAY2021/08/0833', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 6, NULL, 'received', '', '10.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 (835, '2021-08-06 21:57:20', 881, NULL, NULL, 'IPAY2021/08/0834', NULL, 'cash', '', '', '', '', '', '', '96.6000', NULL, 11, NULL, 'received', '', '96.6000', '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 (836, '2021-08-07 14:02:15', 882, NULL, NULL, 'IPAY2021/08/0835', NULL, 'cash', '', '', '', '', '', '', '224.1000', NULL, 14, NULL, 'received', '', '224.1000', '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 (837, '2021-08-07 14:26:40', 883, NULL, NULL, 'IPAY2021/08/0836', NULL, 'cash', '', '', '', '', '', '', '380.7000', NULL, 7, NULL, 'received', '', '380.7000', '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 (838, '2021-08-07 15:07:29', 884, NULL, NULL, 'IPAY2021/08/0837', NULL, 'cash', '', '', '', '', '', '', '48.5000', NULL, 14, NULL, 'received', '', '48.5000', '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 (839, '2021-08-07 15:13:30', 885, NULL, NULL, 'IPAY2021/08/0838', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 7, NULL, 'received', '', '16.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 (840, '2021-08-07 16:12:23', 886, NULL, NULL, 'IPAY2021/08/0839', NULL, 'cash', '', '', '', '', '', '', '73.8300', NULL, 11, NULL, 'received', '', '73.8300', '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 (841, '2021-08-07 16:51:17', 887, NULL, NULL, 'IPAY2021/08/0840', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 11, NULL, 'received', '', '17.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 (842, '2021-08-07 17:25:58', 888, NULL, NULL, 'IPAY2021/08/0841', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 11, NULL, 'received', '', '10.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 (843, '2021-08-07 17:41:50', 889, NULL, NULL, 'IPAY2021/08/0842', NULL, 'cash', '', '', '', '', '', '', '66.5000', NULL, 11, NULL, 'received', '', '66.5000', '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 (844, '2021-08-07 17:44:47', 890, NULL, NULL, 'IPAY2021/08/0843', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 11, NULL, 'received', '', '5.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 (845, '2021-08-07 17:56:58', 891, NULL, NULL, 'IPAY2021/08/0844', NULL, 'cash', '', '', '', '', '', '', '48.0000', NULL, 11, NULL, 'received', '', '48.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 (846, '2021-08-07 18:01:20', 892, NULL, NULL, 'IPAY2021/08/0845', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 3, NULL, 'received', '', '33.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 (847, '2021-08-07 18:12:19', 893, NULL, NULL, 'IPAY2021/08/0846', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 11, NULL, 'received', '', '29.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 (848, '2021-08-07 18:18:40', 894, NULL, NULL, 'IPAY2021/08/0847', NULL, 'cash', '', '', '', '', '', '', '44.0000', NULL, 11, NULL, 'received', '', '44.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 (849, '2021-08-07 18:30:00', 895, NULL, NULL, 'IPAY2021/08/0848', NULL, 'cash', '', '', '', '', '', '', '25.0000', NULL, 11, NULL, 'received', '', '25.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 (850, '2021-08-07 18:32:40', 896, NULL, NULL, 'IPAY2021/08/0849', NULL, 'cash', '', '', '', '', '', '', '0.5000', NULL, 11, NULL, 'received', '', '0.5000', '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 (851, '2021-08-07 18:51:26', 897, NULL, NULL, 'IPAY2021/08/0850', NULL, 'cash', '', '', '', '', '', '', '252.3900', NULL, 6, NULL, 'received', '', '252.3900', '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 (852, '2021-08-07 19:11:07', 898, NULL, NULL, 'IPAY2021/08/0851', NULL, 'cash', '', '', '', '', '', '', '110.8300', NULL, 6, NULL, 'received', '', '110.8300', '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 (853, '2021-08-07 19:20:08', 899, NULL, NULL, 'IPAY2021/08/0852', NULL, 'cash', '', '', '', '', '', '', '83.0000', NULL, 11, NULL, 'received', '', '83.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 (854, '2021-08-07 19:45:40', 900, NULL, NULL, 'IPAY2021/08/0853', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 11, NULL, 'received', '', '4.5000', '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 (855, '2021-08-07 19:59:04', 901, NULL, NULL, 'IPAY2021/08/0854', NULL, 'cash', '', '', '', '', '', '', '45.7000', NULL, 11, NULL, 'received', '', '45.7000', '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 (856, '2021-08-07 20:02:58', 902, NULL, NULL, 'IPAY2021/08/0855', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 11, NULL, 'received', '', '6.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 (857, '2021-08-07 20:17:31', 903, NULL, NULL, 'IPAY2021/08/0856', NULL, 'cash', '', '', '', '', '', '', '127.0000', NULL, 6, NULL, 'received', '', '127.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 (858, '2021-08-07 20:23:29', 904, NULL, NULL, 'IPAY2021/08/0857', NULL, 'cash', '', '', '', '', '', '', '47.5000', NULL, 11, NULL, 'received', '', '47.5000', '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 (859, '2021-08-07 20:27:04', 905, NULL, NULL, 'IPAY2021/08/0858', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 11, NULL, 'received', '', '6.5000', '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 (860, '2021-08-07 21:17:00', 906, NULL, NULL, 'IPAY2021/08/0859', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 11, NULL, 'received', '', '10.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 (861, '2021-08-07 21:32:53', 907, NULL, NULL, 'IPAY2021/08/0860', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 11, NULL, 'received', '', '9.5000', '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 (862, '2021-08-07 21:42:59', 908, NULL, NULL, 'IPAY2021/08/0861', NULL, 'cash', '', '', '', '', '', '', '234.5000', NULL, 6, NULL, 'received', '', '234.5000', '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 (863, '2021-08-07 21:43:40', 909, NULL, NULL, 'IPAY2021/08/0862', NULL, 'cash', '', '', '', '', '', '', '42.0000', NULL, 11, NULL, 'received', '', '42.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 (864, '2021-08-07 21:57:07', 910, NULL, NULL, 'IPAY2021/08/0863', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 6, NULL, 'received', '', '4.5000', '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 (865, '2021-08-08 19:27:32', 911, NULL, NULL, 'IPAY2021/08/0864', NULL, 'cash', '', '', '', '', '', '', '788.6700', NULL, 8, NULL, 'received', '', '788.6700', '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 (866, '2021-08-08 19:32:44', 912, NULL, NULL, 'IPAY2021/08/0865', NULL, 'cash', '', '', '', '', '', '', '305.3000', NULL, 15, NULL, 'received', '', '305.3000', '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 (867, '2021-08-08 20:33:13', 913, NULL, NULL, 'IPAY2021/08/0866', NULL, 'cash', '', '', '', '', '', '', '80.5000', NULL, 15, NULL, 'received', '', '80.5000', '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 (868, '2021-08-08 21:17:29', 914, NULL, NULL, 'IPAY2021/08/0867', NULL, 'cash', '', '', '', '', '', '', '50.5000', NULL, 15, NULL, 'received', '', '50.5000', '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 (869, '2021-08-08 21:19:05', 915, NULL, NULL, 'IPAY2021/08/0868', NULL, 'cash', '', '', '', '', '', '', '111.5000', NULL, 8, NULL, 'received', '', '111.5000', '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 (870, '2021-08-08 21:32:00', 916, NULL, NULL, 'IPAY2021/08/0869', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 8, NULL, 'received', '', '4.5000', '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 (871, '2021-08-08 21:48:18', 917, NULL, NULL, 'IPAY2021/08/0870', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 15, NULL, 'received', '', '6.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 (872, '2021-08-09 13:02:31', 918, NULL, NULL, 'IPAY2021/08/0871', NULL, 'cash', '', '', '', '', '', '', '392.0000', NULL, 7, NULL, 'received', '', '392.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 (873, '2021-08-09 14:29:35', 919, NULL, NULL, 'IPAY2021/08/0872', NULL, 'cash', '', '', '', '', '', '', '177.1000', NULL, 14, NULL, 'received', '', '177.1000', '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 (874, '2021-08-09 14:31:19', 920, NULL, NULL, 'IPAY2021/08/0873', NULL, 'cash', '', '', '', '', '', '', '44.0000', NULL, 7, NULL, 'received', '', '44.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 (875, '2021-08-09 14:36:36', 921, NULL, NULL, 'IPAY2021/08/0874', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 7, NULL, 'received', '', '24.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 (876, '2021-08-09 14:52:57', 922, NULL, NULL, 'IPAY2021/08/0875', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 7, NULL, 'received', '', '27.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 (877, '2021-08-09 14:58:44', 923, NULL, NULL, 'IPAY2021/08/0876', NULL, 'cash', '', '', '', '', '', '', '103.0000', NULL, 7, NULL, 'received', '', '103.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 (878, '2021-08-09 15:09:57', 924, NULL, NULL, 'IPAY2021/08/0877', NULL, 'cash', '', '', '', '', '', '', '22.5000', NULL, 7, NULL, 'received', '', '22.5000', '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 (879, '2021-08-09 15:38:46', 925, NULL, NULL, 'IPAY2021/08/0878', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 11, NULL, 'received', '', '5.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 (880, '2021-08-09 17:27:40', 926, NULL, NULL, 'IPAY2021/08/0879', NULL, 'cash', '', '', '', '', '', '', '53.7000', NULL, 11, NULL, 'received', '', '53.7000', '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 (881, '2021-08-09 17:46:42', 927, NULL, NULL, 'IPAY2021/08/0880', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 11, NULL, 'received', '', '7.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 (882, '2021-08-09 18:09:45', 928, NULL, NULL, 'IPAY2021/08/0881', NULL, 'cash', '', '', '', '', '', '', '35.5000', NULL, 11, NULL, 'received', '', '35.5000', '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 (883, '2021-08-09 18:28:11', 929, NULL, NULL, 'IPAY2021/08/0882', NULL, 'cash', '', '', '', '', '', '', '47.0000', NULL, 11, NULL, 'received', '', '47.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 (884, '2021-08-09 18:46:07', 930, NULL, NULL, 'IPAY2021/08/0883', NULL, 'cash', '', '', '', '', '', '', '21.0000', NULL, 11, NULL, 'received', '', '21.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 (885, '2021-08-09 19:09:53', 931, NULL, NULL, 'IPAY2021/08/0884', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 11, NULL, 'received', '', '15.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 (886, '2021-08-09 19:11:08', 932, NULL, NULL, 'IPAY2021/08/0885', NULL, 'cash', '', '', '', '', '', '', '379.0000', NULL, 6, NULL, 'received', '', '379.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 (887, '2021-08-09 19:24:45', 933, NULL, NULL, 'IPAY2021/08/0886', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 11, NULL, 'received', '', '22.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 (888, '2021-08-09 19:57:18', 934, NULL, NULL, 'IPAY2021/08/0887', NULL, 'cash', '', '', '', '', '', '', '21.5000', NULL, 11, NULL, 'received', '', '21.5000', '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 (889, '2021-08-09 20:07:27', 935, NULL, NULL, 'IPAY2021/08/0888', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 11, NULL, 'received', '', '3.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 (890, '2021-08-09 20:16:24', 936, NULL, NULL, 'IPAY2021/08/0889', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 11, NULL, 'received', '', '40.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 (891, '2021-08-09 20:35:55', 937, NULL, NULL, 'IPAY2021/08/0890', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 11, NULL, 'received', '', '13.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 (892, '2021-08-09 20:37:49', 938, NULL, NULL, 'IPAY2021/08/0891', NULL, 'cash', '', '', '', '', '', '', '237.8800', NULL, 6, NULL, 'received', '', '237.8800', '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 (893, '2021-08-09 21:55:00', 939, NULL, NULL, 'IPAY2021/08/0892', NULL, 'cash', '', '', '', '', '', '', '4.7000', NULL, 11, NULL, 'received', '', '4.7000', '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 (894, '2021-08-09 21:56:46', 940, NULL, NULL, 'IPAY2021/08/0893', NULL, 'cash', '', '', '', '', '', '', '294.0000', NULL, 6, NULL, 'received', '', '294.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 (895, '2021-08-10 11:32:39', 941, NULL, NULL, 'IPAY2021/08/0894', NULL, 'cash', '', '', '', '', '', '', '297.7000', NULL, 14, NULL, 'received', '', '297.7000', '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 (896, '2021-08-10 14:31:43', 942, NULL, NULL, 'IPAY2021/08/0895', NULL, 'cash', '', '', '', '', '', '', '67.0000', NULL, 14, NULL, 'received', '', '67.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 (897, '2021-08-10 14:32:43', 943, NULL, NULL, 'IPAY2021/08/0896', NULL, 'cash', '', '', '', '', '', '', '216.8600', NULL, 7, NULL, 'received', '', '216.8600', '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 (898, '2021-08-10 14:57:27', 944, NULL, NULL, 'IPAY2021/08/0897', NULL, 'cash', '', '', '', '', '', '', '7.0000', NULL, 7, NULL, 'received', '', '7.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 (899, '2021-08-10 15:38:25', 945, NULL, NULL, 'IPAY2021/08/0898', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 7, NULL, 'received', '', '10.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 (900, '2021-08-10 16:27:16', 946, NULL, NULL, 'IPAY2021/08/0899', NULL, 'cash', '', '', '', '', '', '', '23.4000', NULL, 11, NULL, 'received', '', '23.4000', '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 (901, '2021-08-10 17:42:27', 947, NULL, NULL, 'IPAY2021/08/0900', NULL, 'cash', '', '', '', '', '', '', '134.5000', NULL, 11, NULL, 'received', '', '134.5000', '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 (902, '2021-08-10 17:51:13', 948, NULL, NULL, 'IPAY2021/08/0901', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 11, NULL, 'received', '', '9.5000', '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 (903, '2021-08-10 18:12:56', 949, NULL, NULL, 'IPAY2021/08/0902', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 11, NULL, 'received', '', '5.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 (904, '2021-08-10 18:30:21', 950, NULL, NULL, 'IPAY2021/08/0903', NULL, 'cash', '', '', '', '', '', '', '104.5000', NULL, 11, NULL, 'received', '', '104.5000', '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 (905, '2021-08-10 18:53:37', 951, NULL, NULL, 'IPAY2021/08/0904', NULL, 'cash', '', '', '', '', '', '', '78.5000', NULL, 11, NULL, 'received', '', '78.5000', '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 (906, '2021-08-10 19:25:54', 952, NULL, NULL, 'IPAY2021/08/0905', NULL, 'cash', '', '', '', '', '', '', '340.8000', NULL, 6, NULL, 'received', '', '340.8000', '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 (907, '2021-08-10 19:29:51', 953, NULL, NULL, 'IPAY2021/08/0906', NULL, 'cash', '', '', '', '', '', '', '48.0000', NULL, 6, NULL, 'received', '', '48.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 (908, '2021-08-10 20:32:31', 954, NULL, NULL, 'IPAY2021/08/0907', NULL, 'cash', '', '', '', '', '', '', '409.8000', NULL, 6, NULL, 'received', '', '409.8000', '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 (909, '2021-08-10 20:38:52', 955, NULL, NULL, 'IPAY2021/08/0908', NULL, 'cash', '', '', '', '', '', '', '151.6000', NULL, 11, NULL, 'received', '', '151.6000', '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 (910, '2021-08-10 21:24:39', 956, NULL, NULL, 'IPAY2021/08/0909', NULL, 'cash', '', '', '', '', '', '', '204.0000', NULL, 6, NULL, 'received', '', '204.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 (911, '2021-08-10 21:30:48', 957, NULL, NULL, 'IPAY2021/08/0910', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 6, NULL, 'received', '', '28.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 (912, '2021-08-10 21:34:28', 958, NULL, NULL, 'IPAY2021/08/0911', NULL, 'cash', '', '', '', '', '', '', '107.5000', NULL, 6, NULL, 'received', '', '107.5000', '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 (913, '2021-08-11 13:14:15', 959, NULL, NULL, 'IPAY2021/08/0912', NULL, 'cash', '', '', '', '', '', '', '498.7300', NULL, 14, NULL, 'received', '', '498.7300', '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 (914, '2021-08-11 14:47:40', 960, NULL, NULL, 'IPAY2021/08/0913', NULL, 'cash', '', '', '', '', '', '', '255.4000', NULL, 7, NULL, 'received', '', '255.4000', '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 (915, '2021-08-11 15:06:32', 961, NULL, NULL, 'IPAY2021/08/0914', NULL, 'cash', '', '', '', '', '', '', '16.0000', NULL, 14, NULL, 'received', '', '16.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 (916, '2021-08-11 15:10:07', 962, NULL, NULL, 'IPAY2021/08/0915', NULL, 'cash', '', '', '', '', '', '', '20.0000', NULL, 7, NULL, 'received', '', '20.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 (917, '2021-08-11 15:32:32', 963, NULL, NULL, 'IPAY2021/08/0916', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 11, NULL, 'received', '', '2.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 (918, '2021-08-11 16:00:47', 964, NULL, NULL, 'IPAY2021/08/0917', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 11, NULL, 'received', '', '30.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 (919, '2021-08-11 17:10:36', 965, NULL, NULL, 'IPAY2021/08/0918', NULL, 'cash', '', '', '', '', '', '', '28.4000', NULL, 11, NULL, 'received', '', '28.4000', '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 (920, '2021-08-11 19:16:06', 966, NULL, NULL, 'IPAY2021/08/0919', NULL, 'cash', '', '', '', '', '', '', '114.0000', NULL, 11, NULL, 'received', '', '114.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 (921, '2021-08-11 19:19:15', 967, NULL, NULL, 'IPAY2021/08/0920', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 11, NULL, 'received', '', '3.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 (922, '2021-08-11 19:32:12', 968, NULL, NULL, 'IPAY2021/08/0921', NULL, 'cash', '', '', '', '', '', '', '368.0000', NULL, 6, NULL, 'received', '', '368.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 (923, '2021-08-11 19:45:35', 969, NULL, NULL, 'IPAY2021/08/0922', NULL, 'cash', '', '', '', '', '', '', '92.5000', NULL, 11, NULL, 'received', '', '92.5000', '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 (924, '2021-08-11 20:36:30', 970, NULL, NULL, 'IPAY2021/08/0923', NULL, 'cash', '', '', '', '', '', '', '445.5000', NULL, 6, NULL, 'received', '', '445.5000', '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 (925, '2021-08-11 21:09:57', 971, NULL, NULL, 'IPAY2021/08/0924', NULL, 'cash', '', '', '', '', '', '', '258.2600', NULL, 11, NULL, 'received', '', '258.2600', '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 (926, '2021-08-11 21:40:55', 972, NULL, NULL, 'IPAY2021/08/0925', NULL, 'cash', '', '', '', '', '', '', '84.5000', NULL, 6, NULL, 'received', '', '84.5000', '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 (927, '2021-08-11 21:45:02', 973, NULL, NULL, 'IPAY2021/08/0926', NULL, 'cash', '', '', '', '', '', '', '11.5000', NULL, 6, NULL, 'received', '', '11.5000', '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 (928, '2021-08-11 22:00:21', 974, NULL, NULL, 'IPAY2021/08/0927', NULL, 'cash', '', '', '', '', '', '', '64.0000', NULL, 6, NULL, 'received', '', '64.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 (929, '2021-08-11 22:05:26', 975, NULL, NULL, 'IPAY2021/08/0928', NULL, 'cash', '', '', '', '', '', '', '24.0000', NULL, 11, NULL, 'received', '', '24.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 (930, '2021-08-11 22:09:46', 976, NULL, NULL, 'IPAY2021/08/0929', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 6, NULL, 'received', '', '28.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 (931, '2021-08-12 15:13:32', 977, NULL, NULL, 'IPAY2021/08/0930', NULL, 'cash', '', '', '', '', '', '', '397.4600', NULL, 7, NULL, 'received', '', '397.4600', '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 (932, '2021-08-12 15:23:49', 978, NULL, NULL, 'IPAY2021/08/0931', NULL, 'cash', '', '', '', '', '', '', '224.1000', NULL, 14, NULL, 'received', '', '224.1000', '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 (933, '2021-08-12 15:30:53', 979, NULL, NULL, 'IPAY2021/08/0932', NULL, 'cash', '', '', '', '', '', '', '54.0000', NULL, 7, NULL, 'received', '', '54.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 (934, '2021-08-12 15:34:01', 980, NULL, NULL, 'IPAY2021/08/0933', NULL, 'cash', '', '', '', '', '', '', '54.0000', NULL, 7, NULL, 'received', '', '54.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 (935, '2021-08-12 15:44:00', 981, NULL, NULL, 'IPAY2021/08/0934', NULL, 'cash', '', '', '', '', '', '', '59.5000', NULL, 11, NULL, 'received', '', '59.5000', '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 (936, '2021-08-12 18:03:39', 982, NULL, NULL, 'IPAY2021/08/0935', NULL, 'cash', '', '', '', '', '', '', '63.3000', NULL, 11, NULL, 'received', '', '63.3000', '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 (937, '2021-08-12 18:17:23', 983, NULL, NULL, 'IPAY2021/08/0936', NULL, 'cash', '', '', '', '', '', '', '32.0000', NULL, 11, NULL, 'received', '', '32.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 (938, '2021-08-12 19:55:25', 984, NULL, NULL, 'IPAY2021/08/0937', NULL, 'cash', '', '', '', '', '', '', '11.0000', NULL, 11, NULL, 'received', '', '11.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 (939, '2021-08-12 20:02:15', 985, NULL, NULL, 'IPAY2021/08/0938', NULL, 'cash', '', '', '', '', '', '', '738.9000', NULL, 6, NULL, 'received', '', '738.9000', '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 (940, '2021-08-12 21:41:05', 986, NULL, NULL, 'IPAY2021/08/0939', NULL, 'cash', '', '', '', '', '', '', '226.5000', NULL, 6, NULL, 'received', '', '226.5000', '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 (941, '2021-08-12 21:46:15', 987, NULL, NULL, 'IPAY2021/08/0940', NULL, 'cash', '', '', '', '', '', '', '32.0000', NULL, 11, NULL, 'received', '', '32.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 (942, '2021-08-13 15:47:11', 989, NULL, NULL, 'IPAY2021/08/0941', NULL, 'cash', '', '', '', '', '', '', '256.6900', NULL, 8, NULL, 'received', '', '256.6900', '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 (943, '2021-08-13 16:00:00', 990, NULL, NULL, 'IPAY2021/08/0942', NULL, 'cash', '', '', '', '', '', '', '86.0000', NULL, 11, NULL, 'received', '', '86.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 (944, '2021-08-13 16:01:26', 991, NULL, NULL, 'IPAY2021/08/0943', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 11, NULL, 'received', '', '22.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 (945, '2021-08-13 16:03:16', 992, NULL, NULL, 'IPAY2021/08/0944', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 8, NULL, 'received', '', '23.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 (946, '2021-08-13 16:56:20', 993, NULL, NULL, 'IPAY2021/08/0945', NULL, 'cash', '', '', '', '', '', '', '22.0000', NULL, 11, NULL, 'received', '', '22.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 (947, '2021-08-13 17:06:30', 994, NULL, NULL, 'IPAY2021/08/0946', NULL, 'cash', '', '', '', '', '', '', '41.5000', NULL, 11, NULL, 'received', '', '41.5000', '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 (948, '2021-08-13 17:45:28', 995, NULL, NULL, 'IPAY2021/08/0947', NULL, 'cash', '', '', '', '', '', '', '30.5000', NULL, 11, NULL, 'received', '', '30.5000', '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 (949, '2021-08-13 17:51:58', 996, NULL, NULL, 'IPAY2021/08/0948', NULL, 'cash', '', '', '', '', '', '', '41.0000', NULL, 11, NULL, 'received', '', '41.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 (950, '2021-08-13 18:31:17', 997, NULL, NULL, 'IPAY2021/08/0949', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 11, NULL, 'received', '', '27.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 (951, '2021-08-13 18:46:39', 998, NULL, NULL, 'IPAY2021/08/0950', NULL, 'cash', '', '', '', '', '', '', '20.4000', NULL, 11, NULL, 'received', '', '20.4000', '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 (952, '2021-08-13 18:58:23', 999, NULL, NULL, 'IPAY2021/08/0951', NULL, 'cash', '', '', '', '', '', '', '14.0000', NULL, 11, NULL, 'received', '', '14.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 (953, '2021-08-13 19:10:08', 1000, NULL, NULL, 'IPAY2021/08/0952', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 11, NULL, 'received', '', '5.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 (954, '2021-08-13 19:23:53', 1001, NULL, NULL, 'IPAY2021/08/0953', NULL, 'cash', '', '', '', '', '', '', '35.0000', NULL, 11, NULL, 'received', '', '35.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 (955, '2021-08-13 19:28:50', 1002, NULL, NULL, 'IPAY2021/08/0954', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 11, NULL, 'received', '', '26.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 (956, '2021-08-13 19:37:24', 1003, NULL, NULL, 'IPAY2021/08/0955', NULL, 'cash', '', '', '', '', '', '', '26.0000', NULL, 11, NULL, 'received', '', '26.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 (957, '2021-08-13 19:42:28', 1004, NULL, NULL, 'IPAY2021/08/0956', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 11, NULL, 'received', '', '3.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 (958, '2021-08-13 20:03:46', 1005, NULL, NULL, 'IPAY2021/08/0957', NULL, 'cash', '', '', '', '', '', '', '280.1200', NULL, 6, NULL, 'received', '', '280.1200', '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 (959, '2021-08-13 20:27:36', 1006, NULL, NULL, 'IPAY2021/08/0958', NULL, 'cash', '', '', '', '', '', '', '61.0000', NULL, 11, NULL, 'received', '', '61.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 (960, '2021-08-13 20:41:54', 1007, NULL, NULL, 'IPAY2021/08/0959', NULL, 'cash', '', '', '', '', '', '', '50.5000', NULL, 11, NULL, 'received', '', '50.5000', '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 (961, '2021-08-13 21:14:23', 1008, NULL, NULL, 'IPAY2021/08/0960', NULL, 'cash', '', '', '', '', '', '', '6.2000', NULL, 11, NULL, 'received', '', '6.2000', '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 (962, '2021-08-14 14:02:29', 1009, NULL, NULL, 'IPAY2021/08/0961', NULL, 'cash', '', '', '', '', '', '', '241.6000', NULL, 7, NULL, 'received', '', '241.6000', '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 (963, '2021-08-14 14:22:39', 1010, NULL, NULL, 'IPAY2021/08/0962', NULL, 'cash', '', '', '', '', '', '', '23.0000', NULL, 7, NULL, 'received', '', '23.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 (964, '2021-08-14 14:28:25', 1011, NULL, NULL, 'IPAY2021/08/0963', NULL, 'cash', '', '', '', '', '', '', '12.0000', NULL, 7, NULL, 'received', '', '12.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 (965, '2021-08-14 14:35:52', 1012, NULL, NULL, 'IPAY2021/08/0964', NULL, 'cash', '', '', '', '', '', '', '260.0400', NULL, 14, NULL, 'received', '', '260.0400', '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 (966, '2021-08-14 15:02:30', 1013, NULL, NULL, 'IPAY2021/08/0965', NULL, 'cash', '', '', '', '', '', '', '29.0000', NULL, 14, NULL, 'received', '', '29.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 (967, '2021-08-14 17:37:46', 1014, NULL, NULL, 'IPAY2021/08/0966', NULL, 'cash', '', '', '', '', '', '', '60.2000', NULL, 11, NULL, 'received', '', '60.2000', '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 (968, '2021-08-14 17:42:18', 1015, NULL, NULL, 'IPAY2021/08/0967', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 7, NULL, 'received', '', '10.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 (969, '2021-08-14 17:45:42', 1016, NULL, NULL, 'IPAY2021/08/0968', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 7, NULL, 'received', '', '80.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 (970, '2021-08-14 18:16:57', 1017, NULL, NULL, 'IPAY2021/08/0969', NULL, 'cash', '', '', '', '', '', '', '15.5000', NULL, 11, NULL, 'received', '', '15.5000', '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 (971, '2021-08-14 18:34:53', 1018, NULL, NULL, 'IPAY2021/08/0970', NULL, 'cash', '', '', '', '', '', '', '67.9000', NULL, 11, NULL, 'received', '', '67.9000', '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 (972, '2021-08-14 18:40:40', 1019, NULL, NULL, 'IPAY2021/08/0971', NULL, 'cash', '', '', '', '', '', '', '36.0000', NULL, 7, NULL, 'received', '', '36.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 (973, '2021-08-14 19:11:14', 1020, NULL, NULL, 'IPAY2021/08/0972', NULL, 'cash', '', '', '', '', '', '', '24.5000', NULL, 11, NULL, 'received', '', '24.5000', '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 (974, '2021-08-14 19:20:20', 1021, NULL, NULL, 'IPAY2021/08/0973', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 11, NULL, 'received', '', '10.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 (975, '2021-08-14 20:18:37', 1022, NULL, NULL, 'IPAY2021/08/0974', NULL, 'cash', '', '', '', '', '', '', '43.5000', NULL, 11, NULL, 'received', '', '43.5000', '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 (976, '2021-08-14 20:27:40', 1023, NULL, NULL, 'IPAY2021/08/0975', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 11, NULL, 'received', '', '5.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 (977, '2021-08-14 20:30:49', 1024, NULL, NULL, 'IPAY2021/08/0976', NULL, 'cash', '', '', '', '', '', '', '189.5000', NULL, 7, NULL, 'received', '', '189.5000', '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 (978, '2021-08-14 20:32:40', 1025, NULL, NULL, 'IPAY2021/08/0977', NULL, 'cash', '', '', '', '', '', '', '104.5000', NULL, 7, NULL, 'received', '', '104.5000', '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 (979, '2021-08-14 20:43:28', 1026, NULL, NULL, 'IPAY2021/08/0978', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 7, NULL, 'received', '', '10.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 (980, '2021-08-14 20:46:00', 1027, NULL, NULL, 'IPAY2021/08/0979', NULL, 'cash', '', '', '', '', '', '', '129.5000', NULL, 7, NULL, 'received', '', '129.5000', '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 (981, '2021-08-14 21:11:35', 1028, NULL, NULL, 'IPAY2021/08/0980', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 11, NULL, 'received', '', '6.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 (982, '2021-08-14 21:43:34', 1029, NULL, NULL, 'IPAY2021/08/0981', NULL, 'cash', '', '', '', '', '', '', '108.0000', NULL, 7, NULL, 'received', '', '108.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 (983, '2021-08-14 21:48:59', 1030, NULL, NULL, 'IPAY2021/08/0982', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 11, NULL, 'received', '', '17.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 (984, '2021-08-14 21:49:56', 1031, NULL, NULL, 'IPAY2021/08/0983', NULL, 'cash', '', '', '', '', '', '', '63.5000', NULL, 7, NULL, 'received', '', '63.5000', '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 (985, '2021-08-14 21:53:37', 1032, NULL, NULL, 'IPAY2021/08/0984', NULL, 'cash', '', '', '', '', '', '', '15.0000', NULL, 7, NULL, 'received', '', '15.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 (986, '2021-08-15 18:32:52', 1033, NULL, NULL, 'IPAY2021/08/0985', NULL, 'cash', '', '', '', '', '', '', '175.0300', NULL, 15, NULL, 'received', '', '175.0300', '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 (987, '2021-08-15 18:54:16', 1034, NULL, NULL, 'IPAY2021/08/0986', NULL, 'cash', '', '', '', '', '', '', '45.7000', NULL, 15, NULL, 'received', '', '45.7000', '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 (988, '2021-08-15 19:15:59', 1035, NULL, NULL, 'IPAY2021/08/0987', NULL, 'cash', '', '', '', '', '', '', '9.0000', NULL, 15, NULL, 'received', '', '9.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 (989, '2021-08-15 19:45:15', 1036, NULL, NULL, 'IPAY2021/08/0988', NULL, 'cash', '', '', '', '', '', '', '86.5000', NULL, 15, NULL, 'received', '', '86.5000', '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 (990, '2021-08-15 20:06:21', 1037, NULL, NULL, 'IPAY2021/08/0989', NULL, 'cash', '', '', '', '', '', '', '37.0000', NULL, 15, NULL, 'received', '', '37.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 (991, '2021-08-15 21:00:37', 1038, NULL, NULL, 'IPAY2021/08/0990', NULL, 'cash', '', '', '', '', '', '', '91.2000', NULL, 15, NULL, 'received', '', '91.2000', '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 (992, '2021-08-16 14:03:22', 1040, NULL, NULL, 'IPAY2021/08/0991', NULL, 'cash', '', '', '', '', '', '', '145.5000', NULL, 7, NULL, 'received', '', '145.5000', '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 (993, '2021-08-16 14:31:31', 1041, NULL, NULL, 'IPAY2021/08/0992', NULL, 'cash', '', '', '', '', '', '', '268.0000', NULL, 14, NULL, 'received', '', '268.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 (994, '2021-08-16 15:11:22', 1042, NULL, NULL, 'IPAY2021/08/0993', NULL, 'cash', '', '', '', '', '', '', '120.5000', NULL, 7, NULL, 'received', '', '120.5000', '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 (995, '2021-08-16 15:17:46', 1043, NULL, NULL, 'IPAY2021/08/0994', NULL, 'cash', '', '', '', '', '', '', '9.5000', NULL, 7, NULL, 'received', '', '9.5000', '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 (996, '2021-08-16 18:51:45', 1044, NULL, NULL, 'IPAY2021/08/0995', NULL, 'cash', '', '', '', '', '', '', '101.5200', NULL, 11, NULL, 'received', '', '101.5200', '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 (997, '2021-08-16 18:57:01', 1045, NULL, NULL, 'IPAY2021/08/0996', NULL, 'cash', '', '', '', '', '', '', '439.2100', NULL, 6, NULL, 'received', '', '439.2100', '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 (998, '2021-08-16 19:18:40', 1046, NULL, NULL, 'IPAY2021/08/0997', NULL, 'cash', '', '', '', '', '', '', '65.0000', NULL, 11, NULL, 'received', '', '65.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 (999, '2021-08-16 20:01:35', 1047, NULL, NULL, 'IPAY2021/08/0998', NULL, 'cash', '', '', '', '', '', '', '181.5000', NULL, 6, NULL, 'received', '', '181.5000', '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 (1000, '2021-08-16 20:32:01', 1048, NULL, NULL, 'IPAY2021/08/0999', NULL, 'cash', '', '', '', '', '', '', '41.0000', NULL, 11, NULL, 'received', '', '41.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 (1001, '2021-08-16 21:17:42', 1049, NULL, NULL, 'IPAY2021/08/1000', NULL, 'cash', '', '', '', '', '', '', '0.7000', NULL, 11, NULL, 'received', '', '0.7000', '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 (1002, '2021-08-16 21:18:39', 1050, NULL, NULL, 'IPAY2021/08/1001', NULL, 'cash', '', '', '', '', '', '', '159.0800', NULL, 6, NULL, 'received', '', '159.0800', '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 (1003, '2021-08-16 21:55:33', 1051, NULL, NULL, 'IPAY2021/08/1002', NULL, 'cash', '', '', '', '', '', '', '33.0000', NULL, 6, NULL, 'received', '', '33.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 (1004, '2021-08-17 13:46:18', 1052, NULL, NULL, 'IPAY2021/08/1003', NULL, 'cash', '', '', '', '', '', '', '124.0000', NULL, 14, NULL, 'received', '', '124.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 (1005, '2021-08-17 14:50:26', 1053, NULL, NULL, 'IPAY2021/08/1004', NULL, 'cash', '', '', '', '', '', '', '174.1200', NULL, 7, NULL, 'received', '', '174.1200', '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 (1006, '2021-08-17 14:53:23', 1054, NULL, NULL, 'IPAY2021/08/1005', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 14, NULL, 'received', '', '2.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 (1007, '2021-08-17 19:16:52', 1055, NULL, NULL, 'IPAY2021/08/1006', NULL, 'cash', '', '', '', '', '', '', '385.8000', NULL, 6, NULL, 'received', '', '385.8000', '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 (1008, '2021-08-17 19:25:36', 1056, NULL, NULL, 'IPAY2021/08/1007', NULL, 'cash', '', '', '', '', '', '', '296.0000', NULL, 11, NULL, 'received', '', '296.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 (1009, '2021-08-17 19:31:02', 1057, NULL, NULL, 'IPAY2021/08/1008', NULL, 'cash', '', '', '', '', '', '', '31.0000', NULL, 11, NULL, 'received', '', '31.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 (1010, '2021-08-17 19:43:18', 1058, NULL, NULL, 'IPAY2021/08/1009', NULL, 'cash', '', '', '', '', '', '', '2.0000', NULL, 11, NULL, 'received', '', '2.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 (1011, '2021-08-17 20:37:03', 1059, NULL, NULL, 'IPAY2021/08/1010', NULL, 'cash', '', '', '', '', '', '', '151.0000', NULL, 11, NULL, 'received', '', '151.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 (1012, '2021-08-17 20:45:58', 1060, NULL, NULL, 'IPAY2021/08/1011', NULL, 'cash', '', '', '', '', '', '', '47.0000', NULL, 11, NULL, 'received', '', '47.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 (1013, '2021-08-17 20:54:55', 1061, NULL, NULL, 'IPAY2021/08/1012', NULL, 'cash', '', '', '', '', '', '', '13.0000', NULL, 11, NULL, 'received', '', '13.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 (1014, '2021-08-17 21:04:47', 1062, NULL, NULL, 'IPAY2021/08/1013', NULL, 'cash', '', '', '', '', '', '', '4.0000', NULL, 11, NULL, 'received', '', '4.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 (1015, '2021-08-17 21:18:34', 1063, NULL, NULL, 'IPAY2021/08/1014', NULL, 'cash', '', '', '', '', '', '', '28.0000', NULL, 11, NULL, 'received', '', '28.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 (1016, '2021-08-17 21:25:15', 1064, NULL, NULL, 'IPAY2021/08/1015', NULL, 'cash', '', '', '', '', '', '', '10.0000', NULL, 11, NULL, 'received', '', '10.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 (1017, '2021-08-17 21:25:26', 1065, NULL, NULL, 'IPAY2021/08/1016', NULL, 'cash', '', '', '', '', '', '', '334.0000', NULL, 6, NULL, 'received', '', '334.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 (1018, '2021-08-17 21:32:00', 1066, NULL, NULL, 'IPAY2021/08/1017', NULL, 'cash', '', '', '', '', '', '', '23.5000', NULL, 11, NULL, 'received', '', '23.5000', '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 (1019, '2021-08-17 22:00:50', 1067, NULL, NULL, 'IPAY2021/08/1018', NULL, 'cash', '', '', '', '', '', '', '185.0000', NULL, 6, NULL, 'received', '', '185.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 (1020, '2021-08-17 22:07:21', 1068, NULL, NULL, 'IPAY2021/08/1019', NULL, 'cash', '', '', '', '', '', '', '17.0000', NULL, 6, NULL, 'received', '', '17.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 (1021, '2021-08-18 14:28:09', 1069, NULL, NULL, 'IPAY2021/08/1020', NULL, 'cash', '', '', '', '', '', '', '361.6700', NULL, 7, NULL, 'received', '', '361.6700', '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 (1022, '2021-08-18 14:34:04', 1070, NULL, NULL, 'IPAY2021/08/1021', NULL, 'cash', '', '', '', '', '', '', '195.5000', NULL, 14, NULL, 'received', '', '195.5000', '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 (1023, '2021-08-18 14:53:34', 1071, NULL, NULL, 'IPAY2021/08/1022', NULL, 'cash', '', '', '', '', '', '', '23.0200', NULL, 14, NULL, 'received', '', '23.0200', '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 (1024, '2021-08-18 15:06:37', 1072, NULL, NULL, 'IPAY2021/08/1023', NULL, 'cash', '', '', '', '', '', '', '5.0000', NULL, 7, NULL, 'received', '', '5.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 (1025, '2021-08-18 19:31:36', 1073, NULL, NULL, 'IPAY2021/08/1024', NULL, 'cash', '', '', '', '', '', '', '356.5100', NULL, 11, NULL, 'received', '', '356.5100', '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 (1026, '2021-08-18 20:45:54', 1074, NULL, NULL, 'IPAY2021/08/1025', NULL, 'cash', '', '', '', '', '', '', '265.4200', NULL, 6, NULL, 'received', '', '265.4200', '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 (1027, '2021-08-18 21:32:46', 1075, NULL, NULL, 'IPAY2021/08/1026', NULL, 'cash', '', '', '', '', '', '', '137.5000', NULL, 11, NULL, 'received', '', '137.5000', '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 (1028, '2021-08-18 21:34:25', 1076, NULL, NULL, 'IPAY2021/08/1027', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 11, NULL, 'received', '', '3.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 (1029, '2021-08-18 21:50:28', 1077, NULL, NULL, 'IPAY2021/08/1028', NULL, 'cash', '', '', '', '', '', '', '108.5000', NULL, 6, NULL, 'received', '', '108.5000', '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 (1030, '2021-08-18 22:06:02', 1078, NULL, NULL, 'IPAY2021/08/1029', NULL, 'cash', '', '', '', '', '', '', '52.5000', NULL, 11, NULL, 'received', '', '52.5000', '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 (1031, '2021-08-19 13:45:04', 1079, NULL, NULL, 'IPAY2021/08/1030', NULL, 'cash', '', '', '', '', '', '', '163.0400', NULL, 15, NULL, 'received', '', '163.0400', '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 (1032, '2021-08-19 14:32:03', 1080, NULL, NULL, 'IPAY2021/08/1031', NULL, 'cash', '', '', '', '', '', '', '27.5000', NULL, 15, NULL, 'received', '', '27.5000', '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 (1033, '2021-08-19 15:05:26', 1081, NULL, NULL, 'IPAY2021/08/1032', NULL, 'cash', '', '', '', '', '', '', '231.5000', NULL, 8, NULL, 'received', '', '231.5000', '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 (1034, '2021-08-19 19:17:45', 1082, NULL, NULL, 'IPAY2021/08/1033', NULL, 'cash', '', '', '', '', '', '', '120.2000', NULL, 11, NULL, 'received', '', '120.2000', '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 (1035, '2021-08-19 19:59:34', 1083, NULL, NULL, 'IPAY2021/08/1034', NULL, 'cash', '', '', '', '', '', '', '47.5000', NULL, 11, NULL, 'received', '', '47.5000', '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 (1036, '2021-08-19 20:24:38', 1084, NULL, NULL, 'IPAY2021/08/1035', NULL, 'cash', '', '', '', '', '', '', '44.2000', NULL, 11, NULL, 'received', '', '44.2000', '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 (1037, '2021-08-19 20:42:27', 1085, NULL, NULL, 'IPAY2021/08/1036', NULL, 'cash', '', '', '', '', '', '', '332.5000', NULL, 6, NULL, 'received', '', '332.5000', '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 (1038, '2021-08-19 20:55:58', 1086, NULL, NULL, 'IPAY2021/08/1037', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 11, NULL, 'received', '', '1.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 (1039, '2021-08-19 21:29:45', 1087, NULL, NULL, 'IPAY2021/08/1038', NULL, 'cash', '', '', '', '', '', '', '3.0000', NULL, 11, NULL, 'received', '', '3.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 (1040, '2021-08-19 21:51:12', 1088, NULL, NULL, 'IPAY2021/08/1039', NULL, 'cash', '', '', '', '', '', '', '92.0000', NULL, 11, NULL, 'received', '', '92.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 (1041, '2021-08-19 21:57:01', 1089, NULL, NULL, 'IPAY2021/08/1040', NULL, 'cash', '', '', '', '', '', '', '79.0000', NULL, 6, NULL, 'received', '', '79.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 (1042, '2021-08-20 13:32:25', 1091, NULL, NULL, 'IPAY2021/08/1041', NULL, 'cash', '', '', '', '', '', '', '246.5200', NULL, 7, NULL, 'received', '', '246.5200', '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 (1043, '2021-08-20 13:40:51', 1092, NULL, NULL, 'IPAY2021/08/1042', NULL, 'cash', '', '', '', '', '', '', '95.5000', NULL, 14, NULL, 'received', '', '95.5000', '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 (1044, '2021-08-20 13:48:48', 1093, NULL, NULL, 'IPAY2021/08/1043', NULL, 'cash', '', '', '', '', '', '', '45.0000', NULL, 7, NULL, 'received', '', '45.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 (1045, '2021-08-20 14:14:37', 1094, NULL, NULL, 'IPAY2021/08/1044', NULL, 'cash', '', '', '', '', '', '', '151.0000', NULL, 7, NULL, 'received', '', '151.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 (1046, '2021-08-20 14:41:56', 1095, NULL, NULL, 'IPAY2021/08/1045', NULL, 'cash', '', '', '', '', '', '', '6.5000', NULL, 7, NULL, 'received', '', '6.5000', '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 (1047, '2021-08-20 14:51:11', 1096, NULL, NULL, 'IPAY2021/08/1046', NULL, 'cash', '', '', '', '', '', '', '89.0000', NULL, 7, NULL, 'received', '', '89.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 (1048, '2021-08-20 14:54:11', 1097, NULL, NULL, 'IPAY2021/08/1047', NULL, 'cash', '', '', '', '', '', '', '27.0000', NULL, 14, NULL, 'received', '', '27.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 (1049, '2021-08-20 15:15:53', 1098, NULL, NULL, 'IPAY2021/08/1048', NULL, 'cash', '', '', '', '', '', '', '103.0000', NULL, 7, NULL, 'received', '', '103.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 (1050, '2021-08-20 17:51:00', 1099, NULL, NULL, 'IPAY2021/08/1049', NULL, 'cash', '', '', '', '', '', '', '299.4700', NULL, 11, NULL, 'received', '', '299.4700', '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 (1051, '2021-08-20 19:25:51', 1100, NULL, NULL, 'IPAY2021/08/1050', NULL, 'cash', '', '', '', '', '', '', '133.8000', NULL, 11, NULL, 'received', '', '133.8000', '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 (1052, '2021-08-20 19:29:40', 1101, NULL, NULL, 'IPAY2021/08/1051', NULL, 'cash', '', '', '', '', '', '', '983.8900', NULL, 6, NULL, 'received', '', '983.8900', '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 (1053, '2021-08-20 19:36:32', 1102, NULL, NULL, 'IPAY2021/08/1052', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 11, NULL, 'received', '', '8.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 (1054, '2021-08-20 19:58:38', 1103, NULL, NULL, 'IPAY2021/08/1053', NULL, 'cash', '', '', '', '', '', '', '8.0000', NULL, 11, NULL, 'received', '', '8.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 (1055, '2021-08-20 20:20:45', 1104, NULL, NULL, 'IPAY2021/08/1054', NULL, 'cash', '', '', '', '', '', '', '4.5000', NULL, 11, NULL, 'received', '', '4.5000', '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 (1056, '2021-08-20 20:24:47', 1105, NULL, NULL, 'IPAY2021/08/1055', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 11, NULL, 'received', '', '1.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 (1057, '2021-08-20 20:48:22', 1106, NULL, NULL, 'IPAY2021/08/1056', NULL, 'cash', '', '', '', '', '', '', '147.5200', NULL, 6, NULL, 'received', '', '147.5200', '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 (1058, '2021-08-20 20:53:20', 1107, NULL, NULL, 'IPAY2021/08/1057', NULL, 'cash', '', '', '', '', '', '', '33.5000', NULL, 4, NULL, 'received', '', '33.5000', '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 (1059, '2021-08-20 21:48:05', 1110, NULL, NULL, 'IPAY2021/08/1058', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 11, NULL, 'received', '', '30.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 (1060, '2021-08-20 21:52:34', 1111, NULL, NULL, 'IPAY2021/08/1059', NULL, 'cash', '', '', '', '', '', '', '6.0000', NULL, 11, NULL, 'received', '', '6.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 (1061, '2021-08-20 21:59:55', 1112, NULL, NULL, 'IPAY2021/08/1060', NULL, 'cash', '', '', '', '', '', '', '18.5000', NULL, 6, NULL, 'received', '', '18.5000', '0.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 DEFAULT NULL,
  `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=16 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, '2021-03-04 07:45:48', 1, '0.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 (2, '2021-03-22 08:18:09', 2, '0.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, '2021-04-12 02:00:47', 3, '0.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 (4, '2021-04-12 02:12:21', 6, '0.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 (5, '2021-04-12 08:29:58', 7, '0.0000', 'close', '145.5000', 0, 0, '145.5000', 0, 0, '', '2021-04-13 23:35:02', NULL, 3);
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 (6, '2021-04-14 08:10:18', 7, '0.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 (7, '2021-05-11 08:04:23', 8, '0.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 (8, '2021-05-26 22:36:02', 4, '0.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 (9, '2021-07-08 16:19:44', 9, '0.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 (10, '2021-07-26 10:39:38', 10, '0.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 (11, '2021-07-26 15:32:04', 11, '0.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 (12, '2021-08-01 18:59:14', 13, '0.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 (13, '2021-08-07 09:02:53', 14, '0.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 (14, '2021-08-08 18:22:13', 15, '0.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 (15, '2021-08-20 21:00:37', 16, '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.42',
  `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,
  `show_item_qty` tinyint(1) NOT NULL DEFAULT 0,
  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`, `show_item_qty`) VALUES (1, 22, 6, 1, 1, 3, '1', '', '', '', '', 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, 0, 42, NULL, 'purchase_code', 'envato_username', '3.4.42', 0, 0, 0, '', 1, NULL, 'null', 0, 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 DEFAULT CHARSET=utf8;

#
# 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`),
  UNIQUE KEY `unique_product_id_name` (`product_id`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# 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 DEFAULT NULL,
  `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,
  `hide_pos` tinyint(1) NOT NULL DEFAULT 0,
  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=5201 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`, `hide_pos`) VALUES (1298, 'PR-11', 'Product 11', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'product-11', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1300, 'PR-13', 'ARTIBASE FORTE 80/4801X6', 1, '5.2000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'artibase-forte-804801x6', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1301, 'PR-14', 'BASE COLD 1X6X10', 1, '1.6800', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'base-cold-1x6x10', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1302, 'PR-15', 'BASE COLD SYR', 1, '4.0000', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '52.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'base-cold-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1303, 'PR-16', 'BASE BOOM JELLY', 1, '1.3800', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '281.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'base-boom-jelly', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1304, 'PR-17', 'BASECHLOR DROPS', 1, '1.4500', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '116.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'basechlor-drops', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1305, 'PR-18', 'BASEKOF SYR', 1, '5.2000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'basekof-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1306, 'PR-19', 'DOMI 10: TAB', 1, '2.1000', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '24.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'domi-10-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1307, 'PR-20', 'FENBASE EXTRA', 1, '1.9000', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '61.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fenbase-extra', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1308, '5012617005687', 'FOLIC ACID 5MG OVAL', 1, '8.0000', '10.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'folic-acid-5mg-oval', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1309, 'PR-22', 'GENTBASE EYE/EAR DROP', 1, '1.6000', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gentbase-eyeear-drop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 1, '0.3700', '0.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-61.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'martin-liver-salt-lemon', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 1, '0.3700', '0.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '36.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'martins-liver-salt-orange', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1312, 'PR-25', 'MILK OF MAGNESIA S/S', 1, '6.3000', '8.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'milk-of-magnesia-ss', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1313, 'PR-26', 'J.V  WORMBASE 400 TAB', 1, '2.6700', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '83.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jv-wormbase-400-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1314, 'PR-27', 'WORMBASE SUSP', 1, '1.2000', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '34.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'wormbase-susp', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1315, 'PR-28', '8 HOUR FEVER MIX', 1, '20.9000', '27.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '8-hour-fever-mix', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1316, 'PR-29', 'FAMACOLD SYR', 1, '6.3000', '9.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'famacold-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1318, '5017848248049', 'MENTHOX SYR ADULT', 1, '5.3000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'menthox-syr-adult', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1319, 'PR-32', 'PARA SYR AYRTON', 1, '3.0000', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'para-syr-ayrton', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1320, 'PR-33', 'PARALEX BABY', 1, '4.5000', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'paralex-baby', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1321, 'PR-34', 'TRES ORIX FORTE 1 00ML(S/S)', 1, '9.8000', '13.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tres-orix-forte-1-00mlss', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1322, 'PR-35', 'BADRUF CREAM 30MG', 1, '3.6000', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '24.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'badruf-cream-30mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1323, 'PR-36', 'GLIZONE 30MG', 1, '7.9900', '10.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'glizone-30mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1324, '6181100465976', 'MEDICAL ICE COOL', 1, '4.0000', '5.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '3-medical-ice-cool', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1325, '692771017440', 'MUPIROCIN OINTMENT 15G', 1, '23.9800', '32.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mupirocin-ointment-15g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1326, 'PR-39', 'DERMIRON PLUS CREAM', 1, '4.4000', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'dermiron-plus-cream', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1328, 'PR-41', 'HIGH ELASTIC CREPE BANDAGE 4\"', 1, '3.1500', '4.5000', '3.0000', '', 1, NULL, '', '', '', '', '', '', '17.0000', NULL, 0, '', NULL, 'code128', NULL, '', NULL, 'standard', 4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'high-elastic-crepe-bandage-4', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1329, 'PR-42', 'ZINC OXIDE PLASTER ROLL 41CHS', 1, '4.2000', '5.5000', '2.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 0, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zinc-oxide-plaster-roll-41chs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', 1, '3.7000', '5.0000', '3.0000', '', 1, NULL, '', '', '', '', '', '', '33.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'high-elastic-crepe-bandage-3', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', 1, '4.2000', '5.5000', '2.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zinc-oxide-plater-roll-21ch', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1332, 'PR-45', 'ZINC OXIDE PLATER ROLL 31CH', 1, '7.5000', '10.0000', '2.0000', '', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zinc-oxide-plater-roll-31ch', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1333, 'PR-46', 'GAUSE BANDAGE 31CH', 1, '0.5500', '2.0000', '12.0000', '', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 0, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gause-bandage-31ch', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1334, 'PR-47', 'GAUSE BANDAGE 41CH', 1, '0.7000', '1.5000', '12.0000', '', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gause-bandage-41ch', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1335, 'PR-48', 'GAUSE BANDAGE 61CH', 1, '0.8500', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gause-bandage-61ch', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1336, 'PR-49', 'RUBBING ALCOHOL -MUL TITI', 1, '15.0000', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'rubbing-alcohol-mul-titi', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1337, 'PR-50', 'SPIRIT', 1, '2.0000', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '24.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'spirit', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1338, 'PR-51', 'COTTON WOOL 1 00G', 1, '4.2900', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cotton-wool-1-00g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1339, 'PR-52', 'COTTON WOOL 25G', 1, '1.8000', '2.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cotton-wool-25g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1340, 'PR-53', 'COTTON WOOL 50G', 1, '2.7000', '3.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cotton-wool-50g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1341, 'PR-54', 'COTTON WOOL 500G', 1, '18.7900', '25.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cotton-wool-500g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 1, '5.0200', '7.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '27.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cartef-ds-80480-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1343, '4008500060353', 'PROGYNOVA 2MG TABS', 1, '43.9000', '58.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'progynova-2mg-tabs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1344, '8901082005391', 'EVANOVA CAPS', 1, '32.0000', '42.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'evanova-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1345, '8901082005339', 'ADDYZOA CAPS', 1, '49.0000', '65.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'addyzoa-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 1, '0.9000', '1.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '142.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'piriton-tabs-308-original', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 1, '3.4000', '4.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'enterogermina-oral-susp', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1348, '8901077166144', 'APDYL-H COUGH SYRUP 200ML', 1, '15.5000', '21.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'apdyl-h-cough-syrup-200ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1349, '5010123722708', 'CALPOL SYR 2+', 1, '34.9000', '46.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'calpol-syr-2', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1350, '4084500846548', 'PEPTOBISMOL S/S 120ML', 1, '30.0000', '40.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'peptobismol-ss-120ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1351, '4084500846579', 'PEPTO BISMOL 240ML', 1, '35.5000', '47.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pepto-bismol-240ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1352, 'PR-65', 'KURE ANTACID 125ML', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kure-antacid-125ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1353, '5060085540254', 'SELEVITE TABS', 1, '20.5000', '27.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'selevite-tabs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1354, '5024874700106', 'HEALTH LINK WOMAN', 1, '39.7500', '53.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'health-link-woman', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1355, 'PR-68', 'LIVOPAT CAPS- INDUS', 1, '17.6200', '23.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'livopat-caps-indus', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1356, '5021265221608', 'CARDIOACE CAPS', 1, '51.9800', '68.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cardioace-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1358, '011', 'LUEX CHILDREN CHESTY COUGH', 1, '7.7800', '10.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'luex-children-chesty-cough', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1361, '5021265221585', 'PREGNACARE (BE4) CONCEPTION ', 1, '59.0300', '78.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pregnacare-be4-conception', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1362, '8906078360300', 'BETA-CORT EEN DROPS 0.1 %', 1, '19.0000', '25.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'beta-cort-een-drops-01', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1363, '5000456022774', 'CRESTOR 5MG TABS', 1, '3.0300', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '36.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'crestor-5mg-tabs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1364, '5021265244447', 'WELLWOMAN CAPS 70+', 1, '52.5500', '69.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'wellwoman-caps-70', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1365, '8906116211496', 'PROWOMAN', 1, '19.4900', '26.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'prowoman', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1366, 'PR-79', 'THYROXINE 100MG', 1, '15.2900', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'thyroxine-100mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', 1, '5.3000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '142.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'proximexa-500mg-tabs-10x1', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 1, '5.5000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jet-inhaler-npkt-12s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1369, 'PR-82', 'NAPROX EC TABS ECL', 1, '6.0000', '8.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'naprox-ec-tabs-ecl', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1370, 'PR-83', 'LIVERPLEX-B ADULT SYR', 1, '7.4500', '10.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'liverplex-b-adult-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 1, '5.5000', '7.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'paracetamol-tabs-uk-16s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1372, 'PR-85', 'PARACETAMOL TAB 32\'S', 1, '7.8900', '10.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'paracetamol-tab-32s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1373, '1227808', 'TEGRETOL CR 200MG', 1, '8.1000', '10.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tegretol-cr-200mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1374, 'PR-87', 'TEGRETOL CR 400MG', 1, '18.5000', '26.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tegretol-cr-400mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1375, '5021265243457', 'OSTEOCARE TABS - UK', 1, '26.0000', '35.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'osteocare-tabs-uk', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1376, '7640153082107', 'IXYLO-MEPHA 0.05%', 1, '42.0000', '55.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ixylo-mepha-005', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1377, '5000158062139', 'BONJELA ADULT', 1, '35.4700', '45.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bonjela-adult', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1378, '5011417569627', 'BONJELA BABY', 1, '34.5000', '45.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bonjela-baby', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1379, 'PR-92', 'DIFLUCAN CAPS', 1, '83.0000', '110.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'diflucan-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1380, '4008500060070', 'PRIMOLUT N TABS 5MG- ORIGINAL', 1, '7.7000', '10.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'primolut-n-tabs-5mg-original', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1381, 'PR-94', ' GOLDY FORTE DS', 1, '7.4900', '10.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'goldy-forte-ds', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1382, 'PR-95', 'ZULU EXTRA', 1, '4.0000', '5.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '24.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zulu-extra', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1383, 'PR-96', 'ZULU - MR', 1, '4.8000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zulu-mr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', 1, '13.5000', '18.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'starwin-milk-0-m-bs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1385, 'PR-98', 'AZIS TABS. 500MG', 1, '6.3000', '8.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'azis-tabs-500mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1386, '6156000046105', 'ABONIK BALM (48)', 1, '4.5000', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '27.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'abonik-balm-48', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1387, '6034000189100', 'ADOM KOKO CAPS (100)', 1, '11.7000', '16.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'adom-koko-caps-100', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1388, 'PR-101', 'ADOM KOKO SYP(20)', 1, '5.3000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '23.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'adom-koko-syp20', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1389, '6034000189360', 'ADOM PAWAY CAPS(l00)', 1, '16.4000', '22.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'adom-paway-capsl00', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1390, 'PR-103', '_ADUTW I MWAA BITTERS ( 2 5)', 1, '7.5000', '10.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '_adutw-i-mwaa-bitters-2-5', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1391, '6036000005930', 'ADUWUMWAA CAPS (240)', 1, '11.0000', '14.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'aduwumwaa-caps-240', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1392, '6036000115400', 'AFRO MOSES', 1, '13.5000', '18.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'afro-moses', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1393, 'PR-106', 'AGBEVE PHEVER( 30)', 1, '6.5000', '8.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'agbeve-phever-30', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1394, 'PR-107', 'AGBEVE TONIC(30)', 1, '8.1700', '10.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '21.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'agbeve-tonic30', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1395, 'PR-108', 'AMUZU GARLIC', 1, '8.5000', '11.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'amuzu-garlic', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1396, 'PR-109', 'ANGEL CREAM(200)', 1, '2.7000', '3.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '28.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'angel-cream200', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1397, 'PR-110', 'ANGEL FETWEK3K3(200)', 1, '3.2000', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'angel-fetwek3k3200', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', 1, '7.5000', '10.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'diageilets-125ml70', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1399, 'PR-112', 'DIAGELLETS 250ML(50)', 1, '12.5000', '16.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '24.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'diagellets-250ml50', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1400, 'PR-113', 'DIAGELLETS 500ML(24)', 1, '22.0000', '29.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'diagellets-500ml24', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1401, 'PR-114', 'EKURO BEWU', 1, '3.0000', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '26.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ekuro-bewu', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1402, 'PR-115', 'ERNEST OINT(200)', 1, '2.2000', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '27.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ernest-oint200', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1403, '6036000115448', 'FEMACURE', 1, '13.0000', '17.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'femacure', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1404, 'PR-117', 'GBEDEMAH Garlic bitters', 1, '9.0000', '12.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gbedemah-garlic-bitters', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1405, 'PR-118', 'ARLIC BITTERS(30)', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'arlic-bitters30', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1406, '16564749', 'GIVERS KOO CAPS(l40)', 1, '17.3000', '23.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'givers-koo-capsl40', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1407, '001', 'GIVERS POWER CAPS(140)', 1, '17.0000', '22.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'givers-power-caps140', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1408, '6050125568200', 'HAPIMAN CAPS', 1, '9.5000', '12.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'hapiman-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1409, 'PR-122', 'IMBOOST', 1, '13.0000', '17.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '22.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'imboost', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1410, 'PR-123', 'JOY OINT S/S(200)', 1, '2.2000', '3.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '39.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'joy-oint-ss200', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1411, '6036000038952', 'JOY VIKIL', 1, '25.9000', '34.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'joy-vikil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1412, 'PR-125', 'KINGDOM GARLIC BITTERS', 1, '14.0000', '18.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'kingdom-garlic-bitters', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1413, 'PR-126', 'KINGDOM GARLIC CAPS', 1, '16.0000', '21.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'kingdom-garlic-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1414, '6034000157048', 'LIVING BITTERS CAPS', 1, '19.0000', '25.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'living-bitters-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1415, '6034000157055', 'LIVING BITTERS SYP S s', 1, '14.5000', '19.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'living-bitters-syp-s-s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1416, 'PR-129', 'LUCKY MIXTURE', 1, '10.0000', '13.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lucky-mixture', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1417, 'PR-130', 'LUCKY V CARE', 1, '11.5000', '15.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lucky-v-care', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1418, 'PR-131', 'MADAM CATERINE', 1, '8.0000', '11.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'madam-caterine', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1419, '5024389122233', 'MIGHTY POWER SYS LS', 1, '11.0000', '14.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mighty-power-sys-ls', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1420, 'PR-133', 'NAZO', 1, '1.2000', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '54.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nazo', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1421, '6666666666666', 'PROSLUV CAPS', 1, '19.8000', '26.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'prosluv-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1422, 'PR-135', 'PROSTACURE TEA (32)', 1, '21.0000', '28.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'prostacure-tea-32', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1423, '6036000115455', 'PROSTACURE X', 1, '24.5000', '33.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'prostacure-x', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1424, '6036000070709', 'PROSTAT 60', 1, '30.0000', '39.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'prostat-60', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1425, '6034600108402', 'ROOTER MIXTURE (12)', 1, '6.5000', '9.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '25.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'rooter-mixture-12', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1426, '6034600108426', 'ROOTER LIFE', 1, '36.0000', '47.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'rooter-life', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1427, '003', 'ROOTER TYTONIC', 1, '15.0000', '20.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'rooter-tytonic', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1428, 'PR-141', 'SIBI MEN CAPS(l00)', 1, '13.0000', '17.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sibi-men-capsl00', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1429, 'PR-142', 'SIBI WOMEN CAPS(100)', 1, '13.5000', '18.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '32.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sibi-women-caps100', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1430, 'PR-143', 'SOLAK MIXTURE(25)', 1, '13.0000', '18.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'solak-mixture25', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1431, 'PR-144', 'SPANISH GARLIC MIXTURE(30)', 1, '9.8000', '14.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '21.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'spanish-garlic-mixture30', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1432, '2546546415413', 'TAABEA MIX(25)', 1, '9.9500', '13.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '26.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'taabea-mix25', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1433, 'PR-146', 'TIME HERBAL MIX(25)', 1, '10.0000', '13.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'time-herbal-mix25', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', 1, '17.5000', '23.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tinatett-malakare-s00ml-25', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1435, 'PR-148', 'TINATETT VENECARE 75O0ML', 1, '22.5000', '30.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tinatett-venecare-75o0ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1436, 'PR-149', 'TOP FEVER ( 24)', 1, '9.5000', '12.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'top-fever-24', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1437, 'PR-150', 'TOP TONIC', 1, '9.5000', '12.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'top-tonic', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1438, '004', 'TRUMAN', 1, '14.8000', '19.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'truman', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1439, 'PR-152', 'VICTAGO s s', 1, '1.0000', '1.3000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '57.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'victago-s-s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1440, 'PR-153', 'VICTORY GARLIC', 1, '10.0000', '13.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '22.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'victory-garlic', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1441, '2150546225301', 'X DRIVE CAPS', 1, '13.0000', '17.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'x-drive-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1442, '005', 'YAFO MAN CAPS', 1, '13.0000', '17.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'yafo-man-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1444, 'PR-157', 'Entarcian 300 coo50003', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'entarcian-300-coo50003', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1445, 'PR-158', 'Iburex Caps c013D002', 1, '2.6000', '3.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'iburex-caps-c013d002', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1446, 'PR-159', 'Tobufen syr L00YADW6', 1, '4.1000', '5.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tobufen-syr-l00yadw6', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1447, '8906081306418', 'Herbal Lofnac HLB001', 1, '5.7000', '7.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'herbal-lofnac-hlb001', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1449, 'PR-162', 'Wormee 4 tab wr036', 1, '0.6600', '2.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '35.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'wormee-4-tab-wr036', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1450, 'PR-163', 'Lofnac 100 supp WABG035', 1, '0.8900', '1.2000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-72.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lofnac-100-supp-wabg035', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1451, 'PR-164', 'X?mox 500 BC03B017', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, '', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1452, 'PR-165', 'Tobufon 400 T002e001', 1, '1.2300', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '89.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tobufon-400-t002e001', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1454, 'PR-167', 'Ancigel  O L033E001', 1, '9.0000', '13.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ancigel-o-l033e001', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1455, 'PR-168', 'Gacet125MP KIACK006', 1, '4.0000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '102.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gacet125mp-kiack006', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1456, '5026143702088', 'ALPHA VITAMIN C TABS', 1, '15.0000', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'alpha-vitamin-c-tabs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1457, '5026143998344', 'ALPHA FOLIC ACID', 1, '12.0000', '16.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'alpha-folic-acid', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1458, '5026143998160', 'ALPHA GINSENG CAPS', 1, '18.0000', '24.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'alpha-ginseng-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1459, 'PR-172', 'ZINNAT SUSP 125MG/100ML', 1, '78.7400', '104.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zinnat-susp-125mg100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1460, 'PR-173', 'ZOFLORA 120ML', 1, '10.8600', '14.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zoflora-120ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1461, 'PR-174', 'MAGIC POWDER FRAGRANT SHAVE POWDER', 1, '15.0000', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'magic-powder-fragrant-shave-powder', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1462, '8904008413690', 'OVACARE TABS', 1, '20.0000', '27.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ovacare-tabs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1463, '5010123715175', 'EUTHYMOO TOOTHPASTE', 1, '18.5000', '25.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'euthymoo-toothpaste', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1464, '9502930974921', 'SENSONDYN ORIGINAL 75ML', 1, '10.8900', '17.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sensondyn-original-75ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1465, '9502930974976', 'SENSOOYNE EXTRA FRESH PASTE 75ML', 1, '18.2900', '24.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sensooyne-extra-fresh-paste-75ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1466, '6001076001025', 'AQUAFRESH FRESH & MINTY TOOTHPASTE 100ML', 1, '6.3300', '8.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'aquafresh-fresh-minty-toothpaste-100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1467, '6001076121808', 'AQUAFRESH HERBAL TOOTHPASTE 100ML', 1, '5.3300', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'aquafresh-herbal-toothpaste-100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1468, '6001076001032', 'AQUAFREAH T/PASTE 125ML', 1, '9.5000', '12.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'aquafreah-tpaste-125ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1469, 'PR-182', 'LISINOVA 5MG TABS', 1, '6.1800', '8.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lisinova-5mg-tabs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1470, '8906042660979', 'LEXOFEN SUSP 150ML', 1, '10.9000', '14.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lexofen-susp-150ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1471, 'PR-184', 'LEXOFEN SUS 100ML', 1, '6.9000', '9.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lexofen-sus-100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1472, 'PR-185', 'BLUSOPT EYE DROP', 1, '40.0000', '53.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'blusopt-eye-drop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1473, '5056338341617', 'HOT WATER BOTTLE (JACKET)', 1, '22.6400', '30.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'hot-water-bottle-jacket', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1474, '5000158101425', 'OPTREX MULTICATION EYE WASH 100ML', 1, '35.9900', '47.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'optrex-multication-eye-wash-100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1475, '50007592', 'OPTREX REFRESHING EYE WASH 10ML', 1, '35.9900', '47.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'optrex-refreshing-eye-wash-10ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1476, '50160181', 'OPTREX SOOTHING EYE DROP', 1, '28.6000', '38.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'optrex-soothing-eye-drop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1477, 'PR-190', 'CORSODY 300ML (ALCOHOL FREE)', 1, '40.9400', '54.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'corsody-300ml-alcohol-free', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1478, '8906087940128', 'IMPRESSER CAPS', 1, '21.2000', '28.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'impresser-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1479, '8906087940135', 'IMPRESSER OIL', 1, '44.0000', '58.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'impresser-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1480, '5011501006519', 'DEEP FREEZE SPRAY', 1, '29.9900', '40.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'deep-freeze-spray', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', 1, '24.9000', '33.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'deep-heat-spray-150ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1482, '5011501040124', 'DEEP HEAT RUB 35G', 1, '12.3000', '17.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'deep-heat-rub-35g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1483, '5011501040131', 'DEEP HEAT RUB 67G', 1, '17.3400', '29.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'deep-heat-rub-67g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1484, '8470007006244', 'SILVER DERMA CREAM 50G', 1, '28.0000', '38.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'silver-derma-cream-50g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1485, '008', 'NIZORAL CREAM', 1, '24.1800', '32.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nizoral-cream', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1486, '5010441000687', 'HYDROCORTISONE CREAM', 1, '17.2400', '23.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'hydrocortisone-cream', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1487, '8902292000893', 'KETAZOL CREAM', 1, '4.8700', '6.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ketazol-cream', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1488, '8902292005744', 'EPIDERM CREAM 30G LIS', 1, '3.9200', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'epiderm-cream-30g-lis', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1489, '6938058600108', 'SAMOCID(SKIN AND NAIL)', 1, '28.1700', '37.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'samocidskin-and-nail', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1490, '8903996006013', 'ACNEL GEL 20MG', 1, '10.3400', '14.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'acnel-gel-20mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1492, '5017848249589', 'NERVE & BONE LINIMENT', 1, '10.4400', '14.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nerve-bone-liniment', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1493, 'PR-206', 'GV PAINT', 1, '1.6300', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gv-paint', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', 1, '7.2800', '10.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'methylated-spirit-125mlecl', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1495, '8904107901401', 'MYCOLEX POWDER', 1, '17.7300', '25.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mycolex-powder', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1497, 'PR-210', 'JARIFAN 2 CAPS', 1, '11.0000', '15.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jarifan-2-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1498, 'PR-211', 'PAIN OFF TAB', 1, '0.3300', '0.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '73.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pain-off-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1499, 'PR-212', 'RAPINOL', 1, '0.4100', '0.6000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '17.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'rapinol', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1501, '8906046931860', 'RONFIT FORTE CAPS', 1, '2.2100', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '31.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ronfit-forte-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1502, '8850769018998', 'GOFEX400MG', 1, '7.8000', '10.5000', '11.0000', '', 1, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gofex400mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1503, '305731769203', 'ADVIL CAPLET 20\'', 1, '32.5100', '43.0000', '1.0000', '', 1, NULL, '', '', '', '', '', '', '27.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'advil-caplet-24', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 1, '1.5000', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '155.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'naklofen-duo-caps-75mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 1, '14.6400', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'neo-hycolex-eye-drop5ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1506, '7612797504765', 'MAXITROL EYE DROP', 1, '16.2500', '21.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'maxitrol-eye-drop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1507, '002', 'SEFLOX EYE/EAR DROP', 1, '5.5100', '7.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'seflox-eyeear-drop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1508, '7612797504857', 'FLAREX 0.1% EYE DROP', 1, '20.6800', '27.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'flarex-01-eye-drop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1510, '009', 'CIPROLEX EYE & EAR DROP', 1, '8.8600', '12.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ciprolex-eye-ear-drop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1511, '5413895053528', 'TEARS NATURAL 11', 1, '19.0000', '25.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tears-natural-11', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1512, 'PR-225', 'CIPAC EYE ROP', 1, '4.1000', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cipac-eye-rop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1513, '6221032233103', 'DEXATROL EYE DROP', 1, '11.9600', '16.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'dexatrol-eye-drop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1514, '6221032340177', 'DEXATROL EYE OINT', 1, '11.9600', '16.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'dexatrol-eye-oint', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1516, '9588800180593', 'OPTIMOL EYE DROP', 1, '15.7600', '21.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'optimol-eye-drop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1517, 'PR-230', 'NEOCORT EYE DROP', 1, '23.6400', '31.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'neocort-eye-drop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', 1, '6.9300', '10.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'soluble-aspirin-75mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1519, 'PR-232', 'ZULU TAB 10', 1, '3.3500', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '38.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zulu-tab-10', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1520, 'PR-233', 'DICLOLEX 100MG', 1, '1.4700', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '45.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'diclolex-100mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1521, 'PR-234', 'PAINGAYCAP', 1, '2.5000', '3.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'paingaycap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 1, '1.0000', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '115.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'easy-step-one-preg-test-kit', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1524, 'PR-237', 'MALARIA SELF TEST KITS', 1, '4.4000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '139.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'malaria-self-test-kits', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1525, '5000158063907', 'LEMSIP SACHETS 5\'S', 1, '4.9100', '6.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lemsip-sachets-5s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1526, '5052197041545', 'K-Y JELLY 82G', 1, '33.4700', '44.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'k-y-jelly-82g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1527, '8904159609416', 'PREGASAFE 75MG TAB', 1, '13.2300', '17.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pregasafe-75mg-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1528, '4031571020445', 'METFORMIN DENK S00MG', 1, '4.4000', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '45.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'metformin-denk-s00mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1529, '8901040207157', 'DYMOL TAB', 1, '3.5500', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'dymol-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1530, '4031571064159', 'METFORMIN DENK 1G', 1, '28.7000', '38.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'metformin-denk-1g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1531, 'PR-244', 'CLOXA CAP 250MG (LETAP)', 1, '0.9600', '1.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '117.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cloxa-cap-250mg-letap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', 1, '0.8000', '1.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '119.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ampicillin-250mg-caps-letap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 1, '3.0500', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '44.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'amoxyl-s00mg-caps-eskay', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1534, 'PR-247', 'PINEK 20MG TAB', 1, '0.9800', '1.3000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '23.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pinek-20mg-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1535, 'PR-248', 'PINEK XL 30MG TAB', 1, '7.4900', '10.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pinek-xl-30mg-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1536, '8901040245197', 'AXACEF S00MG 10\'S', 1, '3.8700', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '23.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'axacef-s00mg-10s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1537, 'PR-250', 'VITANE SYR', 1, '39.0000', '51.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vitane-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1538, 'PR-251', 'TINY VITE DROP', 1, '31.5200', '41.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tiny-vite-drop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1539, '9556100104618', 'O YES FEMININE WASH 200ML', 1, '18.0000', '24.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'oyes-feminine-wash-200ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1540, '8908003831138', 'LAWASH 100ML', 1, '9.2600', '12.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lawash-100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1541, '8902502106421', 'INFA V PESS', 1, '18.7200', '25.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'infa-v-pess', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1542, '8902502108920', 'INFAV OINT', 1, '14.7800', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'infav-oint', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1543, '4031571066740', 'CLOTRI DENK CREAM', 1, '17.9400', '25.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'clotri-denk-cream', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1544, '4031571036033', 'CLOTRI DENK 100 PESS', 1, '18.2100', '25.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'clotri-denk-100-pess', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1545, '8904091105816', 'CANDID V6 PESS 6\'S', 1, '7.3500', '10.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'candid-v6-pess-6s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1546, '5010724531044', 'ANUSOL SUPP 12\'S', 1, '2.7400', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '56.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'anusol-supp-12s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1547, '5010724531013', 'ANUSOL OINTMENT 25G', 1, '30.5800', '40.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'anusol-ointment-25g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1548, '6223003960339', 'DAFLON S00MG', 1, '2.8000', '3.6000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '105.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'daflon-s00mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1549, '610074245209', 'LAVET', 1, '21.1300', '28.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lavet', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1550, '18904083810480', 'GYNOMYCOLEX PESS', 1, '13.9000', '18.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gynomycolex-pess', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1551, '5021691032076', 'LEVOTHYROXINE TAB 50MG (MERC PHARMA)', 1, '14.7700', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'levothyroxine-tab-50mg-merc-pharma', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1552, 'PR-265', 'LIPITOR 10MG', 1, '4.2000', '5.6000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '32.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lipitor-10mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1553, 'PR-266', 'LIPITOR 20MG', 1, '6.9600', '10.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '32.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lipitor-20mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1554, 'PR-267', 'COTRI SUS (M&G) SEPTRIN', 1, '3.2000', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cotri-sus-mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1555, '3582910081043', 'RHINATHIOL ADULT SYR 125ML', 1, '22.2400', '29.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'rhinathiol-adult-syr-125ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1557, 'PR-270', 'SECLEAR  EYE DROP', 1, '7.9500', '10.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'seclear-eye-drop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1559, 'PR-272', 'SIRDALUD 4MG', 1, '22.1000', '30.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sirdalud-4mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1560, 'PR-273', 'STUGERON', 1, '4.6000', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'stugeron', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1561, 'PR-274', 'SPORANOX CAPS', 1, '27.0000', '35.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sporanox-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1562, 'PR-275', 'SULPHUR OINT.', 1, '5.1300', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sulphur-oint', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1563, 'PR-276', 'AMICLOX SUSP. (ECL)', 1, '4.9000', '6.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'amiclox-susp-ecl', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1564, '3838989544225', 'TADOL 100MG', 1, '2.6000', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '195.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tadol-100mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1565, 'PR-278', 'PARLODEL TABLETS 2.5MG', 1, '18.0500', '24.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'parlodel-tablets-25mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1567, 'PR-280', 'BRENEX SYRUP', 1, '13.3000', '17.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'brenex-syrup', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1568, '5000283659013', 'TAMSULOSIN MR CAPS 400MG ZENTIVA', 1, '19.5900', '26.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tamsulosin-mr-caps-400mg-zentiva', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1569, 'PR-282', 'TIGER CAPS', 1, '14.2800', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tiger-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', 1, '42.0000', '55.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'procomil-male-delay-spray', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1571, 'udia111', 'DIABETMIN TABS 500MG', 1, '1.9700', '2.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '34.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'diabetmin-tabs-500mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', 1, '1.7000', '2.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ezipen-tabs-100mg-30', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1573, '5997001360170', 'POSTINOR ORIGINAL', 1, '24.6200', '32.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'postinor-original', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 1, '1.5000', '2.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '62.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'para-500mg-caps-100-crescent', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1575, '5017007043294', 'LOSARTAN POTASSIUM 50MG (TEVA)', 1, '10.3500', '14.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'losartan-potassium-50mg-teva', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1576, 'PR-289', 'GRISORAL SUSP (MILDLAND)', 1, '7.0500', '9.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'grisoral-susp-mildland', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1577, 'PR-290', 'MALIN LOZ', 1, '2.5000', '3.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'malin-loz', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1578, 'PR-291', 'SAMALIN LOZENGES', 1, '1.9700', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'samalin-lozenges', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', 1, '0.9900', '1.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '60.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tetracyclin-cap-letap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1581, 'PR-294', 'TOUCH AND GO', 1, '12.0500', '16.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'touch-and-go', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1582, '5017007016991', 'WARFARIN TAB 5MG 28\'', 1, '9.3600', '12.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'warfarin-tab-5mg-28', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1583, '5060806420179', 'PROWOMAN DRINK 250ML', 1, '5.8900', '8.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'prowoman-drink-250ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1584, '5060806420162', 'PROMAN DRINK 250ML', 1, '5.8900', '8.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'proman-drink-250ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1585, 'PR-298', 'ZUBES CHILDREN', 1, '13.0000', '17.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zubes-children', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1586, '5012616173004', 'ABIDEC DROP', 1, '48.7600', '65.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'abidec-drop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1588, '8902396003509', 'CORORANGE DROP', 1, '4.8000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cororange-drop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1589, '8904008410118', 'GASTRACID SUSP (GR)', 1, '6.4000', '8.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gastracid-susp-gr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1590, 'PR-303', 'CHLORAM CAP (LETAP)', 1, '1.7100', '2.2000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '132.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'chloram-cap-letap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1591, '5017123328022', 'FUROSEMIDE 20MG TAB (CRESCENT)', 1, '10.7500', '14.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'furosemide-20mg-tab-crescent', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1592, '5021265231102', 'FEROGLOBIN SYR', 1, '35.9000', '47.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'feroglobin-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1593, 'PR-306', 'LYRICA 75MG', 1, '5.9000', '8.7000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '104.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lyrica-75mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1595, 'PR-308', 'BEEHIVE COUGH SYR', 1, '20.6900', '28.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'beehive-cough-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 1, '2.5700', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'saline-nasal-drops-local', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1598, 'PR-311', 'GO COUGH SYR', 1, '3.2000', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'go-cough-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1599, 'PR-312', 'RONZOLE 20MG CAPS', 1, '1.2800', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ronzole-20mg-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1600, 'PR-313', 'OMZOL CAPS 30\' (OMEPRAZOLE) SEDITA', 1, '7.8800', '10.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'omzol-caps-30-omeprazole-sedita', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1601, '8904091100316', 'CANDIDERM CREAM 15MG', 1, '7.7300', '10.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'candiderm-cream-15mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1602, 'PR-315', 'LYDIA POSTPILL', 1, '7.0400', '10.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '115.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lydia-postpill', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1603, 'PR-316', 'AUGMENTIN TAB 625MG', 1, '59.4600', '78.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'augmentin-tab-625mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1604, 'PR-317', 'AUGMENTIN 1G', 1, '38.6500', '51.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'augmentin-1g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1605, 'PR-318', 'AUGMENTIN SUSP 228MG', 1, '27.0000', '39.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'augmentin-susp-228mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1606, 'PR-319', 'CLOMID 50MG (BRUNO)', 1, '4.6200', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'clomid-50mg-bruno', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 1, '3.3500', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cetapol-sus-phyto', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1609, '8904107900893', 'MYCOLEX CREAM 20G', 1, '12.0000', '16.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mycolex-cream-20g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1610, '8904107900909', 'MYCOLEX-3 CREAM', 1, '15.7500', '21.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mycolex-3-cream', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1611, 'PR-324', 'M ETAGYL SUSP', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'm-etagyl-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1612, 'PR-325', 'GYPRONE PLUS TABS', 1, '1.6000', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gyprone-plus-tabs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1613, 'PR-326', 'GYPRON SYR', 1, '9.8500', '13.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gypron-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1615, '5000456022811', 'CRESTOR 20MG', 1, '5.3000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '62.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'crestor-20mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1616, 'PR-329', 'GACET SUPP 250MG', 1, '6.8900', '7.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '91.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gacet-supp-250mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1617, 'PR-330', 'ENTRAMOL 125MG SUPP', 1, '4.6300', '6.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'entramol-125mg-supp', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1618, '8901645060997', 'AZILEX 250MG CAPS', 1, '11.8200', '16.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'azilex-250mg-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1619, 'PR-332', 'KLINDA300MG', 1, '9.8500', '13.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'klinda300mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1620, '8906009230061', 'COMIT 50MG', 1, '2.2300', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '51.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'comit-50mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1621, '8851447000021', 'MARK 2 INHALER', 1, '6.6000', '9.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '30.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mark-2-inhaler', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1622, '5021265223602', 'WELLWOMAN 50+ CAPS', 1, '65.9500', '43.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'wellwoman-50-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1623, '5021265223398', 'PERFECTIL PLUS SKIN', 1, '130.0000', '174.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'perfectil-skin', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', 1, '29.4000', '39.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'immunace-caps-original', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1625, '8906116211458', 'PROMAN CAPS 30\' EXETER', 1, '16.7000', '22.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'proman-caps-30-exeter', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1626, '306420072116', 'VITAFOL CAP', 1, '7.5900', '10.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vitafol-cap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1627, 'PR-340', 'S/SEAS C.L.O CAPS 60\'', 1, '46.2600', '61.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sseas-clo-caps-60', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1628, 'PR-341', 'GUDAPET SYR', 1, '6.4000', '8.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gudapet-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1629, 'PR-342', 'GEN-M SUSP', 1, '15.5000', '21.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gen-m-susp', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1630, 'PR-343', 'GEN-M TAB 80/480', 1, '16.7400', '22.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gen-m-tab-80480', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1631, '8850769012651', 'ENAT 4001U CAPS', 1, '37.8000', '52.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'enat-4001u-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1632, '5024874030630', 'VALUPAK VITE 4001U', 1, '19.5000', '25.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'valupak-vite-4001u', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1633, '8901138836832', 'TENTEX ROYAL CAPS', 1, '31.0600', '41.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tentex-royal-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1634, 'PR-347', 'HYPONIDD TABS 20\' ?', 1, '25.0000', '33.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'HYPON', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', 1, '11.0000', '17.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '50.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cyclogest-400mg-pess-155', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1636, '4031571069116', 'VIT-B DENK', 1, '9.8000', '13.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vit-b-denk', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1637, '4031571068959', 'DICLO DENK 100MG TAB', 1, '10.2000', '14.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '21.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'diclo-denk-100mg-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', 1, '5.9100', '8.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '91.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'dalacin-c-300mg-165-phzer', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', 1, '6.6300', '10.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ephedrine-nasal-drop-major', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1640, 'PR-353', 'HISTAZINE SYR', 1, '2.6500', '3.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'histazine-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 1, '1.0100', '1.3000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '195.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'strepsils-orange-lonzenges-vit-c-36', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1642, '6001135507628', 'BENYLIN DRY  COUGH SYR 100ML', 1, '31.5000', '41.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'benylin-dry', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1643, '6001135505433', 'BENYLIN ORIGINAL', 1, '40.3900', '53.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'benylin-original', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1644, '3574661091075', 'BENYLIN INFANT SYR', 1, '33.8900', '45.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'benylin-infant-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1645, 'PR-358', 'AMCOF ADULT SYRUP', 1, '4.7200', '7.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'amcof-adult-syrup', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1646, 'PR-359', 'AMCOF BABY', 1, '5.0000', '7.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'amcof-baby', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1647, 'PR-360', 'AMCOF JUNIOR SYR', 1, '4.7200', '7.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'amcof-junior-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1648, '8902404045453', 'ASTHALEX SYR 100ML', 1, '5.6700', '7.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'asthalex-syr-100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1649, '6161102003536', 'ZUBES EXPECTORANT', 1, '11.1900', '16.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zubes-expectorant', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', 1, '14.8000', '19.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zubes-extra', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1651, 'PR-364', 'ZENTEL TAB 200MG', 1, '6.4000', '10.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zentel-tab-200mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1652, 'PR-365', 'CARBODEL JNR SYR', 1, '4.7500', '6.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'carbodel-jnr-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1653, 'PR-366', 'PRAZIQUANTEL 600MG TAB 100\'(ECL)', 1, '8.6200', '12.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'praziquantel-600mg-tab-100ecl', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1654, '8904091117703', 'RELCER GEL', 1, '8.8700', '12.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'relcer-gel', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', 1, '34.0000', '45.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'maalox-plus-susp-180ml-sanofi', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1656, '8902457848759', 'STOMOCAINE SUP', 1, '14.6700', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'stomocaine-sup', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1657, '5013548102087', 'MEDICATED CHARCOAL', 1, '0.3900', '0.6000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '239.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'medicated-charcoal', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', 1, '27.9300', '37.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sseas-cod-liver-oil-s5', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1659, '5021265228027', 'OMEGA H3 CAP', 1, '40.6500', '55.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'omega-h3-cap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1660, '5034593050901', 'NEOVITA CAP', 1, '53.0800', '71.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'neovita-cap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1661, 'PR-374', 'JOINTFLEX PLUS TABS 30\'5', 1, '32.1800', '42.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jointflex-plus-tabs-305', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1662, '3400970000913', 'IDEOS ~', 1, '50.2400', '69.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ideos', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1663, '5021265221523', 'PREGNACARE PLUS', 1, '97.7700', '129.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pregnacare-plus', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1665, 'PR-378', 'KISS CONDOM', 1, '1.3000', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'kiss-condom', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 1, '2.7100', '3.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fiesta-condom-all-night', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1667, '5011831076695', 'ROUGH RIDER CONDOM', 1, '6.2900', '8.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'rough-rider-condom', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1668, '8906016831572', 'Acidom Caps', 1, '13.2900', '18.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'acidom-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1669, '5000456024778', 'NEXIUM 40MG TAB', 1, '9.3000', '12.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '83.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nexium-40mg-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1670, '006', 'CIPROLEX TZ TAB 14\'5', 1, '19.5000', '26.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ciprolex-tz-tab-145', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1671, '3838989529642', 'CIPRINOL TAB 500MG', 1, '4.8000', '6.3500', '10.0000', '', 1, NULL, '', '', '', '', '', '', '87.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ciprinol-tab-500mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1672, '890388500076', 'CIPRO DENK 500MG', 1, '2.8700', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '66.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cipro-denk-500mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1673, 'PR-386', 'DOXY CAPS (ESKAY)', 1, '1.2900', '2.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '17.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'doxy-caps-eskay', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 1, '3.6000', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mycostat-150mg-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1675, '3582910078265', 'FLAGENTYL 500MG TAB', 1, '21.1800', '29.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'flagentyl-500mg-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1676, '8902451254525', 'LUEX CHILD CHESTY', 1, '7.9000', '10.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'luex-child-chesty', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1677, '8902546578543', 'LUEX BABY COUGH', 1, '7.8000', '11.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'luex-baby-cough', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', 1, '25.7000', '34.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tixylix-baby-cough-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1680, 'PR-393', 'BELLA COUGH MIXTURE', 1, '5.0300', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bella-cough-mixture', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1681, 'PR-394', 'GALVUS 50MG', 1, '36.8000', '48.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'galvus-50mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1682, 'PR-395', 'SENAFEN TAB 100\'', 1, '10.6700', '14.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'senafen-tab-100', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1684, '18906047544530', 'CLOPIDOGREL 75MG EXETER', 1, '24.8200', '33.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'clopidogrel-75mg-exeter', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1685, 'PR-398', 'LARIAM TAB 250MG', 1, '40.1200', '53.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lariam-tab-250mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1686, '8901082006-81', 'ALKA-5 SYR', 1, '27.0000', '36.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'alka-5-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1687, '4031571063787', 'FLUCONAZOLE (DENK)', 1, '11.6900', '15.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fluconazole-denk', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1688, 'PR-401', 'ZINCOVIT TAB', 1, '18.5000', '24.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zincovit-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1689, 'PR-402', 'ZINCOVIT SYR', 1, '11.9500', '17.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '17.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zincovit-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1690, '6001176457883', 'DUROL TONIC 200ML', 1, '6.2600', '8.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'durol-tonic-200ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1691, 'PR-404', 'JARIFAN 2 SYR', 1, '10.3300', '13.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jarifan-2-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1692, 'PR-405', 'DEXORANGE TONIC', 1, '10.2900', '13.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'dexorange-tonic', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1693, 'PR-406', 'CITY BLOOD TONIC 200ML', 1, '7.8600', '10.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'city-blood-tonic-200ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1694, 'PR-407', 'LEENASYR', 1, '7.1900', '10.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'leenasyr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1695, '8908002671971', 'APETAMIN SYR', 1, '15.5000', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'apetamin-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1696, 'PR-409', 'CYFEN SYR', 1, '10.2900', '13.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cyfen-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1697, '8904023403058', 'APETI SYRUP-GEO', 1, '9.2100', '12.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'apeti-syrup-geo', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1698, 'PR-411', 'ODYMIN SYR', 1, '7.9800', '10.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'odymin-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1699, 'PR-412', 'LEENA CAPS', 1, '3.2000', '4.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'leena-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1700, '8904008410187', 'BECOATIN SYR', 1, '8.0000', '11.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'becoatin-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1701, 'PR-414', 'HEPTOPEP SYR', 1, '14.7800', '19.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'heptopep-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1702, '8906045432580', 'BONAPLEX SYR 200ML', 1, '14.9700', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bonaplex-syr-200ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1703, 'PR-416', 'VIGORIX SYR 200ML', 1, '9.2200', '12.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vigorix-syr-200ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1704, '5060033711873', 'CYPRODINE SYR', 1, '25.9800', '36.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cyprodine-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1706, 'PR-419', 'PROCOLD SYR 100ml', 1, '15.3500', '20.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'procold-syr-100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1707, 'PR-420', 'MEDGLOBIN CAPS', 1, '25.1200', '34.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'medglobin-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1708, 'PR-421', 'MEDGLOBIN SYR', 1, '20.1900', '28.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'medglobin-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1709, 'PR-422', 'POL YGEL SUSP 200ML', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pol-ygel-susp-200ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1710, 'PR-423', 'PRONALIN ADULT', 1, '3.4300', '4.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pronalin-adult', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1711, 'PR-424', 'CIROTAMIN SYR', 1, '8.0700', '11.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cirotamin-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1712, 'PR-425', 'ATORVASTATIN 20MG TAB', 1, '9.6500', '13.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'atorvastatin-20mg-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1713, 'PR-426', 'STRETCH GO', 1, '15.1700', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'stretch-go', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1714, '5024874016771', 'VALPAK VITAMIN C500MG CHEWABLE', 1, '16.8400', '22.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'valpak-vitamin-c500mg-chewable', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1715, 'PR-428', 'SALOCOLD SYRUP', 1, '4.9200', '6.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'salocold-syrup', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1717, '3014230021404', 'BRUT DEOSPRAY ORIG. 200ML', 1, '10.0000', '13.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'brut-deospray-orig-200ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1718, 'PR-431', 'WISDOM FRESHBREADTH SPRAY 12.5ML 6.00 BTL', 1, '8.1600', '11.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'wisdom-freshbreadth-spray-125ml-600-btl', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1719, 'PR-432', 'NECLOBET -3 CREAM 30G', 1, '4.5900', '6.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'neclobet-3-cream-30g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1720, 'PR-433', 'FUROSEMIDE TABS 40MG 500\'(ECL)', 1, '0.5800', '1.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '146.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'furosemide-tabs-40mg-500ecl', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1721, 'PR-434', 'AZITEX(AZITHROMYCIN) SUSP. 200MG /5ML 15ML', 1, '8.6900', '12.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'azitexazithromycin-susp-200mg-5ml-15ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1722, 'PR-435', 'CLOTRIMAZOLE CREAM 1 G', 1, '2.5900', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'clotrimazole-cream-1-20g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1723, 'PR-436', 'HYDROCORTISONE CREAM 15G TEVA', 1, '6.4800', '8.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'hydrocortisone-cream-15g-teva', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1724, '7321839722165', 'ATACAND PLUS TABLETS 16/12.5 28\'', 1, '148.9000', '197.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'atacand-plus-tablets-16125-28', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1725, '7321839721397', 'ATACAND TABLETS 16MG 28\'', 1, '71.4500', '94.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'atacand-tablets-16mg-28', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1726, '8680199905502', 'CLODIFEN (DICLOFENAC) SUPP. 100MG', 1, '12.5800', '17.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'clodifen-diclofenac-supp-100mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', 1, '1.9500', '2.6000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'avomine-tabs-25mg-10', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', 1, '1.9000', '2.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '36.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ashton-parsons-teething-powder', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1729, 'PR-442', 'GYNO-DAKTARIN CREAM 40G', 1, '41.5200', '55.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gyno-daktarin-cream-40g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1730, 'PR-443', 'DAKTACORT CREAM 15G', 1, '23.9100', '33.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'daktacort-cream-15g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1731, 'PR-444', 'DAKTARIN CREAM 15G', 1, '19.9600', '27.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'daktarin-cream-15g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1732, 'PR-445', 'DAKTARIN ORAL GEL 40G', 1, '36.2900', '48.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'daktarin-oral-gel-40g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1733, 'PR-446', 'ENAFIX TABS 200MG 10\'', 1, '8.8900', '12.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'enafix-tabs-200mg-10', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1734, 'PR-447', 'ENAFIX SUSP. 100ML', 1, '14.9800', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'enafix-susp-100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1735, 'PR-448', 'EXFORGE TABS (10/160)MG 28', 1, '4.6000', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '70.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'exforge-tabs-10160mg-28', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', 1, '29.0000', '38.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '23.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'galvus-met-501000mg-tabs-60', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1737, '8901040310307', 'PREGNACIN PLUS CAPS 60\'', 1, '46.9800', '62.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pregnacin-plus-caps-60', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1738, 'PR-451', 'MENTHODEX LOZENGES 15\'(SACHET} 50G', 1, '7.1000', '9.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'menthodex-lozenges-15sachet-50g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1739, 'PR-452', 'MENTHODEX LOZENGES (H&L) 15\' 50G', 1, '7.1000', '9.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'menthodex-lozenges-hl-15-50g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1740, 'PR-453', 'SILDENAFIL TABS 1 00MG 4\'(EXETER)', 1, '7.3300', '10.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sildenafil-tabs-1-00mg-4exeter', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1741, '5017007601289', 'SUDOCREAM 125G', 1, '25.2800', '33.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sudocream-125g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1742, '53996671', 'SUDOCREM 30G TUBE', 1, '17.8900', '23.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sudocrem-30g-tube', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', 1, '3.9800', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'BABY COUGH LINTUS', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 1, '27.2300', '36.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cyprodine-caps-30s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1745, 'PR-458', 'ZVMAX CAPS 500MG 3\'(AZITHROMYCIN}', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zvmax-caps-500mg-3azithromycin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 1, '3.5000', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '99.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nesbenalbendazole-tabs-200mg-2', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1747, 'PR-460', 'ZVMAX SUSP.', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zvmax-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', 1, '0.3200', '0.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '108.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ferrous-sulphate-tabs-500ecl', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1750, 'PR-463', 'BENYLIN ORIG. SYRUP 100ML', 1, '31.9800', '42.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'benylin-orig-syrup-100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1751, 'PR-464', 'METRO-Z TABS 20', 1, '3.6900', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'metro-z-tabs-20', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1753, 'PR-466', 'LIVERTONE JUNIOR SYRUP 125ML', 1, '4.6900', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'livertone-junior-syrup-125ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', 1, '15.2000', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'panadol-adv-plain-16-compack', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1755, 'PR-468', 'STOPKOF EXPT( CARBOCISTEINE)5?ULT 100ML', 1, '5.5900', '7.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'stopkof-expt-carbocisteine5-adult-100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', 1, '4.9900', '6.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fluxacin-caps-500mg-alu-alu-200', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1757, 'PR-470', 'PERMOXYL (AMOX\'LIN ) SUSP 100ML', 1, '4.9800', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '22.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'permoxyl-amoxlin-susp-100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1758, 'PR-471', 'PREGNACARE (19) CAPS 30', 1, '45.3800', '55.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pregnacare-19-caps-30', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1759, '5017848251049', 'BELLS OLIVE  OIL 70ML ORIGINAL', 1, '11.5000', '15.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'olive-oil-70ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', 1, '1.5900', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '112.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'prednisolone-tab-5mg-500', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1761, 'PR-474', 'OMECET CAPS 100', 1, '1.8200', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '60.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'omecet-caps-100', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1762, 'PR-475', 'KIDIVITE MULTIVITAMIN DROPS 25ML', 1, '9.9800', '13.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'kidivite-multivitamin-drops-25ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', 1, '4.6900', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '24.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'hydrogen-peroxide-200ml-ecl', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1764, 'PR-477', 'METHYLATED  SPIRIT  125ML', 1, '4.3900', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'methylated-spirit-125ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1765, 'PR-478', 'METHYLATED SPIRIT 200ML', 1, '5.3900', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'methylated-spirit-200ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1766, 'PR-479', 'HIST AZINE SYRUP 60ML', 1, '2.6900', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'hist-azine-syrup-60ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 1, '4.6000', '6.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cetrizan-tablets-10mg-20', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1768, '8901040369305', 'VITAMIN C TABS 500MG 30\' (EXETER)', 1, '15.8900', '21.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '100.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vitamin-c-tabs-500mg-30-exeter', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1769, '6001135508526', 'BENYLIN PAED. SYRUP 1 00ML', 1, '26.8700', '35.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'benylin-paed-syrup-1-00ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 1, '4.0200', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '39.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'stopkof-cold-catarrh-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1772, 'PR-485', 'WORMPLEX SUSP.', 1, '6.0500', '8.0000', '2.0000', '', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'wormplex-susp', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1773, '7640153082091', 'XYLO ACINO MEPHA 0.10ML', 1, '42.0500', '55.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'xylo-acino-mepha-010-10ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1774, 'PR-487', 'ZESTRIL 10MG LISINOPRIL', 1, '3.3000', '4.3000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '84.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zestril-10mg-lisinopril', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1775, 'PR-488', 'ZESTRIL 5MG LISINOPRIL', 1, '1.7000', '2.6000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '56.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zestril-5mg-lisinopril', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1776, '5000455005204', 'ZESTRIL TABS 20MG LISINOPRIL', 1, '4.7000', '6.2000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '84.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zestril-tabs-20mg-lisinopril', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1779, 'PR-492', 'BISACODYL [GEO] 1000\'S', 1, '0.3100', '1.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '62.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bisacodyl-geo-1000s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1780, '5021265220076', 'FEROGLOBIN CAPS', 1, '35.6000', '47.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'feroglobin-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1781, 'PR-494', 'CAPS POLYFER', 1, '4.1000', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'caps-polyfer', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1782, 'PR-495', 'B CO STORNG (EXETER) 60', 1, '2.9900', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'b-co-storng-exeter-60', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 1, '7.8500', '11.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '26.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nifecard-xl-30mg-30s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 1, '14.0500', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nugel-suspension-200mls', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 1, '0.8100', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '28.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zintab-20mg-1000s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1788, 'PR-501', 'KOFFEX SYR CHILD EXP', 1, '4.5000', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'koffex-syr-child-exp', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1789, '7640128016717', 'LEXOTANIL 1.5MG', 1, '35.0000', '46.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lexotanil-15mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1790, '8904107900824', 'LEXSPORIN OINTMENT 20GMS', 1, '16.9500', '22.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lexsporin-ointment-20gms', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1791, '8904107900992', 'LEXSPORIN POWDER 10G', 1, '13.9500', '18.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lexsporin-powder-10g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1792, 'PR-505', 'LEFEBUOY TOTAL 175G', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lefebuoy-total-175g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1793, '8850769017380', 'LIGABA 75MG(PREGABALIN)30\'S', 1, '15.3000', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ligaba-75mgpregabalin30s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1795, 'PR-508', 'LIV. 52 SYRUP', 1, '17.8000', '23.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'liv-52-syrup', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1796, 'PR-509', 'SEPTRIN SY MG', 1, '3.5000', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'septrin-sy-mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1797, '8850769011388', 'PROSTACARE CAPS 30S', 1, '51.7500', '68.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'prostacare-caps-30s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1798, '4008500115107', 'PROVIRON TABS 25MG', 1, '40.3500', '53.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'proviron-tabs-25mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1799, 'PR-512', 'PROXIMEXA TABS 250[10\'S]', 1, '29.1500', '38.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'proximexa-tabs-25010s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', 1, '20.2400', '27.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'rhinathiol-2-infant-125ml-pink', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1802, '7640128017400', 'ROCEPHIN INJ 2G  IV', 1, '86.0000', '113.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'rocephin-inj-2g-iv', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1803, 'PR-516', 'RONAXICAM TABS', 1, '9.0500', '12.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ronaxicam-tabs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1804, 'PR-517', 'SAMALIN JUNIOR', 1, '4.2500', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'samalin-junior', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1805, 'PR-518', 'SAMALIN ADULT', 1, '4.2500', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'samalin-adult', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', 1, '28.1300', '39.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'wellwoman-caps-original', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1807, '124', 'VOLTFAST  50MG[POWER]30\'S', 1, '1.8000', '2.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '44.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'voltfast-50mgpower30s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1808, '8906045432597', 'VITAFORCE SYRUP', 1, '15.0500', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vitaforce-syrup', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1809, 'PR-522', 'VISCOF D SY', 1, '9.1700', '12.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'viscof-d-sy', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1810, 'PR-523', 'VISCOF EXPECTORANT', 1, '7.8000', '11.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'viscof-expectorant', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1811, 'PR-524', 'VERMOX SUSP', 1, '14.5300', '19.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vermox-susp', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1812, 'PR-525', 'VERMOX TABS', 1, '7.8900', '10.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vermox-tabs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', 1, '28.2400', '38.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '17.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ventolin-inhaler-org-evohaler', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1814, 'PR-527', 'VASELINE DRY SKIN 400ML', 1, '13.6000', '18.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vaseline-dry-skin-400ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1816, 'PR-529', 'TRES-ORIX L/S 250ML', 1, '18.2300', '24.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tres-orix-ls-250ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1817, 'PR-530', 'TRES-ORIX 100MILS S/S', 1, '9.5500', '12.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tres-orix-100mils-ss', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1818, 'PR-531', 'TEETHING MIXTURE BELLS', 1, '14.8000', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'teething-mixture-bells', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1819, 'PR-532', 'TEETHING MIXTURE (ECL)', 1, '5.5000', '7.1700', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'teething-mixture-ecl', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1820, '8901040306010', 'TIMOL 0.5% (SANOFI)', 1, '8.3700', '11.0500', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'timol-05-sanofi', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1821, 'PR-534', 'TOBRAADEX EYE OINT 3.5GM', 1, '13.4000', '17.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tobraadex-eye-oint-35gm', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1822, 'PR-535', 'TOT?HEMA', 1, '2.3000', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'TOT', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1824, '8901315201910', 'TAGERA FORTE TABS', 1, '5.2000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tagera-forte-tabs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', 1, '4.7700', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ascoryl-syrup-vitamin-c-mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1826, 'PR-539', 'SYRINGES & NEES (KOREA) 5ML', 1, '0.2600', '0.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '192.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'syringes-nees-korea-5ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1827, 'PR-540', 'SYRINGES & NEES 2MLS', 1, '0.2000', '0.3000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '96.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'syringes-nees-2mls', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1828, 'PR-541', 'SUPER APETI TABS (GEO)', 1, '0.7300', '1.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '50.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'super-apeti-tabs-geo', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1829, '8934868137702', 'SUNLIGHT DW GREEN 400ML', 1, '4.8900', '6.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sunlight-dw-green-400ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1830, '6033000296481', 'SUNLIGHT PINK BAR 120G', 1, '0.9000', '3.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sunlight-pink-bar-120g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1831, '8902336201026', 'SURFAZ SN CREAM L/S', 1, '8.4400', '11.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'surfaz-sn-cream-ls', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1832, 'PR-545', 'SYR TEGRATOL', 1, '59.9000', '79.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'syr-tegratol', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1833, 'PR-546', 'STUGERON TABS 50?S', 1, '23.5300', '31.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'STUGE', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1834, 'PR-547', 'SPORANOX 15?S TABS', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, '', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1835, '8901175038794', 'SIMVASTATIN 20MG(28s) UK', 1, '18.9400', '25.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'simvastatin-20mg28s-uk', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1836, 'PR-549', 'SIRDALUD 2MG', 1, '10.6000', '14.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sirdalud-2mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1837, 'PR-550', 'ORS PLAIN DANNEX', 1, '0.5500', '1.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-42.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ors-plain-dannex', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1839, 'PR-552', 'TEEDAR SYRUP', 1, '6.1500', '8.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'teedar-syrup', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1840, 'PR-553', 'B COMPLEX B/P LP', 1, '0.2400', '0.3000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '93.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'b-complex-bp-lp', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 1, '0.3700', '0.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '56.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'multiv-bp-ls-lp', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1843, '5000456024754', 'NEXIUM TABS 20MG 14S', 1, '6.2000', '8.2000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '73.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nexium-tabs-20mg-14s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1844, 'PR-557', 'LETAP AMPICLOX', 1, '1.5000', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'letap-ampiclox', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1845, 'PR-558', 'MENTHODEX L/S SYRUP', 1, '19.5000', '26.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'menthodex-ls-syrup', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1846, '5017848248032', 'MENTHODEX S/S SYRUP', 1, '12.0000', '16.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'menthodex-ss-syrup', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1848, 'PR-561', 'DICLO INJ TROGE', 1, '0.4200', '1.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '147.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'diclo-inj-troge', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1849, '8906082820586', 'B CO INJ (MVC) 25\'S', 1, '2.5000', '3.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '25.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'b-co-inj-mvc-25s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1851, '8901138100629', 'KOFLET SYRUP 100ML', 1, '12.1700', '16.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'koflet-syrup-100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1852, 'PR-565', 'EYECOPEN ACPS 30?S', 1, '5.0000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'EYECO', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1854, 'PR-567', 'IBUCAP L/S 20X20', 1, '2.5000', '3.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '40.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ibucap-ls-20x20', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1855, 'PR-568', 'IBUCAP S/S 200S', 1, '1.4000', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '50.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ibucap-ss-200s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1856, 'PR-569', 'KOFFEX SYR ADULT', 1, '4.2500', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'koffex-syr-adult', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1857, '6033000270320', 'BX SYR S/S', 1, '4.8000', '6.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bx-syr-ss', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1859, '8901138502942', 'PILEX TAB', 1, '22.6600', '32.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pilex-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1860, '8901138150891', 'PILEX OINTMENT', 1, '21.5000', '28.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pilex-ointment', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1862, 'PR-575', 'UK MENNPACE', 1, '37.3500', '49.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'uk-mennpace', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1863, '6033000270368', 'CITRO-C 250S 100MG', 1, '1.3600', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '47.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'citro-c-250s-100mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1864, 'PR-577', 'VIROL BLOOD TONIC', 1, '6.0500', '8.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'virol-blood-tonic', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1866, 'PR-579', 'CETAPOL PM 120/12.5MG/5ML', 1, '5.2000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cetapol-pm-120125mg5ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 1, '1.0500', '1.3000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-134.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'CIPRO', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1868, 'PR-581', 'CIPRO TAB 500MG (SHALCIP TAB)', 1, '4.0300', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cipro-tab-500mg-shalcip-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 1, '2.0000', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '117.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'doreta-tab-375mg325mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1872, 'PR-585', 'METROLEX F TABLETS 21?s', 1, '9.0500', '12.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'METRO', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', 1, '11.9500', '16.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'metrolex-f-junior-syrup', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1874, 'PR-587', 'DICNAC 75 SR(DICLOFENAC)', 1, '6.1000', '8.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'dicnac-75-srdiclofenac', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1875, '7612797163689', 'FLOTAC TABS 75MG 20S', 1, '2.4000', '3.6000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '99.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'flotac-tabs-75mg-20s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 1, '26.0000', '34.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'otrivine-adults-drops-01', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1877, 'PR-590', 'OTRININE (CHDN) DROPS 0.5%', 1, '16.3900', '22.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'otrinine-chdn-drops-05', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1878, 'PR-591', 'AMOXY BLIST 500MG L/P', 1, '0.2800', '0.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '50.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'amoxy-blist-500mg-lp', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1880, 'PR-593', 'AMOXY SUSP (LUEX)', 1, '4.6000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'amoxy-susp-luex', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1881, '5021265232062', 'PREGNACARE BREAST FEEDING UK', 1, '105.0000', '138.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pregnacare-breast-feeding-uk', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1882, 'PR-595', 'ICTHAMMOL OINT', 1, '12.0500', '16.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'icthammol-oint', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1883, 'PR-596', 'LIVERPLEX-B INFANT', 1, '5.5000', '7.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'liverplex-b-infant', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1884, 'PR-597', 'POLYFER SYR (200ML)', 1, '5.1300', '6.7700', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'polyfer-syr-200ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1885, 'PR-598', 'SALICYLIC OINT', 1, '5.0500', '7.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'salicylic-oint', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1886, 'PR-599', 'NORVASC 10MG 30?S', 1, '76.0000', '110.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'NORVASC', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1888, 'PR-601', ' NUGEL O SUSPENSION', 1, '14.5000', '20.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nugel-o-suspension', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1889, 'PR-602', 'Doxykin Cap', 1, '1.3000', '2.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'doxykin-cap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1890, 'PR-603', 'Fluxakin Cap', 1, '3.3000', '4.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fluxakin-cap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1891, 'PR-604', 'Antart', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'antart', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1892, 'PR-605', 'Alugel', 1, '0.5200', '1.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '49.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'alugel', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1893, 'PR-606', 'Metrokin Sups', 1, '4.4500', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'metrokin-sups', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1894, 'PR-607', 'Primadal', 1, '3.6900', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'primadal', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1895, 'PR-608', 'Mayfer Sup', 1, '7.0200', '10.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mayfer-sup', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1896, 'PR-609', 'Mayfer Cap', 1, '4.3600', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mayfer-cap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1897, 'PR-610', 'Tartymel', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tartymel', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1900, 'PR-613', 'Cefruate 500', 1, '2.4600', '3.3000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '40.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cefruate-500', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1901, 'PR-614', 'Diclokin TR', 1, '2.0100', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '56.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'diclokin-tr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1902, 'PR-615', 'Locid', 1, '12.7200', '17.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'locid', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1903, 'PR-616', 'Lumeth Adult', 1, '4.5000', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '29.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lumeth-adult', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1904, 'PR-617', 'RhIZIN Tablet', 1, '0.3200', '1.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '-8.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'rhizin-tablet', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1905, 'PR-618', 'ANTASIL', 1, '0.4000', '1.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '73.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'antasil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1908, 'PR-621', 'Magacid tablet', 1, '0.7000', '1.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '30.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'magacid-tablet', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1909, 'PR-622', 'Viagora Caps', 1, '6.1700', '8.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'viagora-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1910, 'PR-623', 'Apc 10 x 10', 1, '1.0200', '1.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '66.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'apc-10-x-10', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1911, 'PR-624', 'Dobobak Caps', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dobobak-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1912, 'PR-625', 'KWIK ACTION', 1, '0.3200', '1.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '32.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'kwik-action', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1914, 'PR-627', 'Menthox Adult', 1, '5.2300', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'menthox-adult', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1915, 'PR-628', 'Menthodex Lozenges', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'menthodex-lozenges', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1916, 'PR-629', 'ASPANOL  All in one', 1, '8.2300', '11.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'aspaul-all-in-one', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1917, 'PR-630', 'ASPANOL JUNIOR', 1, '4.3600', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'aspaul-j', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1918, 'PR-631', 'ASPANOL BABY', 1, '3.0000', '4.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'aspanol-baby', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1920, 'PR-633', 'Chilo leyer CD1005', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chilo-leyer-cd1005', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1921, 'PR-634', 'Chlo ear CE-1002', 1, '2.0000', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'chlo-ear-ce-1002', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1922, '8904185507342', 'Blopen gel BG-138', 1, '3.0000', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'blopen-gel-bg-138', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1923, 'PR-636', 'Revit tab ru-033', 1, '1.8000', '2.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'revit-tab-ru-033', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1924, 'PR-637', 'Goiseo 500.T32003', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'goiseo-500t32003', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1925, 'PR-638', 'Tobins Cod oil T32003', 1, '1.2000', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '28.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tobins-cod-oil-t32003', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1926, 'PR-639', 'Tobutal tab T0-032', 1, '1.8000', '2.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tobutal-tab-t0-032', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1927, 'PR-640', 'Zinote Caps JE2004', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zinote-caps-je2004', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1928, '8906009234090', 'LOFNAC GEL GLF143', 1, '5.5000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lofnac-gel-glf143', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1929, 'PR-642', 'Dooni 30 kiadh003', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dooni-30-kiadh003', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1930, 'PR-643', 'doomi 10 haddoo1', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'doomi-10-haddoo1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1931, 'PR-644', 'Exicam Do c0070002', 1, '0.7000', '1.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'exicam-do-c0070002', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1932, 'PR-645', 'Xferm 200 syr L021DT', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'xferm-200-syr-l021dt', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1933, 'PR-646', 'ZINUTE SYR LO27D009', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zinute-syr-lo27d009', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1934, '2553185615463', 'Mucotin  ENFANT 2% l017d007', 1, '4.0000', '6.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mucotin-enfant-2-l017d007', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 1, '0.7200', '2.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'soothing-strobin-l02-ss', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1936, 'PR-649', 'Jedition syr L034D003', 1, '6.0000', '8.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jedition-syr-l034d003', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1937, 'PR-650', 'Kofof child exp 1070D02', 1, '3.0000', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'kofof-child-exp-1070d02', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1938, 'PR-651', 'Hilderm Cream CH Agh020', 1, '12.8000', '17.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'hilderm-cream-ch-agh020', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1939, 'PR-652', 'afrim susp L032D001', 1, '90.0000', '100.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, 'code128', NULL, NULL, 0, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'afrim-susp-l032d001', NULL, NULL, 0, 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`, `hide_pos`) VALUES (1940, 'PR-653', 'Entaly syr L032D001', 1, '3.9500', '5.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'entaly-syr-l032d001', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1941, 'PR-654', 'Genti Gds11369', 1, '1.6000', '3.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'genti-gds11369', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1942, 'PR-655', 'Klovinal Pess Kiadrozi', 1, '19.0000', '26.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'klovinal-pess-kiadrozi', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1943, 'PR-656', 'Kofof Adult Lo12D002', 1, '5.0000', '7.0000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'kofof-adult-lo12d002', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1944, 'PR-657', 'Combact N E002d016', 1, '5.0000', '7.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'combact-n-e002d016', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1945, 'PR-658', 'LUFART SUSP', 1, '9.5000', '12.5000', '10.0000', '', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lufert-susp-d03e005', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1946, '92115303', 'Ascorbin  Syrup 100ml', 1, '1.5500', '6.5000', '10.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '89.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ascorbin-syrup-100ml letap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1947, '73002504', 'Dynwell 200ML  Syrup', 1, '2.8000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '66.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'dynwell-200ml-syrup', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1949, '68032552', ' Foliron tonic 200ML', 1, '3.1000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '29.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'foliron-tonic-200ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', 1, '2.7500', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '104.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '00809113', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1951, '42173093', 'KILRE ANTACID 125ML', 1, '20.5000', '27.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '42173093', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1952, '5021265221004', 'MENOPACE CAP(UK)', 1, '37.2600', '49.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '66840373', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1953, '56415263', 'STAGYL TABS', 1, '2.4900', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '56415263', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1954, '87246804', 'COLDRID TAB', 1, '0.5000', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '87246804', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1955, '4014852751801', 'PROCOMIL TABLET', 1, '11.7000', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '42255488', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1956, '6181100233087', 'jaguar Balm 80ml ', 1, '4.2000', '5.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jaguar-balm-80ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1957, '6181100248159', 'Jaguar balm 125ml', 1, '6.5000', '8.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jaguar-balm-125ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1958, '7640128012184', 'ROCEPHIN INJ 1G IV', 1, '54.0000', '71.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'rocephin-inj-1g-iv', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1959, '5000456022798', 'CRESTOR 10MG', 1, '3.0300', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '59.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'crestor-10mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1960, '6033000298379', 'LIFEBUOY SOAP', 1, '3.5600', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lifebuoy-soap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 1, '19.4000', '26.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'otrivin-children-nasal-drops', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1962, '5021265224128', 'VISIONANCE UK', 1, '32.0000', '42.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'visionance-uk', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1963, '007', 'MUCOTIN ADULT 5%', 1, '7.0000', '10.0000', '5.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'mucotin-adult-5', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1964, '8906011289897', 'V-FIRM', 1, '17.0000', '23.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'v-firm', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1965, '8902501008139', 'HYDROCORTISSONE CREAM 1%  CO-PHARMA', 1, '17.2400', '23.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'hydrocortissone-cream-1-co-pharma', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1966, '9556564303336', 'FIESTA CONDOM DOTTED', 1, '2.7100', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fiesta-condom-dotted', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1967, '5023497400615', 'SALAMOL CFC INHALER', 1, '20.8800', '28.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'salamol-cfc-inhaler', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1968, '5019781012206', 'VITAMIN E HEALTH AID', 1, '55.1600', '73.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vitamin-e-health-aid', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1969, '8906016833507', 'CARTEF TAB 24   20/120', 1, '4.3300', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cartef-tab-24-20120', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1970, '5997001359235', 'PIOSTINOR 2 LOCAL', 1, '2.5000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'piostinor-2-local', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1971, '6186000077434', 'QUEEN ELISABETH COCOA BUTTER LOTION 800ML', 1, '11.0000', '15.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'queen-elisabeth-cocoa-butter-lotion-800ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1972, '6181100533118', 'PERFECT WHITE SHOWER GEL', 1, '13.0000', '17.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'perfect-white-shower-gel', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1973, '6181100533101', 'CARO WHITE SHOWER GEL', 1, '14.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'caro-white-shower-gel', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1974, '6186000077649', 'EVERSHEEN LOTION BIG 750ML', 1, '14.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'eversheen-lotion-big-750ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1975, '6186000077410', 'EVERSHEEN LOTION MEDIUM 500ML', 1, '9.5000', '13.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'eversheen-lotion-medium-500ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1976, '6186000077427', 'EVERSHEEN LOTION SMALL 250ML', 1, '6.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'eversheen-lotion-small-250ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1978, '6186000077045', 'QUEEN ELISABETH COCO BUTTER LOTIN 400ML', 1, '6.5000', '8.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'queen-elisabeth-coco-butter-lotin-400ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1980, '6186000077052', 'QUEEN ELISABETH COCOA BUTTER LOTION 250ML', 1, '5.5000', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'queen-elisabeth-cocoa-butter-lotion-250ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1981, '6186000077168', 'EVERSHEEN CREAM BIG', 1, '9.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'eversheen-cream-big', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1982, '6186000077267', 'EVERSHEEN CREAM SMALL', 1, '5.5000', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'eversheen-cream-small', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1983, '6186000077014', 'QUEEN ELISABETH COCOA BUTTER CREAM 500ML', 1, '11.0000', '14.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'queen-elisabeth-cocoa-butter-cream-500ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1984, '6186000077021', 'QUEEN ELISABETH COCOA BUTTER CREAM  250ML MEDIUM', 1, '6.5000', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'queen-elisabeth-cocoa-butter-cream-250ml-medium', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1985, '6186000077038', 'QUEEN ELISABETH COCOA BUTTER CREAM 125ML', 1, '4.0000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'queen-elisabeth-cocoa-butter-cream-125ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1986, '6181100323658', 'SIVODERM CREAM', 1, '5.0000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sivoderm-cream', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1987, '6181100323665', 'SIVODERM POWDER', 1, '4.5000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sivoderm-powder', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1988, '6182000127728', 'PHARMADERM', 1, '5.0000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pharmaderm', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1989, '6181100321821', 'SULFUR 18', 1, '6.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sulfur-18', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1990, '6182000129364', 'BROOKLYN STYLING GEL', 1, '2.5000', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'brooklyn-styling-gel', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1991, '6181100234244', 'PARADISE POWDER', 1, '7.0000', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'paradise-powder', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1992, '6033000171719', 'KLEANZ SANITIZER 100ML', 1, '1.5000', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'kleanz-sanitizer-100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1993, '6033000330710', 'KLEANZ SANITIZER 50ML', 1, '0.6000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'kleanz-sanitizer-50ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1994, '6182000105382', 'CAROTONE LOTION BIG 550ML', 1, '12.0000', '15.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'carotone-lotion-big-550ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1995, '6182000109939', 'CAROTONE LOTION MEDIUM 350ML', 1, '8.5000', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'carotone-lotion-medium-350ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1996, '6182000100455', 'CAROTONE LOTION SMALL 215ML', 1, '5.5000', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'carotone-lotion-small-215ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1997, '6182000100493', 'CAROTONE CREAM BIG 330ML', 1, '8.5000', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'carotone-cream-big-330ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1998, '6182000100486', 'CAROTONE CREAM SMALL135ML', 1, '3.6000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'carotone-cream-small135ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (1999, '6971044950313', 'YAZZ PAD', 1, '6.0000', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'yazz-pad', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2000, '6036000087004', 'FAYTEX', 1, '8.0000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'faytex', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2001, '012', 'BELLS OLIVE OIL  70ML LOCAL', 1, '2.5000', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bells-olive-oil-70ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2002, '013', 'BELL OLIVE OIL SMALL LOCAL', 1, '1.5000', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bell-olive-oil-small', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2003, '6033000102584', 'ROBB JAR', 1, '4.0000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'robb-jar', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2004, '44696495', 'ESSENTIAL EMBROCATION (LIQUID ROBB) 8ML', 1, '1.5000', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '34.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'essential-embrocation-liquid-robb-8ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2005, '6926160704036', 'LILY ROSS TOOTHBRUSH HARD', 1, '2.3300', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lily-ross-toothbrush-hard', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2006, '18256477', 'SMOKERS TOOTHBRUSH', 1, '0.7500', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '18256477', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', 1, '15.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'savelon-antiseptic-250ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2008, '6003001000509', 'SAVELON ANTISEPTIC 125ML', 1, '10.0000', '13.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'savelon-antiseptic-125ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2009, '50158911', 'DETTOL ANTISEPTIC 250ML', 1, '18.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'dettol-antiseptic-250ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', 1, '1.2000', '1.5800', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '57.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pepsodent-toothbrush', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2011, '6948031103014', 'VIP TOOTHBRUSH', 1, '0.5300', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vip-toothbrush', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2012, '46653631', 'DETTOL ANTISEPTIC 165ML', 1, '12.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '46653631', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2013, '3612815532569', 'CAMPHOR', 1, '3.0000', '4.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'camphor', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2014, '08906045943697', 'ACNE CLEAR GEL', 1, '5.0000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'acne-clear-gel', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2015, '88820286', 'BABY OIL CUSSONS SMALL', 1, '5.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'baby-oil-cussons-small', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2016, '6154000017026', 'BABY OIL CUSSIONS BIG', 1, '8.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'baby-oil-cussions-big', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2017, '6001159111368', 'BIO OIL BIG 200ML', 1, '23.0000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bio-oil-big-200ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2018, '6001159111351', 'BIO OIL MEDIUM 125ML', 1, '18.0000', '30.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bio-oil-medium-125ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2019, '6001159111641', 'BIO OIL SMALL60ML', 1, '10.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bio-oil-small60ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2020, '97365815', 'FUNBACT CREAM', 1, '7.5000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '97365815', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2021, '96101102', 'LEMONVATE', 1, '4.0000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '96101102', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2022, '69436145', 'CHOCHO CREAM', 1, '3.5000', '4.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '69436145', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2023, '6001087011143', 'VASELINE LOTION  COCOA GLOW 400ML', 1, '15.0000', '19.8000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vaseline-lotion-cocoa-glow-400ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2024, '6001087357050', 'VASELINE LOTION INTENSIVE CARE 400ML', 1, '15.0000', '18.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vaseline-lotion-intensive-care-400ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', 1, '4.0000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mosquito-reppellent-100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2026, '6001087005661', 'VASELINE CREAM 250ML6001087005661', 1, '12.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vaseline-cream-250ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2027, '60018915', 'VASELINE CREAM SMALL 100ML', 1, '6.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vaseline-cream-small-100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2028, '5137136225122', 'JRA CREAM BIG 220G', 1, '23.0000', '26.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jra-cream-big-220g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2029, '5137136225115', 'JRA CREAM MEDIUM 120G', 1, '13.0000', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jra-cream-medium-120g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2030, '00974156', 'JRA CREAM SMALL MEDIUM', 1, '11.0000', '14.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '00974156', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2031, '5137136225191', 'JRA CREAM SMALL 40G', 1, '5.0000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jra-cream-small-40g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2032, '8859178707738', 'TOP COUNTRY ROLL ON 80ML', 1, '5.5000', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'top-country-roll-on-80ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2033, '8859178707721', 'TOP COUNTRY ROLL ON 60ML', 1, '4.5000', '5.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'top-country-roll-on-60ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2034, '4800888199188', 'REXONA ROLL ON 50ML', 1, '6.0000', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'rexona-roll-on-50ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2035, '616762001072', 'POWER HOUSE ROLL ON 50ML', 1, '5.2000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'power-house-roll-on-50ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2036, '4005900088062', 'NIVEA ROLL ON 50ML', 1, '8.5000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '47.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nivea-roll-on-50ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2037, '96125700', 'SURE  DEO SPRAY 250ML', 1, '11.0000', '14.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '34.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sure-deo-spray-250ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', 1, '10.5000', '14.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'dove-deo-spray-250-ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2039, '8710447482032', 'REXONA DEO SPRAY 200ML', 1, '9.5000', '14.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'rexona-deo-spray-200ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2040, '6181100535198', 'BABYMED POWDER 500G', 1, '6.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'babymed-powder-500g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2041, '6181100535136', 'BABY MED LOTION 800ML', 1, '12.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'baby-med-lotion-800ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2042, '6181100535143', 'BABYMED BATHING GEL 800ML', 1, '12.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'babymed-bathing-gel-800ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2043, '8433295049256', 'SAIRO BABY SHAMPOO 750ML', 1, '9.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sairo-baby-shampoo-750ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2044, '68015242', 'BABYMED  BABY SET', 1, '28.0000', '38.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '68015242', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2045, '6181100532166', 'DAY BY DAY POWDER 500 G', 1, '6.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'day-by-day-powder-500-g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2046, '71888746', 'BABY BOY SET', 1, '25.0000', '35.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '71888746', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2047, '04937592', 'BABY GIRL SET', 1, '25.0000', '35.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '04937592', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2048, '67087247', 'DAY BY DAY BABY SET', 1, '35.0000', '45.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '67087247', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2049, '6181100329162', 'BIOSKIN CREAM  MEDIUM', 1, '8.5000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bioskin-cream-medium', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2050, '6181100329155', 'BIOSKIN CREAM SMALL', 1, '4.5000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bioskin-cream-small', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2051, '6186000077731', 'TENDRINA BOBY LOTION 500ML', 1, '8.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tendrina-boby-lotion', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2052, '6186000077724', 'TENDRINA BOBY LOTION 250ML', 1, '4.5000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'tendrina-boby-lotion-250ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2053, '6181100284225', 'CLINIC CLEAR BOBY LOTION 500ML', 1, '19.0000', '24.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'clinic-clear-boby-lotion-500ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2054, '6181100284218', 'CLINIC CLEAR BOBY LOTION 250ML', 1, '12.0000', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'clinic-clear-boby-lotion-250ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2055, '34197416', 'ACTILIFE MUITIVITAMINS', 1, '12.0000', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '34197416', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2056, '26049852', 'ESSENTIAL EMBROCATION (LIQUID ROBB) 27ML', 1, '5.4100', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '26049852', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2057, '16787356', 'ESSENTIAL EMBROCATION(LIQUID ROBB) 4ML', 1, '1.5000', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '22.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '16787356', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2058, '311917207889', 'VITAMIN B-12 FINEST NUTRITON', 1, '10.0000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vitamin-b-12-finest-nutriton', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2059, '5050796002899', 'HEAVEN SCENT BOBY CREAM 500ML', 1, '10.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'heaven-scent-boby-cream-500ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2060, '54947392', 'PARACETAMOL TAB LOCAL', 1, '0.3300', '0.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '555.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'paracetamol-tab-local', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2061, '96762855', 'ZYMAX CAPS 500MG', 1, '10.9800', '15.0000', '2.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '515', NULL, NULL, NULL, NULL, 1, 1, 0, '96762855', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2062, '01665566', 'ZYMAX SUSP', 1, '8.5900', '12.0000', '2.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '01665566', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2063, '28182783', 'NEFLUCON (FLUCONAZOLE) CAP 150', 1, '1.9900', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '28182783', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2064, '40046996', 'TASTYMOL', 1, '4.2400', '5.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '40046996', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2065, '65765095', 'DOLOBAK', 1, '1.6000', '2.0000', '10.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '24.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '65765095', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2066, '05299189', 'MENTHOX LOZENGES', 1, '0.5100', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '100.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '05299189', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2067, '86457170', 'X\'FERON CAPS', 1, '4.9000', '6.4700', '2.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '86457170', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2068, '79519848', 'LUFART DS', 1, '12.1500', '17.0000', '3.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '79519848', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2069, '31446479', 'X\'MOX 500', 1, '2.0400', '3.0000', '5.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '31446479', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2070, '014', 'CHLO EYE ', 1, '2.0000', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '014', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2071, '20773440', 'GRISEOFULVIN', 1, '5.0000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '20773440', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2072, '41512770', 'ZINVITE CAPS', 1, '8.1200', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '41512770', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2073, '59185019', 'DOMI 30', 1, '2.3000', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '60.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '59185019', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2074, '8904185508134', 'REVIT MULTIVITAMIN TABLETS', 1, '1.8000', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'revit-multivitamin-tablets', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2075, '91642667', 'X\'FERON SYR 200ML', 1, '7.0000', '9.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '91642667', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2076, '24451420', 'ZINVITE SYR', 1, '8.0000', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '24451420', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2077, '99278971', 'ENTRALYN COUGH SYRUP', 1, '3.0000', '5.0000', '2.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '99278971', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2078, '80019843', 'X\'TRIM SUSP 100ML', 1, '3.0000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '80019843', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2079, '29942739', 'HIGH ELASTIC CREPE BANDAGE 2\"', 1, '2.3000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '24.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '29942739', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2080, '06626042', 'KLIRE ATACID 125ML', 1, '10.8000', '14.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '06626042', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2081, '81372758', 'LUEX BABY CHESTY COUGH', 1, '7.9000', '10.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '81372758', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2083, '0114', 'CO-TRIMAZOLE  TAB  SEPTRIM (LETAP) ', 1, '0.5800', '1.0000', '10.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '75.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'co-trim-tab-letap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2084, '24569550', 'PRE-MECO', 1, '15.0700', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '24569550', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2085, '35811477', 'PARA DENK 125MG', 1, '1.4000', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '35811477', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2086, '06489706', 'METAGYL SUSP', 1, '4.3200', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '06489706', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2088, '09422816', 'LETALIN EXPECTORANT SYR', 1, '1.3800', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '88.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '09422816', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2089, '39725135', 'POLYGEL SUSP 200ML', 1, '7.0900', '9.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '39725135', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2091, '11166394', 'CA-C 1000 SANDOZ', 1, '18.0000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '11166394', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2092, '69091614', 'GLUCOSE C L/P', 1, '4.1500', '5.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '69091614', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2093, '74359321', 'CALCIUM B12 SYRUP 200ML', 1, '2.5500', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '29.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '74359321', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2094, '68563120', 'COUGH & COLD 100ML CHILD CARE', 1, '2.9000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '97.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '68563120', 1, '0.0000', NULL, 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`, `hide_pos`) VALUES (2095, '83888513', 'LETAMOL ELIXIR 125ML  LETAP', 1, '1.5000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '95.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '83888513', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2096, '90371186', 'LETAVIT SYRUP 125ML', 1, '1.5500', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '34.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '90371186', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2097, '70572709', 'MACRAFOLIN SYRUP 125ML', 1, '1.6500', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '36.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '70572709', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2098, '39895805', 'MILK OF MAGNESIA 125ML LETAP', 1, '1.0000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '40.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '39895805', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2099, '36936180', 'LETARON SYRUP 200ML', 1, '2.8000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '29.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '36936180', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', 1, '1.6500', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '36.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '76299284', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2101, '56160077', 'LETAFEN SUSPENSION 100ML', 1, '1.6500', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '37.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '56160077', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2102, '12180621', 'METRONIDAZOLE SUSP 100ML', 1, '1.9000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '36.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '12180621', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2103, '77332390', 'LETAMOX TABLET 500MG 500MG', 1, '0.4500', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '418.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '77332390', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2104, '44677443', 'DYNWELL TABLETS', 1, '0.2000', '0.5000', '10.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '606.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '44677443', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2105, '11898104', 'DOXYCYCLINE 100MG', 1, '1.3500', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '11898104', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2106, '26940098', 'XPEL SUSPENSION 20ML', 1, '0.9900', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '57.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '26940098', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2107, '04659350', 'FUROSEMIDE TAB 40MG LETAP', 1, '0.2500', '0.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '350.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'furosemide-tab-40mg-letap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2108, '85249693', 'ARFAN 20/120MG', 1, '4.7500', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '24.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '85249693', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2109, '94342778', 'ASCORBIN TABS LETAP', 1, '0.2500', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '440.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ascorbin-tabs-letap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2110, '6932757117080', 'MOTHER THOUCH DIAPER', 1, '35.0000', '50.0000', '2.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mother-thouch-diaper', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2111, '072140028626', 'NIVEA MEN PACK', 1, '40.0000', '60.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nivea-men-pack', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2112, '070330746336', 'FLEX 5 BIC RAZOR', 1, '10.0000', '30.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'flex-5-bic-razor', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2113, '192624002949', 'BOD MEM SMALL', 1, '6.7000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bod-mem-small', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2114, '192624002970', 'BOD MEN BIG', 1, '6.7000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bod-men-big', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2115, '35179090', 'SMALL BASKET GIFT SET', 1, '20.0000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '35179090', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2116, '7330933031332', 'ECO NATY DIAPER', 1, '30.0000', '45.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'eco-naty-diaper', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2117, '817810029417', 'HONEST DIAPER', 1, '20.0000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'honest-diaper', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2118, '11415402', 'AVEENO WIPES', 1, '8.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '11415402', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2119, '840038215454', 'SANITIZER BIG KEEP CLEAN', 1, '30.0000', '60.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '23.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sanitizer-big-keep-clean', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2120, '850005911845', 'SANITIZERR SMALL SUAVE', 1, '5.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sanitizerr-small-suave', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2121, '035000671127', 'MOUTH WASH COLGATE BIG', 1, '20.0000', '50.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mouth-wash-colgate-big', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2122, '035000455321', 'MOUTH WASH COLGATE SMALL', 1, '20.0000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mouth-wash-colgate-small', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2123, '842379108860', 'MOUTH WASH SOLIMO', 1, '20.0000', '45.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mounth-wash-solimo', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2124, '079896174812', 'QUEEN HELENE COCOA BUTTER LOTION', 1, '25.0000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'queen-helene-cocoa-butter-lotion', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2125, '052181492303', 'CRYSTAL CLEAR  MONITOR', 1, '20.0000', '50.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'crystal-clear-monitor', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2126, '017854103597', 'BAYLISS GIFT SET PINK', 1, '30.0000', '100.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bayliss-gift-set-pink', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2127, '047400671881', 'JOY RAZAR GIT SET', 1, '10.0000', '35.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'joy-razar-git-set', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2128, '017854103634', 'BAYLIS &HARDING GIFT SET', 1, '30.0000', '100.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'batlis-harding-gift-set', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2129, '76264523', 'FINELIFE TONIC', 1, '6.4100', '8.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '76264523', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2130, '4005808837335', 'NIVEA SPRAY 250ML', 1, '17.5000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nivea-spray-250ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2131, '4005900098238', 'NIVEA SPRAY 150ML', 1, '12.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nivea-spray-150ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2132, '4005900579614', 'NIVEA BODY LOTION 400ML', 1, '21.0000', '24.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '23.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nivea-body-lotion-400ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2133, '4005900795298', 'NIVEA BOBY LOTION COCOA', 1, '19.0000', '24.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nivea-boby-lotion-cocoa', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2135, '42431074', 'POSTINOR LOCAL', 1, '2.5000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '87.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '42431074', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2136, '39315036', 'ALEVE', 1, '0.9500', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '93.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 14, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00012', '', NULL, NULL, NULL, 1, 1, 0, '39315036', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2137, '2890607011010', 'CAVEDILOL 6.25 MG', 1, '7.9800', '10.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '00012', '', NULL, NULL, NULL, 1, 1, 0, 'cavedilol-625-mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2138, '2890607011007', 'CARVEDILOL 12.5MG', 1, '12.0500', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'carvedilol', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2139, '827755010746', 'AMEN\'S POWDER', 1, '42.0000', '55.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'AMENS', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2140, '9556100104335', 'FLUCOR NIGHT', 1, '12.0000', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'flucor-night', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2142, '5021265223855', 'WELLBABY ', 1, '57.0000', '76.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'wellbaby', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2143, '4005292004916', 'GERMANY VIT C', 1, '15.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'germany-vit-c', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2144, '4316268448895', 'PROLIFE  VITC', 1, '15.0000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'prolife-vitc', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2145, '4000987008118', 'AMOS VIT C', 1, '15.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'amos-vit-c', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2147, '96565539', 'CYPON SRP', 1, '7.1000', '9.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '96565539', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2148, '01503409', 'TINATET HAYAN CAPS', 1, '35.0000', '46.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '01503409', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2149, '74837557', 'ZIPMAN CAPS', 1, '14.0000', '18.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '74837557', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2150, '5060180720148', 'ATWOOD LAXATIVE', 1, '30.4100', '41.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'atwood-laxative', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2151, '05077634', 'TOMAC MIX', 1, '17.5000', '23.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '05077634', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2152, '6034000189179', 'ADOM W&G MIX', 1, '10.8300', '14.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'adom-wg-mix', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2153, '4058172309250', 'MAGNESUIM TABLETS TUBE', 1, '8.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'madnesuim-tablets-tube', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2154, '8410179200927', 'BORGES S/S  125ML', 1, '12.0000', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'borges-ss-125ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2155, '5000347045219', 'PANADOL EXTRA ADVANCE', 1, '21.7000', '29.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, '29.0000', '2021-04-10', '2021-04-30', '', NULL, NULL, NULL, NULL, 1, 1, 0, 'panadol-extra-advance', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2156, '10421120', 'LEENA CAPS', 1, '3.2500', '4.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '10421120', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2157, '13804928', 'GVITHER INJ', 1, '0.9800', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '24.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '13804928', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2159, '88244641', 'TREMENDOUS CAPS', 1, '15.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '88244641', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2160, '6034000214017', 'CHOCHO ANTIBACTRIL SOAP', 1, '2.6000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'chocho-antibactril-soap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2161, '58683972', 'GLYCERINE B/S', 1, '8.0000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '58683972', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2162, '6156000252803', 'TCP SOAP', 1, '6.5000', '8.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '23.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tcp-soap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2163, '94064304', 'IMAX DELAY SPRAY', 1, '22.0000', '29.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '94064304', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2164, '017000018690', 'DIAL BATHING GEL', 1, '12.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'dial-bathing-gel', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2165, '6001051000821', 'NIVEA MEN BODY LOTION', 1, '18.0000', '24.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nivea-men-body-lotion', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2166, '6036000078514', 'ULCERPLEX HERBAL', 1, '5.5000', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ulcerplex-herbal', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2167, '6166', 'GEBEDOL EXTRA', 1, '2.2000', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '61660725', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2168, '8901082004356', 'APTIZOOOM', 1, '26.0000', '39.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'aptizooom', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2169, '97038500', 'GEBEDOL', 1, '1.1300', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '158.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '97038500', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2170, '8964000114070', 'SWEET ALMOND OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sweet-almond-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2171, '8964000114087', 'ALOE OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'aloe-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2172, '8964000114247', 'THYME OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'thyme-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2173, '8964000267202', 'GRAPESEED OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'grapeseed-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2174, '8964000114797', 'SAFFRON OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'saffron-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2175, '8964000737682', 'APPLE OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'apple-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2176, '8964000737675', 'AVOCADO OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'avocado-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2177, '8964000577448', 'JOJOBA OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jojoba-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2178, '8964000114308', 'CARROT OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'carrot-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2179, '8964000733004', 'EUCALYPTUS OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'eucalyptus-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2180, '8964000267165', 'CAMPHOR OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'camphor-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2181, '8964000737712', 'GREEN TEA OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'green-tea-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2182, '8964000114230', 'OREGANO OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'oregano-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2183, '8964000114278', 'ONION OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'onion-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2184, '8964000114353', 'MINT OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mint-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2185, '8964000737637', 'HORSETAIL OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'horsetail-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2186, '8964000735862', 'CUCUMBER oil 30ml', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cucumber', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2187, '8964000577981', 'TEA TREE OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tea-tree-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2188, '8964000577431', 'ARGAN OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'argan-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2189, '8964000577967', 'COD LIVER OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cod-liver-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2190, '8964000736401', 'SIDR OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sidr-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2191, '8964000114223', 'LAVENDER OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lavender-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2192, '8964000267264', 'WHEAT GERM  OIL 30ML', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'wheat-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2193, '8964000114216', 'ROSEMARY OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'rosemary-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2194, '8964000735879', 'POMEGRANATE OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pomegranate-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2195, '8964000267233', 'LEMON OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lemon-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2196, '8964000267288', 'SANDALWOOD OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sandalwood-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2197, '8964000114186', 'LINSEED OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'linseed-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2198, '8964000267271', 'PUMPKIN SEED OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pumpkin-seed-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2199, '8964000390658', 'ROSE OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'rose-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2200, '8964000114315', 'NEEM OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'neem-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2201, '8964000114179', 'SESAME OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sesame-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2202, '8964000114094', 'FENNEL OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fennel-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2203, '8964000114056', 'MUSTARD OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mustard-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2204, '8964000390771', 'JASMINE OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jasmine-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2205, '8964000114292', 'CINNAMON OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cinnamon-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2206, '8964001505679', 'VITAMIN E OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vitamin-e-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2207, '8964001505662', 'ROSEHIP OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'rosehip-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2208, '8964000114049', 'CASTOR OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'castor-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2209, '8964000267295', 'TURMERIC OIL', 1, '7.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'turmeric-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2210, '8964000267318', 'CLOVE OIL SMALL 10ML (DENTAL CARE)', 1, '5.0000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'clove-oil-small-10ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2211, '8964000736371', 'COCONUT OIL 60ML', 1, '10.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'coconut-oil-60ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2212, '8964000114018', 'BLACKSEEDS OIL 60ML', 1, '10.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'blackseeds-oil-60ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2213, '8964000735695', 'CLOVE OIL 60ML', 1, '10.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'clove-oil-60ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2214, '8961102060823', 'PROSTATE OIL 60ML', 1, '15.0000', '22.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'prostate-oil-60ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2215, '8964000734742', 'CASTOR OIL NATURAL 40ML (HEMANI)', 1, '12.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'castor-oil-natural-40ml-hemani', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2216, '8964000734667', 'LAVENDER OIL 40ML NATURAL', 1, '12.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lavender-oil-40ml-natural', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2217, '8964000734650', 'BLACKSEED OIL 40ML', 1, '12.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'blackseed-oil-40ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2218, '8964000734698', 'TEA TREE OIL 40ML', 1, '12.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tea-tree-oil-40ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2219, '8964000734674', 'PEPPERMINT OIL 40ML', 1, '12.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'peppermint-oil-40ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 1, '5.9300', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '33.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '850006000012', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 1, '15.0000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '40.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'effervescent-vit-c-1000mg-zinc', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2222, '4791014004950', 'QUALITEA GREEN TEA', 1, '13.5000', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'qualitea-green-tea', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2223, '6033000083043', 'CERELAC TIN FRUIT', 1, '14.0000', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cerelac-tin-fruit', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2224, '6033000086150', 'CERELAC TIN BISCUITY WITH MILK', 1, '14.0000', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cerelac-tin-biscuity-with-milk', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2225, '6033000082985', 'CERELAC TIN WHEAT', 1, '14.0000', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cerelac-tin-wheat', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2226, '6033000086358', 'CERELAC TIN MAIZE', 1, '14.0000', '17.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cerelac-tin-maize', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2227, '6033000082992', 'CERELAC TIN RICE', 1, '14.0000', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cerelac-tin-rice', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2228, '7501058625915', 'LACTOGEN  1', 1, '25.0000', '28.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lactogen-1', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2229, '7501058625922', 'LACTOGEN 2', 1, '24.5000', '28.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lactogen-2', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2231, '7501058633927', 'NAN 2', 1, '33.0000', '36.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nan-2', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2232, '25430404', 'AMOKISKLAV 1000MG', 1, '29.9800', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '25430404', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2233, '45473068', 'AMOKISKLAV 625MG', 1, '19.0200', '27.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '45473068', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2234, '96361375', 'AMOKISKLAV 228MG SYRUP', 1, '18.7000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '96361375', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2235, '62877108', 'AMOKISKLAV 457MG SUSP', 1, '19.0000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '62877108', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2236, '6033000270108', 'EFPAC JNR', 1, '5.5000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'efpac-jnr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2237, '6033000270061', 'EFPAC TABS', 1, '1.0600', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '74.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'efpac-tabs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2238, '5021265223350', 'PERFECTIL PLATINUM', 1, '39.0000', '51.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'perfectil-platinum', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2239, '5021265226085', 'PERFECTIL SKIN HAIR NAIL', 1, '25.8000', '35.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'perfectil-skin-hair-nail', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2240, '5000198522501', 'PIRITON SYR', 1, '36.9100', '49.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'piriton-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2241, '47790994', 'METRONIDAZOLE TAB 400 UK', 1, '6.5900', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '47790994', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2242, '69633989', 'METAGYL TAB 200 MG', 1, '0.4800', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '148.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '69633989', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2243, '84463478', 'CALAMINE LOTION', 1, '3.5000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '84463478', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2244, '96089977', 'MAGACID SYRUP 200ML', 1, '7.3600', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '96089977', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2245, '77795384', 'MAGACID TABLETS', 1, '0.7000', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '77795384', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2247, '29226629', 'TRISILICATE SYR', 1, '2.5000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '29226629', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2248, '06376451', 'MIST SIENNACO SYR', 1, '2.5000', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '06376451', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2249, '22244269', 'EXPECT SEED', 1, '2.5000', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '22244269', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2250, '98457863', 'AUNTIE MARY GRIPE WATER', 1, '6.8900', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '98457863', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2251, '8901138500573', 'BONNISAN SYRUP', 1, '12.0000', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bonnisan-syrup', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2252, '08741188', 'FLUREST TABS', 1, '10.0900', '13.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '08741188', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2253, '6221045010159', 'ACTIFED TAB', 1, '9.2500', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'actifed-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2254, '8901040258036', 'BIOFERON SYRUP', 1, '17.9400', '27.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bioferon-syrup', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2255, '8901040258050', 'BIOFERON CAPS', 1, '17.4900', '26.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bioferon-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2256, '41965129', 'ZINCOFER SYR', 1, '12.7400', '17.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '41965129', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2257, '84888052', 'OVACARE TABS', 1, '4.0000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '84888052', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2258, '8901138180614', 'SPEMAN TABS', 1, '0.3500', '50.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '600.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'speman-tabs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2259, '72759006', 'DRAGON SPRAY', 1, '20.0000', '27.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '72759006', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2260, '29581054', 'DRAGON TABS', 1, '4.2000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '29581054', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2261, '2112345602905', 'TIGER SPRAY', 1, '18.9900', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tiger-spray', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2262, '69085595', 'LENOR CONTRACEPTIVE', 1, '4.5000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '69085595', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2263, '6036000090417', 'LEVON 2', 1, '4.9800', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '27.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'levon-2', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2264, '78116631', 'LUBRIMAX JELLY 50G', 1, '14.0000', '18.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '78116631', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2265, '5014502000807', 'MINAMINO SYRUP M/S', 1, '32.0000', '43.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'minamino-syrup-ms', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2266, '8906046070682', 'KIDIVITE SYR L/S', 1, '6.4900', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'kidivite-syr-ls', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2267, '52018792', 'KIDICS SYRUP', 1, '9.5000', '12.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'kidics-syrup', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2268, '8906009235561', 'BG-GLUTAMIN PLUS', 1, '7.3000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bg-glutamin-plus', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2269, '48726368', 'STOPKOFF CHIDREN', 1, '5.8300', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '48726368', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2270, '64645876', 'MIST POT CIT', 1, '2.5000', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '64645876', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2271, '9556100104342', 'FLUCOR DAY', 1, '12.0000', '16.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'flucor-day', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2272, '8904008420469', 'CONGESTYL TAB', 1, '5.5000', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'congestyl-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2273, '04120489', 'RHIZIN SYRP', 1, '2.6700', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '04120489', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2274, '55192131', 'STOPKOFF EXP CHN', 1, '3.9800', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '55192131', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2275, '10665944', 'PARA TAB (EXETER) 100\'S', 1, '1.0900', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '10665944', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2276, '52459644', 'DALACIN C SYR', 1, '55.1000', '73.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '52459644', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2277, '71311341', 'ZUBES TABLETS ', 1, '0.7800', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '71311341', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2278, '55291532', 'HOT WATER BOTTLE UNCOVERED', 1, '14.9900', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '55291532', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2279, '6161105661986', 'PANADOL EXTRA', 1, '2.8000', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '31.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'panadol-extra', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2280, '8995858999991', 'PROCOLD TABS', 1, '3.0700', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '85.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'procold-tabs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2281, '087450449108', 'TYLENOL EXTRA', 1, '3.0000', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tylenol-extra', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2282, '40904860', 'SOVIT VIT E CAPS', 1, '18.0000', '24.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '40904860', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2283, '8906009232225', 'LOFNAC TAB 100MG', 1, '1.4300', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lofnac-tab-100mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2284, '8906009232232', 'LOFNAC-P TAB', 1, '1.3000', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '47.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lofnac-p-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2285, '85310856', 'COARTEM 80/480 TABS', 1, '35.8000', '48.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '85310856', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2286, '91011834', 'FLUXAMOX CAPS 200', 1, '4.3000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '91011834', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', 1, '1.8000', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '40.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '72632899', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2288, '44100235', 'FLUXAMOX SUSP 100ML', 1, '7.8600', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '44100235', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2289, '01037338', 'FOLIC ACID LETAP', 1, '0.3300', '0.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '75.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '01037338', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', 1, '6.8500', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'valupak-folic-acid-30s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2291, '8904091112401', 'CANDIBIOTICS EAR DROPS 5ML', 1, '20.6400', '27.3000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'candibiotics-ear-drops-5ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2292, '8908010926148', 'PREGNA  PREMIUM', 1, '55.0000', '73.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pregna-premium', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2293, '03010667', 'PENICILLIN V 125MG TABS', 1, '1.4400', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '246.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '03010667', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2294, '44448916', 'PENICILLIN OINTMENT', 1, '4.5000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '44448916', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', 1, '0.9600', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '88.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '89259508', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2296, '48633360', 'DREZ SOLUTION B/S', 1, '13.2900', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '48633360', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2297, '46332629', 'DREZ SOLUTION S/S', 1, '6.6000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '46332629', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2298, '11840983', 'DREZ OINTMENT 10G S/S', 1, '6.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '11840983', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2299, '8904107900961', 'DICLOLEX GEL', 1, '6.0000', '8.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'diclolex-gel', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2302, '98009399', 'WORMPLEX 400', 1, '5.2000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '24.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '98009399', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2303, '5024655004072', 'TRANEXAMIC ACID 500MG', 1, '16.1000', '21.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tranexamic-acid-500mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2304, '90589903', 'PARA-DENK SUPP 250MG', 1, '1.3300', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '90589903', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2305, '18430069', 'NO-SPA 40MG S/S 20\'S', 1, '6.6000', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '18430069', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2306, '76223-3201-2', 'DYKLO SPRAY', 1, '55.0000', '72.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'dyklo-spray', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2307, '07147099', 'ZITHROMAX 250MG', 1, '121.8900', '170.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '07147099', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2308, '083502770183', 'PSYLLIUM HUSK', 1, '20.0000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'psyllium-husk', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2309, '23002945', 'Permoxyl caps 500mg', 1, '1.9900', '2.6000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '37.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'permoxyl-caps-500mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2311, '90764208', 'PREGNACARE 19', 1, '46.2900', '60.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '90764208', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2312, '68007962', 'AQUAPHOR HEALING OINTMENT', 1, '20.0000', '35.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '68007962', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2313, '83991627', 'ENTRACIN 300', 1, '8.7500', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '83991627', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2314, '30357751', 'ARTIBASE SUSP', 1, '3.9000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '30357751', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2315, '34300059', 'PARA LOCAL', 1, '0.3900', '0.5100', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '356.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '34300059', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2316, '59549986', 'SMA 1 BABY FOOD', 1, '45.0000', '48.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sma-1-baby-food', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2317, '74536436', 'HEMANI HERBAL TEA', 1, '15.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '64.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '74536436', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2318, '02898540', 'FACE MASK', 1, '0.5000', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '02898540', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2319, '27607621', 'KN95 FACE MASK', 1, '3.0000', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '50.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '27607621', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2320, '10865525', 'MALARIA TEST', 1, '7.0000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-50.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '10865525', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2321, '80141429', 'MIST F.A.C', 1, '2.5000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '80141429', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2322, '19433378', 'LIQUID SOAP', 1, '18.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '19433378', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2323, '20264165', 'DASTY DEGREESER', 1, '15.0000', '30.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '20264165', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2324, '16521609', 'ALWAYS PAD DOUBLE MAX', 1, '11.0000', '14.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '16521609', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2325, '68025873', 'ALWAYS PAD MAX', 1, '5.5000', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '68025873', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2326, '76020391', 'FLOOR CLEANER', 1, '18.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '76020391', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2327, '66319646', 'MR Q', 1, '4.5000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '32.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '66319646', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2328, '59058180', 'EXFORGE 5MG/160MG 28\'', 1, '64.2000', '85.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '59058180', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2329, '93880955', 'EXFORGE HCT 5/160/12.5MG', 1, '30.1300', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '93880955', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2331, '22131552', 'IMODIUM CAPS 2MG 6\'S', 1, '12.0700', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '22131552', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', 1, '5.8900', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '55271844', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2333, '81610561', 'CIPROFLOXACIN SUSP (XIN-A)', 1, '33.0000', '43.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '81610561', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2334, '99769153', 'CROMAX-2 EYE DROP', 1, '16.0000', '21.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cromax-2-eye-drop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2335, '90387267', 'EPICROM EYE DROP 2%', 1, '15.6600', '21.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '90387267', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2336, '74912018', 'ATENOLOL 50MG', 1, '7.0000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '74912018', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2337, '04743466', 'M2 TONE', 1, '51.0000', '67.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '04743466', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2338, '45884609', 'DUROMIN 30MG', 1, '9.6300', '13.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '60.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '45884609', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2339, '56648929', 'BENDRO 5MG BLISTER UK', 1, '7.2300', '9.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '56648929', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', 1, '5.9200', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'bendro-fluzide-25mg-uk', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2341, '67208590', 'NEXCOFER CAPS', 1, '5.5900', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '67208590', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', 1, '1.8600', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '192.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '62530607', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2343, '67107435', 'INFACOL DROPS 50ML', 1, '38.9900', '51.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '67107435', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2344, '08199601', 'FOLIGROW TONIC', 1, '19.8200', '26.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '08199601', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2345, '37407616', 'PONSTAN CAPS 250MG', 1, '7.6400', '10.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '37407616', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2346, '68048014', 'CALAMINE OINT', 1, '5.5000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '68048014', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2347, '27404535', 'SALICYLIC ACID OINT', 1, '5.2000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '27404535', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2348, '70645774', 'LYNUX OINT', 1, '22.0300', '29.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '70645774', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2349, '82507445', 'CEBROTONIN TAB', 1, '24.1000', '32.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '82507445', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2350, '58123990', 'COARTEM 6\'S', 1, '10.3800', '14.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '58123990', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2351, '81129325', 'COARTEM 12\'S', 1, '17.7000', '24.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '81129325', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 1, '20.0000', '26.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '25.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '84404614', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2353, '63376348', 'HAEMOGLOBIN SYR M&G', 1, '4.4500', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '63376348', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2354, '93872260', 'COLDRILIF SYR', 1, '4.6000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '93872260', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2355, '04052064', 'CELEBREX 200MG 10\'S S/S', 1, '5.4200', '7.2000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '60.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '04052064', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2356, '42767945', 'DIABETONE TABS UK', 1, '38.9800', '51.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '42767945', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2357, '22168350', 'LADINAS PICT', 1, '4.0000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '22168350', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2358, '32893309', 'LOSAR-DENK 100MG', 1, '13.6000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '32893309', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2359, '66115662', 'LOSAR-DENK 50MG TAB', 1, '8.1100', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '66115662', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2360, '04076969', 'ASMADRIN TABS', 1, '0.5200', '0.6900', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '67.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '04076969', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2361, '93787462', 'ASMANOL TABS 200', 1, '0.4700', '0.6000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '46.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '93787462', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2362, '63796869', 'ZINNAT 500MG', 1, '8.8300', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '129.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '63796869', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2363, '25326446', 'WELLMAN DRINK', 1, '6.8800', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '25326446', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2365, '37620765', 'CLARITHROMYCIN 500MG B-CLAR', 1, '1.5000', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '37620765', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 1, '4.0200', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'amilodipine-10-mg-teva', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2367, '21683139', 'SIVODERM SANITIZER BIG', 1, '24.0000', '60.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sivoderm-sanitizer-big', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2368, '85418156', 'SIVODERM  SANITIZER MEDIUM', 1, '13.0000', '30.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '85418156', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2369, '41710683', 'PHARMADERM SANITIZER', 1, '13.0000', '60.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '41710683', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2370, '92071659', 'BICTIGEL SANITIZER S/S', 1, '2.5000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '92071659', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2371, '83539675', 'FRESH LADY CAPS', 1, '12.0000', '17.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '83539675', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2372, '48662385', 'FRESHMAN CAPS', 1, '17.0000', '22.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'freshman-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2373, '56498485', 'LAUD STD', 1, '11.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '56498485', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2374, '02032095', 'OSONS GARLIC CAPS', 1, '7.3300', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '02032095', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2375, '02290774', 'PA-KUM( ROCKMAN) CAPS', 1, '14.0000', '18.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pa-kum-rockman-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2376, '77456423', 'PROSTAFIT', 1, '19.5000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '77456423', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2377, '96827889', 'ROCK GENECURE', 1, '11.0000', '13.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '96827889', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2378, '08590643', 'VENE CAPS', 1, '18.0000', '23.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '08590643', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2379, '98167111', 'COLODIUM CAPS', 1, '1.8000', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '98167111', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', 1, '37.9000', '50.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '56251100', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2381, '72472860', 'ENACEF SUSP', 1, '11.8700', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '72472860', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2382, '28069626', 'EPICROM 4% EYE DROP', 1, '15.6600', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'epicrom-4-eye-drop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2383, '32782648', 'GINSOMIN EVE', 1, '16.3000', '21.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ginsomin-eve', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2384, '23740960', 'NO 10 LIVER SALT ORANGE', 1, '0.4700', '0.7000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '198.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '23740960', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2385, '52921', 'BECOATIN TABS', 1, '7.8800', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '52921179', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2386, '92175949', 'TETRACYCLINE EYE OINT 5G', 1, '2.0100', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '92175949', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2387, '00790319', 'NORMAL TEARS EYE DROP', 1, '11.9600', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '00790319', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2388, '50008774', 'S/SEAS JOINTCARE SUPPLEX CAPS', 1, '52.8500', '70.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '50008774', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2389, '78098233', 'ALKA SELTZER 20\'S', 1, '3.1400', '4.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '34.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'alka-seltzer-20s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2390, '76253920', 'NEXIUM 10 SACHET', 1, '7.4000', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '76253920', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2391, '12827991', 'ENAMYCIN TAB', 1, '2.7000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '12827991', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2392, '10965636', 'CHOCHO SAOP', 1, '3.7000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '10965636', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2393, '25300648', 'BOAFO OINT', 1, '3.3000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '25300648', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2394, '14717379', 'MAAME DAGOMBA', 1, '4.0000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '14717379', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2395, '99288830', 'TINATETT 230', 1, '27.0000', '35.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tinatett-230', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2396, '57591599', 'LUCKY KOO MIX', 1, '11.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '57591599', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2397, '92427320', 'GIFAS MIXTURE', 1, '13.5000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '92427320', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2398, '83807653', 'KINGDOM GINSENG CAPS', 1, '15.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '83807653', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2399, '95599749', 'HEPA PLUS', 1, '8.5000', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '95599749', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2400, '91513969', 'BRIGHTFOD STRONG', 1, '12.5000', '16.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '91513969', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2401, '17118869', 'EKRUO BEWU', 1, '2.8000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '17118869', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2402, '16734039', 'NANA ADJEI', 1, '1.0000', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '16734039', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2403, '84832683', 'LIMZER CAPS 30\'', 1, '17.8000', '24.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '84832683', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2404, '22467568', 'OMRON BLOOD PRESSURE MONITOR M2', 1, '250.0000', '300.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '22467568', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2405, '40815002', 'GLOVES', 1, '1.2000', '1.6000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '148.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '40815002', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2406, '8901138502829', 'MENTAT', 1, '20.7000', '27.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mentat', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2407, '8901138140625', 'MENTAT SYRUP 100ML', 1, '20.2000', '26.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mentat-syrup-100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2408, '5011501009398', 'DEEP HEAT OINT 15G', 1, '9.3500', '12.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'deep-heat-oint-15g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2409, '86934998', 'PROMETHAZINE SYR 60ML', 1, '2.3100', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '86934998', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2410, '22266640', 'CARTEF SUSP 60ML', 1, '4.3200', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '22266640', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2411, '13740723', 'GEBEDOL FORTE TAB', 1, '1.6000', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '35.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '13740723', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2412, '17935935', 'GLIBINIL CAPS 5MG', 1, '0.5200', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '103.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '17935935', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2413, '72302134', 'LETAVIN 125MG', 1, '1.0500', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '137.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '72302134', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2414, '85111706', 'AMLODIPINE 5MG', 1, '3.4000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '85111706', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2415, '70550564', 'GLUCOSE CHECK (SUGAR)', 1, '5.0000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-13.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '70550564', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2416, '42362525', 'VOLTIC WATER M/S', 1, '1.2000', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '42362525', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2417, '89073800', 'DOVE SOAP', 1, '3.7800', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '89073800', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2418, '5000204957327', 'GLADE AIR FRESHNER', 1, '9.5000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'glade-air-freshner', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2419, '03336179', 'MR  MUSCLE', 1, '14.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '03336179', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2420, '21380189', 'COWBELL TIN MILK', 1, '21.5000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '21380189', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2421, '51995515', 'MR MUSCLES FLOOR CLEANER', 1, '14.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '51995515', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2422, '92383380', 'POWER ZONE B/S', 1, '6.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '92383380', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2423, '57283790', 'POWER ZONE S/S', 1, '4.0000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '57283790', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2424, '72870535', 'DEVA SOFTNER', 1, '12.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '72870535', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2425, '54377887', 'SASSO MOSQUITO SPRAY  B/S', 1, '24.0000', '27.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '54377887', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2426, '49816115', 'COMFORT SOFTNER', 1, '12.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '49816115', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2427, '44595573', 'SAVLON SS/S', 1, '5.8000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '44595573', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2428, '50665292', 'HEAVEN MOSQUITO SPRAY', 1, '19.0000', '24.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '50665292', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2429, '5011309302417', 'ZEFLORA DISINFECTANT', 1, '10.7000', '14.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zeflora-disinfectant', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2430, '6926597271255', 'JOZZY KIDS TOOTHPASTE&BRUSH', 1, '7.0000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jozzy-kids-toothpastebrush', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2431, '41187227', 'PEPSODENT BRUSH KIDS', 1, '2.2000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '41187227', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2432, '30456278', 'SO KLIN SOFTNER', 1, '14.5000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '30456278', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2433, '5060033370049', 'PRE MUM BREAST PAD', 1, '0.3200', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '80.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pre-mum-breast-pad', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2434, '50763677', 'PEPSODENT 123', 1, '5.2000', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '50763677', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2435, '31684073', 'ORAL B TOOTHPASTE', 1, '5.0000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '31684073', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2436, '04225724', 'ANTI BACTERIAL WIPE', 1, '11.5000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '04225724', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2437, '44857984', 'APTAMIL BABY MILK', 1, '80.0000', '100.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '44857984', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2438, '59088740', 'NIDO +1 POWDERED MILK', 1, '29.0000', '34.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '59088740', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2439, '92520287', 'QUAKER OATS TIN', 1, '15.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '92520287', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', 1, '5.2100', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pepsodent-toothpaste-bs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2441, '82095661', 'COLGATE HERBAL TOOTHPASTE', 1, '4.6000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '82095661', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2442, '84998316', 'COLGATE TRIPPLE ACTION TOOTHPASTE', 1, '4.8000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '84998316', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2443, '42430092', 'SOFTCARE SANITRY PAD', 1, '4.0000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '42430092', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2444, '73221630', 'SOFTCARE BABY WIPES', 1, '7.0800', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '73221630', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2445, '08969985', 'ADULT DIAPER', 1, '3.2000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-14.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '08969985', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2446, '17077517', 'PEPSODENT S/S', 1, '2.5000', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '17077517', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2447, '50610187', 'IMPEPRIL LEATHER SOAP S/S', 1, '3.8000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'impepril-leather-soap-ss', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2448, '42222157', 'IMPERIAL LEATHER SOAP B/S', 1, '5.0000', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '42222157', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2449, '73407261', 'DETTOL SOAP SMALL', 1, '5.0000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '73407261', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2450, '16241595', 'HARPIC ANTISEPTIC', 1, '13.5000', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '16241595', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2451, '56986898', 'GIVERS MIX', 1, '10.3500', '14.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '56986898', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2452, '56056492', 'FINE FINE SOAP', 1, '2.5000', '4.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '56056492', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2453, '3410766', 'MONA SOAP', 1, '2.7000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '34107669', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', 1, '9.0000', '11.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '52651792', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2455, '07137762', 'AMITRIPTYLINE 25MG', 1, '7.5300', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '07137762', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2456, '33589219', 'PILIEF OINT', 1, '18.5000', '24.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '33589219', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2457, '33345179', 'PILIEF TABS', 1, '23.0000', '32.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '33345179', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', 1, '13.2000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '03757380', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2459, '26218313', 'ENAMYCIN SUS (ECL)', 1, '5.6900', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '26218313', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2460, '07910647', 'EVECARE TAB', 1, '32.7700', '43.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '07910647', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2461, '13231903', 'ENAFIX TAB 200MG', 1, '8.6400', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '13231903', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2462, '03669885', 'WELLBABY DROP', 1, '42.3500', '56.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '03669885', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2463, '22321274', 'ADVIL COMBO 50\'S', 1, '2.8700', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '22321274', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2464, '72877536', 'NEUROZAN', 1, '54.0000', '71.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '72877536', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2465, '13163480', 'CORORANGE SYR', 1, '7.8200', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '13163480', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2466, '574992', 'ZINCOFER CAPS', 1, '13.5900', '18.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '57499218', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2467, '97164110', 'LISINOPRIL 20MG TAB UK', 1, '19.8000', '26.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '97164110', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2468, '92479608', 'ATENOLOL 100MG TABS UK', 1, '4.8200', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '92479608', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2469, '50076979', 'Corsodyl mouth wash', 1, '48.0000', '55.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '50076979', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2470, '63996135', 'VENTOLIN NEBULES 5MG', 1, '8.5000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '63996135', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2471, '81093795', 'LITTLE REMEDIES GRIPE WATER', 1, '10.0000', '30.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '81093795', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2472, '5012008571401', 'SOFT & GENTLE SPRAY', 1, '9.5000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'soft-gentle-spray', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2473, '12094351', 'RIGHT GUARD SPRAY', 1, '12.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '12094351', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2474, '58247078', 'PEPSODEHT TOOTHPASTE', 1, '5.1000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '58247078', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2475, '88463350', 'PEPSODENT CHARCOAL TOOTHPASTE', 1, '7.0000', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '88463350', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2476, '20264921', 'BLACK SEED', 1, '10.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '22.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '20264921', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2477, '98577401', 'SESAME SEED', 1, '8.0000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '98577401', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2478, '10567518', 'MUSTARD SEED', 1, '3.0000', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '10567518', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2479, '64861163', 'CHIA SEED', 1, '10.0000', '13.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '23.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '64861163', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2480, '7108674', 'EFOM WISA', 1, '5.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '71086747', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2481, '40294439', 'FENNEL SEED', 1, '3.5000', '4.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fennel-seed', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2482, '83427820', 'FENUGREEK SEED', 1, '6.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '83427820', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2483, '90693662', 'THYME LEAVES', 1, '4.0000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '90693662', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2484, '00708902', 'PUMPKIN SEED', 1, '17.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '00708902', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2485, '40177526', 'GOLDEN RAISEN', 1, '17.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '40177526', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2486, '46475252', 'CINNAMON STICKS', 1, '4.0000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '57.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '46475252', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2487, '22129068', 'ALMOND SEED', 1, '25.0000', '30.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '22129068', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2488, '57207509', 'DAONIL TAB (SANOFI) ', 1, '9.8000', '13.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '57207509', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2489, '83942978', 'ACICLOVIR CREAM 10G', 1, '63.0300', '83.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '83942978', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2490, '8904091112500', 'CANDID MOUTH PAINT', 1, '8.6300', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'candid-mouth-paint', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2491, '57627875', 'BELLS VITAMIN C', 1, '12.2000', '16.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '57627875', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2492, '51417644', 'NIZORAL SHAMPOO', 1, '21.9900', '30.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '51417644', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2493, '5060057401095', 'FUROSEMIDE TAB 40MG UK ALMUS', 1, '6.5000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '36554252', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2494, '60750341', 'GYNO DAKTARIN OVULES 400MG', 1, NULL, '43.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '60750341', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2495, '19113194', 'CANDID V3', 1, '8.6100', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '19113194', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2496, '94527357', 'MENTHOX LOZENGES', 1, '0.5900', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '94527357', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2497, '26571538', 'CALPOl 6+', 1, '31.2000', '46.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '26571538', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2498, '86757348', 'PROXEED WOMEN', 1, '9.6000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '86757348', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2499, '01118964', 'PROXEED PLUS MEN', 1, '10.6000', '14.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '40.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '01118964', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2500, '67342840', 'RENERVE PLUS', 1, '5.6000', '7.2000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '60.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'renerve-plus', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2502, '14251017', 'TCP ANTISEPTIC LIQUID', 1, '43.2000', '55.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '14251017', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', 1, '15.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '85844262', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2504, '61281286', 'MISTARD', 1, '35.0000', '44.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '61281286', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2505, '28562016', 'ORELOX 100MG TABLETS', 1, '68.5900', '90.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '28562016', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2506, '46924578', 'EPANOL SYR', 1, '3.4900', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '46924578', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2507, '57385161', 'WELLTEEN HER', 1, '34.2000', '45.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '57385161', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2508, '13685865', 'WELLTEEN HIM', 1, '34.2000', '45.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '13685865', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2509, '01336804', 'VENTOLIN SYRUP 100ML', 1, '24.5800', '32.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '01336804', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2510, '68253343', 'ATENOLOL 100MG BRISTOL', 1, '4.2000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '68253343', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2511, '81055477', 'DUROL 300ML', 1, '8.5000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '81055477', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2512, '57681465', 'HONEY  500ML', 1, '20.0000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '57681465', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2513, '35471802', 'HONEY 1L', 1, '40.0000', '50.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '35471802', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2514, '98091900', 'TOMBROWN 500G', 1, '10.0000', '13.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '98091900', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2515, '22838029', 'CHILLI PEPPER', 1, '16.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '22838029', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2516, '60491534', 'TENDRINA CREAM B/S', 1, '9.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '60491534', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2517, '94045463', 'TENDRINA CREAM S/S', 1, '5.0000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '94045463', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2518, '51929198', 'TAVANIC 500MG', 1, '118.1000', '156.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '51929198', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2519, '61714252', 'COLESTOP 20MG', 1, '11.0000', '14.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '61714252', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2520, '20687050', 'CAMEL LIQUID ANTISEPTIC 500ML', 1, '18.6000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '20687050', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', 1, '11.0000', '14.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '99271826', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2522, '02869770', 'CAMEL ANTISEPTIC LIQUID 125ML', 1, '6.2000', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '02869770', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2523, '89430832', 'CAMEL SOAP', 1, '4.8000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '89430832', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2524, '8858854602732', 'XTREME TUMERIC SOAP', 1, '10.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'xtreme-tumeric-soap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2525, '8850722212760', 'GOATMILK SOAP', 1, '10.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'goatmilk-soap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2526, '8858854600110', 'VIRGINITY SOAP (SKIN DOCTOR0', 1, '10.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'virginity-soap-skin-doctor0', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2527, '655295237350', 'MACA POWDER (DR HERBALIST)', 1, '40.0000', '48.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'maca-powder-dr-herbalist', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2528, '50186830', 'BLACK SOAP BIG', 1, '8.5000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '50186830', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2529, '83499560', 'BLACK SOAP SMALL', 1, '7.5000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '83499560', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2530, '7640149080124', 'Q7 GOLD (CARROT) SOAP', 1, '22.0000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'q7-gold-carrot-soap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2531, '6928001831338', 'AGE PERFECT (WOKALI)', 1, '20.0000', '28.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'age-perfect-wokali', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2532, '8906081290236', ' GLAM&GLORY', 1, '8.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'glamglory', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2533, '049022979109', 'APRICOT SCRUB', 1, '18.0000', '24.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'apricot-scrub', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2534, '754604502834', 'NEEM FACIAL PRODUCT', 1, '25.0000', '28.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'neem-facial-product', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2535, '740939004150', 'CLEAR N SMOOTH', 1, '20.0000', '24.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'clear-n-smooth', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2536, '47357860', 'SOFT COLLAR NECK', 1, '50.0000', '70.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '47357860', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2537, '32182788', 'HARD COLLAR NECK', 1, '80.0000', '105.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '32182788', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2538, '95275481', 'KNEE BRACE', 1, '120.0000', '150.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '95275481', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2539, '39255568', 'THERMOMETER DIGITAL', 1, '10.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '39255568', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2540, '20509028', 'SPANISH FLY', 1, '45.0000', '60.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '20509028', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2541, '39996904', 'DEMACOT CREAM', 1, '10.0000', '13.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '39996904', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2542, '5021265223800', 'WELLKID CHEWABLE TAB', 1, '59.4600', '78.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'wellkid-chewable-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2543, '89430673', 'SECURE CONTRACEPTIVE', 1, '2.0000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '50.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '89430673', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2544, '85585070', 'NEXCOFER SYR L/S', 1, '6.8800', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '85585070', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2545, '82780299', 'DREZ POWDER 10G', 1, '5.8800', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'drez-powder-10g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2546, '11973520', 'NOSTAMINE E/N DROPS', 1, '13.6300', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '11973520', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2547, '30290939', 'VISCOF S SYR', 1, '9.1700', '12.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '30290939', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2548, '54581009', 'ZINCOVIT DROP', 1, '6.7200', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '54581009', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2549, '07128035', 'GILLETTE RAZOR', 1, '10.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '07128035', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2551, '65428666', 'OLIGOCARE', 1, '27.0000', '45.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'oligocare', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2552, '17018789', 'ORELOX SUSP', 1, '95.8900', '127.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '17018789', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2553, '94491237', 'INSULIN NEEDLES', 1, '0.7000', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '94491237', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2554, '14693543', 'DISPOSABLE INFUSION', 1, '1.0000', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '14693543', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2555, '51064259', 'CARBAMAZEPINE 200MG', 1, '4.2000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '51064259', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2556, '59713806', 'VERNA WATER  0.5L SMALL', 1, '0.5800', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '21.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '59713806', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2557, '86393917', 'METOCLOPRAMIDE', 1, '0.5700', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '51.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '86393917', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2558, '12419923', 'OVULATION TEST KIT', 1, '6.0000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '12419923', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2559, '42580620', 'ABYVITA SYRP', 1, '6.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '42580620', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2560, '27717765', 'HONEY 250G (GIFT OF NATURE)', 1, '17.0000', '21.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '27717765', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2561, '65996534', 'MAGNESUIM CAPSULES', 1, '30.0000', '80.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '65996534', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2562, '69494430', 'PROBIOTICS', 1, '30.0000', '80.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '69494430', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2563, '07901554', 'PROBIOTICS (RENEWLIFE)', 1, '30.0000', '60.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '07901554', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2564, '72577674', 'NATURE\'S WAY HAIR AND NAIL', 1, '30.0000', '80.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '72577674', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2565, '45244498', 'VERNA WATER MEDIUM', 1, '0.8100', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '26.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '45244498', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2566, '42135887', 'MILO TIN', 1, '17.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '42135887', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2567, '83596243', 'NAN 1', 1, '33.0000', '36.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '83596243', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2568, '92928217', 'YOVANNY LOZ', 1, '0.1600', '0.2500', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-97.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '92928217', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2569, '30297629', 'METROBON F', 1, '3.5000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '30297629', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2570, '24041017', 'GOLDY SUSP', 1, '7.4900', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '24041017', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2571, '89677505', 'YAAKSON MIXTURE', 1, '9.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '89677505', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2572, '17160763', 'SWEDISH BITTERS', 1, '22.0000', '29.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '17160763', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2573, '11557669', 'MASADA', 1, '9.3000', '12.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '11557669', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2574, '24484092', 'DULCOLAX TABS 5MG 20\'S', 1, '1.1300', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '98.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '24484092', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2575, '87228427', 'CANDEREL TABS', 1, '12.8500', '17.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '87228427', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2576, '59885419', 'DIAMICRON MR 60 MG TAB', 1, '54.0000', '71.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '59885419', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2577, '71775757', 'PALM OLIVE 650ML BIG', 1, '20.0000', '28.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '71775757', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2578, '00665739', 'PALM OLIVE 250ML SMALL', 1, '10.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '00665739', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2579, '05691672', 'CIEN  SHOWER GEL', 1, '20.0000', '28.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '05691672', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2580, '8858854600592', 'DARK SPOT REMOVER SOAP', 1, '12.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'dark-spot-remover-soap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2581, '6006118000202', 'CIPROBAY 500', 1, '92.0000', '122.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ciprobay-500', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2582, '81054441', 'AZILEX SUSP', 1, '11.5000', '30.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '81054441', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2583, '30559942', 'VIAGRA TABS 100MG', 1, '77.2500', '102.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '30559942', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2584, '53094861', 'ROSESHIP OIL', 1, '10.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '53094861', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2585, '69794709', 'CINANMON OIL', 1, '10.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '69794709', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2586, '95261830', 'SEFFRON OIL', 1, '10.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '95261830', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2587, '11447011', 'NEO MEDROL LOTION', 1, '135.0000', '178.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '11447011', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2588, '20381609', 'NORMAL SALINE INFUSSION', 1, '4.0000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '20381609', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2589, '04036623', 'DEXTROSE SALINE DNS INFUSSION', 1, '4.0000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '04036623', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2590, '06087300', 'GLUCOSE 5% INFUSSION', 1, '4.0000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '06087300', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2592, '42909881', 'Zentel Suspension ', 1, '7.9800', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '42909881', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2593, '8850769013252', 'GINSOMIN CAPS', 1, '14.4000', '19.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ginsomin-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2594, '8850769010831', 'ZEMAN CAPS', 1, '16.4000', '21.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zeman-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2595, '5011417560556', 'SWEETEX 700', 1, '17.8900', '24.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sweetex-700', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2596, '04414143', 'FEMISTAR CAPS', 1, '19.7000', '26.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '04414143', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2597, '81022123', 'ABC BABY COUGH SYR', 1, '3.8200', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '81022123', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2598, '48289194', 'FOLIC ACID TAB 28\' (EXETER)', 1, '5.4300', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '48289194', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2599, '29486139', 'ABIDEC MULTIVITAMIN SYR', 1, '49.8500', '65.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '29486139', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2600, '5011417566800', 'LEMSIP COUGH SYR 180ML UK', 1, '56.5000', '74.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lemsip-cough-syr-180ml-uk', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2601, '14487985', 'ULTRA SLIM HERBAL TEA', 1, '16.0000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '14487985', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2602, '86780065', 'CLOVES ', 1, '4.0000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '22.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '86780065', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2603, '17379642', 'VITAGO', 1, '1.0000', '1.3000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '17379642', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2604, '43079266', 'COA MIXTURE', 1, '90.0000', '120.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '43079266', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2605, '92433638', 'COLESTOP 10MG', 1, '8.7000', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '92433638', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2606, '79633078', 'MOSQUITO NET RING', 1, '40.0000', '53.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '79633078', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2607, '65744915', 'maalox sachets', 1, '1.4000', '1.7000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '28.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '65744915', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2608, '57349245', 'CELLGEVITY', 1, '83.3300', '120.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '57349245', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2609, '48137025', 'ABYVITA TABS', 1, '2.8000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '48137025', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2610, '70419862', 'APPLE CIDER VINEGER S/S 473ML', 1, '40.0000', '52.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '70419862', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2611, '55130336', 'BROWN SUGAR', 1, '9.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '55130336', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2612, '94895079', 'OMEGA OIL 50ML', 1, '7.1600', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '94895079', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2613, '76873738', 'OSTEOCARE SYR UK', 1, '29.4500', '39.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '76873738', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2614, '96562826', 'WELLMAN CAPS', 1, '53.3200', '71.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '96562826', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2615, '04025050', 'COOL EYES DROP', 1, '12.5000', '16.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '04025050', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2616, '98204323', 'NIFEDI-DENK 10MG', 1, '3.0000', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '98204323', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2617, '33457681', 'NIFEDI-DENK 20MG', 1, '4.4000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '33457681', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2618, '72760937', 'BUSCOMED TAB 10MG', 1, '4.1000', '5.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '23.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'buscomed-tab-10mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2619, '34146625', 'XARELTO 20MG', 1, '20.0000', '26.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '34146625', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2620, '10026169042122', 'BODY SPLASH (COCONUT FANTASY)', 1, '21.0000', '23.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'body-splash-coconut-fantasy', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2621, '24840700', 'ADIDAS BODY SPRAY', 1, '12.0000', '14.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '24840700', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2622, '79117239', 'COMBANTRIN', 1, '19.0000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '79117239', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2623, '01976331', 'BENDROFLUZIDE 2.5MG UK CRESCENT', 1, '4.3000', '5.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '01976331', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2624, '71356473', 'POLAR ICE', 1, '15.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '71356473', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2625, '18152598', 'Olfen Gel', 1, '17.0000', '23.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '18152598', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2626, '10089309', 'OSTECARE TABS INDIA', 1, '7.8800', '10.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '10089309', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2627, '47630599', 'ATORVASTATIN 10MG', 1, '10.5000', '14.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '47630599', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2628, '92643129', 'ADOM NATURAL MAN MIXTURE', 1, '12.5000', '16.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'adom-natural-man-mixture', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2629, '80991602', 'LIQUID SANITIZER', 1, '10.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '80991602', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2630, '61266775', 'CARO WHITE OIL', 1, '4.0000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'caro-white-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2631, '30731680', 'CARO WHITE SAOP', 1, '5.0000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'caro-white-saop', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2632, '92106440', 'CARO WHITE LOTION', 1, '9.5000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '92106440', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2633, '36871243', 'GANA BALM', 1, '3.5000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '36871243', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2634, '20074246', 'COTTON SKIN ESSENTIALS/ORGANIC', 1, '12.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '20074246', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2635, '2208744', 'PLASTER ROLL S/S', 1, '3.0000', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'plaster-ss', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2636, '86196755', 'KIDIMIN SYR', 1, '7.5000', '10.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '86196755', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2637, '30755055', 'KIDICARE SYR', 1, '10.0000', '13.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '30755055', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2638, '71491998', 'SUDOCREAM 60G S/S', 1, '19.6200', '26.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '71491998', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2640, '08457216', 'GLUCO NAF D (DANNEX)', 1, '7.0400', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '08457216', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2641, '92213060', 'CONGESTYL SUSP', 1, '9.3600', '12.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '92213060', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2642, '23201636', 'SOFTCARE DIAPER', 1, '9.2000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '34.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '23201636', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2643, '51795551', 'VOLTIC WATER S/S', 1, '0.8700', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '51795551', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2644, '46646498', 'COMFORT SOFTNER VERY B/S', 1, '50.0000', '60.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '46646498', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2645, '04241482', 'COMFORT SOFTNER M/S', 1, '21.0000', '26.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '04241482', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2646, '15816669', 'GLADE PAPER AIR FRESHNER', 1, '6.0000', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '15816669', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2647, '65619135', 'SOFTCARE  DIAPER BIG', 1, '30.0000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '65619135', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2648, '61024738', 'COLGATE FOR KIDS', 1, '5.4000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '61024738', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2649, '19814758', 'ZITHROMAX SUSP', 1, '71.9800', '95.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '19814758', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2650, '58359784', 'DICNAC 75 SR', 1, '7.3200', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '58359784', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2651, '50684287', 'KETAZOL SHAMPOO', 1, '10.7500', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ketazol-shampoo', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2652, '49336316', 'ADOM TONIC', 1, '12.5000', '16.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '49336316', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2653, '35881608', 'MONA KRIM', 1, '2.7000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '35881608', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2654, '4000388563803', 'DOVE LOTION', 1, '15.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '15889991', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2655, '06401154', 'CHOCOLATE B/S', 1, '6.5000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-27.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '06401154', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2656, '88370131', 'CHOCOLATE S/S', 1, '1.5000', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '88370131', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2657, '29274667', 'LOPERON CAPS', 1, '0.5400', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '29274667', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2658, '46663167', 'CANNULA G20 PINK', 1, '0.9000', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cannula-g20-pink', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2659, '48350053', 'LACTULOSE SOLUTION 300ML', 1, '25.4800', '34.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '48350053', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2660, '84556664', 'ANDREWS LIVER SALT', 1, '0.7000', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '115.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '84556664', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2661, '52395020', 'GACET 1G', 1, '12.1000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '52395020', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2662, '78880294', 'LONART TAB', 1, '4.5000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '78880294', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2663, '58928731', 'QUINNE MALERIA SYRUP', 1, '4.6000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '58928731', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2664, '76998741', 'EVENING PRIMROSE CREAM', 1, '11.4500', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '76998741', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2665, '94928957', 'FLEMING 625MG', 1, '24.4700', '32.3000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '94928957', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2666, '98057255', 'FLEMING SUSP 228', 1, '18.7400', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '98057255', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2667, '02987046', 'AXACEF TAB 250MG', 1, '25.1700', '34.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'axacef-tab-250mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2668, '50803356', 'GRISON   FULCIN SYR', 1, '7.9800', '10.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '50803356', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2669, '24220016', 'POLYGYNAX PESS', 1, '24.5000', '32.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '24220016', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2670, '18984546', 'ASPIRIN TABS GEO', 1, '0.3200', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '92.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '18984546', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2671, '29819837', 'MINADEX MULTIVITAMIN SYRUP 100ML', 1, '28.8900', '38.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '29819837', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2672, '46856001', 'ALDOMENT 250MGTAB 60\'S', 1, '7.6200', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '46856001', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2673, '52626423', 'LISINOPRIL 10MG', 1, '11.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '52626423', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2674, '7470263', 'LEMSIP COLD & FLU 5\'S', 1, '3.6000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '74702631', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2675, '86806784', 'ON CALL PLUS STRIPS', 1, '2.0000', '2.6000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '50.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'on-call-plus-strips', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2676, '39826217', 'ONE TOUCH SELECT PLUS STRIP', 1, '2.4000', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '39826217', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2677, '55662189', 'ONE TOUCH SELECT PLUS METER', 1, '250.0000', '300.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '55662189', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2678, '32692312', 'NAPROSYN EC 500MG UK', 1, '37.0000', '48.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '32692312', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2679, '42097030', 'PEVISONE CREAM', 1, '33.0100', '44.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '42097030', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2680, '27326576', 'OLFEN GEL 20GM S/S', 1, '12.0000', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'olfen-gel-20gm-ss', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2681, '40460725', 'DECATYLEN LONENGES 20\'S', 1, '12.5000', '16.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'decatylen-lonenges-20s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2682, '40258519', 'FOLIGROW CAPS', 1, '19.3000', '25.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '40258519', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2683, '54509632', 'ZINNAT 250 MG', 1, '49.2100', '65.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '54509632', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2684, '037000685685', 'OLAY BODY WASH SHOWER GEL', 1, '35.0000', '45.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'olay-body-wash', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2685, '011111014237', 'DOVE BODY WASH SHOWER GEL', 1, '35.0000', '45.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'dove-body-wash-shower-gel', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2686, '011111051249', 'DOVE MEN CARE BODY CARE', 1, '35.0000', '45.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '98381440', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2687, '815195014509', 'ULTRA MAX BOBY WASH SHOWER GEL', 1, '15.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'ULTRA MAX', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2688, '870223002637', 'DAILY DEFENSE  BODY WASH SHOWER GEL', 1, '17.0000', '22.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'DAILY DEFENSE', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2689, '852474360018', 'OLIVE OIL BODY WASH SHOWER GEL', 1, '17.0000', '22.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'olive-oil-body-wash-shower-gel', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2690, '834576006223', 'DERMASIL BODY WASH SHOWER GEL', 1, '17.0000', '22.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'DERMASIL', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2691, '57477708', 'STICK ROLL ON S/S', 1, '6.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'STICK ON', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2692, '05619425', 'STICK ROLL ON B/S', 1, '12.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '17.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '05619425', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2693, '8904091102211', 'SUPIRONCIN OMITMENT', 1, '25.3300', '33.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'supironcin-omitment', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2694, '59710964', 'ZINC OXIDE PLASTER 1\'\'', 1, '3.5000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '59710964', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2695, '26196799', 'ANAFRANIL TAB', 1, '2.0000', '2.7000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '58.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'ANAFRANIL', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2696, '18569249', 'VIT E OIL', 1, '10.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vit-e-oil', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2697, '72051764', 'BAY LEAVES', 1, '3.0000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '72051764', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2698, '01508425', 'NIGHT NURSE CAPS', 1, '36.8600', '49.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '01508425', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2699, '85601099', 'CHOCOLATE M/S', 1, '3.0000', '4.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '85601099', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2700, '11271279', 'GAVISCON PEPPERMINT 200ML LIQ', 1, '27.9700', '38.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '11271279', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2701, '89135402', 'GAVISCON DOUBLE ACTION LIQ', 1, '31.9800', '42.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '89135402', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2702, '69900073', 'EXCLEAR NASAL DROPS', 1, '4.6000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '69900073', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2703, '05760199', 'ASCOVIT CEE SYR', 1, '4.3600', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '05760199', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2704, '24774325', 'SENSODYNE DEEP CLEAN GEL', 1, '14.9700', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '24774325', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2705, '98893188', 'SENSODYNE FLOURIDE', 1, '10.9600', '17.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '98893188', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2706, '44071026', 'GASTRONE SYRUP 200ML', 1, '6.5900', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '44071026', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2707, '54201128', 'HYDROLYTE LEMON', 1, '0.5400', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '146.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '54201128', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2708, '5012616291791', 'PHILIPS MILK OF MAGNESIA', 1, '33.9600', '55.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'philips-milk-of-magnesia', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2709, '60764156', 'BABYMED LOTION', 1, '12.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '60764156', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2710, '09217360', 'AUGMENTIN SUSP 457MG', 1, '40.3000', '53.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '09217360', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 1, '0.2600', '0.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '32.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, 'vinka-chocolate-toffee', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2713, '06467625', 'MENTOS ICE GUM', 1, '1.5000', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '06467625', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2714, '46288090', 'MENTOS FRESH ACTIO GUM', 1, '0.9000', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '46288090', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2715, '61261096', 'CASTOR OIL 70ML BELLS', 1, '9.2600', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '61261096', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2716, '65751241', 'FUROSEMIDE 40MG 28\' UK', 1, '9.8500', '13.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '65751241', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2717, '31018284', 'ZIIPMAN', 1, '14.0000', '19.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '31018284', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2719, '58758743', 'WELLKID SOFT JELLY PASTILLES', 1, '55.0400', '73.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '58758743', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2720, '95353854', 'KETOCONAZOLE', 1, '2.7900', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '95353854', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2721, '55783597', 'SILVER SULFADIAZINE CREAM', 1, '8.9800', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '55783597', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2722, '88455380', 'AZITEX TAB  ', 1, '8.6900', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '88455380', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2723, '28145209', 'AMLODIPINE BESILATE 5MG TABS', 1, '6.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '28145209', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2724, '81501082', 'AMILODIPINE BESILATE 10MG TABS', 1, '7.1100', '9.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '81501082', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2725, '24360338', 'AMLODIPINE BESILATE 10MG', 1, '7.1100', '9.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '24360338', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2726, '79072570', 'SANA NASAL DROP 10ML', 1, '4.0000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sana-nasal-drop-10ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2727, '76580073', 'PARA TAB 30\' EXETER', 1, '4.6800', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '76580073', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2728, '93373985', 'DICLOFEN TABS 50G', 1, '0.8000', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '48.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '93373985', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2729, '08313778', 'KEFEN EXTRA 10MG TABS', 1, '3.2900', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '08313778', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2730, '70096024', 'ENAFEN (IBUPROFEN TAB 400MG', 1, '1.2000', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '142.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '70096024', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2731, '73085575', 'LAVINAC (DICLOFENAC) GEL 30G', 1, '2.8500', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '73085575', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2732, '47378626', 'KY JELLY 50ML', 1, '33.0000', '44.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '47378626', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2733, '55537393', 'COTTON WOOL 200G', 1, '7.5000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '55537393', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2734, '24454054', 'SECNIDAZOLE TAB IG (LAVINA)', 1, '3.5000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '24454054', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2735, '67749877', 'SWEETEX TABS 300\'S', 1, '13.7800', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '67749877', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2736, '34329770', 'THYROXINE TAB 100MG 28\' ECL', 1, '8.9800', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '34329770', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2737, '65473411', 'FUROSEMIDE 20MG TABS 28\'', 1, '6.1300', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '65473411', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2738, '79121231', 'ENACIN -C (CLINDAMYCIN) 300MG CAPS', 1, '7.6000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '79121231', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2739, '67011430', 'MYCOVIN TABLETS 125MG', 1, '1.6700', '2.2000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '67011430', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2740, '63100500', 'OMEXET (OMEPRAZOLE) CAPS 20MG', 1, '9.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'omexet-omeprazole-caps-20mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2741, '91738635', 'NEUROBION TAB', 1, '40.6400', '32.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '91738635', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2742, '00544605', 'WL HERBAL LAXATIVE CAPS', 1, '14.7400', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '00544605', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2743, '85592195', 'ANTACID MIXTURE 200ML', 1, '5.5900', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '85592195', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2744, '48964254', 'LAVESTEN VAG PESS', 1, '9.9800', '13.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '48964254', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2745, '63366553', 'PREGNACARE PLUS', 1, '97.7700', '129.0000', '10.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '63366553', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2748, '92354318', 'DEEP FREEZE ONIT 35G', 1, '35.5000', '47.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'deep-freeze-onit-35g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2749, '09707467', 'COARTEM 18\'S TAB', 1, '20.5000', '27.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '09707467', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2750, '42386324', 'PARAMOL SUPP 500MG', 1, '0.5500', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '42386324', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2751, '12649302', 'PARAMOL SUPP 250MG', 1, '0.3600', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '12649302', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2752, '26752801', 'PARAMOL SUPP 125MG', 1, '0.3000', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '26752801', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2753, '76555932', 'CREPE BANDAGE 6\'', 1, '4.8000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '76555932', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2754, '10737671', 'PLASTER STRIPS 100\'S', 1, '0.0800', '0.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '95.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '10737671', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2755, '36040795', 'VITA FORCE SYR', 1, '15.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '36040795', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2756, '48200600', 'CYPRON PLUS SYR', 1, '9.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '48200600', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2757, '55918370', 'VIGORIX CAPS', 1, '6.8000', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '55918370', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2758, '02583050', 'CYFEN TAB', 1, '5.4000', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '02583050', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2759, '56334949', 'SHALCIP TAB', 1, '3.9500', '5.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '56334949', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2760, '71647290', 'HAYZINE TAB', 1, '0.7300', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '71647290', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2761, '15043236', 'LEXOFEN PLUS TAB', 1, '6.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '15043236', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2762, '15794476', 'BX SYR L/S', 1, '7.1000', '9.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '15794476', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2763, '91369587', 'FLAXSEED', 1, '7.5000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '17.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'flaxseed', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2765, '39680747', 'DANRUB OINT', 1, '5.3000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '39680747', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2766, '95455611', 'LUBRIMAX JELLY 70G', 1, '16.0000', '21.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '95455611', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2767, '22329866', 'ADVIL TAB 24\'S', 1, '35.5000', '47.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '22329866', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2768, '31007297', 'AMOXYL CAPS 250 (ESKAY)', 1, '0.9600', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-14.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '31007297', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', 1, '1.5200', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '46431524', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2770, '61335227', 'SUDO CREAM 400G', 1, '53.4000', '70.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '61335227', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2771, '85140722', 'SYRINGE & NEEDLES 10ML', 1, '0.6400', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '48.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '85140722', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2772, '70208100', 'CAFEGOT TAB', 1, '16.7000', '22.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '70208100', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2773, '13013335', 'ADOM W&G CAPS', 1, '15.0200', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '13013335', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2774, '07023799', 'WORMBAT 400MG', 1, '2.0000', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '07023799', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2775, '40792038', 'LEXSPORIN OINTMENT', 1, '18.9000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '40792038', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2776, '30424583', 'LEXSPORIN POWDER', 1, '14.6000', '19.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '30424583', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2777, '97856697', 'MMT SUSP', 1, '2.5000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '97856697', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2778, '035046004323', 'COQ10 100MG CAPS (WINDML)', 1, '89.4000', '120.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'coq10-100mg-caps-windml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2779, '087701408182', 'FISH OIL (GOOD NIEGHOUR PHAR)', 1, '26.2800', '60.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fish-oil-good-nieghour-phar', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2780, '016500586975', 'ONE A DAY WOMEN TABLET 60', 1, '52.0200', '110.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'one-a-day-women-tablet-60', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2781, '087701407253', 'VITAMIN A (GOOD NEIGHBOUR PHARM)', 1, '31.3200', '65.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vitamin-a-good-neighbour-pharm', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2782, '740985253441', 'PUREMARK VEGAN PROTEIN POWER 160Z', 1, '91.8000', '200.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'puremark-vegan-protein-power-160z', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2783, '309042085601', 'VITAMIN A (MAJOR)', 1, '17.9400', '56.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vitamin-a-major', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2784, '074312304217', 'ADULT  MULTIVITAMIN GUMMIES', 1, '53.4600', '110.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'adult-multivitamin-gummies', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2785, '074312028717', 'B COMPLEX SUBLINGUAL (NATURES BOUNTY)', 1, '41.0400', '80.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'b-complex-sublingual-natures-bounty', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2786, '030768037208', 'FISH OIL (SUNDOWN)', 1, '40.4400', '80.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fish-oil-sundown', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2787, '030768006761', 'FOLATE FOLIC ACID (SUNDOWN)', 1, '16.0200', '35.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'folate-folic-acid-sundown', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2788, '087701408304', 'ECHINACEA COMPLEX (GOOD NEIGHOR PHARM)', 1, '33.6600', '65.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'echinacea-complex-good-neighor-pharm', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2789, '016500586951', 'ONE A DAY MEN TABLET 60', 1, '52.0200', '110.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'one-a-day-men-tablet-60', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2790, '074312333903', 'VALERIAN ROOT (NATURE BOUNTY)', 1, '39.9000', '80.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'valerian-root-nature-bounty', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2791, '074312035951', 'VIT B12 (NATURE BOUNTY)', 1, '41.2200', '70.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vit-b12-nature-bounty', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2792, '311845162618', 'VITAMIN K2 (MASON)', 1, '38.2800', '70.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vitamin-k2-mason', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2793, '369618042018', 'VITAMIN D3 (RELIABLE)', 1, '31.6200', '60.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vitamin-d3-reliable', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2794, '740985275290', 'CALCIUM 600+D3 CAP (21 CENTURY)', 1, '17.8200', '60.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'calcium-600d3-cap-21-century', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2795, '311845136312', 'COD LIVER OIL (MASONS)', 1, '35.5800', '70.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cod-liver-oil-masons', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2796, '087701407864', 'HEALTHY EYES (GOOD NEIGHBOR PHARM)', 1, '30.7800', '60.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'healty-eyes-good-neighbor-pharm', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2797, '087701408144', 'MELATONIN (SUNDOWN)', 1, '27.4800', '55.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'melatonin-sundown', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2798, '310742011197', 'MENTHOLATUM NIGHT VAPOUR RUB', 1, '28.3800', '55.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mentholatum-nightvapour-rub', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2799, '074312535451', 'OPTIMAL SOLUTIONS HAIR-SKIN-NAILS', 1, '56.1600', '120.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'optimal-solutions-hair-skin-nails', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2800, '740985212288', 'SAW PALMETTO (21 CENTURY)', 1, '45.3600', '90.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'saw-palmetto-21-century', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2801, '358914800446', 'SCANDISHAKE POWER  VANILLA', 1, '65.8800', '120.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'scandishake-power-vanilla', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2802, '074312008108', 'VIT E OIL (NATURE BOUNTY)', 1, '52.2000', '80.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vit-e-oil-nature-bounty', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2803, '83576846', 'LORATADINE 10MG 30\' ALMUS', 1, '0.8200', '1.2000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '89.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '83576846', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2804, '311845162458', 'ALPHA LIPOIC ACID 200MG CAPS (MASON)', 1, '51.7800', '80.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'aipha-lipoic-acid-200mg-caps-mason', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2805, '031604012861', 'CHOLESTOFF CAPS (NATURE MADE)', 1, '70.7400', '120.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cholestoff-caps-nature-made', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2806, '51671546', 'DETTOL SOAP BIG', 1, '5.7500', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '51671546', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2807, '80774399', 'FAMI CARE KID BRUSH', 1, '1.0000', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '80774399', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2808, '5017007012498', 'LEVOFLOXACIN 500MG TEVA', 1, '39.0000', '51.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'levofloxacin-500mg-teva', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2809, '57353674', 'LONGRICH TOOTHPASTE', 1, '28.0000', '35.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '57353674', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2810, '44204486', 'L MONTUS', 1, '2.4000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '46.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'l-montus', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2811, '02080207', 'MERCY CREAM', 1, '3.4000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '02080207', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2812, '76039966', 'ORELOX TABLET 200MG', 1, '98.5600', '130.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '76039966', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2813, '48335635', 'JOINTACE', 1, '51.5300', '68.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '48335635', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2814, '5060623371074', 'CLOPIDOGREL 75MG  TORRENT PHARMA', 1, '14.0400', '18.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'clopidogrel-75mg-torrent-pharma', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2815, '5017007024262', 'OMEPRAZOLE 20MG  TEVA', 1, '10.0000', '13.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'omeprazole-20mg-teva', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2816, '72412730', 'MOTILUM TAB', 1, '0.8000', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '72412730', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2817, '45511010', 'ROBAXIN TAB', 1, '1.8200', '2.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '71.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '45511010', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2818, '79267101', 'VALUPAK EVINING PRIMROSE', 1, '14.0000', '19.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '79267101', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2819, '59575380', 'ZURION', 1, '90.0000', '117.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '59575380', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2820, '47378191', 'VIREST CREAM', 1, '10.0000', '13.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '47378191', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2821, '27504285', 'COLDRILIF CAPS', 1, '3.5100', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '28.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '27504285', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2822, '17958616', 'TYLENOL COMBO', 1, '2.7200', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '137.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '17958616', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2823, '78074241', 'IBEX CAPS', 1, '5.7100', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '78074241', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2824, '55755568', 'BINGO SOFTNER', 1, '13.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '55755568', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2825, '09140818', 'FACE MASK PACKS', 1, '8.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '09140818', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2826, '83660824', 'SMA 2 BABY FOOD', 1, '45.0000', '58.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '83660824', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2827, '4103040122452', 'BABY SEBAMED  BODY LOTION', 1, '37.0000', '48.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'baby-sebamed-body-lotion', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2828, '81305537', 'D Artepp Tap 60/480mg', 1, '17.6500', '24.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '81305537', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', 1, '29.7200', '39.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'azomax-tab-500mg-azithromycin', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2830, '95865835', 'AMERICAN APPLE CIDER 946ML', 1, '20.5000', '30.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '95865835', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2831, '38662005', 'ARM SLING', 1, '10.5000', '14.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '38662005', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2832, '00814977', 'PALM SUPPORT', 1, '13.5000', '18.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '00814977', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2833, '59236374', 'ELBOW WRAP', 1, '8.5000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '59236374', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2834, '84549117', 'ELBOW SUPPORT', 1, '12.5000', '17.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '84549117', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2835, '7298464', 'SHOULDER SUPPORT', 1, '23.0000', '32.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '72984640', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2836, '18640990', 'WRIST SUPPORT', 1, '6.0000', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '18640990', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2837, '48609272', 'ANKLE SUPPORT', 1, '6.0000', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '48609272', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2838, '83432545', 'HAND LEATHER GLOVES', 1, '30.0000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '83432545', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2839, '82016078', 'WHITE VINEGAR  473ML', 1, '4.5000', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '82016078', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2840, '04241133', 'GALAXY BROWN SUGAR', 1, '11.2000', '14.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '04241133', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2841, '48020241', 'AMERICAN APPLE CIDER VINEGAR 473ML', 1, '11.0000', '17.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '48020241', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2842, '8904185508110', 'TOBVITAL', 1, '3.0000', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tobvital', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2843, '36223146', 'WHITE VINEGAR  946ML', 1, '8.0000', '14.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '36223146', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2844, '91551468', 'BLUMAX BROWN SUGAR 500G', 1, '4.8000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'blumax-brown-sugar-500g', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2845, '21808608', 'MR SUCCESS BROWN SUGAR', 1, '5.0000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '21808608', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2846, '89375851', 'FELEDENE CAP 20MG', 1, '39.6200', '53.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '89375851', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2847, '13076232', 'SILVER BIRD', 1, '13.8800', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '13076232', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2848, '03279291', 'HI LADY VIRGIN WASH', 1, '16.2000', '21.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '03279291', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2849, '81057936', 'DIPROSON LOTION', 1, '5.8500', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '81057936', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2850, '74664071', 'TRAMADOL 50MG', 1, '10.0000', '13.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '74664071', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2851, '5021265246298', 'WELLWOMAN MAX', 1, '44.0000', '58.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'wellwoman-max', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2852, '15361314', 'CA C1000', 1, '19.0000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '15361314', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2853, '18546021', 'LACTULOSE SYR 250ML (MEDULAC)', 1, '18.5900', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '18546021', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2854, '44570580', 'LORATADINE 10MG  TEVA', 1, '8.9500', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '44570580', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2855, '71871067', 'ESURO WISA', 1, '4.0000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '27.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '71871067', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2856, '42113882', 'KAMAGRA 100MG', 1, '26.0000', '35.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '42113882', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2857, '12087740', 'KAMAGRA 50', 1, '17.0000', '23.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '12087740', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2858, '54574718', 'PREG TEST CASSETTE', 1, '1.0000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '54574718', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2859, '57412085', 'PELODIUM', 1, '0.6700', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '18.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '57412085', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2860, '42456562', 'SEAME SEED', 1, '5.0000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '42456562', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2861, '22042714', 'TYHOID STRIPS', 1, '5.0000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '22042714', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2862, '97602687', 'TYPHOID TEST', 1, '5.0000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '97602687', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2863, '84914687', 'LANCET', 1, '0.2000', '0.3000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '100.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '84914687', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2864, '58170295', 'PARA DENK 250MG SUPP', 1, '1.5200', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '33.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '58170295', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2865, '90832999', 'FINE FINE CREAM', 1, '2.8000', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '90832999', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2866, '6922049789736', 'CALCIUM/IRON/ZINC CHEWABLE TABLETS', 1, '0.8800', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '230.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'calciumironzinc-chewable-tablets', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2867, '035046003340', 'OMEGA 3 1000MG (WINDMILL)', 1, '61.9200', '100.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'omega-3-1000mg-windmill', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2868, '34068126', 'ATENOLOL 100MG  TEVA', 1, '5.0000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '34068126', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2869, '056100080640', 'CREST CHARCOAL TOOTHPASTE', 1, '20.0000', '28.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '48455903', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2870, '312547427555', 'LISTERINE MOUTH WASH 1.5L ', 1, '45.0000', '60.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'listerine-mouth-wash-15l', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2871, '09818574', 'JULIVIT  OATMEAL', 1, '35.0000', '46.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '09818574', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2872, '32128165', 'TUMERIC POWDER 300GM', 1, '25.0000', '33.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '32128165', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2873, '02514917', 'HASHEM ULCER', 1, '30.0000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '02514917', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2874, '09782993', 'HASHEM FIBRIOD SHRINKER', 1, '30.0000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '09782993', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2875, '16802761', 'ORGANIC TUMERIC SOAP', 1, '15.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'organic-tumeric-soap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2876, '19595752', 'TUMERIC TRANSPARENT SOAP', 1, '7.0000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '19595752', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2877, '63666165', 'TUMERIC TRANSPARENT SOAP 75G', 1, '7.0000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '63666165', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2878, '62496613', 'BLACK STRIPE MOLASSES', 1, '20.0000', '26.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '62496613', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2879, '84222807', 'TIGER NUT FLOUR', 1, '30.0000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '84222807', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2880, '21973547', 'CINNAMON POWDER 400G', 1, '35.0000', '46.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '21973547', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2881, '15678231', 'OLIVE OIL IL', 1, '40.0000', '55.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '15678231', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2882, '04381667', 'OLIVE OIL 500ML', 1, '30.0000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '04381667', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2883, '28395309', 'OLIVE OIL 250ML', 1, '15.0000', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '28395309', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2884, '72176503', 'BLACK SEED & TUMERIC CAPS', 1, '30.0000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '72176503', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2885, '94190520', 'MIXTURE OF CAPSULES', 1, '30.0000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '94190520', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2886, '94600524', 'EXTRA VIRGIN OIL HEANI', 1, '25.0000', '35.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '94600524', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2887, '77192027', 'FADA MARTIN', 1, '10.5000', '14.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '77192027', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2888, '06507635', 'NIBIMA', 1, '8.0000', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '06507635', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2889, '59597897', 'ADAMS SECRET CAPS', 1, '20.0000', '27.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '59597897', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2890, '13204101', 'PROXIMEXA SUSP 125MG', 1, '38.6900', '52.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'proximexa-susp-125mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2891, '27589033', 'FOLIC ACID TAB 5MG (CRESCENT) ', 1, '9.5000', '12.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '27589033', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2892, '97440547', 'JET INHALER LOCAL', 1, '4.0000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'jet-inhaler-local', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2893, '66615924', 'FISHERMAN\'S FRIEND', 1, '6.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '17.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '66615924', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2894, '72506315', 'OMEGA H3 LIQUID', 1, '43.0000', '57.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '72506315', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2895, '02492089', 'ICHTHAMMOL OINTMENT', 1, '11.6000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '02492089', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2896, '77311138', 'NIVEA LOTION NUTURAL FAIRNESS 250ML S/S ', 1, '14.0000', '17.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nivea-lotion-250ml-ss', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2897, '26620183', 'GARLIC POWDER', 1, '18.0000', '23.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '26620183', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2898, '85738812', 'GINGER POWDER', 1, '10.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '85738812', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2899, '51017186', 'DAWADAWA POWDER', 1, '12.0000', '17.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '51017186', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2900, '54088146', 'PREKESE POWDER', 1, '20.0000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '54088146', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2901, '93195296', 'CHILLI PEPPER 200MG S/S', 1, '10.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'chilli-pepper-200mg-ss', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2902, '30157755', 'TIGER  NUTS POWDER 400G', 1, '20.0000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '30157755', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2903, '64476421', 'LIV 52 TABS', 1, '32.0000', '42.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '64476421', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2904, '85860104', 'LIV 52 SYRUP', 1, '19.6100', '26.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '85860104', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2905, '8222405', 'AMILODIPINE 10MG TEVA', 1, '7.5000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'amilodipine-10mg-teva', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2906, '74619015', 'M&B 760 TAB', 1, '2.6000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '50.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '74619015', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2907, '78214441', 'LUMATRONA SUSP 60ML', 1, '6.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lumatrona-susp-60ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2908, '78138195', 'MAGACID FASTMELT', 1, '0.2700', '0.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '141.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '78138195', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2909, '94340911', 'CLINDAMYCIN 300MG CAPS KAMA', 1, '10.0000', '13.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '94340911', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2910, 'FOO', 'OLIVE LEAVES', 1, '10.0000', '14.0000', '2.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 15, '10.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'Olive-leaves', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2911, '000337', 'MINT PEPPERMINT LEAVES', 1, '10.0000', '14.0000', '2.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 15, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'mint-peppermint-leaves', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2912, '003372', 'SESAME SEED BROWN (FRIED)', 1, '10.0000', '12.0000', '2.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 15, '10.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '000337', NULL, NULL, NULL, NULL, 1, 1, 0, 'sesame-seed-brown-fried', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2914, '000337-4', 'SAGE LEAVES', 1, '10.0000', '14.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 15, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '000337-4', NULL, NULL, NULL, NULL, 1, 1, 0, 'sage-leaves', NULL, '0.0000', NULL, 0, 0, '00', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (2915, '21109477', 'ASPIRIN CARDIO 100MG', 1, '15.4500', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '21109477', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2916, '85432536', 'LONART DS TAB', 1, '14.7800', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '85432536', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2917, '02413027', 'FLEMEX ADULT SYRUP', 1, '7.3500', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '02413027', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2918, '12473513', 'CILOXAN 0.3%', 1, '14.9400', '20.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '12473513', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2919, '71113918', 'PHLEBODIA 600MG', 1, '2.9000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '40.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'phlebodia-600mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2920, '95187029', 'VIT BCO STRONG (KAKA)', 1, '22.0000', '29.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vit-bco-strong-kaka', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2921, '91392147', 'CARBOZAP ADULT SYRUP', 1, '4.9000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'carbozap-adult-syrup', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2922, '93007183', 'BISOPROLOL 5MG', 1, '8.2000', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '93007183', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2923, '67740529', 'BELLS CHN COUGH SYR', 1, '11.1200', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '67740529', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', 1, '6.3000', '8.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '29806174', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2925, '77810587', 'WHITFIELD OINTMENT', 1, '3.9900', '5.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'whitfield-ointment', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2926, '21772628', 'OMEPRAZOLE (DR REDDY\'S)', 1, '20.0000', '26.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'omeprazole-dr-reddys', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2927, '61707442', 'FERROUS SULFATE (MAJOR)', 1, '14.7000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '61707442', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2928, '36920821', 'FISH OIL (MAJOR)', 1, '42.3000', '100.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'fish-oil-major', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2929, '740985212493', 'GINGKO BILOBA', 1, '46.7300', '90.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'gingko-biloba', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2930, '54193814', 'MELATONIN (GOOD NEIGHBOR PHARM)', 1, '37.7400', '70.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '54193814', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2931, '98473972', 'LUTEIN 6MG SOFTGEL (MASON0', 1, '38.0400', '70.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '98473972', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2932, '91140446', 'ONE A DAY ADV MEN 50+ TAB 65CT', 1, '62.0200', '120.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '91140446', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2933, '47838827', 'LAMASIL CREAM 15MG', 1, '56.0500', '74.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lamasil-cream-15mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2934, '74475924', 'O YES FEMINNE WASH 60ML', 1, '9.8000', '13.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '74475924', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2935, '15629840', 'LUEX ADULT CHESTY COUGH', 1, '7.9400', '10.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '15629840', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2936, '30787578', 'MALIN ADULT COUGH', 1, '6.0400', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '30787578', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2937, '2745570', 'MALIN BABY COUGH', 1, '5.3700', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '27455709', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2938, '10623743', 'POFAKOF JUNIOR SYRP', 1, '6.7900', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '10623743', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2939, '07196283', 'POFAKOF ADULT SYRP', 1, '7.1100', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '07196283', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2940, '42955737', 'DIPHEX COUGH SYRP', 1, '6.3600', '8.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '42955737', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2941, '60137035', 'FUMET SUSPENSION', 1, '2.6600', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '60137035', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2942, '53692521', 'LETACAM CAPS', 1, '0.4900', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '53692521', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2943, '94222566', 'MIST EXPECT SEED', 1, '2.5000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '94222566', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2944, '79280298', 'ZINNAT SUSP 50ML', 1, '51.9700', '69.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '79280298', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2945, '07580425', 'CIPROLEX EYE OINTMENT', 1, '9.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'ciprolex-eye-ointment', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2946, '71670819', 'HEALTHLINK HAIR,NAIL&SPON TABS', 1, '37.7900', '50.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'healthlink-hairnailspon-tabs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2947, '53160416', 'BASE COUGH SYRP', 1, '5.5000', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '53160416', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2948, '18028058', 'PREGNANCY TEST KIT', 1, '0.9000', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '159.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pregnancy-test-kit', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2949, '91005439', 'LOFNAC BALM', 1, '5.5000', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '91005439', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2950, '98068395', 'CHLORAMPHENICOL (FICHLOR)', 1, '1.4000', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '98068395', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2951, '98935572', 'LETAMOL TAB', 1, '0.3700', '0.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-53.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '98935572', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2952, '11288003', 'AMPICLOX ECL', 1, '2.4000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '11288003', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2953, '85315538', 'CLOPIDOGREL 75MG  FRELET', 1, '8.0000', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '85315538', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2954, '42250057', 'BE4 BE4 INSTANT', 1, '27.0000', '36.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '42250057', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2955, '51481408', 'LONART TAB 24\'S', 1, '4.8000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lornat-tab-24s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2956, '6001051003198', 'NIVEA BODY LOTION REPAIR & CARE 72', 1, '22.0000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nivea-body-lotion-repair-care-72', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2957, '4005900637420', 'NIVEA OIL IN LOTION', 1, '22.0000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nivea-oil-in-lotion', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2958, '18073468', 'WELCHS TOFFEE', 1, '1.0000', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'welchs-toffee', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2959, '18835366', 'YAZZ PANTY LINER', 1, '4.0000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '18835366', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2960, '27098703', 'COTTON BUD B/S', 1, '9.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '27098703', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2961, '94141314', 'COTTON BUD S/S', 1, '3.0000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cotton-bud-ss', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2962, '17785722', 'MOSQUITO REPELLENT', 1, '4.0000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '17785722', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2963, '58830438', 'COMFORT SOFTNER S/S', 1, '13.0000', '16.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'comfort-softner-ss', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2964, '65893205', 'LUCOZADE BOTTLE S/S', 1, '6.6000', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lucozade-bottle-ss', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2965, '86540789', 'LUCOZADE CAN', 1, '5.0000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '86540789', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2966, '77287768', 'COMFORT SOFTNER BIG', 1, '45.0000', '50.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '77287768', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2967, '73607781', 'HONEY MEADOW 250ML', 1, '10.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'honey-meadow-250ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2968, '59467858', 'HONEY MEADOW 500ML', 1, '18.0000', '25.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'honey-meadow-500ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2969, '6009826820414', 'TETMOSOL BABY SOFT SOAP', 1, '5.0000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tetmosol-baby-soft-soap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2970, '6009826820018', 'TETMOSOL MEDICATED SOAP (CITRONELLA/COOL POWER)', 1, '5.0000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tetmosol-medicated-soap-citronella', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2971, '36770680', 'JOHNSON BABY SOAP', 1, '3.5000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '36770680', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2972, '13709725', 'BENYLIN 4 FLU SPRAY 100ML', 1, '22.7100', '30.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '13709725', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2973, '43393257', 'ALKA SELTZER 10.S', 1, '4.3000', '5.6000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'alka-seltzer-10s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2974, '33602978', 'EASY CHECK EARLY PREGNANCY TEST', 1, '5.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '21.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '33602978', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2975, '25893453', 'EASY CHECK OVULATION TEST KIT', 1, '6.0000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'easy-check-ovulation-test-kit', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2976, '08146148', 'ACIC LOVIR TAB', 1, '14.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'acic-lovir-tab', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2977, '99979429', 'DRIED MINT LEAVES', 1, '8.0000', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '99979429', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2978, '79128358', 'CERELAC TIN MILLET', 1, '14.0000', '17.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '79128358', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2979, '74644667', 'NIVEA SPRAY 200ML', 1, '15.0000', '17.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nivea-spray-200ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2980, '62456720', 'NIVEA AFTER SHAVE/ SHAVE FOAM', 1, '19.0000', '23.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nivea-after-shave-shave-foam', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2981, '81503059', 'NIVEA FACE CARES', 1, '28.0000', '34.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'nivea-face-cares', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2982, '70783681', 'SURE ROLL ON', 1, '6.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '17.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '70783681', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2983, '27895278', 'CUSSONS BABY SOAP', 1, '3.0000', '4.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cussons-baby-soap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2984, '72867652', 'METRO SUSP (M&G)', 1, '3.1500', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '72867652', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2985, '92371428', 'FLAGYL SUSP 200ML', 1, '28.1000', '37.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'flagyl-susp-200ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2986, '39982987', 'PANACIN TAB', 1, '0.7700', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '39982987', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2987, '01970843', 'SALBUTAMOL 4MG 500\' ECL', 1, '0.7500', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'salbutamol-4mg-500-ecl', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2988, '00550870', 'DARAPRIM TAB', 1, '7.1000', '9.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '30.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '00550870', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2989, '30747371', 'ALUMINIUM HYDRO TAB (M&G)', 1, '0.9200', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '30747371', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2990, '71484949', 'ENTRAMOL 500 TAB', 1, '1.1200', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '71484949', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2991, '46377274', 'ZINTAB 10MG', 1, '0.5700', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '99.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '46377274', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2992, '39433029', 'PANADOL TAB PLAIN', 1, '2.6000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '22.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '39433029', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2993, '86417416', 'SICAZINK TONIC 200ML', 1, '13.0000', '17.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'sicazink-tonic-200ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2994, '03462805', 'ESKYPAN TAB ', 1, '33.0000', '44.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '03462805', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2995, '32309749', 'NAT B CAPS', 1, '39.7000', '52.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '32309749', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2996, '68586365', 'VOMI 10MG', 1, '1.7800', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '68586365', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2997, '69518244', 'VOMIT 30MG', 1, '1.9800', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '69518244', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2998, '20603397', 'ZIRTEK 10MG', 1, '3.6000', '4.9000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '14.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'zirtek-10mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (2999, '72534299', 'ALPHA GARLIC CAPS', 1, '13.0000', '17.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '72534299', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3000, '69359672', 'FESOLATE TAB UK', 1, '6.0000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '69359672', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3001, '89996055', 'COTRIM TAB LETAP', 1, '1.5000', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '50.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'cotrim-tab-letap', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3002, '94707960', 'FLEMEX CHILD SYR', 1, '6.2000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '94707960', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3003, '19346811', 'SPIRIT 200ML MALTITI', 1, '3.5000', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '19346811', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3004, '72625723', 'CLARITHROMYCIN 500MG SANDOZ', 1, '30.0000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'clarithromycin-500mg-sandoz', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3005, '06203049', 'OSTEOCARE SYR INDIA', 1, '8.0000', '10.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'osteocare-syr-india', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3006, '29763683', 'OSTEOCARE TAB INDIA', 1, '8.0000', '10.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '29763683', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3007, '23234633', 'FOLIC ACID TAB APS 28\'', 1, '7.2500', '10.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '23234633', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3008, '55554888', 'PHILEBODIA CAPS', 1, '56.0000', '74.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '55554888', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3009, '25462573', 'B CO STRONG KRIKA ORIGINAL', 1, '22.0000', '29.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'b-co-strong-krika-original', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3010, '81744974', 'ZIRTEK SOLUTION', 1, '42.0000', '55.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '81744974', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3011, '26812806', 'ARTHROTEC TABS 75MG 20\'S', 1, '3.7800', '5.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '40.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'arthrotec-tabs-75mg-20s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3012, '2568423', 'POLYGEL SYR 120ML', 1, '4.7000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '25684238', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3013, '60394518', 'INOXIME TAB 200MG', 1, '8.0000', '11.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'inoxime-tab-200mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3014, '02636584', 'DAY NURSE LIQUID 240ML', 1, '55.2200', '73.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '02636584', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3015, '67021005', 'BRAINWISE OMEGA3 SYR150ML', 1, '49.0000', '65.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'brainwise-omega3-syr150ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3016, '26681275', 'DREZ OINTMENT 30G', 1, '14.5200', '19.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '26681275', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3017, '67524547', 'BASECOLD SYR', 1, '3.9000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '67524547', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3018, '27169206', 'PARA SYR EXETER', 1, '4.9100', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '27169206', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3019, '72127749', 'HEPTOLIFE SYR 200ML', 1, '7.8000', '10.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '72127749', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3020, '56022580', 'ARZIGLOBIN SYR', 1, '11.2100', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '56022580', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3021, '52425979', 'BENYLIN WET COUGH MENTHOL SYR 100ML', 1, '25.2100', '33.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '52425979', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3022, '51946298', 'SEDALYN ADULT', 1, '4.1200', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '51946298', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3023, '83478580', 'MALIN JUNIOR', 1, '5.6400', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '83478580', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3024, '02807617', 'COLGATE CHARCOAL PASTE', 1, '5.9000', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '02807617', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3025, '3587770', 'COLGATE BRUSH', 1, '2.3000', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '35877701', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3026, '94515456', 'YAZZ TOOTH BRUSH', 1, '1.0000', '1.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '94515456', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3027, '21467766', 'LUX SOAP', 1, '5.0000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '21467766', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3028, '19459821', 'MEDISOFT SOAP', 1, '2.0000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '19459821', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3029, '62617189', 'ASCORYL PLUS SYR 125ML', 1, '4.7700', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '62617189', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3030, '90744167', 'MAAME DAGOMBA BITTERS', 1, '9.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '90744167', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3031, '66880065', 'MAAME DAGOMBA CAPSULES', 1, '13.0000', '17.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'maame-dagomba-capsules', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3032, '34566585', 'MAAME DAGOMBA MACHO CAPSULES', 1, '13.0000', '17.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '34566585', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3033, '14789418', 'HUICHUN CAPSULES', 1, '22.0000', '30.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '14789418', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3034, '33733514', 'ARABA BAZAN', 1, '17.0000', '23.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '33733514', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3035, '31081429', 'LAWSON HERBAL', 1, '9.5000', '13.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '31081429', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3036, '73219310', 'YAFO KOO BITTERS', 1, '9.5000', '13.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '73219310', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3037, '02744503', 'LORATADINE (CLARITINE) SYRUP 100ML', 1, '46.9000', '62.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'loratadine-claritine-syrup-100ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3038, '45009505', 'KY JELLY 50G', 1, '25.0000', '33.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '45009505', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3039, '29292273', 'ADUSA HERBAL MIXTURE', 1, '13.5000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '29292273', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3040, '41228459', 'ADUSA HERBAL CAPS', 1, '13.5000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '41228459', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3041, '14432869', 'DORCO RAZORS', 1, '1.6000', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '39.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '14432869', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3042, '84936848', 'S/SEAS CAPS 30\'S', 1, '27.1000', '36.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '84936848', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3043, '56894380', 'BEAUTEX COLLAGEN 250MG TABS', 1, '65.0000', '86.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '56894380', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3044, '49228950', 'DIAZEPAM TABS 5MG', 1, '0.4000', '0.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '49.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '49228950', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3045, '00432970', 'CETRIZAN SYRUP 60ML', 1, '5.4200', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '00432970', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3046, '45723019', 'SALINE NASAL DROP 0.90 10ML', 1, '5.4000', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '45723019', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3047, '01534299', 'AVAMYS NASAL SPRAY 7.5MCG', 1, '52.0200', '69.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '01534299', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3048, '13411031', 'REFRESH TEAR EYE DROP 15ML', 1, '46.0000', '61.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '13411031', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3049, '05338053', 'CHILDREN COUGH SYR 100ML', 1, '10.9000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '05338053', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3050, '01809572', 'EXCIPRO DEX EYE/EYE DROPS 10ML', 1, '9.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '01809572', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3051, '84906766', 'DERMOVATE 25G', 1, '35.3300', '47.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '84906766', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3052, '37443992', 'ROC MIXTURE 250', 1, '10.5000', '14.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '37443992', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3053, '83466743', 'IBUPROFEN DENK 600MG TAB', 1, '1.4600', '2.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '40.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 27, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '83466743', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3054, '23818302', 'AZIRON 500MG TABS', 1, '57.7500', '76.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '23818302', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3055, '59922474', 'L MONTUS KIDS', 1, '2.1800', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '59922474', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3056, '13783530', 'WELLMAN 50+ CAPS', 1, '52.4500', '69.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'wellman-50-caps', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3057, '99625622', 'DUCOLAX SUPP 10MG 12\'', 1, '2.7000', '4.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '24.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '99625622', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3058, '28458064', 'LETAVIN 500MG', 1, '4.3000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '28458064', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3059, '98695319', 'INDOMETHACIN', 1, '0.4500', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'indomethacin', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3060, '57292195', 'DIPHEX JNR', 1, '4.9000', '6.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '57292195', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3061, '71514531', 'DIPHEX BRONCHO& MUCOLYTIC SYR', 1, '6.3000', '8.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 16, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'diphex-broncho-mucolytic-syr', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3062, '03146209', 'DIPHEX ANTITUSSIVE & EXP SYR', 1, '6.0700', '8.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '03146209', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3063, '77753803', 'ORGANIC OILS', 1, '9.0000', '15.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '77753803', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3064, '23311985', 'SOBOLO CUT CUT', 1, '2.0000', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '23311985', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3065, '32116167', 'TUMERIC ROOT CAPS', 1, '30.0000', '40.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '32116167', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3066, '87116727', 'TIXYLIX TODDER SYR', 1, '24.6400', '33.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '87116727', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3067, '21042084', 'ESKAZEPAM TAB ( DIAZEPAM) 5MG', 1, '0.7000', '1.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '46.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '21042084', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3068, '18022517', 'VIT FORTE VITAMIN C & ZINC', 1, '14.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'vit-forte-vitamin-c-zinc', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3069, '45207250', 'SANTEX HAND SANITIZER', 1, '5.0000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '45207250', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3070, '37547840', 'LOCUZADE BOTTLE B/S', 1, '12.5000', '16.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'locuzade-bottle-bs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3071, '14199456', 'LUCOSADE BOTTLE B/S', 1, '12.5000', '16.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '14199456', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3072, '59951063', 'KIDS FACE MASK PACK', 1, '14.0000', '18.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '59951063', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3073, '85425535', 'CUSSIONS BABY POWDER S/S', 1, '5.5000', '7.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '85425535', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3074, '67589199', 'ORAL B TOOTH BRUSH', 1, '2.0000', '3.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '67589199', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3075, '91908705', 'CUSSIONS BABY SOAP', 1, '2.0000', '3.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '91908705', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3076, '57849888', 'CUSSIONS BABY OIL S/S', 1, '5.0000', '7.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '57849888', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3077, '79135161', 'JOHNSON BABY POWDER S/S', 1, '11.0000', '13.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'johnson-baby-powder-ss', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3078, '11187948', 'KLEANZ SANITIZER 150ML', 1, '3.2000', '4.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '11187948', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3079, '27605280', 'EYECROM EYE DROPS 5ML', 1, '9.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '27605280', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3080, '73286754', 'DEXAMYCIN DROP', 1, '8.5000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '73286754', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3081, '85096507', 'TOBRACIN EYE DROPS 5ML', 1, '9.5000', '12.5000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tobracin-eye-drops-5ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3082, '13230304', 'TIMOLOL MALEATE', 1, '6.0000', '9.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '13230304', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3083, '43701144', 'VITAMINE K1 INJ 1MG/0.5ML', 1, '4.2000', '6.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, '43701144', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3084, '79309863', 'TRANEXAMIC ACID INJ 100MG/5ML', 1, '9.0000', '12.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'tranexamic-acid-inj-100mg5ml', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3085, '86140157', 'APPLE CIDER VINEGER B/S', 1, '55.0000', '72.0000', '0.0000', 'no_image.png', 1, NULL, '', '', '', '', '', '', '-1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'apple-cider-vineger-bs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3086, '5010058089785', 'PREGNACARE 19S', 1, '47.0000', '16.0000', '20.0000', 'no_image.png', 2, NULL, 'CF1', 'CF2', 'CF3', 'CF4', 'CF5', 'CF6', NULL, NULL, 1, '', NULL, 'code25', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'pregnacare-19s', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3087, '8906009234915', 'LONART FORTE TABS', 1, '10.5000', '0.0000', '20.0000', '', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code25', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'lonart-forte-tabs', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3088, '1234', 'test001', 1, '0.8800', '62.0000', '20.0000', 'no_image.png', 2, NULL, 'CF1', 'CF2', 'CF3', 'CF4', 'CF5', 'CF6', NULL, 1, 1, NULL, NULL, '1234', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'test001', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3089, '1235', 'LONART FORTE TABS', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1235', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lonart-forte-tabs1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3090, '1236', 'LOFNAC SUPP 100MG', 1, '9.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1236', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lofnac-supp-100mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3091, '1237', 'LONART DS TABS', 1, '19.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1237', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lonart-ds-tabs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3092, '1238', 'LONART SUSP', 1, '13.4400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1238', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lonart-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3093, '1239', 'MENTAT TABS', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1239', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mentat-tabs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3094, '1240', 'LOSAR-DENK 100', 1, '7.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1240', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'losar-denk-100', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3095, '1241', 'METROLEX-F TABS', 1, '7.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1241', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'metrolex-f-tabs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3096, '1242', 'LUEX ADULT DRY', 1, '4.3600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1242', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'luex-adult-dry', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3097, '1243', 'LUEX CHILD DRY', 1, '6.7800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1243', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'luex-child-dry', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3098, '1244', 'METFORMIN DENK 500MG', 1, '55.7000', '74.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code25', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'metformin-denk-500mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3099, '1245', 'LYRICA 150MG', 1, '23.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1245', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lyrica-150mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3100, '1246', 'M2 TONE', 1, '0.1500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1246', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'm2-tone', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3101, '1247', 'motilium', 1, '6.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1247', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'motilium', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3102, '1248', 'MULTIVITE', 1, '11.8200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1248', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'multivite', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3103, '1249', 'MAGACID PLUS', 1, '19.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1249', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'magacid-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3104, '1250', 'MYCOLEX CREAM', 1, '3.0500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1250', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mycolex-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3105, '1251', 'NATRILIX SR 1.5MG', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1251', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'natrilix-sr-15mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3106, '1252', 'MYCROGYNON Fe', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1252', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mycrogynon-fe', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3107, '1253', 'MR Q', 1, '13.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1253', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mr-q', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3108, '1254', 'NIFECARD XL 30', 1, '21.6300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1254', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nifecard-xl-30', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3109, '1255', 'NEO HYCOLEX5ML', 1, '10.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1255', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'neo-hycolex5ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3110, '1256', 'NCP200ML', 1, '23.4800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1256', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ncp200ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3111, '1257', 'NERVE AND BONE', 1, '0.6500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1257', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nerve-and-bone', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3112, '1258', 'NIZORAL CREAM', 1, '6.0700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1258', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nizoral-cream1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3113, '1259', 'NO SPA40MG', 1, '49.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1259', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'no-spa40mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3114, '1260', 'OROLEX100MG', 1, '13.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1260', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'orolex100mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3115, '1261', 'POLYGYNAX', 1, '3.0500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1261', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'polygynax', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3116, '1262', 'AMOKSIKLAV228', 1, '1.5400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1262', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoksiklav228', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3117, '1263', 'AMOXYCILLIN SUSP MG', 1, '47.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1263', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoxycillin-susp-mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3118, '1264', 'PARA DENK250 SUPPO', 1, '94.2800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1264', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'para-denk250-suppo', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3119, '1265', 'PREGNACARE CONCEPTION', 1, '22.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1265', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pregnacare-conception', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3120, '1266', 'PREGNACARE PLUS', 1, '11.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1266', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pregnacare-plus1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3121, '1267', 'PILEX OINT', 1, '14.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1267', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pilex-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3122, '1268', 'ALPHA GARLIC CAPS', 1, '25.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1268', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'alpha-garlic-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3123, '1269', 'ACTINAC TAB', 1, '94.5600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1269', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'actinac-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3124, '1270', 'PERFECTIL', 1, '1.2500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1270', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'perfectil', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3125, '1271', 'AMARYL4MG', 1, '0.2600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1271', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amaryl4mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3126, '1272', 'ANAFRANIL25', 1, '0.2900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1272', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'anafranil25', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3127, '1273', 'APC 4S', 1, '18.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1273', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'apc-4s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3128, '1274', 'ALUMINIUM HYDROXIDE', 1, '18.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1274', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aluminium-hydroxide', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3129, '1275', 'BIOFERON SRP', 1, '11.6400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1275', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bioferon-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3130, '1276', 'BIOFGERON CAPS', 1, '10.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1276', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'biofgeron-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3131, '1277', 'BONISAN', 1, '11.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1277', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bonisan', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3132, '1278', 'BELLS CHILDREN,S COUGH', 1, '18.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1278', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bells-childrens-cough', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3133, '1279', 'BORGES125', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1279', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'borges125', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3134, '1280', 'BORGES250ML', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1280', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'borges250ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3135, '1281', 'CAMEL500', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1281', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'camel500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3136, '1282', 'CAMEL 250ML', 1, '2.8300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1282', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'camel-250ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3137, '1283', 'CAMEL 125ML', 1, '26.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1283', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'camel-125ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3138, '1284', 'ANUSOL SUPPOS', 1, '5.5300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1284', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'anusol-suppos', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3139, '1285', 'BIG BEN', 1, '9.6500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1285', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'big-ben', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3140, '1286', 'ATORVASTATIN10MG', 1, '14.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1286', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'atorvastatin10mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3141, '1287', 'ATORVASTATIN20MG', 1, '35.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1287', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'atorvastatin20mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3142, '1288', 'BONAPLEX250MLS', 1, '11.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1288', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bonaplex250mls', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3143, '1289', 'BONGELA CHILD', 1, '32.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1289', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bongela-child', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3144, '1290', 'BELLS BABY COUGH', 1, '27.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1290', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bells-baby-cough', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3145, '1291', 'BONGELA ADULT', 1, '23.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1291', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bongela-adult', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3146, '1292', 'BETALOC50MG', 1, '22.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1292', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'betaloc50mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3147, '1293', 'CATAFLAM 50MG', 1, '3.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1293', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cataflam-50mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3148, '1294', 'AXACEF 250', 1, '9.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1294', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'axacef-250', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3149, '1295', 'AXACEF 500', 1, '5.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1295', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'axacef-500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3150, '1296', 'VIT B DENK', 1, '141.7100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1296', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vit-b-denk1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3151, '1297', 'ATACAND16MG', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1297', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'atacand16mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3152, '1298', 'ATACAND PLUS 16/12.5MG', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1298', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'atacand-plus-16125mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3153, '1299', 'TEETHING MIXTURE ERNEST', 1, '12.5100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1299', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'teething-mixture-ernest', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3154, '1300', 'SURFAZ-SN TRIPLE  ACTION CREAM', 1, '5.6200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1300', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'surfaz-sn-triple-action-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3155, '1301', 'TOUCH AND GO (TOOTH ACHE SOLUTION) AYTON329', 1, '55.2100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1301', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'touch-and-go-tooth-ache-solution-ayton329', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3156, '1302', 'AZIROCIN CAPS USP 250 MG', 1, '7.4500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1302', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'azirocin-caps-usp-250-mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3157, '1303', 'AUGMENTIN  625 MG', 1, '1.9700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1303', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'augmentin-625-mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3158, '1304', 'AZIRON AZITHROMYCYCIN TAB USP 500 MG', 1, '8.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1304', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aziron-azithromycycin-tab-usp-500-mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3159, '1305', 'TADOL 50MG TRAMADOL HYDROCHLORIDE KRKA', 1, '12.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1305', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tadol-50mg-tramadol-hydrochloride-krka', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3160, '1306', 'CORORANGE HAEMATINIC CAPS SOFTGELS', 1, '3.0500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1306', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cororange-haematinic-caps-softgels', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3161, '1307', 'CATAFLAM 50MG DICLOFENAC. KAL ANTI-INALGESIC', 1, '2.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1307', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cataflam-50mg-diclofenac-kal-anti-inalgesic', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3162, '1308', 'AMOXYCILLIN SUSP ORAL BP 125/5ml', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1308', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoxycillin-susp-oral-bp-1255ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3163, '1309', 'CO-DIOVAN 80/12.5MG', 1, '14.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1309', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'co-diovan-80125mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3164, '1310', 'STOPKOF COUGH SYRUP ADULT FORMULA', 1, '18.2100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1310', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stopkof-cough-syrup-adult-formula', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3165, '1311', 'AMOKSIKLAV  228.5 ML ORAL SUSP', 1, '335.0300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1311', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoksiklav-2285-ml-oral-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3166, '1312', 'CLOTRI-DENK 100 VAGINAL TABS', 1, '0.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1312', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'clotri-denk-100-vaginal-tabs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3167, '1313', 'SARETTO TABS 15MG', 1, '9.5100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1313', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'saretto-tabs-15mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3168, '1314', 'ZINTAB 10ML', 1, '12.7400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1314', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zintab-10ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3169, '1315', 'TRIX ORIS S/S', 1, '72.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1315', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'trix-oris-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3170, '1316', 'ZINCOFER LIQUIED HAEMATINIC 200ML', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1316', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zincofer-liquied-haematinic-200ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3171, '1317', 'ZITHROMAX  SUSP', 1, '7.9700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1317', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zithromax-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3172, '1318', 'WORMPLEX 400 SUSP. 20ML', 1, '18.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1318', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wormplex-400-susp-20ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3173, '1319', 'SE\'CLEAR EYE/EAR DROP', 1, '57.0500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1319', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'seclear-eyeear-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3174, '1320', 'ZINCOVIT TAB', 1, '14.5300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1320', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zincovit-tab1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3175, '1321', 'WELLBABY MULTI-VIT LIQ', 1, '23.0900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1321', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wellbaby-multi-vit-liq', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3176, '1322', 'VERMOX SUSP', 1, '116.3300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1322', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vermox-susp1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3177, '1323', 'MOTILIUM 10 MG 30 TABS ORAL JANSSEN', 1, '8.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1323', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'motilium-10-mg-30-tabs-oral-janssen', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3178, '1324', 'TAVANIC 500MG LEVAFLAUZACIN sanofi', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1324', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tavanic-500mg-levaflauzacin-sanofi', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3179, '1325', 'bisoprolol fumarate 2.5mg tabs sandox', 1, '4.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1325', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bisoprolol-fumarate-25mg-tabs-sandox', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3180, '1326', 'POLYFER SYR FORTE  50ML', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1326', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'polyfer-syr-forte-50ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3181, '1327', 'SULFUR OINTMENT DANEX', 1, '7.7300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1327', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sulfur-ointment-danex', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3182, '1328', 'TAGERA FORTE', 1, '1.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1328', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tagera-forte', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3183, '1329', 'PRIMOLUT N', 1, '1.3200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1329', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'primolut-n', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3184, '1330', 'PARABRU', 1, '1.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1330', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'parabru', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3185, '1331', 'CITRO C', 1, '25.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1331', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'citro-c', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3186, '1332', 'COLODIUM', 1, '9.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1332', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'colodium', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3187, '1333', 'COLESTOP10MG', 1, '5.4200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1333', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'colestop10mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3188, '1334', 'CONGESTYL SRP', 1, '18.2100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1334', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'congestyl-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3189, '1335', 'CONGESTYL TAB', 1, '5.9100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1335', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'congestyl-tab1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3190, '1336', 'CLOTRI DENK CREAM', 1, '1.2500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1336', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'clotri-denk-cream1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3191, '1337', 'DALACIN 300MG ORIGINAL', 1, '25.5400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1337', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dalacin-300mg-original', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3192, '1338', 'ANAFRANIL25', 1, '25.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1338', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'anafranil25', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3193, '1339', 'DEEP HEAT SPRAY 150ML', 1, '22.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1339', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'deep-heat-spray-150ml1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3194, '1340', 'DEEP FREEZE SPRAY 150ML', 1, '42.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1340', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'deep-freeze-spray-150ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3195, '1341', 'TENOX5MG', 1, '12.0200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1341', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tenox5mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3196, '1342', 'CIPRINOL 500', 1, '4.4700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1342', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ciprinol-500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3197, '1343', 'COOL EYES', 1, '7.3200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1343', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cool-eyes', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3198, '1344', 'CLOSE UP140G', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1344', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'close-up140g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3199, '1345', 'CORORANGE SRP', 1, '25.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1345', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cororange-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3200, '1346', 'COTTON WOOL200G', 1, '2.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1346', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cotton-wool200g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3201, '1347', 'AZOMAX 500', 1, '3.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1347', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'azomax-500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3202, '1348', 'TADOL 100', 1, '49.2100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1348', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tadol-100', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3203, '1349', 'VAGINAX CREAM', 1, '18.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1349', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vaginax-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3204, '1350', 'ZINNAT 250 TAB', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1350', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zinnat-250-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3205, '1351', 'CIPROLEX TZ', 1, '4.6500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1351', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ciprolex-tz', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3206, '1352', 'VITAFORCE', 1, '3.2300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1352', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vitaforce', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3207, '1353', 'ZESTRIL 20MG', 1, '6.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1353', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zestril-20mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3208, '1354', 'ZESTRIL 10MG', 1, '2.4300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1354', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zestril-10mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3209, '1355', 'CRESTOR 20', 1, '4.0200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1355', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'crestor-20', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3210, '1356', 'NEUROBION', 1, '28.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1356', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'neurobion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3211, '1357', 'CO APPROVEL 150/12.5', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1357', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'co-approvel-150125', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3212, '1358', 'OSTEOCARE ORG TAB', 1, '23.8500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1358', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'osteocare-org-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3213, '1359', 'TOBRADEX EYE DROP', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1359', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tobradex-eye-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3214, '1360', 'ZINACEF 750', 1, '9.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1360', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zinacef-750', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3215, '1361', 'ANGEL CREAM', 1, '0.2300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1361', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'angel-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3216, '1362', 'CASTOR OIL', 1, '2.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1362', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'castor-oil1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3217, '1363', 'ZINTAB 20MG 1000S', 1, '6.8600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1363', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zintab-20mg-1000s1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3218, '1364', 'COLDRELIEF CAPS', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1364', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'coldrelief-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3219, '1365', 'CIROTAMIN SRP', 1, '1.3800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1365', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cirotamin-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3220, '1366', 'TETRA OINT', 1, '1.3100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1366', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tetra-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3221, '1367', 'STREPSILS ORG', 1, '19.1100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1367', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'strepsils-org', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3222, '1368', 'STREPTOL54/6', 1, '15.8500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1368', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'streptol546', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3223, '1369', 'VENTOLIN EVOHALER', 1, '9.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1369', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ventolin-evohaler', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3224, '1370', 'V-FIRM', 1, '5.5300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1370', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'v-firm1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3225, '1371', 'WARFARIN 5MG', 1, '20.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1371', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'warfarin-5mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3226, '1372', 'WARFARIN 1MG', 1, '27.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1372', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'warfarin-1mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3227, '1373', 'TRES ORIX 250ML', 1, '28.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1373', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tres-orix-250ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3228, '1374', 'WELLMAN CAPS', 1, '26.2200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1374', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wellman-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3229, '1375', 'WELLWOMAN CAPS', 1, '5.3500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1375', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wellwoman-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3230, '1376', 'VENTOLIN INHALER', 1, '1.3800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1376', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ventolin-inhaler', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3231, '1377', 'WORMPLEX SUSP', 1, '2.3500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1377', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wormplex-susp1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3232, '1378', 'VOLLTFAST 50MG', 1, '3.0000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code25', NULL, '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, 0, 'volltfast-50mg', NULL, '0.0000', NULL, 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`, `hide_pos`) VALUES (3233, '1379', 'TOTHEMA', 1, '40.3500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1379', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tothema', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3234, '1380', 'GVITHER INJ', 1, '51.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1380', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gvither-inj', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3235, '1381', 'PROVIRON', 1, '86.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1381', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'proviron', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3236, '1382', 'PROSTACARE', 1, '23.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1382', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'prostacare', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3237, '1383', 'ROCEPHINE INJ 2G', 1, '20.2400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1383', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rocephine-inj-2g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3238, '1384', 'RHINATHIOL ADULT BLUE', 1, '2.2800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1384', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rhinathiol-adult-blue', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3239, '1385', 'RHINATHIOL INFANT PINK', 1, '3.8500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1385', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rhinathiol-infant-pink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3240, '1386', 'PROXIMEXA CAPS 250', 1, '1.5100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1386', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'proximexa-caps-250', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3241, '1387', 'LIPTON GREEN TEA', 1, '16.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1387', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lipton-green-tea', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3242, '1388', 'LIGABA 75', 1, '11.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1388', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ligaba-75', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3243, '1389', 'LEXSPORIN OINT', 1, '10.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1389', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lexsporin-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3244, '1390', 'LEXOTANIL 1.5MG', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1390', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lexotanil-15mg1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3245, '1391', 'LAMISIL TAB', 1, '0.4300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1391', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lamisil-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3246, '1392', 'SAMALIN JUNIOR/NON DROWSY', 1, '4.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1392', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'samalin-juniornon-drowsy', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3247, '1393', 'RAPINOL', 1, '9.2200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1393', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rapinol1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3248, '1394', 'KOFOF BABY', 1, '67.6200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1394', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kofof-baby', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3249, '1395', 'MAGACID PLUS', 1, '0.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1395', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'magacid-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3250, '1396', 'TRITACE 2.5MG', 1, '4.4300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1396', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tritace-25mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3251, '1397', 'PREDNISOLONE 5MG', 1, '60.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1397', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'prednisolone-5mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3252, '1398', 'NIFE DENK 20', 1, '29.8100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1398', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nife-denk-20', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3253, '1399', 'ORELOX 100TAB', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1399', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'orelox-100tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3254, '1400', 'OSTEOCARE SRP ORG', 1, '3.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1400', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'osteocare-srp-org', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3255, '1401', 'PARA SRP M/G', 1, '0.4800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1401', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'para-srp-mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3256, '1402', 'MAXMOX 500', 1, '10.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1402', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'maxmox-500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3257, '1403', 'ORS', 1, '0.4200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1403', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ors', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3258, '1404', 'PARA INFUSION', 1, '54.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1404', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'para-infusion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3259, '1405', 'PARA TAB', 1, '19.3500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1405', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'para-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3260, '1406', 'ROCEPHINE INJ 1G', 1, '9.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1406', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rocephine-inj-1g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3261, '1407', 'CLAVULIN TAB', 1, '2.3400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1407', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'clavulin-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3262, '1408', 'DEEP HEAT OINT 15G', 1, '0.1800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1408', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'deep-heat-oint-15g1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3263, '1409', 'AMPICLOX SUSP', 1, '4.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1409', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ampiclox-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3264, '1410', 'SYRINGE 5CC', 1, '9.7600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1410', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'syringe-5cc', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3265, '1411', 'ASCORYL SRP', 1, '21.8300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1411', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ascoryl-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3266, '1412', 'ZOXON 1000MG', 1, '4.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1412', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zoxon-1000mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3267, '1413', 'ASOMEX 2.5MG', 1, '4.0500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1413', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'asomex-25mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3268, '1414', 'NORVASC 5MG', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1414', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'norvasc-5mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3269, '1415', 'KOFFEX JUNIOR', 1, '17.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1415', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'koffex-junior', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3270, '1416', 'NORMAL SALINE', 1, '0.9600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1416', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'normal-saline', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3271, '1417', 'LIV 52 SRP', 1, '0.7500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1417', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'liv-52-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3272, '1418', 'CO-TRIMOXAXOLE TAB', 1, '3.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1418', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'co-trimoxaxole-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3273, '1419', 'RONAXICAM', 1, '7.0400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1419', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ronaxicam', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3274, '1420', 'GLYCERINE S/S', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1420', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'glycerine-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3275, '1421', 'PROPRANOLOL 40MG 28,S', 1, '3.5400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1421', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'propranolol-40mg-28s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3276, '1422', 'PROXEED WOMEN', 1, '1.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1422', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'proxeed-women', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3277, '1423', 'LIPITOR 10MG', 1, '7.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1423', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lipitor-10mg1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3278, '1424', 'CHLO EAR DROP', 1, '1.2400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1424', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chlo-ear-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3279, '1425', 'SE,CLEAR EYE/ EAR DROP', 1, '0.2700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1425', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'seclear-eye-ear-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3280, '1426', 'SUPER APETI TAB', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1426', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'super-apeti-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3281, '1427', 'METRONIDAZOLE 200 TAB', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1427', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'metronidazole-200-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3282, '1428', 'VASELINE LOTION', 1, '8.5100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1428', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vaseline-lotion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3283, '1429', 'ROOTER', 1, '4.0500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1429', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rooter', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3284, '1430', 'SUNLIGHT LIQUID750ML', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1430', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sunlight-liquid750ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3285, '1431', 'LUX SHAKE ME SOAP', 1, '13.5800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1431', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lux-shake-me-soap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3286, '1432', 'LIFEBOUY SOAP', 1, '1.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1432', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lifebouy-soap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3287, '1433', 'TAMSULOSIN 400', 1, '7.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1433', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tamsulosin-400', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3288, '1434', 'PREGNANCY TEST KIT', 1, '7.8800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1434', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pregnancy-test-kit1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3289, '1435', 'NEXIUM SACHET 10MG', 1, '3.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1435', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nexium-sachet-10mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3290, '1436', 'BECOATIN TAB', 1, '7.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1436', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'becoatin-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3291, '1437', 'SPIRIT EAR DROP', 1, '15.0500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1437', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'spirit-ear-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3292, '1438', 'VERMOX TAB', 1, '5.1300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1438', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vermox-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3293, '1439', 'BELLS TEETHING MIX', 1, '0.8800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1439', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bells-teething-mix', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3294, '1440', 'SULPHUR OINT', 1, '9.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1440', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sulphur-oint1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3295, '1441', 'BELLS TEETHING MIX', 1, '8.7600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1441', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bells-teething-mix', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3296, '1442', 'VISCOF D', 1, '5.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1442', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'viscof-d', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3297, '1443', 'VISCOF S', 1, '1.8300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1443', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'viscof-s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3298, '1444', 'WORMPLEX TAB', 1, '11.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1444', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wormplex-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3299, '1445', 'ZESTRIL 5MG', 1, '0.4600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1445', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zestril-5mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3300, '1446', 'ZINCOVIT SRP', 1, '0.2400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1446', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zincovit-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3301, '1447', 'ZINTAB 20', 1, '1.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1447', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zintab-20', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3302, '1448', 'ZINTAB 10', 1, '5.7200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1448', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zintab-10', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3303, '1449', 'STREPTOL25/6', 1, '0.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1449', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'streptol256', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3304, '1450', 'POLYFER SRP 150ML', 1, '17.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1450', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'polyfer-srp-150ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3305, '1451', 'METRONIDAZOLE LETAP', 1, '16.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1451', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'metronidazole-letap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3306, '1452', 'AMOKSIKLAV 457 SUSP', 1, '9.0500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1452', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoksiklav-457-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3307, '1453', 'NEOHYCOLEX 10ML', 1, '4.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1453', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'neohycolex-10ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3308, '1454', 'CONGESTYL SRP', 1, '5.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1454', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'congestyl-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3309, '1455', 'SAMAILN ADULT', 1, '33.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1455', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'samailn-adult', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3310, '1456', 'LIPITOR 20', 1, '3.8500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1456', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lipitor-20', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3311, '1457', 'COLGATE SMILE BABY', 1, '70.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1457', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'colgate-smile-baby', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3312, '1458', 'ATACAND 8MG', 1, '18.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1458', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'atacand-8mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3313, '1459', 'PERFECTYL PLUS', 1, '4.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1459', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'perfectyl-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3314, '1460', 'NIZORAL SHAMPOO', 1, '3.5900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1460', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nizoral-shampoo', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3315, '1461', 'metformin 500mg', 1, '3.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1461', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'metformin-500mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3316, '1462', 'SEPTRI N SUSP', 1, '0.2100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1462', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'septri-n-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3317, '1463', 'CO DIOVAN 160/12.5', 1, '18.0500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1463', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'co-diovan-160125', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3318, '1464', 'B COMPLEX TAB LOCAL', 1, '9.4300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1464', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'b-complex-tab-local', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3319, '1465', 'BORGES 250ML', 1, '0.3200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1465', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'borges-250ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3320, '1466', 'VENTOLIN NEBULES', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1466', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ventolin-nebules', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3321, '1467', 'SYRINGE 10MLS', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1467', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'syringe-10mls', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3322, '1468', 'SENACO', 1, '0.3400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1468', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'senaco', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3323, '1469', 'P- ALAXIN SUSP', 1, '2.7800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1469', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'p-alaxin-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3324, '1470', 'ACTIVATED CHARCOAL', 1, '4.7300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1470', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'activated-charcoal', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3325, '1471', 'CARBAMAZIPINE', 1, '1.2700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1471', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'carbamazipine', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3326, '1472', 'LOFNAC GEL', 1, '1.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1472', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lofnac-gel', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3327, '1473', 'LOFNAC -P', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1473', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lofnac-p', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3328, '1474', 'NAKLOFEN DUO', 1, '16.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1474', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'naklofen-duo', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3329, '1475', 'OLFEN GEL20GM', 1, '0.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1475', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'olfen-gel20gm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3330, '1476', 'OLFEN GEL 50GM', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1476', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'olfen-gel-50gm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3331, '1477', 'DICLO INJ', 1, '6.4400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1477', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diclo-inj', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3332, '1478', 'DORETA', 1, '33.0200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1478', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'doreta', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3333, '1479', 'NEXIUM 40 14S', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1479', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nexium-40-14s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3334, '1480', 'FEROGLOBIN SRP', 1, '4.4500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1480', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'feroglobin-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3335, '1481', 'HYDROCORT CREAM', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1481', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hydrocort-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3336, '1482', 'IBEX', 1, '0.4800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1482', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ibex', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3337, '1483', 'KOFOL LOZ', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1483', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kofol-loz', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3338, '1484', 'KWIK ACTION', 1, '6.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1484', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kwik-action1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3339, '1485', 'LADINAS', 1, '0.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1485', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ladinas', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3340, '1486', 'LEMPSIP', 1, '26.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1486', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lempsip', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3341, '1487', 'HONSTAN', 1, '32.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1487', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'honstan', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3342, '1488', 'MINAVITA', 1, '6.0600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1488', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'minavita', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3343, '1489', 'NAPROXEN EC', 1, '1.7300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1489', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'naproxen-ec', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3344, '1490', 'NAPROX ECL', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1490', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'naprox-ecl', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3345, '1491', 'NUCLEO CMP', 1, '39.0300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1491', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nucleo-cmp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3346, '1492', 'O- YES FEMININE WASH', 1, '8.6300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1492', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'o-yes-feminine-wash', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3347, '1493', 'FELDENE 20MG', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1493', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'feldene-20mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3348, '1494', 'PMF VASELINE', 1, '1.7500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1494', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pmf-vaseline', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3349, '1495', 'CALAMINE OINT', 1, '28.3200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1495', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'calamine-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3350, '1496', 'SOLUBLE ASP', 1, '6.9100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1496', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'soluble-asp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3351, '1497', 'SUDOCREAM125', 1, '0.5900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1497', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sudocream125', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3352, '1498', 'WELWOMAN DRINK', 1, '25.5900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1498', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'welwoman-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3353, '1499', 'GAUZE 7.5cm', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1499', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gauze-75cm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3354, '1500', 'BENILIN PAED', 1, '5.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1500', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'benilin-paed', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3355, '1501', 'COTTON BALLS', 1, '1.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1501', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cotton-balls', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3356, '1502', 'DAN RUBB', 1, '2.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1502', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dan-rubb', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3357, '1503', 'DICLOLEX TAB', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1503', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diclolex-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3358, '1504', 'EPIDERM 15G', 1, '3.8100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1504', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'epiderm-15g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3359, '1505', 'EPIDERM 30G', 1, '6.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1505', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'epiderm-30g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3360, '1506', 'EMGIFLOX SUSP', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1506', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'emgiflox-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3361, '1507', 'FLEMEX JNR', 1, '1.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1507', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flemex-jnr', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3362, '1508', 'FUNBACT', 1, '1.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1508', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'funbact', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3363, '1509', 'GENTA-K', 1, '1.7700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1509', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'genta-k', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3364, '1510', 'METHYLATED SPIRIT S/S', 1, '4.3600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1510', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'methylated-spirit-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3365, '1511', 'GYPRONE TAB', 1, '2.7500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1511', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gyprone-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3366, '1512', 'HAEMOGLOBIN M/G', 1, '8.6500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1512', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'haemoglobin-mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3367, '1513', 'HAEMOGLOBIN LETAP', 1, '2.4500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1513', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'haemoglobin-letap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3368, '1514', 'HYDROCORT CREAM', 1, '10.1600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1514', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hydrocort-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3369, '1515', 'IBUCAP SHALINA B/S', 1, '26.9200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1515', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ibucap-shalina-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3370, '1516', 'IMODIUM', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1516', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'imodium', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3371, '1517', 'SPORANOX', 1, '4.2800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1517', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sporanox', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3372, '1518', 'KAMAGRA 100', 1, '1.2800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1518', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kamagra-100', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3373, '1519', 'METASOL SOAP', 1, '11.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1519', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'metasol-soap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3374, '1520', 'NAT-B', 1, '1.8600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1520', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nat-b', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3375, '1521', 'PREGASAFE 75', 1, '4.1300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1521', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pregasafe-75', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3376, '1522', 'DANEGAN SRP', 1, '3.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1522', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'danegan-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3377, '1523', 'SEDALYN SRP PAED', 1, '1.1500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1523', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sedalyn-srp-paed', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3378, '1524', 'PLASTER 5CM', 1, '4.3900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1524', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'plaster-5cm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3379, '1525', 'AJANTA STAMINA', 1, '7.1800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1525', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ajanta-stamina', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3380, '1526', 'PERMOXL SRP', 1, '6.7900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1526', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'permoxl-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3381, '1527', 'AQUEOS CREAM', 1, '3.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1527', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aqueos-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3382, '1528', 'AUNTY MARY', 1, '29.1400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1528', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aunty-mary', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3383, '1529', 'CETAPOL SRP', 1, '4.3300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1529', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cetapol-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3384, '1530', 'CIPRODENK', 1, '1.2500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1530', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ciprodenk', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3385, '1531', 'DERMIRON PLUS', 1, '21.6700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1531', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dermiron-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3386, '1532', 'DOXYCYCLINE', 1, '46.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1532', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'doxycycline', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3387, '1533', 'FEMFRESH', 1, '6.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1533', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'femfresh', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3388, '1534', 'IDEOS', 1, '4.9200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1534', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ideos1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3389, '1535', 'COTTON BUD', 1, '4.3900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1535', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cotton-bud', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3390, '1536', 'KETAZOLE CREAM', 1, '21.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1536', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ketazole-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3391, '1537', 'KETAZOLE TAB', 1, '34.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1537', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ketazole-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3392, '1538', 'KY JELLY50G', 1, '9.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1538', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ky-jelly50g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3393, '1539', 'KY JELLY 75G', 1, '4.3900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1539', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ky-jelly-75g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3394, '1540', 'LA WASH', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1540', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'la-wash', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3395, '1541', 'METAGYL SRP', 1, '3.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1541', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'metagyl-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3396, '1542', 'NIFEDENK 10', 1, '17.8100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1542', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nifedenk-10', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3397, '1543', 'NIGHT NURSE CAPS', 1, '0.5200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1543', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'night-nurse-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3398, '1544', 'TAMPAX', 1, '7.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1544', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tampax', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3399, '1545', 'VALUPAC VIT C500S', 1, '40.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1545', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'valupac-vit-c500s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3400, '1546', 'VITA POWER SRP', 1, '3.3900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1546', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vita-power-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3401, '1547', 'BENILIN FOR FLU', 1, '143.5700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1547', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'benilin-for-flu', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3402, '1548', 'ANUSOL SUPP', 1, '2.9100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1548', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'anusol-supp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3403, '1549', 'ZITHROMAX CAPS', 1, '68.8500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1549', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zithromax-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3404, '1550', 'DULCOLAX SUPP', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1550', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dulcolax-supp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3405, '1551', 'ZINNAT SUSP100ML', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1551', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zinnat-susp100ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3406, '1552', 'CIPROLEX TAB', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1552', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ciprolex-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3407, '1553', 'CIPAC EYE DROP', 1, '12.8700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1553', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cipac-eye-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3408, '1554', 'CIPROLEX EYE DROP', 1, '1.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1554', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ciprolex-eye-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3409, '1555', 'DECATYLINE LOZ', 1, '6.6300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1555', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'decatyline-loz', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3410, '1556', 'DIABETMINE', 1, '11.8700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1556', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diabetmine', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3411, '1557', 'MAJOR EPHEDRINE', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1557', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'major-ephedrine', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3412, '1558', 'FLUCONA DENK', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1558', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flucona-denk', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3413, '1559', 'JET 2', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1559', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'jet-2', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3414, '1560', 'LENOR', 1, '5.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1560', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lenor', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3415, '1561', 'LYDIA', 1, '1.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1561', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lydia', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3416, '1562', 'LEVON 2', 1, '2.6900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1562', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'levon-21', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3417, '1563', 'METRO SUSP LETAP #MGP', 1, '24.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1563', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'metro-susp-letap-mgp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3418, '1564', 'CYTOTEC', 1, '7.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1564', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cytotec', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3419, '1565', 'PILEX TAB', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1565', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pilex-tab1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3420, '1566', 'SE,CLEAR', 1, '4.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1566', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'seclear', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3421, '1567', 'SEFLOX EYE DROP', 1, '7.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1567', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'seflox-eye-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3422, '1568', 'BX SRP100ML', 1, '2.6900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1568', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bx-srp100ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3423, '1569', 'BX SRP 200', 1, '2.6700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1569', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bx-srp-200', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3424, '1570', 'HISTAZINE SRP', 1, '0.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1570', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'histazine-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3425, '1571', 'RHIZINE SRP', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1571', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rhizine-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3426, '1572', 'PIRITON TAB', 1, '40.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1572', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'piriton-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3427, '1573', 'PRETTY LADY LINER', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1573', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pretty-lady-liner', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3428, '1574', 'AUGMENTIN SRP 457', 1, '5.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1574', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'augmentin-srp-457', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3429, '1575', 'DEXEL 2MG', 1, '10.3700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1575', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dexel-2mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3430, '1576', 'DICLO DENK 50', 1, '1.8600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1576', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diclo-denk-50', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3431, '1577', 'DICLO DENK 100 TAB', 1, '5.4700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1577', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diclo-denk-100-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3432, '1578', 'DICLO DENK SUPP', 1, '10.1500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1578', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diclo-denk-supp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3433, '1579', 'DREZ OINT 10MG', 1, '5.9700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1579', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'drez-oint-10mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3434, '1580', 'DREZ OINT 30MG', 1, '3.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1580', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'drez-oint-30mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3435, '1581', 'DREZ POWDER', 1, '7.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1581', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'drez-powder', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3436, '1582', 'DNS', 1, '6.3600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1582', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dns', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3437, '1583', 'DREZ SOLTN 30ML', 1, '5.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1583', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'drez-soltn-30ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3438, '1584', 'DUROL ADULT', 1, '3.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1584', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'durol-adult', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3439, '1585', 'DUROL JUNR', 1, '5.1500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1585', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'durol-junr', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3440, '1586', 'DYMOL TAB', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1586', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dymol-tab1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3441, '1587', 'MYCOVIN 500', 1, '11.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1587', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mycovin-500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3442, '1588', 'KIDICARE SRP', 1, '19.6600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1588', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kidicare-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3443, '1589', 'MENTODEX SRP S/S', 1, '1.9600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1589', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mentodex-srp-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3444, '1590', 'DAKTARIN CREAM', 1, '1.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1590', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'daktarin-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3445, '1591', 'PARA UK', 1, '15.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1591', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'para-uk', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3446, '1592', 'EFPAC TAB', 1, '1.0200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1592', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'efpac-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3447, '1593', 'APETAMIN SRP', 1, '2.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1593', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'apetamin-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3448, '1594', 'GEBEDOL', 1, '14.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1594', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gebedol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3449, '1595', 'GEBEDOL EXTRA', 1, '11.4300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1595', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gebedol-extra', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3450, '1596', 'LISTRINE 250', 1, '5.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1596', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'listrine-250', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3451, '1597', 'LISTRINE SMART', 1, '22.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1597', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'listrine-smart', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3452, '1598', 'CETAPOL PM', 1, '21.1800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1598', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cetapol-pm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3453, '1599', 'VALUPAk VIT C 1000', 1, '5.5600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1599', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'valupak-vit-c-1000', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3454, '1600', 'FLAGENTYL', 1, '7.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1600', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flagentyl', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3455, '1601', 'DICLO DENK 50', 1, '9.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1601', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diclo-denk-50', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3456, '1602', 'FLEMEX ADULT', 1, '0.6600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1602', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flemex-adult', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3457, '1603', 'BELLS CALAMINE', 1, '1.8400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1603', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bells-calamine', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3458, '1604', 'GAUZE 10CM', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1604', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gauze-10cm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3459, '1605', 'GAUZE  15CM', 1, '31.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1605', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gauze-15cm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3460, '1606', 'PLASTER 10CM', 1, '19.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1606', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'plaster-10cm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3461, '1607', 'CALPOL 6+', 1, '7.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1607', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'calpol-6', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3462, '1608', 'FOLIGROW CAPS', 1, '13.3400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1608', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'foligrow-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3463, '1609', 'KAMACLOX', 1, '12.0700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1609', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kamaclox', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3464, '1610', 'PREGASAFE 75', 1, '5.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1610', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pregasafe-75', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3465, '1611', 'IMODIUM', 1, '4.1300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1611', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'imodium', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3466, '1612', 'DANRUBB', 1, '2.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1612', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'danrubb', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3467, '1613', 'SEDALIN JNR', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1613', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sedalin-jnr', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3468, '1614', 'PENICILLIN INJ', 1, '4.7900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1614', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'penicillin-inj', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3469, '1615', 'SEFLOX', 1, '3.9400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1615', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'seflox', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3470, '1616', 'MYCOVIN 500', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1616', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mycovin-500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3471, '1617', 'LADINAS', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1617', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ladinas', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3472, '1618', 'HONSTAN', 1, '4.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1618', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'honstan', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3473, '1619', 'COLGATE HERB', 1, '6.8800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1619', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'colgate-herb', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3474, '1620', 'SULFER OINT', 1, '3.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1620', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sulfer-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3475, '1621', 'WELMAN DRINK', 1, '0.6300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1621', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'welman-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3476, '1622', 'MERCY CREAM', 1, '0.4600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1622', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mercy-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3477, '1623', 'BRUFEN 400', 1, '22.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1623', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'brufen-400', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3478, '1624', 'RHIZON TAB', 1, '8.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1624', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rhizon-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3479, '1625', 'POSTINOR', 1, '5.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1625', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'postinor', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3480, '1626', 'GENECURE 442', 1, '6.2500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1626', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'genecure-442', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3481, '1627', 'EFPAC JUNIOR', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1627', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'efpac-junior', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3482, '1628', 'TEEDAR', 1, '13.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1628', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'teedar', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3483, '1629', '4.85AMLODIPINE TEVA 10', 1, '35.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1629', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, '485amlodipine-teva-10', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3484, '1630', 'AMOKSIKLAV1G', 1, '26.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1630', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoksiklav1g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3485, '1631', 'COARTEM 80/480', 1, '0.3900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1631', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'coartem-80480', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3486, '1632', 'CYPRODINE CAPS', 1, '0.3300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1632', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cyprodine-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3487, '1633', 'MARTINS PLAIN', 1, '4.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1633', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'martins-plain', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3488, '1634', 'MARTINS ORANGE', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1634', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'martins-orange', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3489, '1635', 'MALARIA TEST KIT', 1, '1.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1635', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'malaria-test-kit', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3490, '1636', 'MALARIA CHECK', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1636', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'malaria-check', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3491, '1637', 'STREPTOL 12S', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1637', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'streptol-12s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3492, '1638', 'COTTON PIECES', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1638', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cotton-pieces', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3493, '1639', 'YAZZ PAD', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1639', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'yazz-pad1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3494, '1640', 'YAZZ LINER', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1640', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'yazz-liner', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3495, '1641', 'ALWAYS MAXI', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1641', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'always-maxi', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3496, '1642', 'ALWAYS DOUBLE', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1642', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'always-double', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3497, '1643', 'ALWAYS SINGLE', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1643', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'always-single', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3498, '1644', 'FAYTEX', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1644', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'faytex1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3499, '1645', 'SOFTCARE WIPES', 1, '1.6600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1645', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'softcare-wipes', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3500, '1646', 'FRESS', 1, '2.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1646', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fress', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3501, '1647', 'HANKERCHIEF', 1, '0.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1647', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hankerchief', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3502, '1648', 'MENTOS GUM ICE', 1, '0.1300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1648', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mentos-gum-ice', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3503, '1649', 'MENTOS GUM', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1649', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mentos-gum', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3504, '1650', 'MENTOS FRESH ACTION', 1, '45.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1650', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mentos-fresh-action', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3505, '1651', 'RUBBING ALC', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1651', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rubbing-alc', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3506, '1652', 'PEPTO BISMOL', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1652', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pepto-bismol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3507, '1653', 'PEPSODENT S/S', 1, '25.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1653', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pepsodent-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3508, '1654', 'SCISSORS', 1, '15.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1654', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'scissors', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3509, '1655', 'IMMUNACE', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1655', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'immunace', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3510, '1656', 'NUGEL -O', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1656', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nugel-o', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3511, '1657', 'CREEP BANDAGE15CM', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1657', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'creep-bandage15cm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3512, '1658', 'CREEP BANDAGE 10CM', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1658', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'creep-bandage-10cm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3513, '1659', 'CREEP BANDAGE 7.5CM', 1, '2.7500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1659', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'creep-bandage-75cm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3514, '1660', 'GLYCERINE B/S', 1, '3.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1660', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'glycerine-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3515, '1661', 'DYNEWELL SRP', 1, '1.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1661', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dynewell-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3516, '1662', 'ENTRAMOL', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1662', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'entramol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3517, '1663', 'KISS', 1, '7.3900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1663', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kiss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3518, '1664', 'FIESTA CONCOM', 1, '1.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1664', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fiesta-concom', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3519, '1665', 'DUREX COND', 1, '7.2500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1665', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'durex-cond', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3520, '1666', 'MALAFAN', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1666', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'malafan', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3521, '1667', 'FOLIC ACID 28S', 1, '17.9300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1667', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'folic-acid-28s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3522, '1668', 'VIROL', 1, '33.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1668', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'virol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3523, '1669', 'FOLIGROW SRP', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1669', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'foligrow-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3524, '1670', 'CALPOL 2+', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1670', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'calpol-2', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3525, '1671', 'SPIRIT B/S', 1, '3.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1671', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'spirit-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3526, '1672', 'HYDROGEN LOCAL', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1672', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hydrogen-local', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3527, '1673', 'ZULU', 1, '3.1400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1673', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zulu', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3528, '1674', 'CHOCHO ABS', 1, '19.0200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1674', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chocho-abs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3529, '1675', 'CHOCHO CREAM', 1, '82.0200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1675', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chocho-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3530, '1676', 'AMOKSIKLAV 625', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1676', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoksiklav-625', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3531, '1677', 'ZINNAT 500', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1677', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zinnat-500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3532, '1678', 'MMT', 1, '10.8500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1678', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mmt', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3533, '1679', 'VIT E-SOVIT', 1, '19.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1679', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vit-e-sovit', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3534, '1680', 'ACIRCLOVIR 400MG TAB', 1, '1.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1680', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'acirclovir-400mg-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3535, '1681', 'TEARS NATURAL', 1, '2.6600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1681', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tears-natural', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3536, '1682', 'GV PAINT', 1, '5.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1682', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gv-paint1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3537, '1683', 'FUMET', 1, '1.1300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1683', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fumet', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3538, '1684', 'SILVERZINE', 1, '12.0300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1684', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'silverzine', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3539, '1685', 'MYCOVIN 125', 1, '16.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1685', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mycovin-125', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3540, '1686', 'ACTIFED SRP', 1, '11.1900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1686', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'actifed-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3541, '1687', 'APDYL H B/S', 1, '1.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1687', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'apdyl-h-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3542, '1688', 'ZUBES EXP', 1, '7.7800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1688', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zubes-exp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3543, '1689', 'LETALIN', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1689', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'letalin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3544, '1690', 'LUEX BABY COUGH', 1, '33.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1690', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'luex-baby-cough1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3545, '1691', 'GV FLUC CAPS', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1691', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gv-fluc-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3546, '1692', 'XIN A', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1692', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'xin-a', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3547, '1693', 'DYTEX EYE', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1693', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dytex-eye', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3548, '1694', 'MIST POT SIT', 1, '3.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1694', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mist-pot-sit', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3549, '1695', 'EXPECT SED', 1, '7.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1695', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'expect-sed', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3550, '1696', 'PENICILLIN OINT', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1696', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'penicillin-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3551, '1697', 'GRISON', 1, '9.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1697', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'grison', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3552, '1698', 'BECOATIN SRP', 1, '13.0100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1698', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'becoatin-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3553, '1699', 'LUFART SUSP', 1, '0.6200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1699', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lufart-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3554, '1700', 'LUFART TAB', 1, '2.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1700', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lufart-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3555, '1701', 'PENICILLIN TAB', 1, '4.2500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1701', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'penicillin-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3556, '1702', 'PANADOL PLAIN', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1702', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'panadol-plain', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3557, '1703', 'KAMAGRA50', 1, '3.6500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1703', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kamagra50', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3558, '1704', 'DRAGON CAPS', 1, '7.4600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1704', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dragon-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3559, '1705', 'GOGYNAX', 1, '9.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1705', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gogynax', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3560, '1706', 'CANDID V6', 1, '22.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1706', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'candid-v6', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3561, '1707', 'FLUREST', 1, '3.9600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1707', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flurest', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3562, '1708', 'HUICHUM CAPS', 1, '2.2500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1708', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'huichum-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3563, '1709', 'KIDIVITE S/S', 1, '1.7500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1709', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kidivite-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3564, '1710', 'COMMIT 50', 1, '17.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1710', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'commit-50', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3565, '1711', 'MALIN TAB', 1, '11.5600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1711', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'malin-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3566, '1712', 'CARVADILOL TEVA', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1712', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'carvadilol-teva', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3567, '1713', 'NIFECARD 60', 1, '16.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1713', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nifecard-60', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3568, '1714', 'LISINOPRIL 10', 1, '9.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1714', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lisinopril-10', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3569, '1715', 'DIGOXIN 125', 1, '20.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1715', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'digoxin-125', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3570, '1716', 'FUROSEMIDE 20 CRESCENT', 1, '13.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1716', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'furosemide-20-crescent', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3571, '1717', 'LIQUIFRUITA S/S', 1, '6.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1717', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'liquifruita-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3572, '1718', 'STARWIN B/S', 1, '4.6200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1718', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'starwin-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3573, '1719', 'STARWIN S/S', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1719', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'starwin-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3574, '1720', 'CLOMID 50', 1, '0.9200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1720', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'clomid-50', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3575, '1721', 'AMOXYCLIN 500 BLISS', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1721', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoxyclin-500-bliss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3576, '1722', '~AMOXICILIN 250 BLISS', 1, '0.9200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1722', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoxicilin-250-bliss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3577, '1723', 'SECURE', 1, '1.8200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1723', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'secure', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3578, '1724', 'AMOXYCILLIN 250 BLISS', 1, '1.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1724', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoxycillin-250-bliss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3579, '1725', 'FLUCOX CAPS 250', 1, '2.1800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1725', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flucox-caps-250', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3580, '1726', 'DOMI 10', 1, '14.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1726', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'domi-10', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3581, '1727', 'DOMI 30', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1727', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'domi-30', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3582, '1728', 'MIGHTY P B/S', 1, '13.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1728', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mighty-p-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3583, '1729', 'MIGHTY P S\'S', 1, '13.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1729', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mighty-p-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3584, '1730', 'KINGDOM G BITS', 1, '13.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1730', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kingdom-g-bits', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3585, '1731', 'VEINE CAPS', 1, '12.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1731', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'veine-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3586, '1732', 'TODAY MAN', 1, '16.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1732', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'today-man', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3587, '1733', 'YAFO MAN', 1, '17.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1733', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'yafo-man', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3588, '1734', 'GIVERS P CAPS', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1734', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'givers-p-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3589, '1735', 'GIVERS KOO CAPS', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1735', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'givers-koo-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3590, '1736', 'SIBIWOMAN', 1, '10.8300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1736', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sibiwoman', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3591, '1737', 'ADOM W,G CAPS', 1, '9.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1737', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'adom-wg-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3592, '1738', 'ADOM W,G SRP', 1, '15.5200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1738', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'adom-wg-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3593, '1739', 'TAABEA MIX', 1, '9.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1739', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'taabea-mix', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3594, '1740', 'ROOTER TYTONIC', 1, '8.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1740', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rooter-tytonic1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3595, '1741', 'TIME HERBAL', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1741', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'time-herbal', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3596, '1742', 'AGBEVE TONIC', 1, '5.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1742', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'agbeve-tonic', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3597, '1743', 'AGBEVE FEVER', 1, '11.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1743', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'agbeve-fever', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3598, '1744', 'ADOM KOO SRP', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1744', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'adom-koo-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3599, '1745', 'ADOM KOO CAPS', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1745', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'adom-koo-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3600, '1746', 'MADAM CATHERINE', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1746', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'madam-catherine', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3601, '1747', 'ALAFIA BITS', 1, '9.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1747', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'alafia-bits', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3602, '1748', 'TOP FEVER', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1748', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'top-fever', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3603, '1749', 'TOP TONIC', 1, '18.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1749', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'top-tonic1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3604, '1750', 'ANGEL CREAM', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1750', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'angel-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3605, '1751', 'TINATET VENECARE', 1, '19.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1751', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tinatet-venecare', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3606, '1752', 'VICTORY G MIX', 1, '13.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1752', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'victory-g-mix', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3607, '1753', 'PROSTAFIT', 1, '14.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1753', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'prostafit', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3608, '1754', 'SOLAK MIX', 1, '21.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1754', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'solak-mix', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3609, '1755', 'ZIPMAN CAPS', 1, '27.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1755', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zipman-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3610, '1756', 'PROSTACURE TEA', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1756', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'prostacure-tea', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3611, '1757', 'TINATET 230 CAPS', 1, '14.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1757', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tinatet-230-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3612, '1758', 'AKANAYO KOO BITS', 1, '1.2500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1758', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'akanayo-koo-bits', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3613, '1759', 'DETOL 250 ML', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1759', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'detol-250-ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3614, '1760', 'PEPSODENT BRUSH', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1760', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pepsodent-brush', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3615, '1761', 'POWERZONE B\'S', 1, '14.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1761', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'powerzone-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3616, '1762', 'POWERZONE S\'S', 1, '25.4800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1762', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'powerzone-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3617, '1763', 'CERELAC', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1763', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cerelac', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3618, '1764', 'LACTULOSE', 1, '25.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1764', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lactulose', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3619, '1765', 'MOLFIX', 1, '4.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1765', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'molfix', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3620, '1766', 'COLESTOP 10', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1766', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'colestop-10', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3621, '1767', 'COLGATE TRIP ACTN', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1767', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'colgate-trip-actn', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3622, '1768', 'EASYLIFE VIT C', 1, '1.3500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1768', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'easylife-vit-c', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3623, '1769', 'HEAVEN SPRAY', 1, '0.9700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1769', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'heaven-spray', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3624, '1770', 'ORANGE T.ROLL', 1, '15.0500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1770', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'orange-troll', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3625, '1771', 'TANGO T.ROLL', 1, '12.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1771', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tango-troll', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3626, '1772', 'MYCOLEX 3 CREAM', 1, '6.1100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1772', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mycolex-3-cream1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3627, '1773', 'BELLS VIT C', 1, '35.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1773', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bells-vit-c', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3628, '1774', 'ZINCOVIT DROP', 1, '28.5800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1774', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zincovit-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3629, '1775', 'SPERMAN', 1, '13.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1775', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sperman', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3630, '1776', 'BONGELA CHILD', 1, '6.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1776', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bongela-child', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3631, '1777', 'NUGEL', 1, '12.2900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1777', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nugel', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3632, '1778', 'GASTRACID', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1778', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gastracid', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3633, '1779', 'KOFLET', 1, '3.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1779', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'koflet', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3634, '1780', 'BEEHIVE', 1, '3.8500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1780', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'beehive', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3635, '1781', 'NS', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1781', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ns', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3636, '1782', 'GLUCOSE', 1, '17.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1782', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'glucose', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3637, '1783', 'EYECOPEN', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1783', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'eyecopen', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3638, '1784', 'FEROGLOBIN CAPS', 1, '2.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1784', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'feroglobin-caps1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3639, '1785', 'GO COUGH', 1, '1.6300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1785', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'go-cough', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3640, '1786', 'BCO STRONG6-23', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1786', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bco-strong6-23', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3641, '1787', 'AMPICLOX CAPS', 1, '4.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1787', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ampiclox-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3642, '1788', 'BCO INJ', 1, '28.7600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1788', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bco-inj', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3643, '1789', 'CORRORANGE DROP', 1, '4.2900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1789', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'corrorange-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3644, '1790', 'CA-C SANDOX', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1790', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ca-c-sandox', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3645, '1791', 'NEXIUM 20', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1791', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nexium-20', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3646, '1792', 'STAGYL', 1, '48.7600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1792', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stagyl', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3647, '1793', 'PEPSODENT B/S', 1, '52.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1793', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pepsodent-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3648, '1794', 'ABIDEC', 1, '19.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1794', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'abidec', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3649, '1795', 'LAMISIL CREAM', 1, '4.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1795', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lamisil-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3650, '1796', 'COMBANTRIN', 1, '3.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1796', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'combantrin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3651, '1797', 'POLYFER CAPS', 1, '1.3600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1797', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'polyfer-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3652, '1798', 'LYRICA 25', 1, '2.4500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1798', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lyrica-25', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3653, '1799', 'PARA DENK 125', 1, '1.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1799', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'para-denk-125', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3654, '1800', 'VAGINAX PESS', 1, '1.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1800', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vaginax-pess', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3655, '1801', 'FENBASE', 1, '32.7700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1801', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fenbase', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3656, '1802', 'OMEPRAZOLE', 1, '4.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1802', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'omeprazole', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3657, '1803', 'EVECARE', 1, '82.8700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1803', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'evecare', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3658, '1804', 'KOFEX ADULT', 1, '4.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1804', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kofex-adult', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3659, '1805', 'DIFLUCAN', 1, '17.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1805', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diflucan', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3660, '1806', 'ABONIKI', 1, '14.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1806', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aboniki', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3661, '1807', 'LIVING BIT CAPS', 1, '1.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1807', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'living-bit-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3662, '1808', 'LIVING BIT SRP', 1, '17.7800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1808', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'living-bit-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3663, '1809', 'NAZOR', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1809', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nazor', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3664, '1810', 'TINATETT MALAKARE', 1, '1.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1810', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tinatett-malakare', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3665, '1811', 'TRENDOUS CAPS', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1811', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'trendous-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3666, '1812', 'VICTAGO', 1, '4.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1812', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'victago', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3667, '1813', 'ADUTWUMWAA BIT', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1813', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'adutwumwaa-bit', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3668, '1814', 'BOAFO OINT', 1, '22.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1814', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'boafo-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3669, '1815', 'BRIGHFORD', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1815', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'brighford', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3670, '1816', 'DIAGELLATES LARGE', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1816', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diagellates-large', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3671, '1817', 'DIAGELATE MED', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1817', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diagelate-med', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3672, '1818', 'DIAGELATE SMALL', 1, '2.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1818', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diagelate-small', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3673, '1819', 'EKURO BEWU', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1819', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ekuro-bewu1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3674, '1820', 'ERNEST OINT', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1820', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ernest-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3675, '1821', 'FINE SOAP', 1, '14.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1821', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fine-soap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3676, '1822', 'FINE CREAM', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1822', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fine-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3677, '1823', 'FRANKO HERBAL', 1, '4.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1823', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'franko-herbal', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3678, '1824', 'KINGDOM GENSENG CAPS', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1824', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kingdom-genseng-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3679, '1825', 'MAME DAGOMBA', 1, '0.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1825', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mame-dagomba', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3680, '1826', 'MASADA', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1826', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'masada', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3681, '1827', 'NANA ADJEI', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1827', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nana-adjei', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3682, '1828', 'PA-KUM', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1828', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pa-kum', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3683, '1829', 'SIBIMAN', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1829', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sibiman', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3684, '1830', 'ULCERPLEX', 1, '7.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1830', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ulcerplex', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3685, '1831', 'BASECOLD SRP', 1, '4.3700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1831', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'basecold-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3686, '1832', 'FLUXAMOX SRP', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1832', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fluxamox-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3687, '1833', 'FLUXAMOX CAPS', 1, '2.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1833', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fluxamox-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3688, '1834', 'ZUDREX SRP', 1, '19.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1834', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zudrex-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3689, '1835', 'ZUDREX TAB', 1, '0.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1835', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zudrex-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3690, '1836', 'MENTODEX B/S', 1, '8.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1836', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mentodex-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3691, '1837', 'NO 10', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1837', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'no-10', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3692, '1838', 'ZUBES CHILD', 1, '1.6500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1838', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zubes-child', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3693, '1839', 'SAMLIN NON D', 1, '4.0300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1839', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'samlin-non-d', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3694, '1840', 'MACRAFOLIN SRP', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1840', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'macrafolin-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3695, '1841', 'SHALCIP', 1, '0.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1841', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'shalcip', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3696, '1842', 'BABY COU LINC', 1, '6.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1842', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'baby-cou-linc', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3697, '1843', 'FERROUS SULF', 1, '6.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1843', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ferrous-sulf', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3698, '1844', 'MALR 2 SRP', 1, '4.7100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1844', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'malr-2-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3699, '1845', 'NEXCOFER B/S', 1, '11.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1845', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nexcofer-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3700, '1846', 'PARA UK 16S', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1846', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'para-uk-16s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3701, '1847', 'ENACEF SYRUP 125', 1, '6.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1847', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'enacef-syrup-125', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3702, '1848', 'BENDRO 5MG', 1, '1.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1848', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bendro-5mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3703, '1849', 'ETISALA SRP', 1, '3.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1849', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'etisala-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3704, '1850', 'WORMBASE SUSP', 1, '1.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1850', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wormbase-susp1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3705, '1851', 'BADRUF CREAM', 1, '0.2500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1851', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'badruf-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3706, '1852', 'BASEFENAC FORT', 1, '3.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1852', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'basefenac-fort', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3707, '1853', 'WORMBASE TAB', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1853', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wormbase-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3708, '1854', 'ARTIBASE SUSP', 1, '4.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1854', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'artibase-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3709, '1855', 'BASEKOF', 1, '0.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1855', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'basekof', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3710, '1856', 'VITA P CAPS', 1, '2.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1856', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vita-p-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3711, '1857', 'BASEDIUM CAPS', 1, '3.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1857', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'basedium-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3712, '1858', 'ETISALA CAPS', 1, '3.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1858', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'etisala-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3713, '1859', 'ARTIBASE SRP', 1, '0.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1859', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'artibase-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3714, '1860', 'ARTIBASE DS', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1860', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'artibase-ds', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3715, '1861', 'BE- MAN CD', 1, '0.6500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1861', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'be-man-cd', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3716, '1862', 'PROXEED PLUS', 1, '1.1500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1862', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'proxeed-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3717, '1863', 'BASEFENAC-P', 1, '0.9300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1863', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'basefenac-p', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3718, '1864', 'DIPEX TAB', 1, '1.2800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1864', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dipex-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3719, '1865', 'BASEBRU TAB', 1, '0.3200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1865', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'basebru-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3720, '1866', 'BASECOLD', 1, '0.5200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1866', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'basecold', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3721, '1867', 'BISACODYL', 1, '14.4400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1867', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bisacodyl', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3722, '1868', 'ESKAZIPAM', 1, '2.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1868', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'eskazipam', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3723, '1869', 'FUROSEMIDE 20 RXPHAMA', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1869', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'furosemide-20-rxphama', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3724, '1870', 'KIDS BRUSH', 1, '2.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1870', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kids-brush', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3725, '1871', 'STREPTOL', 1, '14.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1871', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'streptol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3726, '1872', 'JOY OINT', 1, '1.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1872', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'joy-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3727, '1873', 'SAVLON 250', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1873', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'savlon-250', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3728, '1874', 'BASEBOOM JELLY', 1, '21.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '-1.0000', 1, 1, NULL, NULL, '1874', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'baseboom-jelly', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3729, '1875', 'KOJACK PASTE', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1875', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kojack-paste', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3730, '1876', 'KOJA CHARC', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1876', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'koja-charc', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3731, '1877', 'DICLO -DENK 50', 1, '0.3400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1877', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diclo-denk-50', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3732, '1878', 'ROBB JAR', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1878', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'robb-jar1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3733, '1879', 'PAIN OFF', 1, '9.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1879', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pain-off', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3734, '1880', 'OLANZIPNE', 1, '18.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1880', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'olanzipne', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3735, '1881', 'JARIFAN 2 SRP', 1, '14.7800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1881', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'jarifan-2-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3736, '1882', 'ARABA BAZEEN', 1, '65.0100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1882', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'araba-bazeen', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3737, '1883', 'HEPTO PEP', 1, '4.2500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1883', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hepto-pep', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3738, '1884', 'APPLE CIDER B/S', 1, '4.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1884', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'apple-cider-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3739, '1885', 'EXFORGE 10/160', 1, '5.6100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1885', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'exforge-10160', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3740, '1886', 'EXFORGE 5/160', 1, '1.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1886', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'exforge-5160', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3741, '1887', 'DIPHEX SRP', 1, '0.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1887', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diphex-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3742, '1888', 'ZEMAN', 1, '2.4100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1888', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zeman', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3743, '1889', 'SIRDALUD 2MG', 1, '24.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1889', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sirdalud-2mg1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3744, '1890', 'SIRDALUD 4MG', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1890', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sirdalud-4mg1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3745, '1891', 'ZINCOLAC', 1, '42.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1891', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zincolac', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3746, '1892', 'OSONS GRIPE', 1, '23.9600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1892', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'osons-gripe', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3747, '1893', 'VITAGLOBIN', 1, '15.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1893', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vitaglobin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3748, '1894', 'EVECARE SRP', 1, '16.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1894', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'evecare-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3749, '1895', 'EPICROM', 1, '21.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1895', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'epicrom', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3750, '1896', 'CROMAX', 1, '20.6900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1896', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cromax', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3751, '1897', 'DALACIN C 150MG', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1897', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dalacin-c-150mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3752, '1898', 'NURIFER CAPS', 1, '0.5100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1898', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nurifer-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3753, '1899', 'AERIUS TAB', 1, '0.6400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1899', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aerius-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3754, '1900', 'GACET 125', 1, '17.4500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1900', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gacet-125', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3755, '1901', 'GACET 250', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1901', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gacet-250', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3756, '1902', 'FLOXAPEN', 1, '11.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1902', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'floxapen', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3757, '1903', 'ASTHALEX', 1, '42.5100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1903', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'asthalex', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3758, '1904', 'DEXATROL DROP', 1, '16.4500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1904', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dexatrol-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3759, '1905', 'OPTREX EYE WASH', 1, '12.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1905', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'optrex-eye-wash', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3760, '1906', 'MAXISPORON', 1, '52.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1906', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'maxisporon', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3761, '1907', 'E-NAT E', 1, '37.9400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1907', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'e-nat-e', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3762, '1908', 'WELLOMAN 70+', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1908', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'welloman-70', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3763, '1909', 'WELLWOMAN PLUS', 1, '26.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1909', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wellwoman-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3764, '1910', 'COX B', 1, '15.4600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1910', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cox-b', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3765, '1911', 'S/SEAS SRP', 1, '39.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1911', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sseas-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3766, '1912', 'ASTIMIN', 1, '8.8700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1912', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'astimin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3767, '1913', 'PERFECTIL PLATINUM', 1, '41.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1913', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'perfectil-platinum1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3768, '1914', 'RELCER GEL', 1, '47.5800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1914', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'relcer-gel1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3769, '1915', 'ABIDEC SRP', 1, '40.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1915', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'abidec-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3770, '1916', 'WELLBABY DROP', 1, '33.0100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1916', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wellbaby-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3771, '1917', 'INFACOL', 1, '1.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1917', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'infacol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3772, '1918', 'PEVISON', 1, '6.3300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1918', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pevison', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3773, '1919', 'ROBB INH', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1919', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'robb-inh', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3774, '1920', 'ZENTEL TAB', 1, '25.8200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1920', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zentel-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3775, '1921', 'APFLU', 1, '36.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1921', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'apflu', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3776, '1922', 'BENILIN CHESTY', 1, '33.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1922', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'benilin-chesty', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3777, '1923', 'TYLENOL', 1, '53.1600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1923', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tylenol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3778, '1924', 'ADVIL', 1, '25.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1924', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'advil', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3779, '1925', 'ADDYZOA', 1, '17.7200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1925', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'addyzoa', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3780, '1926', 'CLARITHROMYCIN', 1, '7.3500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1926', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'clarithromycin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3781, '1927', 'TIGER SPRAY', 1, '8.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1927', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tiger-spray1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3782, '1928', 'TIGER CAPS', 1, '5.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1928', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tiger-caps1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3783, '1929', 'CYCLOGEST 200', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1929', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cyclogest-200', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3784, '1930', 'FEGLO B', 1, '3.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1930', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'feglo-b', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3785, '1931', 'SALO COLD SRP', 1, '0.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1931', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'salo-cold-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3786, '1932', 'PHLEBODIA', 1, '0.8400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1932', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'phlebodia', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3787, '1933', 'PINPAC EXTRA', 1, '3.6500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1933', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pinpac-extra', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3788, '1934', 'OXAFEN', 1, '40.9700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1934', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'oxafen', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3789, '1935', 'ZIRTEK TAB', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1935', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zirtek-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3790, '1936', 'ZIRTEK SLN', 1, '9.1700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1936', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zirtek-sln', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3791, '1937', 'SALOCOLD TAB', 1, '40.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1937', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'salocold-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3792, '1938', 'ACEOUS CREAM', 1, '11.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1938', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aceous-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3793, '1939', 'APPLE CID S/S', 1, '11.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1939', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'apple-cid-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3794, '1940', 'MUCOLEX J', 1, '51.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1940', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mucolex-j', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3795, '1941', 'MUCOLEX ADULT', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1941', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mucolex-adult', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3796, '1942', 'NIGHT NURSE SRP', 1, '17.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1942', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'night-nurse-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3797, '1943', 'DEEP HEAT 35', 1, '20.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1943', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'deep-heat-35', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3798, '1944', 'DEEP HEAT 67', 1, '10.3800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1944', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'deep-heat-67', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3799, '1945', 'COATERM12S', 1, '19.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1945', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'coaterm12s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3800, '1946', 'COATERM 6S', 1, '16.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1946', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'coaterm-6s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3801, '1947', 'CANDIBIOTIC EAR', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1947', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'candibiotic-ear', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3802, '1948', 'GINSOMIN EVE', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1948', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ginsomin-eve1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3803, '1949', 'GINSOMIN CAPS', 1, '32.6600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1949', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ginsomin-caps1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3804, '1950', 'LIVOLIN', 1, '5.7500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1950', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'livolin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3805, '1951', 'GYNO DAK PESS', 1, '1.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1951', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gyno-dak-pess', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3806, '1952', 'FISHERMAN', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1952', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fisherman', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3807, '1953', 'OMEPRZOLE NIMEP', 1, '27.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1953', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'omeprzole-nimep', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3808, '1954', 'FLUCOR  NIGHT', 1, '4.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1954', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flucor-night1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3809, '1955', 'TIXILIX', 1, '1.4500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1955', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tixilix', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3810, '1956', 'ENVICO', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1956', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'envico', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3811, '1957', 'EZIPEN', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1957', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ezipen', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3812, '1958', 'BENDRO 2.5', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1958', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bendro-25', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3813, '1959', 'ACIDOM', 1, '34.6600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1959', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'acidom', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3814, '1960', 'ACTIFED TAB', 1, '4.9200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1960', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'actifed-tab1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3815, '1961', 'BENILIN ORG', 1, '0.4700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1961', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'benilin-org', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3816, '1962', 'BELA COUGH', 1, '33.8200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1962', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bela-cough', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3817, '1963', 'ASMANOL', 1, '27.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1963', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'asmanol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3818, '1964', 'BENILIN INFANT', 1, '1.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1964', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'benilin-infant', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3819, '1965', 'GAVISCON', 1, '16.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1965', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gaviscon', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3820, '1966', 'TRANEXAMIC ACID', 1, '39.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1966', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tranexamic-acid', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3821, '1967', 'DEEP FREEZE OINT', 1, '9.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1967', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'deep-freeze-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3822, '1968', 'DIABETONE', 1, '15.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1968', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diabetone', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3823, '1969', 'ATERSUNATE INJ      30MG', 1, '18.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1969', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'atersunate-inj-30mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3824, '1970', 'ARTESUNATE INJ 60', 1, '28.4300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1970', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'artesunate-inj-60', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3825, '1971', 'ARTESUNATE INJ 120MG', 1, '0.6900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1971', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'artesunate-inj-120mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3826, '1972', 'GALVUS MET 50/1000MG', 1, '0.4700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1972', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'galvus-met-501000mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3827, '1973', 'MAGACID TAB', 1, '2.9600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1973', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'magacid-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3828, '1974', 'ASMANOL', 1, '16.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1974', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'asmanol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3829, '1975', 'M;B TAB', 1, '10.2900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1975', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mb-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3830, '1976', 'OPTIMOL EYE', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1976', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'optimol-eye', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3831, '1977', 'DEXORANGE SRP', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1977', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dexorange-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3832, '1978', 'ASPIRIN DISP', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1978', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aspirin-disp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3833, '1979', 'PROPER PAD', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1979', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'proper-pad', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3834, '1980', 'AQUEOS  BIG', 1, '2.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1980', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aqueos-big', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3835, '1981', 'CHOCOLATE', 1, '1.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1981', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chocolate', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3836, '1982', 'SELECT STRIPS', 1, '4.8200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1982', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'select-strips', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3837, '1983', 'GLUCOSE CHECK', 1, '28.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1983', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'glucose-check', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3838, '1984', 'EXETER PARA SRP', 1, '48.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1984', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'exeter-para-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3839, '1985', 'AMOKSIKLAV 1G', 1, '4.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1985', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoksiklav-1g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3840, '1986', 'AVAMYS', 1, '5.8100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1986', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'avamys', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3841, '1987', 'HYDROGEN ECL', 1, '29.1700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1987', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hydrogen-ecl', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3842, '1988', 'METOCLOPRAMIDE', 1, '8.7900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1988', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'metoclopramide', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3843, '1989', 'FLAGYL ORG SUSP', 1, '7.7400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1989', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flagyl-org-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3844, '1990', 'LG GLIZONE 15MG', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1990', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lg-glizone-15mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3845, '1991', 'AMOXIL SUSP UK', 1, '11.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1991', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoxil-susp-uk', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3846, '1992', 'LYRICA 75', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1992', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lyrica-75', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3847, '1993', 'BRUFEN SRP', 1, '9.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1993', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'brufen-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3848, '1994', 'DRAGON SPRAY', 1, '3.2800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1994', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dragon-spray', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3849, '1995', 'KIDICS SRP', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1995', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kidics-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3850, '1996', 'INOPRIL', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1996', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'inopril', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3851, '1997', 'MYCOSTAT', 1, '11.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1997', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mycostat', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3852, '1998', 'A-L FORTE', 1, '0.4100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1998', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'a-l-forte', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3853, '1999', 'SCHIMETER SUSP', 1, '0.2900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '1999', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'schimeter-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3854, '2000', 'BENDRO 5 LOCAL', 1, '2.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2000', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bendro-5-local', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3855, '2001', 'BENDRO 2.5 LOCAL', 1, '25.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2001', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bendro-25-local', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3856, '2002', 'GLUCOSE INFUSION', 1, '11.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2002', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'glucose-infusion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3857, '2003', 'LACTOGEN 1@2', 1, '0.7700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2003', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lactogen-12', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3858, '2004', 'METROLEX F SUSP', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2004', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'metrolex-f-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3859, '2005', 'TETRA CAPS', 1, '14.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2005', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tetra-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3860, '2006', 'SAVLON 125', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2006', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'savlon-125', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3861, '2007', 'SAVLON 250', 1, '20.2600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2007', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'savlon-250', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3862, '2008', 'MENSTRUAL CYC', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2008', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'menstrual-cyc', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3863, '2009', 'MENTAT SRP', 1, '19.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2009', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mentat-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3864, '2010', 'NURIFER SRP', 1, '8.8800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2010', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nurifer-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3865, '2011', 'INFA-V PESS', 1, '7.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2011', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'infa-v-pess1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3866, '2012', 'LOSATAN 50 EXETER', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2012', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'losatan-50-exeter', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3867, '2013', 'TIMOL EYE', 1, '8.7800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2013', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'timol-eye', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3868, '2014', 'OVACARE', 1, '47.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2014', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ovacare', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3869, '2015', 'OSTEOCALIN', 1, '3.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2015', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'osteocalin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3870, '2016', 'NEUROZAN', 1, '15.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2016', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'neurozan', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3871, '2017', 'ENTEROGEMINA', 1, '7.6800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2017', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'enterogemina', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3872, '2018', 'PROMAN', 1, '52.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2018', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'proman', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3873, '2019', 'VISCOF', 1, '1.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2019', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'viscof', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3874, '2020', 'CIALIS', 1, '26.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2020', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cialis', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3875, '2021', 'CHLO CAPS', 1, '21.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2021', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chlo-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3876, '2022', 'NEOVITA CAPS', 1, '1.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2022', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'neovita-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3877, '2023', 'LYNUS OINT', 1, '3.4800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2023', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lynus-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3878, '2024', 'GILOBA', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2024', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'giloba', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3879, '2025', 'LISINOPRIL 5 TEVA', 1, '16.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2025', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lisinopril-5-teva', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3880, '2026', 'CRESTOR 10', 1, '17.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2026', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'crestor-10', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3881, '2027', 'DIGOXIN 125', 1, '2.9700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2027', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'digoxin-125', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3882, '2028', 'DIGOXIN 250', 1, '84.9400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2028', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'digoxin-250', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3883, '2029', 'FLAGL SRP M*G', 1, '14.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2029', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flagl-srp-mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3884, '2030', 'ORELOX SUSP', 1, '17.8300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2030', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'orelox-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3885, '2031', 'STOMOCAIN', 1, '2.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2031', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stomocain', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3886, '2032', 'LIMZER', 1, '10.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2032', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'limzer', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3887, '2033', 'CEBROTONIN', 1, '29.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2033', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cebrotonin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3888, '2034', 'JUNIOR BRUFN SRP', 1, '17.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2034', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'junior-brufn-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3889, '2035', 'MAALOX PLUS', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2035', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'maalox-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3890, '2036', 'SWEETEX', 1, '57.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2036', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sweetex', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3891, '2037', 'CANDEREL', 1, '1.5100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2037', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'canderel', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3892, '2038', 'SERETIDE 50/100', 1, '31.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2038', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'seretide-50100', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3893, '2039', 'LETAMOL', 1, '90.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2039', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'letamol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3894, '2040', 'CARDIOACE', 1, '33.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2040', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cardioace', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3895, '2041', 'OSTECARE PLUS', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2041', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ostecare-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3896, '2042', 'XYLO ACINO INFANT', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2042', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'xylo-acino-infant', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3897, '2043', 'BACTIGEL', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2043', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bactigel', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3898, '2044', 'SASSO SPRAY', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2044', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sasso-spray', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3899, '2045', 'MOSQUITOE REPP', 1, '0.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2045', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mosquitoe-repp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3900, '2046', 'SANITIZER B/S', 1, '7.8800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2046', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sanitizer-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3901, '2047', 'ESSENTIAL EMBR', 1, '24.5300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2047', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'essential-embr', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3902, '2048', 'OSTECARE LOCAL TAB', 1, '35.9200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2048', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ostecare-local-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3903, '2049', 'SILVERDERMA', 1, '29.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2049', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'silverderma', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3904, '2050', 'PROXIMEXA SUSP', 1, '8.4500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2050', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'proximexa-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3905, '2051', 'PEPTO S/S', 1, '6.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2051', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pepto-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3906, '2052', 'DUROL 300ML', 1, '4.7200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2052', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'durol-300ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3907, '2053', 'MALAR 2 FORTE', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2053', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'malar-2-forte', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3908, '2054', 'AMCOF ADULT', 1, '5.2600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2054', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amcof-adult', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3909, '2055', 'AMCOF BABY', 1, '13.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2055', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amcof-baby1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3910, '2056', 'AMCOF JUNIOR', 1, '29.3500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2056', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amcof-junior', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3911, '2057', 'GYNO MYCOLEX PESS', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2057', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gyno-mycolex-pess', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3912, '2058', 'ANUSOL OINT', 1, '9.7500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2058', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'anusol-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3913, '2059', 'FATWIKEKE', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2059', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fatwikeke', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3914, '2060', 'DERMACOT CREM', 1, '6.0500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2060', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dermacot-crem', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3915, '2061', 'COTTON 100', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2061', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cotton-100', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3916, '2062', 'DICLOLEX CREAM', 1, '84.7900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2062', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diclolex-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3917, '2063', 'CAMPHOR', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2063', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'camphor1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3918, '2064', 'ZINNAT SUSP 100MLS', 1, '3.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2064', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zinnat-susp-100mls', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3919, '2065', 'CALAMINE OINT', 1, '28.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2065', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'calamine-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3920, '2066', 'HAEMOGLOBIN ARTN', 1, '34.0200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2066', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'haemoglobin-artn', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3921, '2067', 'MINAMINO', 1, '4.5100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2067', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'minamino', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3922, '2068', 'MAALOX  PLUS', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2068', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'maalox-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3923, '2069', 'DITHRANOL', 1, '38.6500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2069', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dithranol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3924, '2070', 'WHITEFEILD', 1, '27.9400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2070', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'whitefeild', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3925, '2071', 'AUGMENTIN 1G', 1, '1.9300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2071', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'augmentin-1g1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3926, '2072', 'AUGMENTIN 228', 1, '0.1400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2072', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'augmentin-228', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3927, '2073', 'ALKA SELTZER', 1, '0.3200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2073', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'alka-seltzer', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3928, '2074', 'PIRITON LOCAL', 1, '12.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2074', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'piriton-local', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3929, '2075', 'SALBUTAMOL TAB', 1, '65.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2075', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'salbutamol-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3930, '2076', '', 1, '25.3100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2076', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, '1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3931, '2077', 'BACTROBAN', 1, '17.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2077', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bactroban', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3932, '2078', 'SUPIROCIN', 1, '18.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2078', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'supirocin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3933, '2079', 'BUSYLIFESTYLE', 1, '19.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2079', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'busylifestyle', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3934, '2080', 'GLUCOSAMINE', 1, '3.3900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2080', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'glucosamine', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3935, '2081', 'PROWOMAN', 1, '20.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2081', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'prowoman1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3936, '2082', '', 1, '16.3900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2082', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, '1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3937, '2083', 'OTRIVIN ADULT', 1, '4.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2083', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'otrivin-adult', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3938, '2084', 'OTRIVIN CHILD', 1, '3.1200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2084', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'otrivin-child', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3939, '2085', 'CARBOZAP JUNIOR', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2085', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'carbozap-junior', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3940, '2086', 'PROCOLD', 1, '4.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2086', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'procold', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3941, '2087', 'ENACIN 300', 1, '16.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2087', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'enacin-300', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3942, '2088', 'ZINCOFER CAPS', 1, '5.2500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2088', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zincofer-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3943, '2089', 'HILADY', 1, '7.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2089', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hilady', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3944, '2090', 'LEOPARD OINT', 1, '1.4600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2090', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'leopard-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3945, '2091', 'ODYMIN', 1, '3.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2091', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'odymin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3946, '2092', 'GEBEDOL FORTE', 1, '40.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2092', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gebedol-forte', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3947, '2093', 'MEDSOMOX SUSP', 1, '4.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2093', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'medsomox-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3948, '2094', 'CRESTOR 5', 1, '1.9400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2094', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'crestor-5', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3949, '2095', 'SUNLIGHT S/S', 1, '12.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2095', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sunlight-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3950, '2096', 'MEDISOFT', 1, '5.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2096', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'medisoft', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3951, '2097', 'LUCOZADE B/S', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2097', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lucozade-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3952, '2098', 'MALIN ADULT', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2098', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'malin-adult', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3953, '2099', 'SORE DRESING', 1, '0.2200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2099', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sore-dresing', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3954, '2100', 'SELECT STRIPS', 1, '4.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2100', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'select-strips', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3955, '2101', 'FOLIC ACID LOCAL', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2101', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'folic-acid-local', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3956, '2102', 'KAMAGRA JELLY', 1, '2.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2102', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kamagra-jelly', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3957, '2103', 'SHALCIP TZ', 1, '81.9100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2103', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'shalcip-tz', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3958, '2104', 'ENACEF 500', 1, '0.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2104', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'enacef-500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3959, '2105', 'PREGNCARE BRESTF', 1, '0.9100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2105', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pregncare-brestf', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3960, '2106', 'AMPICILIN CAPS', 1, '1.0800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2106', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ampicilin-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3961, '2107', 'CLOXACILLIN CAPS', 1, '14.3900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2107', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cloxacillin-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3962, '2108', 'VOLTIC M/S', 1, '13.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2108', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'voltic-ms', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3963, '2109', 'METFOMIN DENK 1000', 1, '42.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2109', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'metfomin-denk-1000', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3964, '2110', 'LEXPORIN POWDER', 1, '11.0500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2110', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lexporin-powder', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3965, '2111', 'PROCOMIL SPRAY', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2111', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'procomil-spray', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3966, '2112', 'PROCMIL TAB', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2112', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'procmil-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3967, '2113', 'STOPKOF CHILD', 1, '25.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2113', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stopkof-child', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3968, '2114', 'MALIN JUNIOR', 1, '31.8200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2114', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'malin-junior', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3969, '2115', 'FLAGYL ORG SRP', 1, '62.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2115', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flagyl-org-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3970, '2116', 'VISIONACE', 1, '53.3100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2116', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'visionace', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3971, '2117', 'WELLMAN CONCEPTION', 1, '7.2700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2117', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wellman-conception', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3972, '2118', 'CELEBREX', 1, '6.2900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2118', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'celebrex', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3973, '2119', 'OMEGA OIL', 1, '10.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2119', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'omega-oil', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3974, '2120', 'ROUGH RIDER', 1, '8.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2120', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rough-rider', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3975, '2121', 'GV FLUC SUSP', 1, '0.3200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2121', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gv-fluc-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3976, '2122', 'GYPRONE SRP', 1, '1.6600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2122', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gyprone-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3977, '2123', 'INDOCID', 1, '9.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2123', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'indocid', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3978, '2124', 'OSONS COD LIVER', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2124', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'osons-cod-liver', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3979, '2125', 'SUPER APETI SRP', 1, '2.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2125', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'super-apeti-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3980, '2126', 'APDYL -H COUGH S\'S', 1, '0.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2126', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'apdyl-h-cough-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3981, '2127', 'PAINGAY', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2127', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'paingay', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3982, '2128', 'DYNEWELL TAB', 1, '33.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2128', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dynewell-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3983, '2129', 'PLASTER STRIP', 1, '59.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2129', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'plaster-strip', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3984, '2130', 'COLESTOP 20', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2130', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'colestop-20', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3985, '2131', 'LIPITOR 40', 1, '0.1500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2131', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lipitor-40', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3986, '2132', 'OSTEOCARE SRP LOCAL', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2132', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'osteocare-srp-local', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3987, '2133', 'PLASTER STRIP', 1, '23.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2133', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'plaster-strip', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3988, '2134', 'MMT', 1, '16.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2134', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mmt', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3989, '2135', 'FFLUCLOX 500', 1, '11.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2135', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ffluclox-500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3990, '2136', 'MAXITROL', 1, '11.6500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2136', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'maxitrol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3991, '2137', 'CUSIMOLOL', 1, '9.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2137', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cusimolol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3992, '2138', 'BRO-ZEDEX', 1, '8.6200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2138', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bro-zedex', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3993, '2139', 'P-ALAXIN TAB', 1, '12.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2139', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'p-alaxin-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3994, '2140', 'FUROSEMIDE CRESCENT 20', 1, '32.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2140', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'furosemide-crescent-20', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3995, '2141', 'CARVEDILOL 6.25 EXETER', 1, '3.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2141', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'carvedilol-625-exeter', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3996, '2142', 'BIO OIL', 1, '18.0600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2142', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bio-oil', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3997, '2143', 'METRO -Z', 1, '1.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2143', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'metro-z', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3998, '2144', 'PARLODEL', 1, '1.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2144', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'parlodel', NULL, NULL, 0, 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`, `hide_pos`) VALUES (3999, '2145', 'BELLS OLIVE', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2145', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bells-olive', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4000, '2146', 'ESSENTIAL M/S', 1, '14.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2146', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'essential-ms', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4001, '2147', 'LIPITON YELLOW', 1, '0.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2147', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lipiton-yellow', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4002, '2148', 'RAID', 1, '25.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2148', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'raid', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4003, '2149', 'FLORA TISSUE', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2149', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flora-tissue', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4004, '2150', 'SAVLON 500ML', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2150', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'savlon-500ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4005, '2151', 'ORAL B PASTE', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2151', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'oral-b-paste', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4006, '2152', 'SULFER 18 POWD', 1, '11.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2152', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sulfer-18-powd', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4007, '2153', 'SIVODERM POWD', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2153', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sivoderm-powd', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4008, '2154', 'JRA M/S', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2154', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'jra-ms', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4009, '2155', 'JRA S/S', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2155', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'jra-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4010, '2156', 'EVERSHEEN CREAM', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2156', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'eversheen-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4011, '2157', 'QUEEN ELIZ CREAM M/S', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2157', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'queen-eliz-cream-ms', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4012, '2158', 'QUEEN CREAM S/S', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2158', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'queen-cream-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4013, '2159', 'QUEEN LOTIN M/S', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2159', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'queen-lotin-ms', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4014, '2160', 'QUEEN LOTION M/S', 1, '3.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2160', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'queen-lotion-ms', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4015, '2161', 'QUEEN LOTION S/S', 1, '0.7600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2161', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'queen-lotion-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4016, '2162', 'E PANOL', 1, '0.4900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2162', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'e-panol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4017, '2163', 'ZUBES TAB', 1, '1.1400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2163', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zubes-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4018, '2164', 'MENTOS TAB', 1, '37.4100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2164', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mentos-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4019, '2165', 'CHEWETTE', 1, '2.9600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2165', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chewette', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4020, '2166', 'INFACOL 55ML', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2166', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'infacol-55ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4021, '2167', 'TYLENOL EXTRA', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2167', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tylenol-extra1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4022, '2168', 'JS SANITIZER', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2168', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'js-sanitizer', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4023, '2169', 'SANITIZER BS', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2169', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sanitizer-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4024, '2170', 'SANITIZER', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2170', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sanitizer', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4025, '2171', 'SIVODERM SANITIZER', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2171', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sivoderm-sanitizer', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4026, '2172', 'KLEANZ SS', 1, '27.9300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2172', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kleanz-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4027, '2173', 'CAREX', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2173', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'carex', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4028, '2174', 'CYPRODINE SRP', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2174', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cyprodine-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4029, '2175', 'SHOE POLISH', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2175', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'shoe-polish', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4030, '2176', 'RAZOR MEN', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2176', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'razor-men', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4031, '2177', 'RAZOR M&W', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2177', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'razor-mw', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4032, '2178', 'RAZ MW S/S', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2178', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'raz-mw-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4033, '2179', 'FACIAL ORGANIC COTTON', 1, '35.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2179', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'facial-organic-cotton', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4034, '2180', 'ZIGZAG COTTON', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2180', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zigzag-cotton', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4035, '2181', 'STOPCOUGH COD', 1, '23.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2181', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stopcough-cod', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4036, '2182', 'FACIAL SQUEEZE', 1, '17.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2182', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'facial-squeeze', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4037, '2183', 'CLAVU-DOR 1000', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2183', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'clavu-dor-1000', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4038, '2184', 'CLAVU-DOR 625', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2184', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'clavu-dor-625', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4039, '2185', 'MOSQUITOE BANGLES', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2185', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mosquitoe-bangles', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4040, '2186', 'GUCIFER 750', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2186', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gucifer-750', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4041, '2187', 'ZOATERM DS', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2187', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zoaterm-ds', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4042, '2188', 'ZOATERM FORTE', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2188', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zoaterm-forte', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4043, '2189', 'DUO COTECSON', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2189', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'duo-cotecson', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4044, '2190', 'COTTON BUD', 1, '0.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2190', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cotton-bud', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4045, '2191', 'INTERLECTOL', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2191', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'interlectol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4046, '2192', 'FACIAL MASK', 1, '4.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2192', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'facial-mask', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4047, '2193', 'LOSACAR 100', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2193', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'losacar-100', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4048, '2194', 'DINAC 75', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2194', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dinac-75', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4049, '2195', 'CLARITROMYCIN  500', 1, '6.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2195', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'claritromycin-500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4050, '2196', 'AZILEX 250', 1, '4.7300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2196', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'azilex-250', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4051, '2197', 'ATENOLOL 50', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2197', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'atenolol-50', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4052, '2198', 'ATENOLOL 100', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2198', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'atenolol-100', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4053, '2199', 'POWER HOUSE', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2199', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'power-house', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4054, '2200', 'JS S/S', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2200', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'js-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4055, '2201', 'JS B/S', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2201', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'js-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4056, '2202', 'FREE STEP', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2202', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'free-step', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4057, '2203', 'LOVILEA', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2203', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lovilea', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4058, '2204', 'JS B/S', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2204', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'js-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4059, '2205', 'KLEANZ 100ML', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2205', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kleanz-100ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4060, '2206', 'CAREX S/S', 1, '1.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2206', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'carex-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4061, '2207', 'DAS VIT C', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2207', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'das-vit-c', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4062, '2208', 'GLOVES', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2208', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gloves', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4063, '2209', 'HAND CREAM', 1, '4.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2209', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hand-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4064, '2210', 'SANITIZER BB/S', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2210', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sanitizer-bbs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4065, '2211', 'COTTON 100G', 1, '11.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2211', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cotton-100g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4066, '2212', 'BELLS OLIVE B/S', 1, '18.5800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2212', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bells-olive-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4067, '2213', 'DEXATROL OINT', 1, '24.7500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2213', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dexatrol-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4068, '2214', 'MENOPACE', 1, '1.5300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2214', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'menopace', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4069, '2215', 'FLOTAC 75', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2215', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flotac-75', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4070, '2216', 'OMEPRAZOLE HYCID', 1, '11.7600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2216', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'omeprazole-hycid', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4071, '2217', 'SALICYLIC ACID', 1, '73.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2217', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'salicylic-acid', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4072, '2218', 'ITCHTAMOL', 1, '7.8400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2218', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'itchtamol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4073, '2219', 'NORVASC 10', 1, '10.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2219', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'norvasc-10', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4074, '2220', 'CANDIDERM CREAM', 1, '7.4300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2220', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'candiderm-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4075, '2221', 'ADUTWUMUA CAPS', 1, '4.5300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2221', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'adutwumua-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4076, '2222', 'LIVERPLEX -B ADULT', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2222', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'liverplex-b-adult', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4077, '2223', 'FUROSEMIDE 40 TEVA', 1, '4.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2223', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'furosemide-40-teva', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4078, '2224', 'POLYFER 200ML', 1, '8.2400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2224', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'polyfer-200ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4079, '2225', 'CABOZAP ADULT', 1, '3.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2225', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cabozap-adult', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4080, '2226', 'CANDID V-3', 1, '1.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2226', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'candid-v-3', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4081, '2227', 'ABC VIT C SRP', 1, '14.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2227', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'abc-vit-c-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4082, '2228', 'ASCORBIN SRP', 1, '11.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2228', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ascorbin-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4083, '2229', 'PREMECO CAPS', 1, '14.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2229', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'premeco-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4084, '2230', 'STRONG BCO', 1, '22.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2230', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'strong-bco', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4085, '2231', 'SILVERBIRD', 1, '12.5900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2231', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'silverbird', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4086, '2232', 'HOT WAT BOT COVERED', 1, '10.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2232', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hot-wat-bot-covered', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4087, '2233', 'HOT WAT BOT', 1, '13.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2233', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hot-wat-bot', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4088, '2234', 'OMEGA-H3 CAPS', 1, '7.5900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2234', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'omega-h3-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4089, '2235', 'DREZ SOLN 100ML', 1, '17.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2235', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'drez-soln-100ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4090, '2236', 'AMITRIPTLINE 25MG', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2236', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amitriptline-25mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4091, '2237', 'SOLUBLE VIT C', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2237', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'soluble-vit-c', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4092, '2238', 'YAZZ BRUSH', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2238', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'yazz-brush', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4093, '2239', 'DETTOL SOAP', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2239', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dettol-soap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4094, '2240', 'CAMEL SOAP', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2240', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'camel-soap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4095, '2241', 'SHOWER ROLL ON', 1, '4.0200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2241', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'shower-roll-on', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4096, '2242', 'SURE ROLL ON', 1, '3.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2242', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sure-roll-on', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4097, '2243', 'AMLODIPINE 10 TEVA', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2243', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amlodipine-10-teva', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4098, '2244', 'COLGATE BRUSH DOUBLE', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2244', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'colgate-brush-double', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4099, '2245', 'COLGATE BRUSH', 1, '7.7700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2245', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'colgate-brush', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4100, '2246', 'PEPSODENT 123', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2246', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pepsodent-123', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4101, '2247', 'AMOXIL 500', 1, '25.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2247', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoxil-500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4102, '2248', 'GOFEX', 1, '32.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2248', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gofex', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4103, '2249', 'OLFEN-100 CAPS', 1, '27.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2249', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'olfen-100-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4104, '2250', 'TENTEX ROYAL', 1, '43.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2250', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tentex-royal', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4105, '2251', 'CONFIDO', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2251', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'confido', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4106, '2252', 'CORSODYL B/B 500ML', 1, '31.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2252', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'corsodyl-bb-500ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4107, '2253', 'GUDAPET CAPS', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2253', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gudapet-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4108, '2254', 'LARIAM', 1, '3.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2254', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lariam', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4109, '2255', 'RUBBING ALC S/S', 1, '21.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2255', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rubbing-alc-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4110, '2256', 'AMLODIPINE 5MG TEVA', 1, '3.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2256', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amlodipine-5mg-teva', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4111, '2257', 'PANADOL ADVANCE', 1, '20.5900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2257', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'panadol-advance', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4112, '2258', 'DF118', 1, '1.8300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2258', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'df118', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4113, '2259', 'SUDOCREAM 60G', 1, '26.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2259', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sudocream-60g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4114, '2260', 'ROBAXIN-750', 1, '23.9100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2260', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'robaxin-750', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4115, '2261', 'APTIZOOM', 1, '43.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2261', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aptizoom', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4116, '2262', 'DARKTACORT CREAM', 1, '8.1100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2262', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'darktacort-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4117, '2263', 'CLARYTIN SRP', 1, '5.5100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2263', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'clarytin-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4118, '2264', 'LOSAR DENK 50', 1, '18.3800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2264', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'losar-denk-50', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4119, '2265', 'NEXCOFER CAPS', 1, '22.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2265', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nexcofer-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4120, '2266', 'WELLKID TAB', 1, '18.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2266', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wellkid-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4121, '2267', 'NIVEA FAIRNESS', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2267', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nivea-fairness', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4122, '2268', 'NIVEA', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2268', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nivea', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4123, '2269', 'NIVEA CLEANSER', 1, '17.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2269', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nivea-cleanser', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4124, '2270', 'NIVEA ROLL ON', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2270', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nivea-roll-on', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4125, '2271', 'AFTER SHAVE', 1, '8.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2271', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'after-shave', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4126, '2272', 'NIVEA SPRAY', 1, '4.0700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2272', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nivea-spray', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4127, '2273', 'NIVEA INVISIBLE ROLL ON', 1, '20.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2273', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nivea-invisible-roll-on', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4128, '2274', 'GLUCORANGE', 1, '23.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2274', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'glucorange', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4129, '2275', 'SELEVITE', 1, '18.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2275', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'selevite', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4130, '2276', 'NIVEA SHOWER GEL B/S', 1, '11.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2276', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nivea-shower-gel-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4131, '2277', 'NIVEA SHOWER S/S', 1, '13.2700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2277', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nivea-shower-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4132, '2278', 'IVY,S SANITIZER', 1, '3.1500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2278', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ivys-sanitizer', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4133, '2279', 'IMBOOST', 1, '6.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2279', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'imboost1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4134, '2280', 'LEENA CAPS', 1, '0.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2280', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'leena-caps1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4135, '2281', 'LEENA SRP', 1, '4.5800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2281', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'leena-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4136, '2282', 'GLIBENIL TAB', 1, '4.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2282', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'glibenil-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4137, '2283', 'BUSCOLEX', 1, '38.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2283', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'buscolex', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4138, '2284', 'NEXIUM 40 28S', 1, '25.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2284', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nexium-40-28s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4139, '2285', 'DETOL 750MLS', 1, '9.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2285', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'detol-750mls', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4140, '2286', 'DETOL 500ML', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2286', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'detol-500ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4141, '2287', 'DETOL 165ML', 1, '9.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2287', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'detol-165ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4142, '2288', 'DETOL 7MLS', 1, '35.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2288', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'detol-7mls', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4143, '2289', 'SAVLON 125', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2289', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'savlon-125', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4144, '2290', 'SAVLON 750ML', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2290', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'savlon-750ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4145, '2291', 'PREETY LADY PAD', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2291', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'preety-lady-pad', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4146, '2292', 'TENDRINA LOTN B/S', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2292', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tendrina-lotn-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4147, '2293', 'TENDRINA LTN S/S', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2293', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tendrina-ltn-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4148, '2294', 'TENDRINA CREAM', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2294', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tendrina-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4149, '2295', 'TENDRINA CREAMS/S', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2295', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tendrina-creamss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4150, '2296', 'QUEEN ELIZ BBS', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2296', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'queen-eliz-bbs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4151, '2297', 'EVERSHEEN LTIN BS', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2297', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'eversheen-ltin-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4152, '2298', 'EVERSHEEN LTN MS', 1, '0.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2298', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'eversheen-ltn-ms', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4153, '2299', 'EVERSHEEN LTN SS', 1, '13.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2299', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'eversheen-ltn-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4154, '2300', 'DAPREX CAPS', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2300', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'daprex-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4155, '2301', 'RUBBIN ALC 500ML', 1, '12.7400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2301', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rubbin-alc-500ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4156, '2302', 'MAGNESIUM TAB', 1, '1.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2302', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'magnesium-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4157, '2303', 'EFFV MULTIVITAMIN', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2303', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'effv-multivitamin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4158, '2304', 'P TEST KIT', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2304', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'p-test-kit', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4159, '2305', 'AIDKIT', 1, '26.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2305', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aidkit', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4160, '2306', 'G-ABZOLE', 1, '16.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2306', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'g-abzole', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4161, '2307', 'HONEY 500ML', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2307', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'honey-500ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4162, '2308', 'HONEY 250', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2308', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'honey-250', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4163, '2309', 'DENTAL FLOSS', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2309', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dental-floss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4164, '2310', 'GINGER POWDER', 1, '8.8700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2310', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ginger-powder', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4165, '2311', 'MOODS COND', 1, '0.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2311', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'moods-cond', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4166, '2312', 'PRAZIQUANTEL', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2312', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'praziquantel', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4167, '2313', 'FACE MASK', 1, '0.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2313', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'face-mask', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4168, '2314', 'DUROL 300ML', 1, '22.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2314', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'durol-300ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4169, '2315', 'DIAZEPAM 10MG', 1, '0.9700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2315', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diazepam-10mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4170, '2316', 'NIVEA FAIRNESS', 1, '4.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2316', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nivea-fairness', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4171, '2317', 'IBUCAP', 1, '44.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2317', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ibucap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4172, '2318', 'LUCAZADE CAN', 1, '35.1800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2318', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lucazade-can', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4173, '2319', 'CARDIOACE PLUS', 1, '7.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2319', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cardioace-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4174, '2320', 'HERBAL SLIMMING TEA', 1, '43.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2320', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'herbal-slimming-tea', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4175, '2321', 'CITY TONIC', 1, '23.1600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2321', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'city-tonic', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4176, '2322', 'VIT B1', 1, '28.1700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2322', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vit-b1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4177, '2323', 'VIT B6', 1, '74.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2323', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vit-b6', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4178, '2324', 'SAMOCID', 1, '8.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2324', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'samocid', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4179, '2325', 'NEO MEDROL', 1, '1.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2325', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'neo-medrol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4180, '2326', 'LIQUID PARRAFIN', 1, '9.3800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2326', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'liquid-parrafin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4181, '2327', 'CYFEN TAB', 1, '2.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2327', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cyfen-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4182, '2328', 'CYFEN SRP', 1, '43.5700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2328', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cyfen-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4183, '2329', 'C-PHENAMIN SRP', 1, '7.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2329', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'c-phenamin-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4184, '2330', 'OMEGAH H3 LIQUID', 1, '42.4300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2330', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'omegah-h3-liquid', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4185, '2331', 'LUEX ADULT CHESTY', 1, '90.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2331', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'luex-adult-chesty', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4186, '2332', 'VISIONACE PLUS', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2332', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'visionace-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4187, '2333', 'COAFS', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2333', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'coafs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4188, '2334', 'ALPHA VIT C', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2334', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'alpha-vit-c', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4189, '2335', 'CHOCOLATE M/S', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2335', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chocolate-ms', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4190, '2336', 'ENTRAMOL PLUS', 1, '43.8600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2336', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'entramol-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4191, '2337', 'COMBACT-N', 1, '5.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2337', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'combact-n', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4192, '2338', 'LACTULOSE 500ML', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2338', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lactulose-500ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4193, '2339', 'JAGUAR CREAM', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2339', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'jaguar-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4194, '2340', 'BIOVID FORTE', 1, '34.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2340', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'biovid-forte', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4195, '2341', 'DR CHRIS OMEGA', 1, '7.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2341', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dr-chris-omega', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4196, '2342', 'TCP', 1, '41.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2342', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tcp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4197, '2343', 'VALUPAC BCO', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2343', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'valupac-bco', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4198, '2344', 'HAIRFOLLIC', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2344', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hairfollic', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4199, '2345', 'COLGATE CHARC', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2345', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'colgate-charc', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4200, '2346', 'ASCOBIN TAB', 1, '19.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2346', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ascobin-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4201, '2347', 'PROSTAT 60', 1, '6.5300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2347', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'prostat-601', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4202, '2348', 'PROSLUV CAPS', 1, '27.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2348', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'prosluv-caps1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4203, '2349', 'GASTRONE SUSP', 1, '16.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2349', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gastrone-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4204, '2350', 'ALKA SRP', 1, '44.1700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2350', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'alka-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4205, '2351', 'ALLOPURINOL 300', 1, '29.3500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2351', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'allopurinol-300', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4206, '2352', 'NYSTATIN ORAL', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2352', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nystatin-oral', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4207, '2353', 'LIV 52 TAB', 1, '10.2700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2353', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'liv-52-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4208, '2354', 'VITAFOL', 1, '27.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2354', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vitafol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4209, '2355', 'CARVEDILOL 12.5 EXETER', 1, '5.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2355', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'carvedilol-125-exeter', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4210, '2356', 'OLIGOCARE', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2356', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'oligocare1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4211, '2357', 'SWEET PAMPERS', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2357', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sweet-pampers', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4212, '2358', 'ROMA SPRAY', 1, '1.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2358', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'roma-spray', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4213, '2359', 'OUTSPRAY', 1, '14.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2359', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'outspray', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4214, '2360', '~COLGATE BRUSH', 1, '8.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2360', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'colgate-brush', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4215, '2361', 'TISSUE B\\S', 1, '14.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2361', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tissue-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4216, '2362', 'SMILE BABY', 1, '2.5800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2362', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'smile-baby', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4217, '2363', 'HYDROCT CRAEM L\\S', 1, '36.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2363', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hydroct-craem-ls', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4218, '2364', 'GEBEDOL PLUS', 1, '26.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2364', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gebedol-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4219, '2365', 'ROOTER LIFE', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2365', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rooter-life1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4220, '2366', 'FEROVITA SRP', 1, '6.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2366', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ferovita-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4221, '2367', 'SICKAZINK', 1, '11.7200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2367', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sickazink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4222, '2368', 'ABYVITA SRP', 1, '6.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2368', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'abyvita-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4223, '2369', 'FEROLLEX SRP', 1, '9.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2369', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ferollex-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4224, '2370', 'OROFER', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2370', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'orofer', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4225, '2371', 'KLIRE ANTACID', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2371', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'klire-antacid', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4226, '2372', 'HEPTOLIFE', 1, '4.1500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2372', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'heptolife', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4227, '2373', 'MV PRO', 1, '5.0800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2373', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mv-pro', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4228, '2374', 'SHALATERM TAB', 1, '5.1700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2374', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'shalaterm-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4229, '2375', 'SHALATERM SUSP', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2375', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'shalaterm-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4230, '2376', 'CARTEF DS', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2376', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cartef-ds', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4231, '2377', 'CARTEF SUSP', 1, '0.7500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2377', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cartef-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4232, '2378', 'INTAVITA', 1, '0.9100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2378', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'intavita', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4233, '2379', 'ESKADOL', 1, '9.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2379', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'eskadol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4234, '2380', 'RONADOL', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2380', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ronadol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4235, '2381', 'DUROMINE', 1, '1.0400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2381', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'duromine', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4236, '2382', 'GARLIC PEARLS OSONS', 1, '9.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2382', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'garlic-pearls-osons', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4237, '2383', 'DICLONOVA PLUS', 1, '18.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2383', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diclonova-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4238, '2384', 'BELLS HYDROGEN', 1, '2.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2384', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bells-hydrogen', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4239, '2385', 'MYCOLEX POWDER', 1, '60.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2385', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mycolex-powder1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4240, '2386', 'CELGIVITY', 1, '9.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2386', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'celgivity', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4241, '2387', 'FEROGLOBIN PLUS', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2387', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'feroglobin-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4242, '2388', 'VIREST CREAM', 1, '52.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2388', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'virest-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4243, '2389', 'LIPSORE CREAM', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2389', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lipsore-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4244, '2390', 'WELLMAN 70', 1, '19.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2390', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wellman-70', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4245, '2391', 'MAGIC SHAVIN POWDER', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2391', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'magic-shavin-powder', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4246, '2392', 'MAGIC SHAVING CREAM', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2392', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'magic-shaving-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4247, '2393', 'NILOL TAB', 1, '1.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2393', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nilol-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4248, '2394', 'VASELINE CREAM', 1, '0.3600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2394', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vaseline-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4249, '2395', 'GIVING SET', 1, '8.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2395', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'giving-set', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4250, '2396', 'FASTMELT', 1, '23.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2396', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fastmelt', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4251, '2397', 'AMOXIL SUSP UKK', 1, '12.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2397', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoxil-susp-ukk', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4252, '2398', 'JRA B\'S', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2398', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'jra-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4253, '2399', 'NIVEA SPRAY INVISIBLE', 1, '33.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2399', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nivea-spray-invisible', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4254, '2400', 'ZIPFERON SRP', 1, '22.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2400', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zipferon-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4255, '2401', 'PIRITON ORG SRP', 1, '31.0700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2401', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'piriton-org-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4256, '2402', 'BEST VIT C 1000', 1, '2.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2402', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'best-vit-c-1000', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4257, '2403', 'WOODWOARDS', 1, '8.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2403', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'woodwoards', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4258, '2404', 'FERTILO FORT', 1, '19.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2404', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fertilo-fort', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4259, '2405', 'CEFIXIME TAB', 1, '7.0400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2405', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cefixime-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4260, '2406', 'VIT E 400 VALUPAK', 1, '9.8500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2406', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vit-e-400-valupak', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4261, '2407', 'FOLIC 30S VAL', 1, '14.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2407', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'folic-30s-val', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4262, '2408', 'FOLIC ACID 90S VALPK', 1, '35.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2408', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'folic-acid-90s-valpk', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4263, '2409', 'EVENING PRIMROSE', 1, '30.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2409', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'evening-primrose', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4264, '2410', 'NUROFEN SRP', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2410', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nurofen-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4265, '2411', 'SUDAFED TAB', 1, '66.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2411', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sudafed-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4266, '2412', 'BUMPER CD', 1, '35.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2412', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bumper-cd', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4267, '2413', 'ORELOX SUSP', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2413', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'orelox-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4268, '2414', 'OPTREX EYE DROP', 1, '28.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2414', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'optrex-eye-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4269, '2415', 'RAMIPRIL CAPS', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2415', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ramipril-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4270, '2416', 'TINY VITE DROP', 1, '2.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2416', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tiny-vite-drop1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4271, '2417', 'ZENTEL SUSP', 1, '28.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2417', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zentel-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4272, '2418', 'DIPROSIN', 1, '10.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2418', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diprosin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4273, '2419', 'BECHAMS ALL IN ONE', 1, '55.1800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2419', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bechams-all-in-one', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4274, '2420', 'JARIFAN CAPS', 1, '22.4500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2420', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'jarifan-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4275, '2421', 'WELLWOMAN 50 PLUS', 1, '47.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2421', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wellwoman-50-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4276, '2422', 'PEPTO BISMOL S/S', 1, '5.1600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2422', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pepto-bismol-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4277, '2423', 'SPANISH FLY', 1, '1.0700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2423', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'spanish-fly', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4278, '2424', 'LISINOPRIL 20 TEVA', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2424', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lisinopril-20-teva', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4279, '2425', 'MEBENDA', 1, '66.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2425', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mebenda', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4280, '2426', 'BUMPER CD', 1, '35.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2426', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bumper-cd', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4281, '2427', 'ORELOX SUSP', 1, '22.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2427', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'orelox-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4282, '2428', 'OPTREX EYE DROP', 1, '35.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2428', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'optrex-eye-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4283, '2429', 'PIKOVIT SRP', 1, '7.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2429', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pikovit-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4284, '2430', 'SPANISH FLY', 1, '1.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2430', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'spanish-fly', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4285, '2431', 'LOSATARN TEVA 50', 1, '26.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2431', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'losatarn-teva-50', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4286, '2432', 'AVOMINE TAB', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2432', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'avomine-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4287, '2433', 'DIGOXIN 125 ALMUS', 1, '1.3500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2433', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'digoxin-125-almus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4288, '2434', 'MEDICAL ICE COOL', 1, '4.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2434', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'medical-ice-cool', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4289, '2435', 'IBUCAP SHALINA S/S', 1, '28.0200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2435', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ibucap-shalina-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4290, '2436', 'ALDOMET 250', 1, '7.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2436', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aldomet-250', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4291, '2437', 'AZOMAX SUSP', 1, '2.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2437', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'azomax-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4292, '2438', 'FOLIC ACID CRESCENT 28S', 1, '17.6400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2438', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'folic-acid-crescent-28s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4293, '2439', 'DAFLON 500', 1, '4.6700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2439', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'daflon-500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4294, '2440', 'SALBUTAMOL CFC INH', 1, '7.7500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2440', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'salbutamol-cfc-inh', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4295, '2441', 'AMLO-DENK 5MG', 1, '56.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2441', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amlo-denk-5mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4296, '2442', 'AMLO DENK 10MG', 1, '4.0700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2442', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amlo-denk-10mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4297, '2443', 'DAYNURSE LIQUID', 1, '48.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2443', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'daynurse-liquid', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4298, '2444', 'PENFLOX SUSP', 1, '19.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2444', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'penflox-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4299, '2445', 'JOINTCARE S/SEAS', 1, '18.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2445', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'jointcare-sseas', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4300, '2446', 'HEALTHY WOMAN CAPS', 1, '52.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2446', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'healthy-woman-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4301, '2447', 'HEALTHYLINK HAIR,NAILS', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2447', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'healthylink-hairnails', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4302, '2448', 'S SEAS COD LIV 60S', 1, '16.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2448', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 's-seas-cod-liv-60s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4303, '2449', 'LORATIDINE 10 TEVA', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2449', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'loratidine-10-teva', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4304, '2450', 'ADOM P-AWAY CAPS', 1, '19.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2450', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'adom-p-away-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4305, '2451', 'MASTER TEA', 1, '18.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2451', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'master-tea', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4306, '2452', 'NONI JUICE', 1, '22.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2452', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'noni-juice', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4307, '2453', 'PILIEF OINT', 1, '9.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2453', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pilief-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4308, '2454', 'PILIEF TAB', 1, '18.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2454', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pilief-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4309, '2455', 'SABROSSO 100 ML', 1, '32.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2455', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sabrosso-100-ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4310, '2456', 'SABROSO 250ML', 1, '12.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2456', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sabroso-250ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4311, '2457', 'SABROSO 500ML', 1, '0.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2457', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sabroso-500ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4312, '2458', 'X-DRIVE CAPS', 1, '2.7600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2458', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'x-drive-caps1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4313, '2459', 'ASMADRIN', 1, '31.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2459', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'asmadrin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4314, '2460', 'H-AID VIT E 1000IU', 1, '35.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2460', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'h-aid-vit-e-1000iu', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4315, '2461', 'H-AID VIT A 5000IU', 1, '2.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2461', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'h-aid-vit-a-5000iu', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4316, '2462', 'H-AID VIT B12', 1, '13.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2462', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'h-aid-vit-b12', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4317, '2463', 'BLUE AID COTTON 50G', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2463', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'blue-aid-cotton-50g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4318, '2464', 'BLUE AID VASLINE GAUZE', 1, '2.8300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2464', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'blue-aid-vasline-gauze', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4319, '2465', 'EPIDERM LOTION', 1, '3.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2465', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'epiderm-lotion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4320, '2466', 'BETASOL LOTION', 1, '6.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2466', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'betasol-lotion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4321, '2467', 'ODDYMIN CAPS', 1, '16.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2467', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'oddymin-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4322, '2468', 'MARK -2 INH', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2468', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mark-2-inh', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4323, '2469', 'SEBAMED SOAP 150G', 1, '36.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2469', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sebamed-soap-150g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4324, '2470', 'SEBAMED SOAP 100G', 1, '36.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2470', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sebamed-soap-100g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4325, '2471', 'SEBAMED BABY LOTION', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2471', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sebamed-baby-lotion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4326, '2472', 'SEBAMED AA Q10 LOTION', 1, '45.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2472', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sebamed-aa-q10-lotion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4327, '2473', 'SEBAMED B MILK', 1, '36.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2473', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sebamed-b-milk', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4328, '2474', 'SEBAMED SU C 50+', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2474', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sebamed-su-c-50', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4329, '2475', 'SEBAMED UR LO 10', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2475', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sebamed-ur-lo-10', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4330, '2476', 'MADAR LIQD', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2476', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'madar-liqd', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4331, '2477', 'SOFTCARE DIAPER', 1, '54.3300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2477', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'softcare-diaper', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4332, '2478', 'CARBIROID', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2478', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'carbiroid', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4333, '2479', 'ROCEPHIN INJ 1G', 1, '2.7500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2479', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rocephin-inj-1g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4334, '2480', 'AFROSTAR', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2480', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'afrostar', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4335, '2481', 'MISS PLUM', 1, '9.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2481', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'miss-plum', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4336, '2482', 'ACNE CLEAR', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2482', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'acne-clear', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4337, '2483', 'ANACONDA', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2483', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'anaconda', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4338, '2484', 'PERFECT WHITEGEL', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2484', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'perfect-whitegel', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4339, '2485', 'HAPPY FAMILY GEL', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2485', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'happy-family-gel', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4340, '2486', 'SURE SPAY', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2486', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sure-spay', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4341, '2487', 'STYLING GEL M/S', 1, '2.7500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2487', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'styling-gel-ms', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4342, '2488', 'STYLING GEL S/S', 1, '16.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2488', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'styling-gel-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4343, '2489', 'VIP SPRAY', 1, '4.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2489', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vip-spray', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4344, '2490', 'JRA LOTION', 1, '4.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2490', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'jra-lotion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4345, '2491', 'MARQUISE BLUE S/S', 1, '4.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2491', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'marquise-blue-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4346, '2492', 'INCIDENCE SPRAY S/S', 1, '4.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2492', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'incidence-spray-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4347, '2493', 'DAGMAR SPRAY S/S', 1, '19.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2493', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dagmar-spray-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4348, '2494', 'CHAIRMAN S/S', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2494', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chairman-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4349, '2495', 'CLINIC CLEAR LOTION', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2495', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'clinic-clear-lotion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4350, '2496', 'JRA SHOWER GEL', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2496', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'jra-shower-gel', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4351, '2497', 'CHAMBERS 2000', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2497', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chambers-2000', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4352, '2498', 'COLOUR ME', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2498', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'colour-me', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4353, '2499', 'BIOSKIN', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2499', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bioskin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4354, '2500', 'PARADISE POWDER', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2500', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'paradise-powder1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4355, '2501', 'SIVODERM CREAM', 1, '16.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2501', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sivoderm-cream1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4356, '2502', 'PALMAS LOTION', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2502', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'palmas-lotion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4357, '2503', 'SNOWFIRE', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2503', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'snowfire', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4358, '2504', 'ACTIVATOR S/S', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2504', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'activator-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4359, '2505', 'KURL OUT', 1, '6.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2505', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kurl-out', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4360, '2506', 'AFRICAN CLASS', 1, '13.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2506', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'african-class', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4361, '2507', 'KLEEN CLEANSER', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2507', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kleen-cleanser', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4362, '2508', 'SPORTING CREAM', 1, '4.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2508', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sporting-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4363, '2509', 'TOP COUNTRY L/S', 1, '3.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2509', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'top-country-ls', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4364, '2510', 'TOP COUNT M/S', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2510', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'top-count-ms', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4365, '2511', 'TOP COUNT S/S', 1, '1.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2511', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'top-count-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4366, '2512', 'BB CLEAR', 1, '1.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2512', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bb-clear', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4367, '2513', 'CHOCOLT VERY S/S', 1, '3.8800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2513', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chocolt-very-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4368, '2514', 'CHOCOLATE UK', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2514', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chocolate-uk', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4369, '2515', 'PAINGAY GEL', 1, '45.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2515', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'paingay-gel', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4370, '2516', 'POSTINOR LOCAL', 1, '17.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2516', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'postinor-local', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4371, '2517', 'WELLWOMAN MAX', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2517', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wellwoman-max1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4372, '2518', 'EASYLIFE', 1, '4.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2518', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'easylife', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4373, '2519', 'TEETHING MIX', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2519', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'teething-mix', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4374, '2520', 'CARBOZAB', 1, '0.6300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2520', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'carbozab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4375, '2521', 'PAD PANTY', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2521', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pad-panty', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4376, '2522', 'BREAST PAD', 1, '27.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2522', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'breast-pad', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4377, '2523', 'COTTON 500G', 1, '7.0300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2523', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cotton-500g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4378, '2524', 'KY 50G', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2524', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ky-50g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4379, '2525', 'ACILOVIR 200MG TAB', 1, '0.8200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2525', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'acilovir-200mg-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4380, '2526', 'VENA S/S PK', 1, '0.8200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2526', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vena-ss-pk', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4381, '2527', 'VERNA M/S', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2527', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'verna-ms', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4382, '2528', 'VOLTIC S/S PK', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2528', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'voltic-ss-pk', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4383, '2529', 'VOLTIC M/S PK', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2529', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'voltic-ms-pk', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4384, '2530', 'BELAQUA M/S PK', 1, '8.4300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2530', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'belaqua-ms-pk', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4385, '2531', 'BELAQUA S/S PK', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2531', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'belaqua-ss-pk', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4386, '2532', 'CANDID M PAINT', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2532', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'candid-m-paint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4387, '2533', 'THERMOSOL BRUSH', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2533', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'thermosol-brush', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4388, '2534', 'ZINVITE CAPS', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2534', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zinvite-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4389, '2535', 'MOVATE', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2535', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'movate', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4390, '2536', 'LISTERINE B/S', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2536', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'listerine-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4391, '2537', 'COTTON BUD B/S', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2537', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cotton-bud-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4392, '2538', 'COTTON BUD S/S', 1, '18.7500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2538', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cotton-bud-ss1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4393, '2539', 'TAABEA CAPS', 1, '17.3900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2539', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'taabea-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4394, '2540', 'HEALTHY MAN', 1, '1.3300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2540', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'healthy-man', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4395, '2541', 'KINGDOM GARLI CAPS', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2541', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kingdom-garli-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4396, '2542', 'DEXONE', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2542', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dexone', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4397, '2543', 'FRELET 75', 1, '19.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2543', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'frelet-75', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4398, '2544', 'ALOPURINOL 100', 1, '7.6400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2544', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'alopurinol-100', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4399, '2545', 'HYPONIC', 1, '7.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2545', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hyponic', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4400, '2546', 'PONSTAN', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2546', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ponstan', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4401, '2547', 'GLUCONAF D', 1, '5.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2547', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gluconaf-d', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4402, '2548', 'ALLOPURINOL 100', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2548', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'allopurinol-100', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4403, '2549', 'MENTOS COUGH', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2549', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mentos-cough', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4404, '2550', 'ZINC OXIDE PLAST', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2550', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zinc-oxide-plast', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4405, '2551', 'KIDS COLGATE PASTE', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2551', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kids-colgate-paste', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4406, '2552', 'PERFECT CLEAR', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2552', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'perfect-clear', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4407, '2553', 'CUSSONS POWD B/S', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2553', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cussons-powd-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4408, '2554', 'CUSSONS POWD S/S', 1, '14.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2554', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cussons-powd-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4409, '2555', 'JOHNSONS LOTION', 1, '1.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2555', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'johnsons-lotion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4410, '2556', 'JOHNSONS OIL', 1, '0.4900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2556', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'johnsons-oil', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4411, '2557', 'ASHTON TEETN POWD', 1, '40.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2557', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ashton-teetn-powd', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4412, '2558', 'HISTAZINE TAB', 1, '2.1100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2558', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'histazine-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4413, '2559', 'PROGENOVA', 1, '7.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2559', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'progenova', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4414, '2560', 'ENAMYCIN TAB', 1, '35.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2560', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'enamycin-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4415, '2561', 'ADUTWUMWAA MALA MIX', 1, '11.3500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2561', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'adutwumwaa-mala-mix', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4416, '2562', 'VITAMIN B12', 1, '18.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2562', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vitamin-b12', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4417, '2563', 'CYCLOGEST 400', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2563', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cyclogest-400', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4418, '2564', 'DAKTARIN ORAL GEL', 1, '3.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2564', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'daktarin-oral-gel', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4419, '2565', 'COTTON 25G', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2565', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cotton-25g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4420, '2566', 'ADULT DIAPER', 1, '35.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2566', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'adult-diaper', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4421, '2567', 'NAIL CUTTER', 1, '17.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2567', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nail-cutter', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4422, '2568', 'TINATTET EYE', 1, '14.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2568', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tinattet-eye', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4423, '2569', 'TOMAC MIX', 1, '29.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2569', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tomac-mix', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4424, '2570', 'VENE CAPS', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2570', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vene-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4425, '2571', 'PROVERA', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2571', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'provera', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4426, '2572', 'JOY SOAP', 1, '2.0600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2572', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'joy-soap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4427, '2573', 'LIPSORE', 1, '14.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2573', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lipsore', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4428, '2574', 'RONVIT FORTE', 1, '5.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2574', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ronvit-forte', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4429, '2575', 'TRUMAN CAPS', 1, '6.3900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2575', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'truman-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4430, '2576', 'DRAGON LOZ', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2576', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dragon-loz', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4431, '2577', 'KIDIVITE 200ML', 1, '7.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2577', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kidivite-200ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4432, '2578', 'FLUCOR DAY', 1, '17.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2578', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flucor-day1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4433, '2579', 'KIDIMIN', 1, '3.8500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2579', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kidimin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4434, '2580', 'NCP 100ML', 1, '17.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2580', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ncp-100ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4435, '2581', 'SKYBRU', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2581', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'skybru', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4436, '2582', 'WELLTEEN HIM', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2582', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wellteen-him', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4437, '2583', 'COTTON BUD BBS', 1, '9.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2583', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cotton-bud-bbs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4438, '2584', 'LUCKY V CARE', 1, '0.3500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2584', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lucky-v-care1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4439, '2585', 'HAPPIMAN CAPS', 1, '6.2700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2585', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'happiman-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4440, '2586', 'BANANA GUM', 1, '0.4600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2586', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'banana-gum', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4441, '2587', 'POFAKOF ADULT', 1, '30.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2587', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pofakof-adult', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4442, '2588', 'WORMZAP TAB', 1, '2.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2588', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wormzap-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4443, '2589', 'ATWOOD BITTERS', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2589', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'atwood-bitters', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4444, '2590', 'ANGEL SANITIZER', 1, '1.1800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2590', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'angel-sanitizer', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4445, '2591', 'FUROSEMIDE 40 ALMUS', 1, '16.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2591', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'furosemide-40-almus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4446, '2592', 'PINEK-20', 1, '5.4500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2592', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pinek-20', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4447, '2593', 'FLAREX', 1, '37.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2593', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flarex', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4448, '2594', 'POFAKOF JUNIOR', 1, '28.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2594', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pofakof-junior', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4449, '2595', 'ADVIL PM', 1, '1.1700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2595', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'advil-pm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4450, '2596', 'MINADEX', 1, '34.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2596', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'minadex', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4451, '2597', 'METAGYL TAB 400MG', 1, '7.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2597', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'metagyl-tab-400mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4452, '2598', 'MENOPACE ORG', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2598', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'menopace-org', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4453, '2599', 'HAEMOGLOBIN TEST', 1, '28.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2599', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'haemoglobin-test', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4454, '2600', 'TYPHOID TEST', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2600', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'typhoid-test', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4455, '2601', 'CHOLESTEROL TEST', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2601', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cholesterol-test', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4456, '2602', 'PREGNANCY TEST', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2602', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pregnancy-test', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4457, '2603', 'PROSTATE TEST', 1, '5.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2603', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'prostate-test', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4458, '2604', 'FACE SHIELD', 1, '7.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2604', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'face-shield', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4459, '2605', 'HEPATITIS B TEST', 1, '32.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2605', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hepatitis-b-test', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4460, '2606', 'LG GLIZONE 30', 1, '1.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2606', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lg-glizone-30', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4461, '2607', 'AVACARE VIT C', 1, '1.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2607', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'avacare-vit-c', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4462, '2608', 'WEIGHT', 1, '10.6900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2608', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'weight', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4463, '2609', 'LYDIA DAILY PILLS', 1, '16.6700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2609', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lydia-daily-pills', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4464, '2610', 'SENAFEN', 1, '92.8100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2610', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'senafen', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4465, '2611', 'IMMUNE VIT C 1000', 1, '2.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2611', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'immune-vit-c-1000', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4466, '2612', 'CIPROBAY', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2612', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ciprobay', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4467, '2613', 'ADVIL COMBO', 1, '13.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2613', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'advil-combo', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4468, '2614', 'MONIFLU', 1, '38.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2614', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'moniflu', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4469, '2615', 'APPLE CID BORGES 355ML', 1, '25.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2615', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'apple-cid-borges-355ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4470, '2616', 'VINEGAR 500ML', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2616', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vinegar-500ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4471, '2617', 'Ca-C 1000', 1, '0.7700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2617', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ca-c-1000', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4472, '2618', 'GERMANY VIT C', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2618', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'germany-vit-c1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4473, '2619', 'PANACIN', 1, '6.3800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2619', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'panacin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4474, '2620', 'KRIS', 1, '1.8100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2620', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kris', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4475, '2621', 'MAYFAIR SRP', 1, '5.6300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2621', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mayfair-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4476, '2622', 'DICLOKIN', 1, '3.6700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2622', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diclokin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4477, '2623', 'HAEMATOVITE SRP', 1, '2.3100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2623', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'haematovite-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4478, '2624', 'ASPANOL BAB', 1, '2.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2624', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aspanol-bab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4479, '2625', 'WORBEN SRP', 1, '3.8500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2625', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'worben-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4480, '2626', 'BCOMPLEX  SRP KINAPHARMA', 1, '4.1800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2626', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bcomplex-srp-kinapharma', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4481, '2627', 'TASTYMOL INFANT', 1, '0.6600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2627', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tastymol-infant', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4482, '2628', 'ASPANOL PLUS', 1, '8.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2628', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aspanol-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4483, '2629', 'ASCOVITE VIT C 500', 1, '5.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2629', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ascovite-vit-c-500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4484, '2630', 'ANCIGEL O', 1, '7.1600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2630', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ancigel-o', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4485, '2631', 'JEDITONE SRP', 1, '5.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2631', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'jeditone-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4486, '2632', 'GUDAPET SRP', 1, '4.5300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2632', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gudapet-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4487, '2633', 'X,FLUX SRP', 1, '4.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2633', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'xflux-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4488, '2634', 'COLDRILIEF SRP', 1, '8.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2634', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'coldrilief-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4489, '2635', 'ENTRAMOL EXTRA', 1, '3.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2635', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'entramol-extra', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4490, '2636', 'ENTRACIN 300', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2636', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'entracin-300', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4491, '2637', 'BLOPEN GEL', 1, '4.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2637', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'blopen-gel', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4492, '2638', 'GACET 1G', 1, '7.6800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2638', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gacet-1g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4493, '2639', 'X,FERON CAPS', 1, '21.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2639', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'xferon-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4494, '2640', 'ZINVITE SRP', 1, '19.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2640', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zinvite-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4495, '2641', 'IMPRESSER CAPS', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2641', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'impresser-caps1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4496, '2642', 'VOLTAREEN 100', 1, '19.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2642', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'voltareen-100', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4497, '2643', 'COTTON 50G', 1, '22.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2643', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cotton-50g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4498, '2644', 'ELEMENT SPRAY', 1, '11.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2644', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'element-spray', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4499, '2645', 'LAS VEGAS SPRAY', 1, '17.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2645', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'las-vegas-spray', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4500, '2646', 'CLASS SPRAY', 1, '14.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2646', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'class-spray', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4501, '2647', 'CAPRICE SPRAY', 1, '13.1300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2647', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'caprice-spray', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4502, '2648', 'LEMSIP MAX', 1, '25.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2648', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lemsip-max', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4503, '2649', 'SENSODYNE PASTE', 1, '22.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2649', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sensodyne-paste', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4504, '2650', 'LONGRICH PASTE', 1, '5.7200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2650', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'longrich-paste', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4505, '2651', 'NEOCORT EYE DROP', 1, '11.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2651', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'neocort-eye-drop1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4506, '2652', 'PROTONIC', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2652', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'protonic', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4507, '2653', 'QUEEN ELI B/S', 1, '4.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2653', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'queen-eli-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4508, '2654', 'PEPSODENT COMPLETE', 1, '15.2900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2654', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pepsodent-complete', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4509, '2655', 'LUMETHER  ADULT', 1, '5.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2655', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lumether-adult', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4510, '2656', 'LEVOTHYROXINE 100MG', 1, '3.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2656', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'levothyroxine-100mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4511, '2657', 'MIST POT SIT DARL', 1, '9.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2657', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mist-pot-sit-darl', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4512, '2658', 'ARTHROTEC 75', 1, '1.3300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2658', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'arthrotec-75', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4513, '2659', 'SPANISH GARLIC', 1, '4.3200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2659', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'spanish-garlic', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4514, '2660', 'BELL ACTIVE', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2660', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bell-active', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4515, '2661', 'WHEAT DRINK', 1, '11.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2661', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wheat-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4516, '2662', 'FANMAX', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2662', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fanmax', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4517, '2663', 'CERES DRINK', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2663', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ceres-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4518, '2664', 'CANNED MALT', 1, '3.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2664', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'canned-malt', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4519, '2665', 'DON SIMON', 1, '38.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2665', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'don-simon', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4520, '2666', 'CAN COKE/FANTA', 1, '19.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2666', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'can-cokefanta', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4521, '2667', 'BIO OIL B/S', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2667', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bio-oil-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4522, '2668', 'BIO OIL S/S', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2668', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bio-oil-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4523, '2669', 'VASELINE CREAM B/S', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2669', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vaseline-cream-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4524, '2670', 'PEPSODENT CHARCOAL', 1, '2.6600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2670', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pepsodent-charcoal', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4525, '2671', 'FOREVER EASY', 1, '3.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2671', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'forever-easy', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4526, '2672', 'PINEK 30', 1, '4.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2672', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pinek-30', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4527, '2673', 'GANA BALM', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2673', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gana-balm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4528, '2674', 'BASEVIT DROP', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2674', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'basevit-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4529, '2675', 'ADAM,S SECRET', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2675', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'adams-secret', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4530, '2676', 'CHOCOLATE DARK B/S', 1, '9.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2676', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chocolate-dark-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4531, '2677', 'ZEEGHOUT', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2677', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zeeghout', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4532, '2678', 'PURE HEAVEN', 1, '3.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2678', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pure-heaven', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4533, '2679', 'FRUTELLI', 1, '8.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2679', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'frutelli', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4534, '2680', 'VITNUT DRINK', 1, '10.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2680', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vitnut-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4535, '2681', 'VITRAC', 1, '5.4200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2681', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vitrac', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4536, '2682', 'JUVER JUICE', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2682', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'juver-juice', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4537, '2683', 'VODY', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2683', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vody', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4538, '2684', 'LION CLUB ENERGY', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2684', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lion-club-energy', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4539, '2685', 'ADONKO ENERGY', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2685', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'adonko-energy', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4540, '2686', 'FINEST B-12', 1, '5.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2686', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'finest-b-12', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4541, '2687', 'KISS DRINK', 1, '6.6900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2687', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kiss-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4542, '2688', 'HENEKEIN', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2688', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'henekein', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4543, '2689', 'HUNTERS', 1, '4.1700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2689', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hunters', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4544, '2690', 'DON SANGRIA', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2690', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'don-sangria', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4545, '2691', 'DON SIMON S/S', 1, '2.9100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2691', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'don-simon-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4546, '2692', 'HOLLANDIA', 1, '2.0800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2692', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hollandia', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4547, '2693', 'MALTA GUINESS', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2693', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'malta-guiness', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4548, '2694', 'VOLTIC B/S', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2694', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'voltic-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4549, '2695', 'VITRAC S/S', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2695', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vitrac-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4550, '2696', 'FRAG HAND SOAP', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2696', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'frag-hand-soap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4551, '2697', 'DIAL BATHING GEL', 1, '5.8700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2697', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dial-bathing-gel1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4552, '2698', 'PSYLLIUM HUSK', 1, '41.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2698', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'psyllium-husk1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4553, '2699', 'VIT C*ZINC SRP', 1, '7.0500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2699', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vit-czinc-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4554, '2700', 'IMPRESSER OIL', 1, '25.5900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2700', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'impresser-oil1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4555, '2701', 'OSON,S GARLIC PEARLS', 1, '45.8100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2701', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'osons-garlic-pearls', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4556, '2702', 'BENILIN DRY', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2702', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'benilin-dry', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4557, '2703', 'SUDOCREAM 250', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2703', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sudocream-250', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4558, '2704', 'PSYLLIUM HUSK', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2704', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'psyllium-husk1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4559, '2705', 'WASHCLOTH WIPE', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2705', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'washcloth-wipe', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4560, '2706', 'HONEST WIPE', 1, '1.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2706', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'honest-wipe', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4561, '2707', 'BABY GANICS WIPES', 1, '5.9300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2707', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'baby-ganics-wipes', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4562, '2708', 'MOUTHWASH', 1, '1.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2708', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mouthwash', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4563, '2709', 'ABC *ZINC SRP', 1, '2.2500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2709', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'abc-zinc-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4564, '2710', 'FANMAX S/S', 1, '3.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2710', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fanmax-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4565, '2711', 'ALVARO', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2711', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'alvaro', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4566, '2712', 'KRIS DRINK', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2712', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kris-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4567, '2713', 'ORAL B BRUSH', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2713', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'oral-b-brush', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4568, '2714', 'DG BATHING GEL', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2714', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dg-bathing-gel', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4569, '2715', 'WHITE RAIN BATH', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2715', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'white-rain-bath', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4570, '2716', 'SUNSHINE BATH', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2716', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sunshine-bath', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4571, '2717', 'PJ MASK', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2717', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pj-mask', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4572, '2718', 'NIVEA CARE *SPARKLE', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2718', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nivea-care-sparkle', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4573, '2719', 'BONDI SANDS LOTION', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2719', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bondi-sands-lotion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4574, '2720', 'BABY LOTION', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2720', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'baby-lotion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4575, '2721', 'KERATIN CONDITIONER', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2721', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'keratin-conditioner', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4576, '2722', 'HUGGIES WIPE', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2722', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'huggies-wipe', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4577, '2723', 'FEEDING BOT', 1, '350.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2723', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'feeding-bot', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4578, '2724', 'DELIVERY MAT', 1, '75.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2724', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'delivery-mat', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4579, '2725', 'BP MONITOR', 1, '3.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2725', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bp-monitor', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4580, '2726', 'BREAST PUMP', 1, '4.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2726', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'breast-pump', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4581, '2727', 'STOPKOF EXP JNR', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2727', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stopkof-exp-jnr', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4582, '2728', 'STOPKOF EXP ADULT', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2728', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stopkof-exp-adult', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4583, '2729', 'EASY ON', 1, '6.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2729', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'easy-on', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4584, '2730', 'SAMALIN LOZ', 1, '80.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2730', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'samalin-loz', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4585, '2731', 'KLIRE ANTACID S/S', 1, '11.1200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2731', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'klire-antacid-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4586, '2732', 'ON CALL PLUS', 1, '0.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2732', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'on-call-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4587, '2733', 'FERROUS SULPHATE', 1, '17.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2733', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ferrous-sulphate', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4588, '2734', 'GENTA INJ', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2734', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'genta-inj', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4589, '2735', 'VENTOLIN SRP', 1, '15.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2735', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ventolin-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4590, '2736', 'VITALIA S/S', 1, '18.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2736', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vitalia-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4591, '2737', 'LIVOPAT', 1, '18.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2737', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'livopat', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4592, '2738', 'DASTY DEGRESSER', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2738', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dasty-degresser', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4593, '2739', 'FEEDING BOT BIG', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2739', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'feeding-bot-big', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4594, '2740', 'FEDING M/S', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2740', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'feding-ms', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4595, '2741', 'FEEDING S/S', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2741', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'feeding-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4596, '2742', 'GLASS FEEDING B/S', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2742', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'glass-feeding-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4597, '2743', 'GLASS S/S', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2743', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'glass-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4598, '2744', 'NIPPLE', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2744', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nipple', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4599, '2745', 'AZILEX SUSP', 1, '7.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2745', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'azilex-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4600, '2746', 'GBEDEMA GARLIC', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2746', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gbedema-garlic', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4601, '2747', 'AZITEX CAPS', 1, '1.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2747', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'azitex-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4602, '2748', 'GLUCOLIFE C', 1, '8.8500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2748', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'glucolife-c', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4603, '2749', 'ON CALL STRIPS', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2749', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'on-call-strips', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4604, '2750', 'VIT E 200', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2750', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vit-e-200', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4605, '2751', 'CUSSON,S OIL B/S', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2751', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cussons-oil-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4606, '2752', 'CUSSON,S OIL S/S', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2752', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cussons-oil-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4607, '2753', 'LUX SOAP', 1, '4.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2753', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lux-soap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4608, '2754', 'AIRFRESHER', 1, '0.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2754', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'airfresher', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4609, '2755', 'GEISHA SOAP', 1, '5.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2755', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'geisha-soap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4610, '2756', 'WOODS', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2756', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'woods', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4611, '2757', 'ZYMAX TAB', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2757', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zymax-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4612, '2758', 'QUEEN LOTION BBS', 1, '7.4800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2758', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'queen-lotion-bbs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4613, '2759', 'EPSON SALT', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2759', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'epson-salt', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4614, '2760', 'TEGRETOL 200', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2760', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tegretol-200', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4615, '2761', 'SALINE NASAL', 1, '36.8600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2761', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'saline-nasal', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4616, '2762', '3CP', 1, '4.8500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2762', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, '3cp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4617, '2763', 'GALVUS 50MG', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2763', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'galvus-50mg1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4618, '2764', 'FEROFIX', 1, '35.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2764', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ferofix', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4619, '2765', 'CALAMINE LOTION LOCAL', 1, '40.2500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2765', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'calamine-lotion-local', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4620, '2766', 'PEPTO BIS 240ML', 1, '4.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2766', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pepto-bis-240ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4621, '2767', 'DUREX PLAY GEL', 1, '1.4300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2767', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'durex-play-gel', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4622, '2768', 'EXFORGE 5/160/12.5', 1, '5.8100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2768', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'exforge-5160125', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4623, '2769', 'LOFNAC 100MG', 1, '1.0700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2769', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lofnac-100mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4624, '2770', 'STIMUROL SYR', 1, '0.4800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2770', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stimurol-syr', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4625, '2771', 'CHLODIAZEPOX', 1, '16.6600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2771', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chlodiazepox', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4626, '2772', 'O-FORMIN 500', 1, '15.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2772', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'o-formin-500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4627, '2773', 'REDIN  PLUS CAPS', 1, '21.5600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2773', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'redin-plus-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4628, '2774', 'REDIN LIQ', 1, '73.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2774', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'redin-liq', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4629, '2775', 'BETOPTIC EYE DROP', 1, '55.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2775', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'betoptic-eye-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4630, '2776', 'PROSTAN EYE DROP', 1, '3.4300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2776', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'prostan-eye-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4631, '2777', 'DALACIN SRP', 1, '21.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2777', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dalacin-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4632, '2778', 'KEPTRILS LOZ', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2778', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'keptrils-loz', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4633, '2779', 'EUTYMOL PASTE', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2779', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'eutymol-paste', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4634, '2780', 'DIGESTIVE', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2780', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'digestive', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4635, '2781', 'RICH TEA', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2781', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rich-tea', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4636, '2782', 'JACOB,S', 1, '3.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2782', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'jacobs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4637, '2783', 'ROMA CREAM CRACKERS', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2783', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'roma-cream-crackers', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4638, '2784', 'ADOM  OINT', 1, '1.9600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2784', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'adom-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4639, '2785', 'KWAE FRESH', 1, '38.7600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2785', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kwae-fresh', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4640, '2786', 'CHLOR EYE OINT', 1, '0.4300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2786', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chlor-eye-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4641, '2787', 'LEVOFLOXACIN 500', 1, '33.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2787', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'levofloxacin-500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4642, '2788', 'ACTILIFE CAPS', 1, '15.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2788', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'actilife-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4643, '2789', 'FERTILO FORTE CAPS', 1, '11.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2789', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fertilo-forte-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4644, '2790', 'WELLTEEN HER', 1, '11.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2790', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'wellteen-her', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4645, '2791', 'ALWAYS MAXI DOUBLE', 1, '7.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2791', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'always-maxi-double', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4646, '2792', 'LISINOPRIL 10 CRESCENT', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2792', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lisinopril-10-crescent', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4647, '2793', 'MENTHODEX LOZ', 1, '14.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2793', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'menthodex-loz', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4648, '2794', 'ARTHROSAMINE', 1, '4.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2794', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'arthrosamine', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4649, '2795', 'CILOXAN EYE DROP', 1, '5.5900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2795', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ciloxan-eye-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4650, '2796', 'AMOXIL SUSP LUEX', 1, '0.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2796', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoxil-susp-luex', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4651, '2797', 'NEXCOFER 125ML', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2797', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nexcofer-125ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4652, '2798', 'PARA EXETER TAB', 1, '6.6700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2798', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'para-exeter-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4653, '2799', 'INFA V OINT', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2799', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'infa-v-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4654, '2800', 'CLARITINE TAB', 1, '2.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2800', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'claritine-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4655, '2801', 'HOLANDIAS S/S', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2801', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'holandias-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4656, '2802', 'KIDS BRUSH COLG', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2802', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kids-brush-colg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4657, '2803', 'FLUCLOX 250 ESKAY', 1, '56.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2803', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fluclox-250-eskay', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4658, '2804', 'GLASS CLEANER', 1, '3.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2804', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'glass-cleaner', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4659, '2805', 'ZINNAT SUSP 50 ML', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2805', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zinnat-susp-50-ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4660, '2806', 'SMIRNOFF', 1, '27.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2806', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'smirnoff', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4661, '2807', 'EDA BOKOO', 1, '34.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2807', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'eda-bokoo', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4662, '2808', 'NIDO TIN', 1, '36.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2808', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nido-tin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4663, '2809', 'NAN 1@2', 1, '43.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2809', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nan-12', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4664, '2810', 'NAN COMFORT 1@2', 1, '3.6600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2810', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nan-comfort-12', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4665, '2811', 'SMA 1@2', 1, '16.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2811', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sma-12', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4666, '2812', 'MILO DRINK', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2812', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'milo-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4667, '2813', 'MILO TIN', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2813', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'milo-tin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4668, '2814', 'NESCAFE 200G', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2814', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nescafe-200g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4669, '2815', 'NESCAFE 50G', 1, '3.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2815', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nescafe-50g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4670, '2816', 'REXONA SOAP', 1, '42.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2816', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rexona-soap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4671, '2817', 'SIVODERM LOTION', 1, '25.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2817', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sivoderm-lotion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4672, '2818', 'XYLO ACINO ADULT', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2818', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'xylo-acino-adult', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4673, '2819', 'DIAMICROM 60MG', 1, '200.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2819', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diamicrom-60mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4674, '2820', 'CAFEGORT', 1, '16.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2820', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cafegort', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4675, '2821', 'XARELTO 10MG', 1, '4.6600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2821', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'xarelto-10mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4676, '2822', 'GLUCOPHAGE', 1, '2.0800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2822', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'glucophage', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4677, '2823', 'MALIN BABY', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2823', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'malin-baby', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4678, '2824', 'MALIN TAB', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2824', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'malin-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4679, '2825', 'SKIN ESSENTIALS', 1, '25.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2825', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'skin-essentials', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4680, '2826', 'FLORA TISSUE B/S', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2826', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flora-tissue-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4681, '2827', 'WAIST BELT', 1, '0.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2827', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'waist-belt', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4682, '2828', 'AMOKSIKLAV INJ', 1, '3.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2828', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoksiklav-inj', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4683, '2829', 'CRYSTALINE PENICILLIN', 1, '2.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2829', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'crystaline-penicillin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4684, '2830', 'HYDROCORT INJ', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2830', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hydrocort-inj', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4685, '2831', 'NOSPA INJ', 1, '21.1300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2831', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nospa-inj', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4686, '2832', 'BEDMAT', 1, '2.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2832', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bedmat', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4687, '2833', 'LAVET', 1, '5.8300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2833', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lavet1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4688, '2834', 'CIPROCIR EYE DROP', 1, '10.0400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2834', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ciprocir-eye-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4689, '2835', 'LUCOZADE 380', 1, '29.3500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2835', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lucozade-380', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4690, '2836', 'ANTACID MIX', 1, '0.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2836', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'antacid-mix', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4691, '2837', 'EVANOVA', 1, '4.0500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2837', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'evanova', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4692, '2838', 'APC 10*10', 1, '10.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2838', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'apc-1010', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4693, '2839', 'MIST MAG DARL', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2839', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mist-mag-darl', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4694, '2840', 'ANTACID BELLS', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2840', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'antacid-bells', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4695, '2841', 'AMOS VITAL VITC', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2841', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amos-vital-vitc', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4696, '2842', 'PROLIFE VITC', 1, '4.2700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2842', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'prolife-vitc1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4697, '2843', 'BG GLUTAMIN PLUS', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2843', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bg-glutamin-plus1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4698, '2844', 'MYCOVIN 500', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2844', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mycovin-500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4699, '2845', 'MMT', 1, '2.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2845', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mmt', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4700, '2846', 'SEFLOX EAR/EYE', 1, '39.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2846', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'seflox-eareye', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4701, '2847', 'SELECT', 1, '36.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2847', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'select', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4702, '2848', 'apple cider natural', 1, '25.8300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2848', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'apple-cider-natural', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4703, '2849', 'DYKLO SPRAY DICLO', 1, '77.2500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2849', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dyklo-spray-diclo', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4704, '2850', 'SPIRONOLACTONE 100mg', 1, '47.7500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2850', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'spironolactone-100mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4705, '2851', 'VIAGRA IOOMG', 1, '6.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2851', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'viagra-ioomg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4706, '2852', 'VIAGRA 50MG', 1, '7.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2852', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'viagra-50mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4707, '2853', 'RED BULL', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2853', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'red-bull', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4708, '2854', 'BLUE JEANS DRINKS', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2854', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'blue-jeans-drinks', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4709, '2855', 'DON GRACIA', 1, '0.2900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2855', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'don-gracia', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4710, '2856', 'VITRAC PACK DRINK', 1, '1.1400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2856', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vitrac-pack-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4711, '2857', 'ASPIRIN LOCAL', 1, '3.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2857', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aspirin-local', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4712, '2858', 'LOCID', 1, '7.8500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2858', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'locid1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4713, '2859', 'PARAZONE', 1, '0.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2859', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'parazone', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4714, '2860', 'NIFECARD 30', 1, '4.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2860', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nifecard-30', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4715, '2861', 'ALEVE PAIN KILLER', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2861', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aleve-pain-killer', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4716, '2862', 'COCODAMOL', 1, '38.1200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2862', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cocodamol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4717, '2863', 'CALAMINE LTN BELLS', 1, '0.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2863', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'calamine-ltn-bells', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4718, '2864', 'VITANE SRP', 1, '10.6300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2864', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vitane-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4719, '2865', 'ZURION', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2865', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zurion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4720, '2866', 'SPIRONOLAC ECL', 1, '13.9400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2866', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'spironolac-ecl', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4721, '2867', 'TOM BROWN', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2867', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tom-brown', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4722, '2868', 'ASTYFER', 1, '4.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2868', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'astyfer', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4723, '2869', 'SOFTCARE PAD', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2869', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'softcare-pad', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4724, '2870', 'EVERSHEEN CREAM SMALL', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2870', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'eversheen-cream-small1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4725, '2871', 'LEMONVATE', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2871', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lemonvate', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4726, '2872', 'IMPERIAL LATHER', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2872', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'imperial-lather', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4727, '2873', 'ORO INSECTICIDE', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2873', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'oro-insecticide', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4728, '2874', 'SPRAY STARCH', 1, '4.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2874', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'spray-starch', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4729, '2875', 'OCEAN SPRAY BOTTLE', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2875', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ocean-spray-bottle', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4730, '2876', 'OCEAN SPRAY CAN', 1, '2.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2876', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ocean-spray-can', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4731, '2877', 'ALOE VERA DRINK', 1, '13.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2877', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aloe-vera-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4732, '2878', 'JUVER S/S BOTTLE', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2878', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'juver-ss-bottle', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4733, '2879', 'AFRO MOSES', 1, '5.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2879', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'afro-moses1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4734, '2880', 'PROSTACURE X', 1, '3.5400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2880', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'prostacure-x1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4735, '2881', 'PROXIMERA 500G', 1, '7.8600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2881', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'proximera-500g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4736, '2882', 'GASTRON SUSP 100ML', 1, '0.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2882', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gastron-susp-100ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4737, '2883', 'GASTRONE PLUS', 1, '3.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2883', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gastrone-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4738, '2884', 'TOFFEES', 1, '7.3600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2884', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'toffees', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4739, '2885', 'METHYLATED SP B/S', 1, '52.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2885', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'methylated-sp-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4740, '2886', 'MAGACID SUSP', 1, '46.2600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2886', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'magacid-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4741, '2887', 'S/SEAS JOINT SUPPLEX', 1, '1.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2887', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sseas-joint-supplex', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4742, '2888', 'S/SEAS C.L.O CAPS', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2888', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sseas-clo-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4743, '2889', 'REDSUN', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2889', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'redsun', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4744, '2890', 'NIBIMA', 1, '1.1400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2890', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nibima', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4745, '2891', 'VITAGO B/S', 1, '1.4500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2891', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vitago-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4746, '2892', 'MALABASE', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2892', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'malabase', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4747, '2893', 'BASECHLOR', 1, '7.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2893', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'basechlor', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4748, '2894', 'QUININE SRP', 1, '5.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2894', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'quinine-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4749, '2895', 'CYPONE SRP', 1, '2.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2895', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cypone-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4750, '2896', 'ESSENTIALBB/S', 1, '1.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2896', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'essentialbbs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4751, '2897', 'FLU-CLO SUSP(LETAP)', 1, '0.5700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2897', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flu-clo-suspletap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4752, '2898', 'CONTRA-72', 1, '0.6900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2898', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'contra-72', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4753, '2899', 'SLIMFIT S/S', 1, '9.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2899', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'slimfit-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4754, '2900', 'SLIMFIT M/S', 1, '9.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2900', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'slimfit-ms', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4755, '2901', 'CAMISA', 1, '7.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2901', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'camisa', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4756, '2902', 'CRANBERRY', 1, '0.5900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2902', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cranberry', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4757, '2903', 'KIWI DRINK', 1, '0.4400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2903', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kiwi-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4758, '2904', 'VERNA S/S', 1, '304.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2904', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'verna-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4759, '2905', 'COLDAFLU', 1, '33.1500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2905', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'coldaflu', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4760, '2906', 'XARELTO 20', 1, '7.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2906', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'xarelto-20', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4761, '2907', 'MIXTARD', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2907', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mixtard', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4762, '2908', 'CREEP BAND 8', 1, '1.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2908', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'creep-band-8', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4763, '2909', 'CREEP BAND 6', 1, '0.2200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2909', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'creep-band-6', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4764, '2910', 'CENTRUM 30S', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2910', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'centrum-30s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4765, '2911', 'SYRYNGE 2MLS', 1, '18.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2911', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'syrynge-2mls', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4766, '2912', 'HONEY S/S', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2912', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'honey-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4767, '2913', 'HONEY B/S', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2913', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'honey-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4768, '2914', 'CUSSON BABY LOTION', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2914', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cusson-baby-lotion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4769, '2915', 'PLASTER 6INC', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2915', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'plaster-6inc', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4770, '2916', 'PLASTER M/S', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2916', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'plaster-ms', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4771, '2917', 'PLASTER B/S', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2917', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'plaster-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4772, '2918', 'PLSTER S/S', 1, '0.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2918', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'plster-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4773, '2919', 'PLASTER VS/S', 1, '22.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2919', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'plaster-vss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4774, '2920', 'INSULIN SYRNG', 1, '14.7800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2920', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'insulin-syrng', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4775, '2921', 'IMAX DELAY SPRAY', 1, '4.3300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2921', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'imax-delay-spray', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4776, '2922', 'CLARITHROMYCIN TAB 500MG (B-CLAR)', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2922', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'clarithromycin-tab-500mg-b-clar', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4777, '2923', 'CARTEF TAB 24', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2923', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cartef-tab-24', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4778, '2924', 'HUGGIES WIPE BIG', 1, '22.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2924', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'huggies-wipe-big', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4779, '2925', 'TCP SOAP', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2925', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tcp-soap1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4780, '2926', 'VENTOLIN SRP ORG', 1, '43.1500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2926', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ventolin-srp-org', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4781, '2927', 'LUCKY BITTERS', 1, '22.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2927', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lucky-bitters', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4782, '2928', 'TCP 2OOML', 1, '2.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2928', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tcp-2ooml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4783, '2929', 'VENTOLIN ORIG SYRP', 1, '6.2500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2929', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ventolin-orig-syrp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4784, '2930', 'CHOCHO SOAP', 1, '0.7500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2930', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chocho-soap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4785, '2931', 'CERES CAN', 1, '0.7500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2931', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ceres-can', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4786, '2932', 'VIP BRUSH', 1, '24.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2932', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vip-brush', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4787, '2933', 'SMOKERS BRUSH', 1, '18.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2933', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'smokers-brush', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4788, '2934', 'SASSO SPRAY BIG', 1, '19.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2934', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sasso-spray-big', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4789, '2935', 'SENSODYNE PASTE SMALL', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2935', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sensodyne-paste-small', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4790, '2936', 'VALUPAK VIT E 400', 1, '2.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2936', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'valupak-vit-e-400', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4791, '2937', 'X,FERON SRP', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2937', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'xferon-srp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4792, '2938', 'STOPKOF COLD *CATTARRH TAB', 1, '42.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2938', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stopkof-cold-cattarrh-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4793, '2939', 'OVULATION TEST KIT', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2939', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ovulation-test-kit', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4794, '2940', 'AMMENS POWER', 1, '14.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2940', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ammens-power', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4795, '2941', 'UNIDUS LONG LOVE CONDOM', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2941', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'unidus-long-love-condom', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4796, '2942', 'MEDICATED SOAP', 1, '6.2900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2942', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'medicated-soap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4797, '2943', 'COAL TAR BAR SOAP', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2943', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'coal-tar-bar-soap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4798, '2944', 'KALAMINA LOTION', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2944', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kalamina-lotion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4799, '2945', 'MAGDOX ANTACID SUSP', 1, '14.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2945', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'magdox-antacid-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4800, '2946', 'DIGITAL THERMOMETOR', 1, '2.4900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2946', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'digital-thermometor', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4801, '2947', 'MENTHYLATED SPIRIT VERY BIG', 1, '29.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2947', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'menthylated-spirit-very-big', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4802, '2948', 'PROMETHAZINE SRUP', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2948', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'promethazine-srup', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4803, '2949', 'ENAPHOX SUSP', 1, '0.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2949', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'enaphox-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4804, '2950', 'EPICIPRIN', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2950', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'epiciprin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4805, '2951', 'POTASSIUM', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2951', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'potassium', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4806, '2952', 'PEOBIOTICS 20 STRAINS', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2952', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'peobiotics-20-strains', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4807, '2953', 'THERMOMETER ANUS', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2953', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'thermometer-anus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4808, '2954', 'PROBIOTICS', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2954', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'probiotics', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4809, '2955', 'VISION', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2955', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vision', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4810, '2956', 'NASAL SPRAY', 1, '50.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2956', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nasal-spray', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4811, '2957', 'CHOLINE BITARTRATE', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2957', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'choline-bitartrate', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4812, '2958', 'ESSENTIAL EMZYMES', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2958', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'essential-emzymes', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4813, '2959', 'HIGH ABSORPTION COQ10', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2959', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'high-absorption-coq10', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4814, '2960', 'FLAXSEED OIL', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2960', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flaxseed-oil', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4815, '2961', 'KETO FAST/BURN', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2961', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'keto-fastburn', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4816, '2962', 'LITTLE REMEDIES GRIPE WATER', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2962', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'little-remedies-gripe-water', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4817, '2963', 'EQUATE STOMACH RELIEF', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2963', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'equate-stomach-relief', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4818, '2964', 'CULTURE PROBIOTIC BABY', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2964', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'culture-probiotic-baby', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4819, '2965', 'NEUTROPHIL PLUS', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2965', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'neutrophil-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4820, '2966', 'CEYLON CINNAMON', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2966', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ceylon-cinnamon', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4821, '2967', 'MAGNESIUM', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2967', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'magnesium', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4822, '2968', 'D-MANNOSE', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2968', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'd-mannose', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4823, '2969', 'HYALURONIC', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2969', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hyaluronic', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4824, '2970', 'OMEGA 3', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2970', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'omega-3', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4825, '2971', 'TART CHERRY', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2971', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tart-cherry', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4826, '2972', 'NATURES BOUTY D3', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2972', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'natures-bouty-d3', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4827, '2973', 'TUMERIC CURCUMIN', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2973', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tumeric-curcumin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4828, '2974', 'FORTIFY WOMENS  PROBIOTIC', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2974', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fortify-womens-probiotic', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4829, '2975', 'ALIVE ONCE DAILY', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2975', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'alive-once-daily', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4830, '2976', 'REMFRESH', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2976', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'remfresh', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4831, '2977', 'VITAMIN CODE', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2977', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vitamin-code', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4832, '2978', 'FATHER JOHNSON', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2978', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'father-johnson', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4833, '2979', 'DR TOBIA OMAGA 3', 1, '50.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2979', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dr-tobia-omaga-3', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4834, '2980', 'VIRGIN COCONUT OIL', 1, '50.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2980', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'virgin-coconut-oil', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4835, '2981', 'MULTI MINERALS', 1, '40.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2981', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'multi-minerals', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4836, '2982', 'C-1000', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2982', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'c-1000', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4837, '2983', 'GABA 500MG', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2983', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gaba-500mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4838, '2984', 'NAC N -ACETYL', 1, '40.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2984', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nac-n-acetyl', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4839, '2985', 'DGL', 1, '40.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2985', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dgl', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4840, '2986', 'PROSTATE FORMULA', 1, '40.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2986', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'prostate-formula', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4841, '2987', 'ALPHA LIPOID', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2987', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'alpha-lipoid', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4842, '2988', 'CITRACAL', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2988', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'citracal', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4843, '2989', 'BEANO ULTRA 800', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2989', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'beano-ultra-800', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4844, '2990', 'PEDIA LAX', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2990', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pedia-lax', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4845, '2991', 'NATURE MADE COQ10', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2991', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nature-made-coq10', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4846, '2992', 'TAN OPTIMIZER', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2992', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tan-optimizer', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4847, '2993', 'MUCINEX FAST MAX', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2993', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mucinex-fast-max', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4848, '2994', 'PURE ZINC 30', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2994', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pure-zinc-30', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4849, '2995', 'PRESER VISION', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2995', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'preser-vision', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4850, '2996', 'MELATOMIN', 1, '52.0200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2996', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'melatomin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4851, '2997', '5HTP', 1, '0.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2997', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, '5htp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4852, '2998', 'ONE A DAY MEN 50+', 1, '18.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2998', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'one-a-day-men-50', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4853, '2999', 'PEEKAPOO PAD LINER', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '2999', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'peekapoo-pad-liner', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4854, '3000', 'GOODNITE', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3000', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'goodnite', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4855, '3001', 'PAMPERS SPLASHES', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3001', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pampers-splashes', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4856, '3002', 'CUTTIES ESSENTIALS', 1, '9.1600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3002', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cutties-essentials', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4857, '3003', 'HUGGIES LITTLE', 1, '4.4200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3003', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'huggies-little', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4858, '3004', 'APPLE JUICE', 1, '0.4500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3004', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'apple-juice', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4859, '3005', 'MANDANOL NASAL DROP', 1, '2.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3005', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mandanol-nasal-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4860, '3006', 'DICLOFENAC SUPP', 1, '14.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3006', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diclofenac-supp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4861, '3007', 'TYLENOL PM 50', 1, '4.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3007', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tylenol-pm-50', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4862, '3008', 'ZUBES EXTRA STRONG', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3008', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zubes-extra-strong', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4863, '3009', 'VITAMILK  BOTTLE', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3009', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vitamilk-bottle', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4864, '3010', 'VITAMILK', 1, '0.2400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3010', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vitamilk', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4865, '3011', 'AMON CHOCOLATE', 1, '6.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3011', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amon-chocolate', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4866, '3012', 'VINKA CHOCOLATE', 1, '5.2900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3012', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vinka-chocolate', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4867, '3013', 'SNICKERS', 1, '8.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3013', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'snickers', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4868, '3014', 'BOUNTY', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3014', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bounty', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4869, '3015', 'MALTESERS', 1, '17.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3015', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'maltesers', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4870, '3016', 'SHORT BREAD', 1, '26.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3016', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'short-bread', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4871, '3017', 'CD CAPS', 1, '18.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3017', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cd-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4872, '3018', 'JOY VIKIL', 1, '25.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3018', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'joy-vikil1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4873, '3019', 'LIQUID SOAP', 1, '10.3400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3019', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'liquid-soap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4874, '3020', '~JOY VIKEL', 1, '0.4700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3020', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'joy-vikel', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4875, '3021', 'ACNEL GEL 20MG', 1, '32.1800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3021', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'acnel-gel-20mg1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4876, '3022', 'FAMACOLD', 1, '18.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3022', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'famacold', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4877, '3023', 'JOINTFLEX PLUS TABS', 1, '1.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3023', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'jointflex-plus-tabs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4878, '3024', 'FLOOR CLEANER', 1, '14.7700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3024', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'floor-cleaner', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4879, '3025', 'GASTRONE TAB', 1, '0.5800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3025', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gastrone-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4880, '3026', 'LISINOPRIL 20 CREASENT', 1, '5.3500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3026', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lisinopril-20-creasent', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4881, '3027', 'GLIBENCLAMIDE', 1, '3.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3027', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'glibenclamide', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4882, '3028', 'CABOZAP JUNIOR', 1, '3.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3028', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cabozap-junior', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4883, '3029', 'EMGIBRUFEN', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3029', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'emgibrufen', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4884, '3030', 'CHLORAMPHENICOL', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3030', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chloramphenicol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4885, '3031', 'SUAVE ESSENTIAL BIG', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3031', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'suave-essential-big', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4886, '3032', 'TINATETT BATHING FRESH', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3032', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tinatett-bathing-fresh', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4887, '3033', 'SUAVE ESSENTIALS SMALL', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3033', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'suave-essentials-small', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4888, '3034', 'FOAMING BATH', 1, '28.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3034', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'foaming-bath', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4889, '3035', 'DACILIN 300MG', 1, '35.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3035', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dacilin-300mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4890, '3036', 'PALMAS COCO BUTTER', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3036', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'palmas-coco-butter', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4891, '3037', 'CORSODYL BIG  300ML', 1, '0.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3037', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'corsodyl-big-300ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4892, '3038', 'MOSQUITO NET', 1, '0.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3038', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mosquito-net', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4893, '3039', 'KIDS FACE MASK', 1, '14.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3039', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kids-face-mask', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4894, '3040', 'KIDS FACE MASK', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3040', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kids-face-mask', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4895, '3041', 'GBEDEMA BIG MAN', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3041', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gbedema-big-man', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4896, '3042', 'ULTIMATE OMEGA D3', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3042', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ultimate-omega-d3', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4897, '3043', 'HEMP OIL CAPSULES', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3043', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hemp-oil-capsules', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4898, '3044', '~MAGNESIUM', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3044', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'magnesium', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4899, '3045', 'COLOSTRUM', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3045', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'colostrum', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4900, '3046', 'MOVE FREE JOINT S/S', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3046', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'move-free-joint-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4901, '3047', 'TUMERIC 538', 1, '60.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3047', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tumeric-538', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4902, '3048', 'BONE STRENTH', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3048', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bone-strenth', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4903, '3049', 'FISH OIL', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3049', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fish-oil', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4904, '3050', 'L-LYSINE', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3050', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'l-lysine', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4905, '3051', 'DEEP IMMUNE', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3051', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'deep-immune', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4906, '3052', 'SIMILASAN', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3052', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'similasan', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4907, '3053', 'MG 217', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3053', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mg-217', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4908, '3054', 'BONINE', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3054', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bonine', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4909, '3055', 'ELTA MD', 1, '50.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3055', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'elta-md', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4910, '3056', 'OCUVITE', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3056', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ocuvite', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4911, '3057', 'OSTEO-BI FLEX', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3057', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'osteo-bi-flex', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4912, '3058', 'MEGA RED', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3058', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mega-red', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4913, '3059', 'SAMBUCUS', 1, '0.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3059', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sambucus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4914, '3060', 'MOVE FREE B/S', 1, '6.9300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3060', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'move-free-bs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4915, '3061', 'VIT D3', 1, '9.5300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3061', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vit-d3', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4916, '3062', 'VIGONX', 1, '7.3800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3062', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vigonx', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4917, '3063', 'CEFUNATE SUSP', 1, '6.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3063', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cefunate-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4918, '3064', 'KINAMYCIN 300', 1, '28.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3064', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kinamycin-300', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4919, '3065', 'FINE LIFE BLOOD TONIC', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3065', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fine-life-blood-tonic', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4920, '3066', 'PANADOL ADVANCE 32\'S', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3066', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'panadol-advance-32s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4921, '3067', 'ARTESUNATE 30', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3067', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'artesunate-30', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4922, '3068', 'DIHYDROCODEINE 30MG', 1, '20.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3068', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dihydrocodeine-30mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4923, '3069', 'HAND SANITIZER COCO', 1, '8.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3069', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hand-sanitizer-coco', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4924, '3070', 'MYCOCORT CREAM', 1, '50.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3070', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mycocort-cream', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4925, '3071', 'KEFROX SUSP', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3071', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kefrox-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4926, '3072', 'KLEANZ SANITISER BIG', 1, '10.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3072', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kleanz-sanitiser-big', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4927, '3073', 'HANDS SANITISER COCO BIG', 1, '1.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3073', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hands-sanitiser-coco-big', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4928, '3074', 'ZYMAX 500', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3074', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zymax-500', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4929, '3075', 'OMEPRAZOLE  20', 1, '13.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3075', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'omeprazole-20', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4930, '3076', 'AIRFRESHNER HANGING', 1, '5.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3076', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'airfreshner-hanging', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4931, '3077', 'LEVOTHROXINE 50MG', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3077', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'levothroxine-50mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4932, '3078', 'METRO Z SUSP', 1, '3.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3078', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'metro-z-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4933, '3079', 'FRUSEMIDE TAB 40MG BRISTOL', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3079', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'frusemide-tab-40mg-bristol', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4934, '3080', 'LUEX NASALINHALER', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3080', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'luex-nasalinhaler', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4935, '3081', 'SANITAZER BIG', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3081', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sanitazer-big', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4936, '3082', 'SANITIZER MEDIUM', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3082', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sanitizer-medium', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4937, '3083', 'EASY CHECK', 1, '15.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3083', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'easy-check', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4938, '3084', 'HEMP OIL', 1, '6.8700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3084', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hemp-oil', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4939, '3085', 'OLANZEPINE TAB 10MG', 1, '11.9600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3085', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'olanzepine-tab-10mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4940, '3086', 'NESTERIX FORTE SYR', 1, '3.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3086', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nesterix-forte-syr', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4941, '3087', 'NORMO TEARS EYE DROP', 1, '50.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3087', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'normo-tears-eye-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4942, '3088', 'FACE MASK SHIELD', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3088', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'face-mask-shield', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4943, '3089', 'SMARTYS KIDS GUMMY', 1, '50.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3089', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'smartys-kids-gummy', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4944, '3090', 'HERB BERRY DROPS', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3090', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'herb-berry-drops', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4945, '3091', 'MCT OIL', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3091', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mct-oil', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4946, '3092', 'DIHYDROMYRICETIN 300MG', 1, '15.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3092', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dihydromyricetin-300mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4947, '3093', 'AZO BLADDER CONTROL', 1, '17.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3093', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'azo-bladder-control', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4948, '3094', 'GEN M SUSP', 1, '21.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3094', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gen-m-susp1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4949, '3095', 'GEN M TABS 80/480', 1, '0.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3095', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gen-m-tabs-80480', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4950, '3096', 'TOBREX EYE DROP', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3096', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tobrex-eye-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4951, '3097', 'DICNAC 100MG SUPP', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3097', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dicnac-100mg-supp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4952, '3098', 'PROPA LINER', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3098', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'propa-liner', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4953, '3099', 'ANTI BACTERIAL WIPES', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3099', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'anti-bacterial-wipes', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4954, '3100', 'NATURE WAY HAIR&SKIN', 1, '4.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3100', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nature-way-hairskin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4955, '3101', 'MiraLAX', 1, '5.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3101', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'miralax', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4956, '3102', 'BIC RAZOR', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3102', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bic-razor', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4957, '3103', 'ZYMAX SUSP', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3103', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zymax-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4958, '3104', 'EAR SWAB', 1, '3.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3104', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ear-swab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4959, '3105', 'FEMCARE', 1, '13.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3105', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'femcare', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4960, '3106', 'THERMOSOL SMART', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3106', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'thermosol-smart', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4961, '3107', 'EPICROM 2%', 1, '7.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3107', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'epicrom-2', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4962, '3108', 'FACE MASK K95', 1, '4.3600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3108', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'face-mask-k95', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4963, '3109', 'FUROSEMIDE BRISTOL 40MG', 1, '0.7900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3109', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'furosemide-bristol-40mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4964, '3110', 'ASCOVIT CEE SYR', 1, '16.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3110', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ascovit-cee-syr', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4965, '3111', 'METOCHLOPRAMIDE 10MG', 1, '6.6700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3111', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'metochlopramide-10mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4966, '3112', 'LUBRIMAX JELLY 70 GM', 1, '13.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3112', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lubrimax-jelly-70-gm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4967, '3113', 'AZIRON 500MG TABS', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3113', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aziron-500mg-tabs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4968, '3114', 'BRENEX SYR', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3114', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'brenex-syr', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4969, '3115', 'GILLETTE BLUE', 1, '4.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3115', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gillette-blue', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4970, '3116', 'SOBOLO DRINK', 1, '0.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3116', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sobolo-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4971, '3117', 'AMPICLOX ECL', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3117', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ampiclox-ecl', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4972, '3118', 'AMOXYCILLIN CAPS/ BLISS 250', 1, '5.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3118', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoxycillin-caps-bliss-250', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4973, '3119', 'KLOVIRAL PESS', 1, '5.4200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3119', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kloviral-pess', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4974, '3120', 'LOFNAC BALM HERBAL', 1, '1.8200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3120', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lofnac-balm-herbal', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4975, '3121', 'LIVERPLEX INFANT', 1, '5.3900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3121', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'liverplex-infant', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4976, '3122', 'OMECET CAPS', 1, '3.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3122', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'omecet-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4977, '3123', 'METHYLATED SPIRIT BB', 1, '0.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3123', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'methylated-spirit-bb', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4978, '3124', 'NESBEN TAB 200MG', 1, '8.1600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3124', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'nesben-tab-200mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4979, '3125', 'FUROSAMIDE TABS 40 ECL', 1, '0.3200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3125', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'furosamide-tabs-40-ecl', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4980, '3126', 'FRESH BREATH SPY', 1, '15.8900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3126', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fresh-breath-spy', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4981, '3127', 'FERROUS SULPHATE STRIPS', 1, '4.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3127', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ferrous-sulphate-strips', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4982, '3128', 'VIT C CHEAWABLE', 1, '46.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3128', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vit-c-cheawable', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4983, '3129', 'CETRIZAN 10MG', 1, '4.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3129', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cetrizan-10mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4984, '3130', 'PREGNACIN PLUS', 1, '5.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3130', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pregnacin-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4985, '3131', 'FRUSEMIDE TAB 40MG UK', 1, '5.8300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3131', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'frusemide-tab-40mg-uk', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4986, '3132', 'METHLATED SPIRIT BB', 1, '9.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3132', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'methlated-spirit-bb', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4987, '3133', 'ROX DRINKS', 1, '1.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3133', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rox-drinks', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4988, '3134', 'WELCHS DRINK', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3134', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'welchs-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4989, '3135', 'WELCHS TOFFEE', 1, '2.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3135', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'welchs-toffee1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4990, '3136', 'ORAL B PASTE MEDIUM', 1, '5.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3136', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'oral-b-paste-medium', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4991, '3137', 'ORAL B PASTE SMALL', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3137', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'oral-b-paste-small', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4992, '3138', 'ARTIBASE FORTE 80/480 16', 1, '20.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3138', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'artibase-forte-80480-16', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4993, '3139', 'FOLIC ACID TAB 5MG ACCORD', 1, '6.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3139', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'folic-acid-tab-5mg-accord', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4994, '3140', '8 HOUR FEVER MIX', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3140', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, '8-hour-fever-mix1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4995, '3141', 'FAMACOLD SYR', 1, '4.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3141', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'famacold-syr1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4996, '3142', 'PARALEX BABY', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3142', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'paralex-baby1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4997, '3143', 'JAGUAR BALM 80ML', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3143', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'jaguar-balm-80ml1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4998, '3144', 'JAGUAR BALM 125', 1, '10.8600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3144', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'jaguar-balm-125', NULL, NULL, 0, 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`, `hide_pos`) VALUES (4999, '3145', 'ALPHA FOLIC ACID', 1, '5.3300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3145', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'alpha-folic-acid1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5000, '3146', 'ZOFIORA 120ML', 1, '6.3300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3146', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zofiora-120ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5001, '3147', 'AQUQ FRESH HERBAL', 1, '9.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3147', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aquq-fresh-herbal', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5002, '3148', 'AQUA  FRESH MINT', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3148', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aqua-fresh-mint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5003, '3149', 'AQUA FRESH MILD&MINTY6', 1, '11.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3149', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'aqua-fresh-mildminty6', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5004, '3150', 'LISINOVA 5MG', 1, '10.7400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3150', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lisinova-5mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5005, '3151', 'LEXOFEN SUSP 150ML', 1, '40.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3151', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lexofen-susp-150ml1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5006, '3152', 'LEXOFEN SUSP 100ML', 1, '39.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3152', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lexofen-susp-100ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5007, '3153', 'BLUE SPOT EYEDROP', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3153', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'blue-spot-eyedrop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5008, '3154', 'OPTREX REFRESHING', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3154', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'optrex-refreshing', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5009, '3155', 'AMUZU GARLIC', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3155', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amuzu-garlic1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5010, '3156', 'SANITESER SMALL', 1, '11.9200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3156', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'saniteser-small', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5011, '3157', 'SANITESER VERY SMALL', 1, '24.8200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3157', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'saniteser-very-small', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5012, '3158', 'COD LIVER OIL B/N', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3158', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cod-liver-oil-bn', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5013, '3159', 'CLOPIDOGREL 75MG', 1, '44.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3159', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'clopidogrel-75mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5014, '3160', 'PROMAN DRINK', 1, '25.1200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3160', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'proman-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5015, '3161', 'BRAINWESE OMEGA 3  150ML', 1, '20.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3161', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'brainwese-omega-3-150ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5016, '3162', 'MEDGLOBIN CAPS', 1, '1.1200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3162', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'medglobin-caps1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5017, '3163', 'MEDGLOBIN SYR', 1, '6.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3163', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'medglobin-syr1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5018, '3164', 'MAALOX SUSP SACHETS 20', 1, '3.4300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3164', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'maalox-susp-sachets-20', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5019, '3165', 'POLYGEL SUSP 200ML', 1, '15.1700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3165', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'polygel-susp-200ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5020, '3166', 'PRONALIN ADULT', 1, '16.8400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3166', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pronalin-adult1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5021, '3167', 'STRETCH GO', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3167', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'stretch-go1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5022, '3168', 'VALUPAK VIT C 500MG CHEWABLE', 1, '19.6900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3168', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'valupak-vit-c-500mg-chewable', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5023, '3169', 'RENERVE PLUS CAPS', 1, '6.4900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3169', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'renerve-plus-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5024, '3170', 'SALAMOL CFC INHALER', 1, '9.8500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3170', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'salamol-cfc-inhaler1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5025, '3171', 'METRO 400MG TABS EXETER', 1, '37.3700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3171', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'metro-400mg-tabs-exeter', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5026, '3172', 'KLINDA 300', 1, '11.8200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3172', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'klinda-300', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5027, '3173', 'MILK OF MAGNESIUM PHILIPS', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3173', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'milk-of-magnesium-philips', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5028, '3174', 'PROCOLD  SYR 60ML', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3174', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'procold-syr-60ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5029, '3175', 'EYECARE DRY', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3175', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'eyecare-dry', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5030, '3176', 'BETA POLLEN PLUS', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3176', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'beta-pollen-plus', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5031, '3177', 'RENEWLIFE 30/90S', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3177', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'renewlife-3090s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5032, '3178', 'ACTIVE B12 FOLATE', 1, '30.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3178', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'active-b12-folate', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5033, '3179', 'COQ-ZYME', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3179', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'coq-zyme', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5034, '3180', 'QUADRALEAN', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3180', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'quadralean', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5035, '3181', 'GINGER ROOT 550MG', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3181', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ginger-root-550mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5036, '3182', 'HAIR & SKIN CAPS', 1, '2.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3182', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hair-skin-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5037, '3183', 'DIYHDROMRICETIN', 1, '2.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3183', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diyhdromricetin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5038, '3184', 'CALCIUM B12 SYRUP', 1, '3.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3184', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'calcium-b12-syrup', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5039, '3185', 'COUGH & COLD CHILD CARE', 1, '1.5500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3185', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cough-cold-child-care', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5040, '3186', 'FOLIRON TONIC 200ML', 1, '1.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3186', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'foliron-tonic-200ml1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5041, '3187', 'LETAVIT SYRUP', 1, '2.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3187', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'letavit-syrup', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5042, '3188', 'MILK OF MAGNESIA LETAP', 1, '1.6500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3188', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'milk-of-magnesia-letap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5043, '3189', 'LETARON SYRUP', 1, '1.6500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3189', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'letaron-syrup', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5044, '3190', 'AMOXYCILLIN SYRUP LETAP', 1, '0.4500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3190', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'amoxycillin-syrup-letap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5045, '3191', 'LETAFEN SUSPENSION', 1, '0.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3191', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'letafen-suspension', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5046, '3192', 'LETAMOX TABLET 500MG', 1, '3.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3192', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'letamox-tablet-500mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5047, '3193', 'XPEL SUSP DEWORMER', 1, '0.3500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3193', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'xpel-susp-dewormer', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5048, '3194', 'ARFAN 20/120MG', 1, '0.2500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3194', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'arfan-20120mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5049, '3195', 'ASCORBIN TAB', 1, '6.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3195', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ascorbin-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5050, '3196', 'FUROSEMIDE TAB LETAP', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3196', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'furosemide-tab-letap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5051, '3197', 'AZIS TAB 500MG', 1, '68.2500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3197', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'azis-tab-500mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5052, '3198', 'SALINE NASAL LOCAL', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3198', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'saline-nasal-local', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5053, '3199', 'PLENDIL 10MG', 1, '2.3300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3199', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'plendil-10mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5054, '3200', 'ENAMYCIN SUSP ECL', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3200', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'enamycin-susp-ecl', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5055, '3201', 'LILY  ROSS BRUSH', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3201', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lily-ross-brush', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5056, '3202', 'CLINIC CLEAR LOTION SMALL', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3202', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'clinic-clear-lotion-small', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5057, '3203', 'BIOSKIN MEDIUM', 1, '2.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3203', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bioskin-medium', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5058, '3204', 'DAY BY DAY POWDER', 1, '7.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3204', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'day-by-day-powder', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5059, '3205', 'STYLING GEL BROKLYN', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3205', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'styling-gel-broklyn', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5060, '3206', 'HERBAL ESSENTIAL OIL 30ML', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3206', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'herbal-essential-oil-30ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5061, '3207', 'HERBAL ESSENTIALS OIL 40ML', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3207', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'herbal-essentials-oil-40ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5062, '3208', 'HERBAL ESSENTIALS OIL 60ML', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3208', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'herbal-essentials-oil-60ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5063, '3209', 'HERBAL ESSENTIAL OIL 10ML', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3209', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'herbal-essential-oil-10ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5064, '3210', 'LUBRIMAX JELLY 50G', 1, '38.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3210', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lubrimax-jelly-50g', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5065, '3211', 'FIESTA LUBRICANT GEL SMALL', 1, '11.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3211', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fiesta-lubricant-gel-small', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5066, '3212', 'TYLENOL PM 24\'S', 1, '3.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3212', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tylenol-pm-24s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5067, '3213', 'GACET 500MG', 1, '28.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3213', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gacet-500mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5068, '3214', 'mercy soap', 1, '4.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3214', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mercy-soap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5069, '3215', 'TCP 50ML', 1, '4.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3215', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tcp-50ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5070, '3216', 'ANTREMOL D', 1, '8.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3216', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'antremol-d', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5071, '3217', 'ENTRAMOL D', 1, '2.4700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3217', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'entramol-d', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5072, '3218', 'GIVERS HERBAL MIXTURE BIG', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3218', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'givers-herbal-mixture-big', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5073, '3219', 'FLUCONAT 150', 1, '9.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3219', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fluconat-150', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5074, '3220', 'LONART TAB', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3220', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lonart-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5075, '3221', 'SOFT&GENTLE LOTION', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3221', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'softgentle-lotion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5076, '3222', 'RIGHT GUARD LOTION', 1, '2.8100', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3222', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'right-guard-lotion', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5077, '3223', 'ZULU EXTRA', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3223', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'zulu-extra1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5078, '3224', 'BORIC ACID EAR DROP', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3224', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'boric-acid-ear-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5079, '3225', 'YAAKSON MIXTURE', 1, '0.1600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3225', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'yaakson-mixture', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5080, '3226', 'DUO COTTON PADS', 1, '3.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3226', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'duo-cotton-pads', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5081, '3227', 'YOVANNY COUGH LOZENGES', 1, '3.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3227', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'yovanny-cough-lozenges', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5082, '3228', 'ABYVITA CAPS', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3228', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'abyvita-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5083, '3229', 'CIPRO TAB OSONS', 1, '6.6600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3229', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cipro-tab-osons', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5084, '3230', 'BROWN SUGAR', 1, '6.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3230', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'brown-sugar', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5085, '3231', 'SAVANNA DRINK', 1, '9.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3231', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'savanna-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5086, '3232', 'JUVER PAPER DRINK', 1, '11.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3232', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'juver-paper-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5087, '3233', 'SUN EXOTIC DRINK', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3233', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sun-exotic-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5088, '3234', 'RUBICON DRINK', 1, '10.2400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3234', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rubicon-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5089, '3235', 'ADIDAS SPRAY', 1, '12.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3235', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'adidas-spray', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5090, '3236', 'LOSARTAN POTASSIUM 100MG TEVA', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3236', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'losartan-potassium-100mg-teva', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5091, '3237', 'ADOM NATURAL MAN MIXTURE', 1, '12.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3237', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'adom-natural-man-mixture1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5092, '3238', 'GIANT EAGLE MOUTH WASH', 1, '9.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3238', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'giant-eagle-mouth-wash', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5093, '3239', 'PAMPERS S/S', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3239', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pampers-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5094, '3240', 'HONEYKOF HERBAL COUGH SYRUP', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3240', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'honeykof-herbal-cough-syrup', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5095, '3241', '~', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3241', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, '1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5096, '3242', '', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3242', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, '1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5097, '3243', '', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3243', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, '1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5098, '3244', 'ADUSA MIXTURE', 1, '13.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3244', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'adusa-mixture', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5099, '3245', 'LAWSON HERBAL MIXTURE', 1, '92.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3245', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lawson-herbal-mixture', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5100, '3246', 'DELAY MAN CAPS', 1, '8.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3246', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'delay-man-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5101, '3247', 'MALARONE PAED TABS', 1, '5.9500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3247', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'malarone-paed-tabs', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5102, '3248', 'BELLS OLIVE OIL ORIGNAL', 1, '7.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3248', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bells-olive-oil-orignal', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5103, '3249', 'ASCORYL PLUS SYRUP', 1, '72.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3249', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ascoryl-plus-syrup', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5104, '3250', 'APETATRUST', 1, '11.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3250', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'apetatrust', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5105, '3251', '', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3251', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, '1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5106, '3252', 'ARZIGLOBIN SYRUP', 1, '72.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3252', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'arziglobin-syrup', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5107, '3253', 'COVONIA DRY TICKLY 150ML', 1, '24.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3253', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'covonia-dry-tickly-150ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5108, '3254', 'GALFER SYRUP 300ML', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3254', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'galfer-syrup-300ml', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5109, '3255', 'IROVIT DROP', 1, '0.6600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3255', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'irovit-drop', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5110, '3256', 'WIDALUM SUSP', 1, '14.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3256', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'widalum-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5111, '3257', 'ANDREWS LIVER SALTS', 1, '5.7200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3257', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'andrews-liver-salts', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5112, '3258', 'RESCOFER SYRUP', 1, '3.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3258', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'rescofer-syrup', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5113, '3259', 'LIVERTONE BLOOD TONIC', 1, '89.0400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3259', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'livertone-blood-tonic', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5114, '3260', 'ARTETAB SUSP', 1, '26.2800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3260', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'artetab-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5115, '3261', 'COQ 10 WINMILL', 1, '31.3200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3261', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'coq-10-winmill', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5116, '3262', 'FISH OIL GOOD NEIGH. PHARM', 1, '52.0200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3262', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fish-oil-good-neigh-pharm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5117, '3263', 'VIT A GOOD NEIGH.PHARM', 1, '91.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3263', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vit-a-good-neighpharm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5118, '3264', 'ONE A DAY WOMEN TAB', 1, '17.9400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3264', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'one-a-day-women-tab', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5119, '3265', 'PURE MARK VEGAN PRO', 1, '53.4600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3265', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'pure-mark-vegan-pro', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5120, '3266', 'VIT A  MAJOR', 1, '41.0400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3266', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vit-a-major', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5121, '3267', 'MULTIVITANIM GUMMIES', 1, '40.4400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3267', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'multivitanim-gummies', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5122, '3268', 'BCOMPLEX  NAT BOUNTY', 1, '16.0200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3268', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bcomplex-nat-bounty', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5123, '3269', 'FISH OIL SUNDOWN', 1, '33.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3269', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fish-oil-sundown1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5124, '3270', 'FOLIC ACID SUNDOWN', 1, '52.0200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3270', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'folic-acid-sundown', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5125, '3271', 'ECHINACEA  COMPLEX GOOD NEIGH PHARM', 1, '39.9000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3271', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'echinacea-complex-good-neigh-pharm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5126, '3272', 'ONE A DAY MEN', 1, '41.2200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3272', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'one-a-day-men', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5127, '3273', 'VALERIAN ROOT NAT BOUNTY', 1, '38.2800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3273', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'valerian-root-nat-bounty', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5128, '3274', 'VIT B12  NAT BOUNTY', 1, '17.8200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3274', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vit-b12-nat-bounty', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5129, '3275', 'VIT K2 MASON', 1, '35.5800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3275', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vit-k2-mason', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5130, '3276', 'CALCIUM 600 + D3', 1, '30.7800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3276', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'calcium-600-d3', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5131, '3277', 'COD LIVER OIL MASON', 1, '27.4800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3277', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cod-liver-oil-mason', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5132, '3278', 'HEALTHY EYE GOOD NEIGH PHARM', 1, '28.3800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3278', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'healthy-eye-good-neigh-pharm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5133, '3279', 'MELATONIN SUNDOWN', 1, '45.3600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3279', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'melatonin-sundown1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5134, '3280', 'MENTHOLATUM NIGHT RUB', 1, '65.8800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3280', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mentholatum-night-rub', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5135, '3281', 'SAW PALMETTO CAP', 1, '52.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3281', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'saw-palmetto-cap', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5136, '3282', 'SCANDISHAKE POWER', 1, '0.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3282', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'scandishake-power', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5137, '3283', 'VIT E OIL', 1, '8.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3283', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'vit-e-oil1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5138, '3284', 'FISH OIL MAJOR', 1, '7.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3284', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fish-oil-major1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5139, '3285', 'BLACK SOAP BIG', 1, '17.6500', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3285', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'black-soap-big', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5140, '3286', 'BLACK SOAP SMALL', 1, '17.2900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3286', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'black-soap-small', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5141, '3287', 'D ARTEPP TAB 60/480MG', 1, '32.9800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3287', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'd-artepp-tab-60480mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5142, '3288', 'MEDULAC SUPP 250MLS', 1, '9.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3288', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'medulac-supp-250mls', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5143, '3289', 'GAVISCON DOUBLE ACTION', 1, '51.7800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3289', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gaviscon-double-action', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5144, '3290', 'DEEP HEAT OINT 15G', 1, '70.5800', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3290', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'deep-heat-oint-15g1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5145, '3291', 'ALPHA LIPOIC  MASON', 1, '14.7000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3291', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'alpha-lipoic-mason', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5146, '3292', 'CHOLESOFF NATURE MADE', 1, '42.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3292', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cholesoff-nature-made', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5147, '3293', 'FEROSUL MAJOR', 1, '46.7300', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3293', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ferosul-major', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5148, '3294', 'FISH OIL 100MG MAJOR', 1, '37.7400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3294', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fish-oil-100mg-major', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5149, '3295', 'GINGKO BILOBA EXTRACT', 1, '38.0400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3295', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gingko-biloba-extract', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5150, '3296', 'MELATONIN  GOOD NEIGHBOUR PHRM', 1, '61.9200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3296', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'melatonin-good-neighbour-phrm', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5151, '3297', 'LUTEIN SOFTGEL MASON', 1, '62.0200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3297', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lutein-softgel-mason', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5152, '3298', 'OMEGA 3 1000 EPA', 1, '24.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3298', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'omega-3-1000-epa', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5153, '3299', 'ONE A DAY MEN 50+ 65CT', 1, '9.9200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3299', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'one-a-day-men-50-65ct', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5154, '3300', 'MUPIROCIN OINT', 1, '1.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3300', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mupirocin-oint', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5155, '3301', 'LORSATAN 100MG EXETER', 1, '5.6200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3301', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lorsatan-100mg-exeter', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5156, '3302', 'BELLA AQUA WATER M/S', 1, '5.2000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3302', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bella-aqua-water-ms', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5157, '3303', 'CEFTRIA DOR 1000', 1, '7.9400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3303', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ceftria-dor-1000', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5158, '3304', 'CEFURO DOR 750', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3304', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cefuro-dor-750', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5159, '3305', 'LUEX CHILD CHESTY', 1, '45.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3305', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'luex-child-chesty1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5160, '3306', 'CREST CHARCOAL TOOTHPASTE', 1, '4.9900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3306', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'crest-charcoal-toothpaste', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5161, '3307', 'LISTERINE MOUNTH WASH 1L', 1, '6.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3307', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'listerine-mounth-wash-1l', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5162, '3308', 'FLUXACIN CAPS 500MG', 1, '1.1400', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3308', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'fluxacin-caps-500mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5163, '3309', 'FERROUS SULPHATE 200MG', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3309', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ferrous-sulphate-200mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5164, '3310', 'DICLONOVA 100MG', 1, '25.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3310', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'diclonova-100mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5165, '3311', 'HERBAL TEA', 1, '3.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3311', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'herbal-tea', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5166, '3312', 'SWEET ALMOND', 1, '10.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3312', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'sweet-almond', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5167, '3313', 'CLOVES', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3313', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cloves', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5168, '3314', 'CHIA SEED', 1, '5.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3314', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'chia-seed', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5169, '3315', 'GLODEN RAISON', 1, '15.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3315', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'gloden-raison', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5170, '3316', 'BULLET ENERGY DRINK', 1, '4.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3316', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'bullet-energy-drink', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5171, '3317', 'GOLDEN RAISON', 1, '0.5600', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3317', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'golden-raison', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5172, '3318', 'MARIE PANTY LINER', 1, '4.4200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3318', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'marie-panty-liner', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5173, '3319', 'LETACAM (PIROXICAM)', 1, '4.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3319', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'letacam-piroxicam', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5174, '3320', 'LETAVIN TAB 500MG', 1, '0.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3320', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'letavin-tab-500mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5175, '3321', 'KOFOF ADULT SYRUP', 1, '3.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3321', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'kofof-adult-syrup', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5176, '3322', 'METFORMIN 500MG OA&J', 1, '3.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3322', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'metformin-500mg-oaj', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5177, '3323', 'CEFUROXINE 750 INJ', 1, '1.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3323', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'cefuroxine-750-inj', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5178, '3324', 'CEFTRIAZONE 1G INJ', 1, '27.1000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3324', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ceftriazone-1g-inj', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5179, '3325', 'ENTRAMOL SINGLES', 1, '5.4000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3325', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'entramol-singles', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5180, '3326', 'S/S SEAS C.L.O 30\'S', 1, '10.5000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3326', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ss-seas-clo-30s', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5181, '3327', 'LUMETHER SUSP', 1, '5.3000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3327', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'lumether-susp', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5182, '3328', 'ADOM MALAKARE', 1, '4.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3328', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'adom-malakare', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5183, '3329', 'SNICKERS S/S', 1, '11.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3329', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'snickers-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5184, '3330', 'SKITTLES', 1, '20.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3330', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'skittles', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5185, '3331', 'JOHNSON BABY OIL S/S', 1, '6.8700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3331', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'johnson-baby-oil-ss', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5186, '3332', 'ALMOND SEED', 1, '33.4700', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3332', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'almond-seed', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5187, '3333', 'MALAR 2 DS', 1, '12.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3333', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'malar-2-ds', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5188, '3334', 'PROMAN 50+', 1, '5.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3334', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'proman-50', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5189, '3335', 'HYDROCORTISONE CREAM', 1, '1.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3335', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'hydrocortisone-cream1', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5190, '3336', 'WELCH DRINK SMALL', 1, '7.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3336', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'welch-drink-small', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5191, '3337', 'DORCO RAZOR', 1, '1.8000', '3.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3337', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'dorco-razor', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5192, '3338', 'ALVITE CAPS', 1, '19.8000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3338', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'alvite-caps', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5193, '3339', 'MENTOS CHN', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3339', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'mentos-chn', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5194, '3340', 'SEPTILIN', 1, '5.5900', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3340', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'septilin', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5195, '3341', 'TRO XIME CEFUROXINE 750', 1, '4.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3341', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'tro-xime-cefuroxine-750', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5196, '3342', 'ECL ANTACID', 1, '4.3200', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3342', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ecl-antacid', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5197, '3343', 'KOFFEX C', 1, '1.6000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3343', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'koffex-c', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5198, '3344', 'RONFIT SYRUP', 1, '68.0000', '0.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, 1, 1, NULL, NULL, '3344', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'ronfit-syrup', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5199, '3345', 'FLUCORON 200MG', 1, '4.0000', '4.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, '3345', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'flucoron-200mg', NULL, NULL, 0, 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`, `hide_pos`) VALUES (5200, '3346', 'BEAUTEX', 1, '88.0000', '88.0000', '20.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', 1, 1, NULL, NULL, '3346', NULL, NULL, 1, 'standard', NULL, '0.0000', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 1, 1, NULL, 'beautex', NULL, NULL, 0, 0, 0, '', 0);


#
# TABLE STRUCTURE FOR: sma_promos
#

DROP TABLE IF EXISTS `sma_promos`;

CREATE TABLE `sma_promos` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `product2buy` int(11) NOT NULL,
  `product2get` int(11) NOT NULL,
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `description` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# 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,
  `product_selling_price` 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,
  `base_unit_cost` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `purchase_id` (`purchase_id`),
  KEY `product_id` (`product_id`)
) ENGINE=InnoDB AUTO_INCREMENT=27465 DEFAULT CHARSET=utf8;

INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2, 2, NULL, 1768, 'PR-481', 'VITAMIN C TABS 500MG 30\' (EXETER)', NULL, '100.0000', '0.0000', '100.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '10000.0000', '100.0000', '2021-03-24', 'received', '100.0000', '100.0000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3, NULL, NULL, 1381, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4, NULL, NULL, 1324, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5, NULL, NULL, 1387, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13, NULL, NULL, 1323, 'PR-36', 'GLIZONE 30MG', NULL, '7.9900', '0.0000', '1.0000', 1, NULL, NULL, NULL, NULL, NULL, NULL, '7.9900', '2.0000', '2021-03-24', 'received', '7.9900', '7.9900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14, NULL, NULL, 1325, 'PR-38', 'MUPIROCIN OINTMENT 15G', NULL, '23.9800', '0.0000', '1.0000', 1, '0.0000', 1, '0', NULL, NULL, NULL, '23.9800', '2.0000', '2021-03-24', 'received', '23.9800', '23.9800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18, NULL, NULL, 1325, 'PR-38', 'MUPIROCIN OINTMENT 15G', NULL, '23.9800', '0.0000', '0.0000', 2, '0.0000', 1, '0', NULL, NULL, NULL, '0.0000', '0.0000', '2021-03-24', 'received', '23.9800', '23.9800', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19, NULL, NULL, 1324, 'PR-37', 'MEDICAL ICE COOL', NULL, '4.0000', '0.0000', '0.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-03-24', 'received', '4.0000', '4.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20, NULL, NULL, 1323, 'PR-36', 'GLIZONE 30MG', NULL, '7.9900', '0.0000', '0.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-03-24', 'received', '7.9900', '7.9900', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (28, 8, NULL, 1299, 'PR-12', 'ARTIBASE : SUSP', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-08-31', '900.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (29, 8, NULL, 1300, 'PR-13', 'ARTIBASE FORTE 80/4801X6', NULL, '90.0000', '0.0000', '20.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-03-31', '1800.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30, 8, NULL, 1301, 'PR-14', 'BASE COLD 1X6X10', NULL, '90.0000', '0.0000', '20.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-01-31', '1800.0000', '11.0000', '2021-03-29', 'received', '90.0000', '90.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31, 8, NULL, 1302, 'PR-15', 'BASE COLD SYR', NULL, '90.0000', '0.0000', '20.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-11-30', '1800.0000', '9.0000', '2021-03-29', 'received', '90.0000', '90.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32, 8, NULL, 1303, 'PR-16', 'BASE BOOM JELLY', NULL, '90.0000', '0.0000', '120.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-09-30', '10800.0000', '110.0000', '2021-03-29', 'received', '90.0000', '90.0000', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (33, 9, NULL, 1305, 'PR-18', 'BASEKOF SYR', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-08-31', '450.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (34, 9, NULL, 1304, 'PR-17', 'BASECHLOR DROPS', NULL, '90.0000', '0.0000', '120.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-09-30', '10800.0000', '111.0000', '2021-03-29', 'received', '90.0000', '90.0000', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (35, 9, NULL, 1306, 'PR-19', 'DOMI 10: TAB', NULL, '90.0000', '0.0000', '0.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-03-30', '0.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36, 9, NULL, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '90.0000', '0.0000', '30.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-01-01', '2700.0000', '30.0000', '2021-03-29', 'received', '90.0000', '90.0000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (37, 9, NULL, 1308, '5012617005687', 'FOLIC ACID 5MG OVAL', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-10-01', '360.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38, 9, NULL, 1309, 'PR-22', 'GENTBASE EYE/EAR DROP', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-09-30', '900.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39, 9, NULL, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', NULL, '90.0000', '0.0000', '25.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-06-30', '2250.0000', '5.0000', '2021-03-29', 'received', '90.0000', '90.0000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (40, 9, NULL, 1312, 'PR-25', 'MILK OF MAGNESIA S/S', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-10-31', '270.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (41, 9, NULL, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-05-31', '900.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (42, 9, NULL, 1314, 'PR-27', 'WORMBASE SUSP', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-05-31', '900.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43, 10, NULL, 1315, 'PR-28', '8 HOUR FEVER MIX', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2025-01-01', '90.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (44, 10, NULL, 1316, 'PR-29', 'FAMACOLD SYR', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-11-30', '270.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (45, 10, NULL, 1317, 'PR-30', 'KOFLET COUGH SYR', NULL, '90.0000', '0.0000', '0.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-11-01', '0.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (46, 10, NULL, 1318, '5017848248049', 'MENTHOX SYR ADULT', NULL, '90.0000', '0.0000', '0.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-03-31', '0.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (47, 10, NULL, 1319, 'PR-32', 'PARA SYR AYRTON', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-09-30', '180.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48, 10, NULL, 1320, 'PR-33', 'PARALEX BABY', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-06-01', '180.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49, 10, NULL, 1321, 'PR-34', 'TRES ORIX FORTE 1 00ML(S/S)', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-01-31', '540.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (64, 13, NULL, 1729, 'PR-442', 'GYNO-DAKTARIN CREAM 40G', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-05-31', '270.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65, 13, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-02-28', '270.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (66, 13, NULL, 1731, 'PR-444', 'DAKTARIN CREAM 15G', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-10-31', '270.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (67, 13, NULL, 1732, 'PR-445', 'DAKTARIN ORAL GEL 40G', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-05-31', '180.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (68, 13, NULL, 1733, 'PR-446', 'ENAFIX TABS 200MG 10\'', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-09-30', '450.0000', '4.0000', '2021-03-29', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (69, 13, NULL, 1734, 'PR-447', 'ENAFIX SUSP. 100ML', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-12-31', '270.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (70, 13, NULL, 1735, 'PR-448', 'EXFORGE TABS (10/160)MG 28', NULL, '90.0000', '0.0000', '28.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-09-30', '2520.0000', '28.0000', '2021-03-29', 'received', '90.0000', '90.0000', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (71, 13, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '26.7000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-02-28', '26.7000', '1.0000', '2021-03-29', 'received', '26.7000', '26.7000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '26.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (72, 13, NULL, 1737, '8901040310307', 'PREGNACIN PLUS CAPS 60\'', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-03-31', '90.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (73, 13, NULL, 1738, 'PR-451', 'MENTHODEX LOZENGES 15\'(SACHET} 50G', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-04-30', '270.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (74, 13, NULL, 1739, 'PR-452', 'MENTHODEX LOZENGES (H&L) 15\' 50G', NULL, '90.0000', '0.0000', '0.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-03-31', '0.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (75, 13, NULL, 1740, 'PR-453', 'SILDENAFIL TABS 1 00MG 4\'(EXETER)', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-10-31', '270.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (76, 13, NULL, 1741, '5017007601289', 'SUDOCREAM 125G', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-10-31', '180.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (77, 14, NULL, 1742, '53996671', 'SUDOCREM 30G TUBE', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-07-31', '180.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (78, 14, NULL, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-01-31', '450.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (79, 14, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-12-31', '180.0000', '1.0000', '2021-03-29', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (80, 14, NULL, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', NULL, '90.0000', '0.0000', '30.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-12-30', '2700.0000', '30.0000', '2021-03-29', 'received', '90.0000', '90.0000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (81, 14, NULL, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', NULL, '90.0000', '0.0000', '0.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-09-30', '0.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (82, 14, NULL, 1642, '6001135507628', 'BENYLIN DRY', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-04-30', '270.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (83, 14, NULL, 1750, 'PR-463', 'BENYLIN ORIG. SYRUP 100ML', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-04-30', '360.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (84, 14, NULL, 1751, 'PR-464', 'METRO-Z TABS 20', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-09-30', '450.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (85, 14, NULL, 1753, 'PR-466', 'LIVERTONE JUNIOR SYRUP 125ML', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-05-31', '270.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (86, 14, NULL, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-05-31', '180.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (87, 15, NULL, 1755, 'PR-468', 'STOPKOF EXPT( CARBOCISTEINE)5% ADULT 100ML', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-12-31', '540.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (88, 15, NULL, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', NULL, '90.0000', '0.0000', '20.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-12-31', '1800.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (89, 15, NULL, 1757, 'PR-470', 'PERMOXYL (AMOX\'LIN ) SUSP 100ML', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-01-31', '540.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (90, 15, NULL, 1879, 'PR-592', 'PERMOXYL SUSP', NULL, '90.0000', '0.0000', '20.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-11-30', '1800.0000', '20.0000', '2021-03-29', 'received', '90.0000', '90.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (91, 15, NULL, 1758, 'PR-471', 'PREGNACARE (19) CAPS 30', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-07-30', '180.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (92, 15, NULL, 1759, '5017848251049', 'OLIVE  OIL 70ML', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-12-31', '450.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (93, 15, NULL, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', NULL, '90.0000', '0.0000', '25.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-12-31', '2250.0000', '23.0000', '2021-03-29', 'received', '90.0000', '90.0000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (94, 15, NULL, 1761, 'PR-474', 'OMECET CAPS 100', NULL, '90.0000', '0.0000', '40.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-08-31', '3600.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (95, 15, NULL, 1762, 'PR-475', 'KIDIVITE MULTIVITAMIN DROPS 25ML', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-09-30', '270.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (96, 15, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-02-29', '450.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (97, 15, NULL, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-10-31', '450.0000', '4.0000', '2021-03-29', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (98, 15, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-07-31', '450.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (99, 15, NULL, 1766, 'PR-479', 'HIST AZINE SYRUP 60ML', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-02-29', '540.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (108, 18, NULL, 1456, '5026143702088', 'ALPHA VITAMIN C TABS', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-05-01', '90.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (109, 18, NULL, 1457, '5026143998344', 'ALPHA FOLIC ACID', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-09-01', '90.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (110, 18, NULL, 1458, '5026143998160', 'ALPHA GINSENG CAPS', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-08-01', '90.0000', '1.0000', '2021-03-30', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (111, 18, NULL, 1459, 'PR-172', 'ZINNAT SUSP 125MG/100ML', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-05-01', '90.0000', '1.0000', '2021-03-30', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (112, 18, NULL, 1460, 'PR-173', 'ZOFLORA 120ML', NULL, '90.0000', '0.0000', '0.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (113, 18, NULL, 1462, '8904008413690', 'OVACARE TABS', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (114, 18, NULL, 1463, '5010123715175', 'EUTHYMOO TOOTHPASTE', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-06-01', '270.0000', '3.0000', '2021-03-30', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (115, 18, NULL, 1465, '9502930974976', 'SENSOOYNE EXTRA FRESH PASTE 75ML', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '3.0000', '2021-03-30', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (116, 18, NULL, 1466, '6001076001025', 'AQUAFRESH FRESH & MINTY TOOTHPASTE 100ML', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '1.0000', '2021-03-30', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (117, 18, NULL, 1467, '6001076121808', 'AQUAFRESH HERBAL TOOTHPASTE 100ML', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '1.0000', '2021-03-30', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (118, 18, NULL, 1468, '6001076001032', 'AQUAFREAH T/PASTE 125ML', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '1.0000', '2021-03-30', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (119, 18, NULL, 1469, 'PR-182', 'LISINOVA 5MG TABS', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '10.0000', '2021-03-30', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (120, 18, NULL, 1470, '8906042660979', 'LEXOFEN SUSP 150ML', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '1.0000', '2021-03-30', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (121, 18, NULL, 1471, 'PR-184', 'LEXOFEN SUS 100ML', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '2.0000', '2021-03-30', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (122, 18, NULL, 1472, 'PR-185', 'BLUSOPT EYE DROP', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '1.0000', '2021-03-30', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (123, 18, NULL, 1473, '5056338341617', 'HOT WATER BOTTLE (JACKET)', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '1.0000', '2021-03-30', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (124, 18, NULL, 1474, '5000158101425', 'OPTREX MULTICATION EYE WASH 100ML', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '1.0000', '2021-03-30', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (125, 18, NULL, 1475, '50007592', 'OPTREX REFRESHING EYE WASH 10ML', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '1.0000', '2021-03-30', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (126, 18, NULL, 1476, '50160181', 'OPTREX SOOTHING EYE DROP', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '1.0000', '2021-03-30', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (127, 18, NULL, 1477, 'PR-190', 'CORSODY 300ML (ALCOHOL FREE)', NULL, '90.0000', '0.0000', '0.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (128, 19, NULL, 1956, '6181100233087', 'jaguar Balm 80ml ', NULL, '4.2000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-09-01', '12.6000', '3.0000', '2021-03-30', 'received', '4.2000', '4.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (129, 19, NULL, 1957, '6181100248159', 'Jaguar balm 125ml', NULL, '6.5000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-10-01', '19.5000', '3.0000', '2021-03-30', 'received', '6.5000', '6.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (130, 20, NULL, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', NULL, '90.0000', '0.0000', '100.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '9000.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (131, 20, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '90.0000', '0.0000', '25.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '2250.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (132, 20, NULL, 1895, 'PR-608', 'Mayfer Sup', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (133, 20, NULL, 1896, 'PR-609', 'Mayfer Cap', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (134, 20, NULL, 1894, 'PR-607', 'Primadal', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (157, 21, NULL, 1893, 'PR-606', 'Metrokin Sups', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (158, 21, NULL, 1890, 'PR-603', 'Fluxakin Cap', NULL, '90.0000', '0.0000', '20.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (159, 21, NULL, 1889, 'PR-602', 'Doxykin Cap', NULL, '90.0000', '0.0000', '20.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (160, 21, NULL, 1900, 'PR-613', 'Cefruate 500', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (161, 21, NULL, 1901, 'PR-614', 'Diclokin TR', NULL, '90.0000', '0.0000', '20.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '20.0000', '2021-03-30', 'received', '90.0000', '90.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (162, 21, NULL, 1902, 'PR-615', 'Locid', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (163, 21, NULL, 1903, 'PR-616', 'Lumeth Adult', NULL, '90.0000', '0.0000', '30.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (164, 21, NULL, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (165, 21, NULL, 1905, 'PR-618', 'ANTASIL', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-12-01', '4500.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (166, 21, NULL, 1909, 'PR-622', 'Viagora Caps', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '3.0000', '2021-03-30', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (167, 21, NULL, 1910, 'PR-623', 'Apc 10 x 10', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '50.0000', '2021-03-30', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (168, 21, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (169, 21, NULL, 1892, 'PR-605', 'Alugel', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (170, 21, NULL, 1919, 'PR-632', 'Firelife tonic', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '4.0000', '2021-03-30', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (171, 21, NULL, 1917, 'PR-630', 'Aspaul J', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (172, 21, NULL, 1916, 'PR-629', 'Aspaul All in one', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (173, 21, NULL, 1318, '5017848248049', 'MENTHOX SYR ADULT', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '6.0000', '2021-03-30', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (174, 21, NULL, 1908, 'PR-621', 'Magacid tablet', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (198, 25, NULL, 1306, 'PR-19', 'DOMI 10: TAB', NULL, '2.1000', '0.0000', '25.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '52.5000', '0.0000', '2021-03-30', 'received', '2.1000', '2.1000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '2.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (199, 25, NULL, 2073, '59185019', 'DOMI 30', NULL, '2.3000', '0.0000', '25.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '57.5000', '0.0000', '2021-03-30', 'received', '2.3000', '2.3000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '2.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (200, 25, NULL, 2072, '41512770', 'ZINVITE CAPS', NULL, '7.3800', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '36.9000', '0.0000', '2021-03-30', 'received', '7.3800', '7.3800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.3800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (201, 25, NULL, 2071, '20773440', 'GRISEOFULVIN', NULL, '5.0000', '0.0000', '20.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '100.0000', '20.0000', '2021-03-30', 'received', '5.0000', '5.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (202, 25, NULL, 2074, '8904185508134', 'REVIT MULTIVITAMIN TABLETS', NULL, '1.8000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '18.0000', '9.0000', '2021-03-30', 'received', '1.8000', '1.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (203, 25, NULL, 2070, '014', 'CHLO EYE ', NULL, '2.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '20.0000', '0.0000', '2021-03-30', 'received', '2.0000', '2.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (204, 25, NULL, 1931, 'PR-644', 'Exicam Do c0070002', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (205, 25, NULL, 2075, '91642667', 'X\'FERON SYR 200ML', NULL, '7.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '35.0000', '0.0000', '2021-03-30', 'received', '7.0000', '7.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (206, 25, NULL, 2076, '24451420', 'ZINVITE SYR', NULL, '8.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '40.0000', '0.0000', '2021-03-30', 'received', '8.0000', '8.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (207, 25, NULL, 1934, '2553185615463', 'Mucotin  ENFANT 2% l017d007', NULL, '4.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '20.0000', '0.0000', '2021-03-30', 'received', '4.0000', '4.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (208, 25, NULL, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', NULL, '0.7200', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '36.0000', '0.0000', '2021-03-30', 'received', '0.7200', '0.7200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (209, 25, NULL, 1938, 'PR-651', 'Hilderm Cream CH Agh020', NULL, '11.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '55.0000', '0.0000', '2021-03-30', 'received', '11.0000', '11.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (210, 25, NULL, 2077, '99278971', 'ENTRALYN COUGH SYRUP', NULL, '3.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '15.0000', '5.0000', '2021-03-30', 'received', '3.0000', '3.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (211, 25, NULL, 1944, 'PR-657', 'Combact N E002d016', NULL, '5.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '5.0000', '0.0000', '2021-03-30', 'received', '5.0000', '5.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (212, 25, NULL, 1579, 'PR-292', 'LUFART SUSP', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '5.0000', '2021-03-30', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (219, 3, NULL, 1323, 'PR-36', 'GLIZONE 30MG', NULL, '7.9900', '0.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '23.9700', '1.0000', '2021-03-24', 'received', '7.9900', '7.9900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (220, 4, NULL, 1324, '6181100465976', 'MEDICAL ICE COOL', NULL, '4.0000', '0.0000', '3.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '12.0000', '1.0000', '2021-03-24', 'received', '4.0000', '4.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (221, 5, NULL, 1325, '692771017440', 'MUPIROCIN OINTMENT 15G', NULL, '23.9800', '0.0000', '2.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '47.9600', '0.0000', '2021-03-24', 'received', '23.9800', '23.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (222, 6, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '3.0300', '0.0000', '5.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '15.1500', '5.0000', '2021-03-24', 'received', '3.0300', '3.0300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.0300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (223, 7, NULL, 1328, 'PR-41', 'HIGH ELASTIC CREPE BANDAGE 4\"', NULL, '90.0000', '0.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '1080.0000', '12.0000', '2021-03-25', 'received', '90.0000', '90.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (224, 7, NULL, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', NULL, '90.0000', '0.0000', '12.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '1080.0000', '12.0000', '2021-03-25', 'received', '90.0000', '90.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (225, 7, NULL, 1329, 'PR-42', 'ZINC OXIDE PLASTER ROLL 41CHS', NULL, '90.0000', '0.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '6.0000', '2021-03-25', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (226, 7, NULL, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', NULL, '90.0000', '0.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '6.0000', '2021-03-25', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (227, 7, NULL, 1332, 'PR-45', 'ZINC OXIDE PLATER ROLL 31CH', NULL, '90.0000', '0.0000', '6.0000', 1, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '6.0000', '2021-03-25', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (228, 27, NULL, 2079, '29942739', 'HIGH ELASTIC CREPE BANDAGE 2\"', NULL, '2.3000', '0.0000', '12.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '27.6000', '12.0000', '2021-03-31', 'received', '2.3000', '2.3000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '2.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (229, 27, NULL, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', NULL, '0.5500', '0.0000', '12.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '6.6000', '12.0000', '2021-03-31', 'received', '0.5500', '0.5500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '0.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (230, 27, NULL, 1334, 'PR-47', 'GAUSE BANDAGE 41CH', NULL, '0.7000', '0.0000', '12.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '8.4000', '12.0000', '2021-03-31', 'received', '0.7000', '0.7000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '0.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (231, 27, NULL, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '0.8500', '0.0000', '12.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '10.2000', '10.0000', '2021-03-31', 'received', '0.8500', '0.8500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '0.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (232, 27, NULL, 1336, 'PR-49', 'RUBBING ALCOHOL -MUL TITI', NULL, '15.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '75.0000', '5.0000', '2021-03-31', 'received', '15.0000', '15.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (233, 27, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '20.0000', '8.0000', '2021-03-31', 'received', '2.0000', '2.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (234, 27, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '4.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '20.0000', '2.0000', '2021-03-31', 'received', '4.0000', '4.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (235, 27, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '1.5000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '7.5000', '3.0000', '2021-03-31', 'received', '1.5000', '1.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (236, 27, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '2.5000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '12.5000', '2.0000', '2021-03-31', 'received', '2.5000', '2.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (237, 27, NULL, 1341, 'PR-54', 'COTTON WOOL 500G', NULL, '13.5000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '40.5000', '3.0000', '2021-03-31', 'received', '13.5000', '13.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (238, 27, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.5300', '0.0000', '20.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '110.6000', '2.0000', '2021-03-31', 'received', '5.5300', '5.5300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '5.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (239, 27, NULL, 1343, '4008500060353', 'PROGYNOVA 2MG TABS', NULL, '43.9000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '87.8000', '2.0000', '2021-03-31', 'received', '43.9000', '43.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '43.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (240, 27, NULL, 1344, '8901082005391', 'EVANOVA CAPS', NULL, '32.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '64.0000', '2.0000', '2021-03-31', 'received', '32.0000', '32.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (241, 27, NULL, 1345, '8901082005339', 'ADDYZOA CAPS', NULL, '44.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '88.0000', '0.0000', '2021-03-31', 'received', '44.0000', '44.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '44.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (242, 27, NULL, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.9300', '0.0000', '60.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '55.8000', '60.0000', '2021-03-31', 'received', '0.9300', '0.9300', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.9300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (243, 28, NULL, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '3.4000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '170.0000', '50.0000', '2021-03-31', 'received', '3.4000', '3.4000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (244, 28, NULL, 1348, '8901077166144', 'APDYL-H COUGH SYRUP 200ML', NULL, '15.5000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '46.5000', '3.0000', '2021-03-31', 'received', '15.5000', '15.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (245, 28, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '32.5000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '97.5000', '3.0000', '2021-03-31', 'received', '32.5000', '32.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '32.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (246, 28, NULL, 1350, '4084500846548', 'PEPTOBISMOL S/S 120ML', NULL, '30.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '3.0000', '2021-03-31', 'received', '30.0000', '30.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (247, 28, NULL, 1351, '4084500846579', 'PEPTO BISMOL 240ML', NULL, '35.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '70.0000', '2.0000', '2021-03-31', 'received', '35.0000', '35.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (248, 28, NULL, 2080, '06626042', 'KLIRE ATACID 125ML', NULL, '20.5000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '61.5000', '3.0000', '2021-03-31', 'received', '20.5000', '20.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (249, 28, NULL, 1353, '5060085540254', 'SELEVITE TABS', NULL, '20.5000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '82.0000', '0.0000', '2021-03-31', 'received', '20.5000', '20.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '20.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (250, 28, NULL, 1354, '5024874700106', 'HEALTH LINK WOMAN', NULL, '39.7500', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '79.5000', '1.0000', '2021-03-31', 'received', '39.7500', '39.7500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '39.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (251, 29, NULL, 1355, 'PR-68', 'LIVOPAT CAPS- INDUS', NULL, '17.6200', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '52.8600', '3.0000', '2021-03-31', 'received', '17.6200', '17.6200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (252, 29, NULL, 1356, '5021265221608', 'CARDIOACE CAPS', NULL, '51.9800', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '103.9600', '2.0000', '2021-03-31', 'received', '51.9800', '51.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '51.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (253, 29, NULL, 1357, 'PR-70', 'LUEX CHILD CHESTY', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '3.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (254, 29, NULL, 1359, 'PR-72', 'GALVUS 50 2X14', NULL, '74.6800', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '149.3600', '2.0000', '2021-03-31', 'received', '74.6800', '74.6800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '74.6800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (255, 29, NULL, 1360, 'PR-73', 'GALVUS MET FCT 50/1000MG', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (256, 29, NULL, 1361, '5021265221585', 'PREGNACARE (BE4) CONCEPTION ', NULL, '59.0300', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '118.0600', '2.0000', '2021-03-31', 'received', '59.0300', '59.0300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '59.0300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (257, 29, NULL, 1952, '5021265221004', 'MENOPACE CAP(UK)', NULL, '37.2600', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '74.5200', '0.0000', '2021-03-31', 'received', '37.2600', '37.2600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '37.2600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (258, 29, NULL, 1362, '8906078360300', 'BETA-CORT EEN DROPS 0.1 %', NULL, '19.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '38.0000', '2.0000', '2021-03-31', 'received', '19.0000', '19.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (259, 29, NULL, 1363, '5000456022774', 'CRESTOR 5MG TABS', NULL, '81.4000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '162.8000', '2.0000', '2021-03-31', 'received', '81.4000', '81.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '81.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (260, 29, NULL, 1364, '5021265244447', 'WELLWOMAN CAPS 70+', NULL, '52.5500', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '105.1000', '2.0000', '2021-03-31', 'received', '52.5500', '52.5500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '52.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (261, 29, NULL, 1365, '8906116211496', 'PROWOMAN', NULL, '38.9800', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '77.9600', '0.0000', '2021-03-31', 'received', '38.9800', '38.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '38.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (262, 29, NULL, 1366, 'PR-79', 'THYROXINE 100MG', NULL, '15.2900', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '91.7400', '6.0000', '2021-03-31', 'received', '15.2900', '15.2900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '15.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (263, 29, NULL, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', NULL, '49.2100', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '98.4200', '2.0000', '2021-03-31', 'received', '49.2100', '49.2100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '49.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (264, 29, NULL, 1953, '56415263', 'STAGYL TABS', NULL, '2.4900', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '24.9000', '4.0000', '2021-03-31', 'received', '2.4900', '2.4900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (265, 29, NULL, 1954, '87246804', 'COLDRDID TAB', NULL, '25.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '250.0000', '8.0000', '2021-03-31', 'received', '25.0000', '25.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (266, 30, NULL, 1955, '4014852751801', 'PROCOMIL TABLET', NULL, '35.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '210.0000', '6.0000', '2021-03-31', 'received', '35.0000', '35.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (267, 30, NULL, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '3.3900', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '33.9000', '0.0000', '2021-03-31', 'received', '3.3900', '3.3900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.3900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (268, 30, NULL, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '3.0000', '2021-03-31', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (269, 30, NULL, 1369, 'PR-82', 'NAPROX EC TABS ECL', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '2.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (270, 30, NULL, 1370, 'PR-83', 'LIVERPLEX-B ADULT SYR', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '5.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (271, 30, NULL, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (272, 30, NULL, 1372, 'PR-85', 'PARACETAMOL TAB 32\'S', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '2.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (273, 30, NULL, 1373, '1227808', 'TEGRETOL CR 200MG', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (274, 30, NULL, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '1.0000', '2021-03-31', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (275, 30, NULL, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '3.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (276, 30, NULL, 1376, '7640153082107', 'IXYLO-MEPHA 0.05%', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '2.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (277, 30, NULL, 1377, '5000158062139', 'BONJELA ADULT', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '1.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (278, 30, NULL, 1378, '5011417569627', 'BONJELA BABY', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '2.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (279, 30, NULL, 1379, 'PR-92', 'DIFLUCAN CAPS', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '2.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (280, 30, NULL, 1380, '4008500060070', 'PRIMOLUT N TABS 5MG- ORIGINAL', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '1.0000', '2021-03-31', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (281, 30, NULL, 1381, 'PR-94', '10 GOLDY FORTE OS', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '2.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (282, 30, NULL, 1382, 'PR-95', 'ZULU EXTRA', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '5.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (283, 30, NULL, 1383, 'PR-96', 'ZULU - MR', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '4.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (284, 30, NULL, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '2.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (285, 30, NULL, 1385, 'PR-98', 'AZIS TABS. 500MG', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '9.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (288, 32, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (289, 32, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (290, 32, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (291, 32, NULL, 1389, '6034000189360', 'ADOM PAWAY CAPS(l00)', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (292, 32, NULL, 1390, 'PR-103', '_ADUTW I MWAA BITTERS ( 2 5)', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (293, 32, NULL, 1391, '6036000005930', 'ADUWUMWAA CAPS (240)', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (294, 32, NULL, 1392, '6036000115400', 'AFRO MOSES', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (295, 32, NULL, 1393, 'PR-106', 'AGBEVE PHEVER( 30)', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (296, 32, NULL, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (297, 33, NULL, 1395, 'PR-108', 'AMUZU GARLIC', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (298, 33, NULL, 1396, 'PR-109', 'ANGEL CREAM(200)', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (299, 33, NULL, 1397, 'PR-110', 'ANGEL FETWEK3K3(200)', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (300, 33, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (301, 33, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (302, 33, NULL, 1400, 'PR-113', 'DIAGELLETS 500ML(24)', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (303, 33, NULL, 1401, 'PR-114', 'EKURO BEWU', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (304, 33, NULL, 1402, 'PR-115', 'ERNEST OINT(200)', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (305, 33, NULL, 1403, '6036000115448', 'FEMACURE', NULL, '13.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '26.0000', '0.0000', '2021-03-31', 'received', '13.0000', '13.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (306, 33, NULL, 1404, 'PR-117', 'GBEDEMAH G', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (307, 33, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '16.8000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '67.2000', '0.0000', '2021-03-31', 'received', '16.8000', '16.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '16.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (308, 33, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '16.8000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '67.2000', '0.0000', '2021-03-31', 'received', '16.8000', '16.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '16.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (309, 33, NULL, 1408, '6050125568200', 'HAPIMAN CAPS', NULL, '9.5000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '28.5000', '0.0000', '2021-03-31', 'received', '9.5000', '9.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (310, 33, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (311, 33, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (312, 33, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '50.0000', '0.0000', '2021-03-31', 'received', '25.0000', '25.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (313, 33, NULL, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (314, 33, NULL, 1413, 'PR-126', 'KINGDOM GARLIC CAPS', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (315, 33, NULL, 1414, '6034000157048', 'LIVING BITTERS CAPS', NULL, '19.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '38.0000', '0.0000', '2021-03-31', 'received', '19.0000', '19.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (316, 33, NULL, 1415, '6034000157055', 'LIVING BITTERS SYP S s', NULL, '14.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '29.0000', '0.0000', '2021-03-31', 'received', '14.5000', '14.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (317, 33, NULL, 1416, 'PR-129', 'LUCKY MIXTURE', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (318, 34, NULL, 1417, 'PR-130', 'LUCKY V CARE', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (319, 34, NULL, 1418, 'PR-131', 'MADAM CATERINE', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (320, 34, NULL, 1419, '5024389122233', 'MIGHTY POWER SYS LS', NULL, '10.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '21.0000', '0.0000', '2021-03-31', 'received', '10.5000', '10.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (321, 34, NULL, 1420, 'PR-133', 'NAZO', NULL, '90.0000', '0.0000', '12.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '1080.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (322, 34, NULL, 1421, '6666666666666', 'PROSLUV CAPS', NULL, '19.8000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '59.4000', '0.0000', '2021-03-31', 'received', '19.8000', '19.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (323, 34, NULL, 1422, 'PR-135', 'PROSTACURE TEA (32)', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (324, 34, NULL, 1423, '6036000115455', 'PROSTACURE X', NULL, '30.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '0.0000', '2021-03-31', 'received', '30.0000', '30.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (325, 34, NULL, 1424, '6036000070709', 'PROSTAT 60', NULL, '30.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '0.0000', '2021-03-31', 'received', '30.0000', '30.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (326, 34, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '26.0000', '0.0000', '2021-03-31', 'received', '6.5000', '6.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (327, 34, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '72.0000', '0.0000', '2021-03-31', 'received', '36.0000', '36.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (328, 34, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '45.0000', '0.0000', '2021-03-31', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (329, 34, NULL, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (330, 34, NULL, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (331, 34, NULL, 1430, 'PR-143', 'SOLAK MIXTURE(25)', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (332, 34, NULL, 1431, 'PR-144', 'SPARNIS GARLIC MIXTURE(30)', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (333, 34, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '54.0000', '0.0000', '2021-03-31', 'received', '9.0000', '9.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (334, 34, NULL, 1433, 'PR-146', 'TIME HERBAL MIX(25)', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (335, 34, NULL, 1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (336, 34, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (337, 34, NULL, 1436, 'PR-149', 'TOP FEVER ( 24)', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (338, 34, NULL, 1437, 'PR-150', 'TOP TONIC', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (339, 34, NULL, 1438, '004', 'TRUMAN', NULL, '14.8000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '44.4000', '0.0000', '2021-03-31', 'received', '14.8000', '14.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (340, 34, NULL, 1439, 'PR-152', 'VICTAGO s s', NULL, '90.0000', '0.0000', '12.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '1080.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (341, 34, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (342, 34, NULL, 1441, '2150546225301', 'X DRIVE CAPS', NULL, '13.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '39.0000', '0.0000', '2021-03-31', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (343, 34, NULL, 1442, '005', 'YAFO MAN CAPS', NULL, '13.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '39.0000', '0.0000', '2021-03-31', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (344, 35, NULL, 1478, '8906087940128', 'IMPRESSER CAPS', NULL, '90.0000', '0.0000', '12.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '1080.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (345, 35, NULL, 1479, '8906087940135', 'IMPRESSER OIL', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (346, 35, NULL, 1480, '5011501006519', 'DEEP FREEZE SPRAY', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (347, 35, NULL, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (348, 35, NULL, 1482, '5011501040124', 'DEEP HEAT RUB 35G', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (349, 35, NULL, 1483, '5011501040131', 'DEEP HEAT RUB 67G', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (350, 35, NULL, 1484, '8470007006244', 'SILVER DERMA CREAM 50G', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (351, 35, NULL, 1485, '008', 'NIZORAL CREAM', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (352, 35, NULL, 1486, '5010441000687', 'HYDROCORTISONE CREAM', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (353, 35, NULL, 1487, '8902292000893', 'KETAZOL CREAM', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (354, 35, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (355, 35, NULL, 1489, '6938058600108', 'SAMOCID(SKIN AND NAIL)', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (356, 35, NULL, 1490, '8903996006013', 'ACNEL GEL 20MG', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (357, 35, NULL, 1491, 'PR-204', 'BADRUF OINT', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '5.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (358, 35, NULL, 1492, '5017848249589', 'NERVE & BONE LINIMENT', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '3.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (359, 35, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (360, 35, NULL, 1764, 'PR-477', 'METHYLATED  SPIRIT  125ML', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '1.0000', '2021-03-31', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (361, 35, NULL, 1495, '8904107901401', 'MYCOLEX POWDER', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (362, 35, NULL, 1496, 'PR-209', 'ENACEF SUSP', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (363, 35, NULL, 1497, 'PR-210', 'JARIFAN 2 CAPS', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (364, 35, NULL, 1498, 'PR-211', 'PAIN OFF TAB', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (365, 35, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (366, 35, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (367, 36, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (368, 36, NULL, 1502, '8850769018998', 'GOFEX400MG', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (369, 36, NULL, 1503, '305731769203', 'ADVIL CAPLET 24\'', NULL, '90.0000', '0.0000', '24.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '2160.0000', '23.0000', '2021-03-31', 'received', '90.0000', '90.0000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (370, 36, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '90.0000', '0.0000', '30.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (371, 36, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (372, 36, NULL, 1506, '7612797504765', 'MAXITROL EYE DROP', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (373, 36, NULL, 1507, '002', 'SE\'FLOX EYE/EAR DROP', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (374, 36, NULL, 1508, '7612797504857', 'FLAREX 0.1% EYE DROP', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (375, 36, NULL, 1509, 'PR-222', 'DAKTACORT CREAM', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '3.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (376, 36, NULL, 1510, '009', 'CIPROLEX EYE & EAR DROP', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (377, 36, NULL, 1511, '5413895053528', 'TEARS NATURAL 11', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (378, 36, NULL, 1512, 'PR-225', 'CIPAC EYE ROP', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '5.0000', '2021-03-31', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (379, 36, NULL, 1513, '6221032233103', 'DEXATROL EYE DROP', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (380, 36, NULL, 1514, '6221032340177', 'DEXATROL EYE OINT', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (381, 36, NULL, 1601, '8904091100316', 'CANDIDERM CREAM 15MG', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (382, 36, NULL, 1516, '9588800180593', 'OPTIMOL EYE DROP', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (383, 36, NULL, 1517, 'PR-230', 'NEOCORT EYE DROP', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (384, 36, NULL, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (385, 36, NULL, 1969, '8906016833507', 'CARTEF TAB 24   20/120', NULL, '4.3300', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '43.3000', '0.0000', '2021-03-31', 'received', '4.3300', '4.3300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (386, 37, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '90.0000', '0.0000', '20.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (387, 37, NULL, 1520, 'PR-233', 'DICLOLEX 100MG', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (388, 37, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (389, 37, NULL, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (390, 37, NULL, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (391, 37, NULL, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (392, 37, NULL, 1525, '5000158063907', 'LEMSIP SACHETS 5\'S', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (393, 37, NULL, 1527, '8904159609416', 'PREGASAFE 75MG TAB', NULL, '90.0000', '0.0000', '12.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '1080.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (394, 37, NULL, 1528, '4031571020445', 'METFORMIN DENK S00MG', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (395, 37, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '90.0000', '0.0000', '24.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '2160.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (396, 37, NULL, 1530, '4031571064159', 'METFORMIN DENK 1G', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (397, 37, NULL, 1531, 'PR-244', 'CLOXA CAP 250MG (LETAP)', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (398, 37, NULL, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (399, 37, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY)', NULL, '90.0000', '0.0000', '30.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (400, 37, NULL, 1534, 'PR-247', 'PINEK 20MG TAB', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (401, 37, NULL, 1535, 'PR-248', 'PINEK XL 30MG TAB', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (402, 37, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (403, 37, NULL, 1537, 'PR-250', 'VITANE SYR', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (404, 37, NULL, 1538, 'PR-251', 'TINY VITE DROP', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (405, 37, NULL, 1539, '9556100104618', 'O\'YES FEMININE WASH 200ML', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (406, 37, NULL, 1540, '8908003831138', 'LAWASH 100ML', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (407, 37, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (408, 37, NULL, 1543, '4031571066740', 'CLOTRI DENK CREAM', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (409, 37, NULL, 1544, '4031571036033', 'CLOTRI DENK 100 PESS', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (410, 37, NULL, 1545, '8904091105816', 'CANDID V6 PESS G\'S', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (411, 37, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (412, 37, NULL, 1547, '5010724531013', 'ANUSOL OINTMENT 25G', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (413, 37, NULL, 1548, '6223003960339', 'DAFLON S00MG', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (414, 37, NULL, 1549, '610074245209', 'LAVET', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (415, 37, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (416, 38, NULL, 1551, '5021691032076', 'LEVOTHYROXINE TAB 50MG (MERC PHARMA)', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (417, 38, NULL, 1552, 'PR-265', 'LIPITOR 10MG', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (418, 38, NULL, 1553, 'PR-266', 'LIPITOR 20MG', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (419, 38, NULL, 1554, 'PR-267', 'COTRI SUS (M&G)', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (420, 38, NULL, 1555, '3582910081043', 'RHINATHIOL ADULT SYR 125ML', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (421, 38, NULL, 1556, 'PR-269', 'RHINATHOIL ENFANT SYR 125ML', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '3.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (422, 38, NULL, 1557, 'PR-270', 'SE\'CLEAR EYE DROP', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (423, 38, NULL, 1559, 'PR-272', 'SIRDALUD 4MG', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (424, 38, NULL, 1560, 'PR-273', 'STUGERON', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (425, 38, NULL, 1561, 'PR-274', 'SPORANOX CAPS', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (426, 38, NULL, 1562, 'PR-275', 'SULPHUR OINT.', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (427, 38, NULL, 1563, 'PR-276', 'AMICLOX SUSP. (ECL)', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (428, 38, NULL, 1564, '3838989544225', 'TADOL 100MG', NULL, '90.0000', '0.0000', '30.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (429, 38, NULL, 1565, 'PR-278', 'PARLODEL TABLETS 2.5MG', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (430, 38, NULL, 1567, 'PR-280', 'BRENEX SYRUP', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (431, 38, NULL, 1568, '5000283659013', 'TAMSULOSIN MR CAPS 400MG ZENTIVA', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (432, 38, NULL, 1569, 'PR-282', 'TIGER CAPS', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '3.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (433, 38, NULL, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '1.0000', '2021-03-31', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (434, 38, NULL, 1571, 'udia111', 'DIABETMIN TABS 500MG', NULL, '90.0000', '0.0000', '20.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '18.0000', '2021-03-31', 'received', '90.0000', '90.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (435, 38, NULL, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '8.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (436, 38, NULL, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '1.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (437, 38, NULL, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (438, 38, NULL, 1575, '5017007043294', 'LOSARTAN POTASSIUM 50MG (TEVA)', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (439, 39, NULL, 1576, 'PR-289', 'GRISORAL SUSP (MILDLAND)', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (440, 39, NULL, 1577, 'PR-290', 'MALIN LOZ', NULL, '90.0000', '0.0000', '12.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '1080.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (441, 39, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (442, 39, NULL, 1579, 'PR-292', 'LUFART SUSP', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (443, 39, NULL, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (444, 39, NULL, 1581, 'PR-294', 'TOUCH AND GO', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (445, 39, NULL, 1582, '5017007016991', 'WARFARIN TAB 5MG 28\'', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (446, 39, NULL, 1583, '5060806420179', 'PROWOMAN DRINK 250ML', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (447, 39, NULL, 1584, '5060806420162', 'PROMAN DRINK 250ML', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (448, 39, NULL, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (449, 39, NULL, 1586, '5012616173004', 'ABIDEC DROP', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (450, 39, NULL, 1587, 'PR-300', 'NUGEL SUSP', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '3.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (451, 39, NULL, 1588, '8902396003509', 'CORORANGE DROP', NULL, '4.8000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '14.4000', '0.0000', '2021-03-31', 'received', '4.8000', '4.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (452, 39, NULL, 1589, '8904008410118', 'GASTRACID SUSP (GR)', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (453, 39, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (454, 39, NULL, 1591, '5017123328022', 'FUROSEMIDE 20MG TAB (CRESCENT)', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (455, 39, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (456, 39, NULL, 1593, 'PR-306', 'LYRICA 75MG', NULL, '90.0000', '0.0000', '60.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '5400.0000', '4.0000', '2021-03-31', 'received', '90.0000', '90.0000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (457, 39, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (458, 39, NULL, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (459, 39, NULL, 1597, '010', 'KOFLET SYR 100ML', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '3.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (460, 39, NULL, 1598, 'PR-311', 'GO COUGH SYR', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (461, 40, NULL, 1599, 'PR-312', 'RONZOLE 20MG CAPS', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (462, 40, NULL, 1600, 'PR-313', 'OMZOL CAPS 30\' (OMEPRAZOLE) SEDITA', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (463, 40, NULL, 1601, '8904091100316', 'CANDIDERM CREAM 15MG', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (464, 40, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '90.0000', '0.0000', '20.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (465, 40, NULL, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (466, 40, NULL, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '2.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (467, 40, NULL, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '3.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (468, 40, NULL, 1606, 'PR-319', 'CLOMID 50MG (BRUNO)', NULL, '90.0000', '0.0000', '30.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (469, 40, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '90.0000', '0.0000', '60.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '5400.0000', '60.0000', '2021-03-31', 'received', '90.0000', '90.0000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (470, 40, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (471, 40, NULL, 1609, '8904107900893', 'MYCOLEX CREAM 20G', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (472, 40, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (473, 40, NULL, 1612, 'PR-325', 'GYPRONE PLUS TABS', NULL, '90.0000', '0.0000', '25.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '2250.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (474, 40, NULL, 1613, 'PR-326', 'GYPRON SYR', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (475, 40, NULL, 1614, 'PR-327', 'TEEDAR', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '6.0000', '2021-03-31', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (476, 40, NULL, 1615, '5000456022811', 'CRESTOR 20MG', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '2.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (477, 40, NULL, 1616, 'PR-329', 'GACET SUPP 250MG', NULL, '4.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '20.0000', '0.0000', '2021-03-31', 'received', '4.0000', '4.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (478, 40, NULL, 1617, 'PR-330', 'ENTRAMOL 125MG SUPP', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (479, 40, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (480, 40, NULL, 1619, 'PR-332', 'KLINDA300MG', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (481, 40, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '3.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (482, 40, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '90.0000', '0.0000', '12.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '1080.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (483, 40, NULL, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (484, 40, NULL, 1623, '5021265223398', 'PERFECTIL SKIN', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (485, 40, NULL, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '1.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (486, 40, NULL, 1625, '8906116211458', 'PROMAN CAPS 30\' EXETER', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '2.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (487, 40, NULL, 1626, '306420072116', 'VITAFOL CAP', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (488, 41, NULL, 1627, 'PR-340', 'S/SEAS C.L.O CAPS 60\'', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (489, 41, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (490, 41, NULL, 1629, 'PR-342', 'GEN-M SUSP', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (491, 41, NULL, 1630, 'PR-343', 'GEN-M TAB 80/480', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '5.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (492, 41, NULL, 1631, '8850769012651', 'ENAT 4001U CAPS', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (493, 41, NULL, 1632, '5024874030630', 'VALUPAK VITE 4001U', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (494, 41, NULL, 1633, '8901138836832', 'TENTEX ROYAL CAPS', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (495, 41, NULL, 1634, 'PR-347', 'HYPONIDD TABS 20\' ?', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '1.0000', '2021-03-31', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (496, 41, NULL, 1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', NULL, '90.0000', '0.0000', '15.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '1350.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (497, 41, NULL, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (498, 41, NULL, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '90.0000', '0.0000', '32.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '2880.0000', '16.0000', '2021-03-31', 'received', '90.0000', '90.0000', '32.0000', NULL, NULL, 1, 'pc', '32.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (499, 41, NULL, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (500, 41, NULL, 1640, 'PR-353', 'HISTAZINE SYR', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (501, 41, NULL, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges NIT C 36\'', NULL, '90.0000', '0.0000', '108.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '9720.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '108.0000', NULL, NULL, 1, 'pc', '108.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (502, 41, NULL, 1642, '6001135507628', 'BENYLIN DRY', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (503, 41, NULL, 1643, '6001135505433', 'BENYLIN ORIGINAL', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (504, 41, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (505, 41, NULL, 1645, 'PR-358', 'AMCOF ADULT SYRUP', NULL, '90.0000', '0.0000', '8.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '720.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (506, 41, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (507, 41, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (508, 41, NULL, 1648, '8902404045453', 'ASTHALEX SYR 100ML', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (509, 41, NULL, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (510, 41, NULL, 1650, 'PR-363', 'ZUBES EXTRA', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (511, 41, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (512, 41, NULL, 1652, 'PR-365', 'CARBODEL JNR SYR', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (513, 41, NULL, 1653, 'PR-366', 'PRAZIQUANTEL 600MG TAB 100\'(ECL)', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (514, 42, NULL, 1502, '8850769018998', 'GOFEX400MG', NULL, '7.8000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '46.8000', '0.0000', '2021-04-01', 'received', '7.8000', '7.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '7.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (515, 43, NULL, 1654, '8904091117703', 'RELCER GEL', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (516, 43, NULL, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (517, 43, NULL, 1656, '8902457848759', 'STOMOCAINE SUP', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (518, 43, NULL, 1657, '5013548102087', 'MEDICATED CHARCOAL', NULL, '90.0000', '0.0000', '200.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '18000.0000', '100.0000', '2021-04-01', 'received', '90.0000', '90.0000', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (519, 43, NULL, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (520, 43, NULL, 1659, '5021265228027', 'OMEGA H3 CAP', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (521, 43, NULL, 1660, '5034593050901', 'NEOVITA CAP', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (522, 43, NULL, 1661, 'PR-374', 'JOINTFLEX PLUS TABS 30\'5', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (523, 43, NULL, 1662, '3400970000913', 'IDEOS ~', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (524, 43, NULL, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (525, 43, NULL, 1664, '5010058089785', 'PREGNACARE  ORIGINAL 19\'', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '2.0000', '2021-04-01', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (526, 43, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '90.0000', '0.0000', '24.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '2160.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (527, 43, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (528, 43, NULL, 1966, '9556564303336', 'FIESTA CONDOM DOTTED', NULL, '2.7100', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '13.5500', '0.0000', '2021-04-01', 'received', '2.7100', '2.7100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.7100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (529, 43, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (530, 43, NULL, 1669, '5000456024778', 'NEXIUM 40MG TAB', NULL, '90.0000', '0.0000', '30.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (531, 43, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (532, 43, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (533, 43, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (534, 43, NULL, 1673, 'PR-386', 'DOXY CAPS (ESKAY)', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (535, 43, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (536, 43, NULL, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (537, 43, NULL, 1676, '8902451254525', 'LUEX CHILD CHESTY', NULL, '7.9000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '23.7000', '0.0000', '2021-04-01', 'received', '7.9000', '7.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (538, 43, NULL, 1677, '8902546578543', 'LUEX BABY COUGH', NULL, '7.8000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '23.4000', '0.0000', '2021-04-01', 'received', '7.8000', '7.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (539, 43, NULL, 1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (540, 43, NULL, 1680, 'PR-393', 'BELLA COUGH MIXTURE', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (541, 43, NULL, 1681, 'PR-394', 'GALVUS 50MG', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (542, 43, NULL, 1682, 'PR-395', 'SENAFEN TAB 100\'', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (543, 43, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (544, 43, NULL, 1684, '18906047544530', 'CLOPIDOGREL 75MG', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (545, 43, NULL, 1685, 'PR-398', 'LARIAM TAB 250MG', NULL, '90.0000', '0.0000', '8.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '720.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (546, 43, NULL, 1686, '8901082006-81', 'ALKA-5 SYR', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (547, 43, NULL, 1687, 'PR-400', 'FLUCONAZOLE (DENK)', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (548, 43, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (549, 43, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '4.0000', '2021-04-01', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (550, 43, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (551, 43, NULL, 1691, 'PR-404', 'JARIFAN 2 SYR', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (552, 43, NULL, 1692, 'PR-405', 'DEXORANGE TONIC', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (553, 43, NULL, 1693, 'PR-406', 'CITY BLOOD TONIC 200ML', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (554, 43, NULL, 1694, 'PR-407', 'LEENASYR', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (555, 43, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (556, 43, NULL, 1696, 'PR-409', 'CYFEN SYR', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (557, 43, NULL, 1697, '8904023403058', 'APETI SYRUP-GEO', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (558, 43, NULL, 1698, 'PR-411', 'ODYMIN SYR', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (559, 43, NULL, 1699, 'PR-412', 'LEENA CAPS', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '10.0000', '2021-04-01', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (560, 43, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (561, 43, NULL, 1701, 'PR-414', 'HEPTOPEP SYR', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (562, 43, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (563, 43, NULL, 1703, 'PR-416', 'VIGORIX SYR 200ML', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (564, 43, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (565, 43, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (576, 45, NULL, 1968, '5019781012206', 'VITAMIN E HEALTH AID', NULL, '55.1600', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '165.4800', '0.0000', '2021-04-01', 'received', '55.1600', '55.1600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '55.1600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (577, 45, NULL, 1970, '5997001359235', 'PIOSTINOR 2 LOCAL', NULL, '2.5000', '0.0000', '20.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '50.0000', '20.0000', '2021-04-01', 'received', '2.5000', '2.5000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (581, 48, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-02-09', '900.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (582, 48, NULL, 1773, '7640153082091', 'XYLO ACINO MEPHA 0.10ML', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-01-22', '180.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (583, 48, NULL, 1774, 'PR-487', 'ZESTRIL 10ML LISINOPRIL', NULL, '90.0000', '0.0000', '0.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (584, 48, NULL, 1776, '5000455005204', 'ZESTRIL TABS 20MG LISINOPRIL', NULL, '90.0000', '0.0000', '56.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-01-31', '5040.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '56.0000', NULL, NULL, 1, 'pc', '56.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (585, 48, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-08-24', '450.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (586, 48, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-12-26', '900.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (587, 48, NULL, 1779, 'PR-492', 'BISACODYL [GEO] 1000\'S', NULL, '90.0000', '0.0000', '100.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-03-24', '9000.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (588, 48, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-02-23', '450.0000', '1.0000', '2021-04-01', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (589, 48, NULL, 1781, 'PR-494', 'CAPS POLYFER', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-10-30', '900.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (590, 48, NULL, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', NULL, '90.0000', '0.0000', '12.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-02-27', '1080.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (591, 49, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-03-24', '450.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (592, 49, NULL, 1784, 'PR-497', 'DROP CORORANGE', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-12-18', '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (593, 49, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-06-25', '450.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (594, 49, NULL, 1786, 'PR-499', 'BONGELA TEETHING GEL INFANT', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-07-22', '180.0000', '2.0000', '2021-04-01', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (595, 50, NULL, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-04-24', '4500.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (596, 50, NULL, 1788, 'PR-501', 'KOFFEX SYR CHILD EXP', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-02-26', '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (597, 50, NULL, 1789, '7640128016717', 'LEXOTANIL 1.5MG', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2025-04-13', '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (598, 50, NULL, 1790, '8904107900824', 'LEXSPORIN OINTMENT 20GMS', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-12-25', '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (599, 50, NULL, 1791, '8904107900992', 'LEXSPORIN POWDER 10G', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-11-25', '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (600, 50, NULL, 1960, '6033000298379', 'LIFEBUOY SOAP', NULL, '3.5600', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2025-02-28', '17.8000', '0.0000', '2021-04-01', 'received', '3.5600', '3.5600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.5600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (601, 50, NULL, 1793, '8850769017380', 'LIGABA 75MG(PREGABALIN)30\'S', NULL, '90.0000', '0.0000', '9.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-11-28', '810.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (602, 50, NULL, 1552, 'PR-265', 'LIPITOR 10MG', NULL, '90.0000', '0.0000', '0.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (603, 50, NULL, 1795, 'PR-508', 'LIV. 52 SYRUP', NULL, '90.0000', '0.0000', '0.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-06-30', '0.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (604, 50, NULL, 1796, 'PR-509', 'SEPTRIN SY MG', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-12-21', '90.0000', '1.0000', '2021-04-01', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (605, 50, NULL, 1797, '8850769011388', 'PROSTACARE CAPS 30S', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-04-27', '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (606, 50, NULL, 1798, '4008500115107', 'PROVIRON TABS 25MG', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-06-30', '180.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (607, 50, NULL, 1799, 'PR-512', 'PROXIMEXA TABS 250[10\'S]', NULL, '90.0000', '0.0000', '0.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-10-11', '0.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (608, 50, NULL, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-10-15', '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (609, 50, NULL, 1958, '7640128012184', 'ROCEPHIN INJ 1G IV', NULL, '54.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-11-18', '108.0000', '0.0000', '2021-04-01', 'received', '54.0000', '54.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '54.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (610, 50, NULL, 1802, '7640128017400', 'ROCEPHIN INJ 2G  IV', NULL, '86.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-09-03', '172.0000', '0.0000', '2021-04-01', 'received', '86.0000', '86.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '86.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (611, 50, NULL, 1804, 'PR-517', 'SAMLIN JRN', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-12-31', '450.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (612, 51, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-03-19', '450.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (613, 51, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-02-19', '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (614, 51, NULL, 1807, 'PR-520', 'VOLTFAST I 50MG[POWER]30?S', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-09-28', '90.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (615, 51, NULL, 1808, '8906045432597', 'VITAFORCE SYRUP', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-10-10', '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (616, 51, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-10-28', '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (617, 51, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-10-13', '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (618, 51, NULL, 1811, 'PR-524', 'VERMOX SUSP', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-10-16', '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (619, 51, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-12-26', '900.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (620, 51, NULL, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-06-20', '360.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (621, 51, NULL, 1814, 'PR-527', 'VASELINE DRY SKIN 400ML', NULL, '90.0000', '0.0000', '0.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (622, 51, NULL, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-12-25', '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (623, 51, NULL, 1817, 'PR-530', 'TRES-ORIX 100MILS S/S', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-11-27', '450.0000', '1.0000', '2021-04-01', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (624, 51, NULL, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-03-22', '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (625, 51, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-12-02', '540.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (626, 51, NULL, 1820, '8901040306010', 'TIMOL 0.5% (SANOFI)', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-02-01', '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (627, 51, NULL, 1821, 'PR-534', 'TOBRAADEX EYE OINT 3.5GM', NULL, '90.0000', '0.0000', '0.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (628, 52, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '90.0000', '0.0000', '60.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-06-26', '5400.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (629, 52, NULL, 1823, 'PR-536', 'TOUCH & GO', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2025-08-01', '450.0000', '5.0000', '2021-04-01', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (630, 52, NULL, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-05-01', '900.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (631, 52, NULL, 1825, 'PR-538', 'SYRUP VITAMIN C M/G', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-02-25', '360.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (632, 53, NULL, 1826, 'PR-539', 'SYRINGES & NEES (KOREA) 5ML', NULL, '0.2100', '0.0000', '100.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-10-30', '21.0000', '0.0000', '2021-04-01', 'received', '0.2100', '0.2100', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (633, 53, NULL, 1827, 'PR-540', 'SYRINGES & NEES 2MLS', NULL, '0.2000', '0.0000', '100.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2025-07-11', '20.0000', '0.0000', '2021-04-01', 'received', '0.2000', '0.2000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (634, 53, NULL, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-01-13', '4500.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (635, 53, NULL, 1829, '8934868137702', 'SUNLIGHT DW GREEN 400ML', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-04-10', '450.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (636, 53, NULL, 1830, '6033000296481', 'SUNLIGHT PINK BAR 120G', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2025-09-30', '450.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (637, 53, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-04-18', '900.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (638, 53, NULL, 1832, 'PR-545', 'SYR TEGRATOL', NULL, '90.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-07-15', '90.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (639, 53, NULL, 1835, '8901175038794', 'SIMVASTATIN 20MG(28s) UK', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-04-16', '450.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (640, 53, NULL, 1836, 'PR-549', 'SIRDALUD 2MG', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-03-30', '540.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (641, 53, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '90.0000', '0.0000', '40.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-03-24', '3600.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (642, 53, NULL, 1450, 'PR-163', 'Lofnac 100 supp WABG035', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-05-13', '900.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (643, 53, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-05-25', '900.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (644, 53, NULL, 1840, 'PR-553', 'B COMPLEX B/P LP', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-12-26', '4500.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (645, 53, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '90.0000', '0.0000', '100.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-12-27', '9000.0000', '19.0000', '2021-04-01', 'received', '90.0000', '90.0000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (646, 53, NULL, 1844, 'PR-557', 'LETAP AMPICLOX', NULL, '90.0000', '0.0000', '20.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-02-28', '1800.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (647, 53, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '90.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-09-30', '360.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (648, 53, NULL, 1847, '5028268050358', 'BEEHIVE BALSAM SYR', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2025-01-02', '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (649, 53, NULL, 1848, 'PR-561', 'DICLO INJ TROGE', NULL, '90.0000', '0.0000', '100.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-01-28', '9000.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (650, 53, NULL, 1849, '8906082820586', 'B CO INJ (MVC) 25\'S', NULL, '2.5000', '0.0000', '25.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-01-09', '62.5000', '0.0000', '2021-04-01', 'received', '2.5000', '2.5000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (651, 54, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '11.5600', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-10-12', '34.6800', '1.0000', '2021-04-02', 'received', '11.5600', '11.5600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.5600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (652, 54, NULL, 1852, 'PR-565', 'EYECOPEN ACPS 30?S', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-06-22', '270.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (653, 54, NULL, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-10-24', '900.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (654, 54, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-01-25', '900.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (655, 54, NULL, 1857, '6033000270320', 'BX SYR S/S', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-05-09', '270.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (656, 54, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-07-27', '270.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (657, 54, NULL, 1860, '8901138150891', 'PILEX OINTMENT', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-07-27', '270.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (658, 54, NULL, 1861, 'PR-574', 'UK MENOPACE', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-01-26', '270.0000', '3.0000', '2021-04-02', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (659, 54, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.2200', '0.0000', '150.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-05-25', '183.0000', '0.0000', '2021-04-02', 'received', '1.2200', '1.2200', '150.0000', NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, '1.2200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (660, 54, NULL, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-10-26', '270.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (661, 54, NULL, 1609, '8904107900893', 'MYCOLEX CREAM 20G', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-10-28', '450.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (662, 54, NULL, 1866, 'PR-579', 'CETAPOL PM 120/12.5MG/5ML', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-10-30', '450.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (663, 54, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-05-13', '900.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (664, 54, NULL, 1868, 'PR-581', 'CIPRO TAB 500MG (SHALCIP TAB)', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-07-27', '900.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (665, 54, NULL, 1869, 'PR-582', 'DYNEWELL SYR', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-04-26', '900.0000', '10.0000', '2021-04-02', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (666, 54, NULL, 1870, 'PR-583', 'HAEMOGLOBIN L/P SYR', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-05-26', '450.0000', '5.0000', '2021-04-02', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (667, 54, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '90.0000', '0.0000', '60.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-04-24', '5400.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (668, 54, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-01-13', '270.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (669, 54, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-09-12', '270.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (670, 54, NULL, 1874, 'PR-587', 'DICNAC 75 SR(DICLOFENAC)', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-09-18', '450.0000', '4.0000', '2021-04-02', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (671, 54, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-06-30', '180.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (672, 54, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '90.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-07-25', '270.0000', '3.0000', '2021-04-02', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (673, 54, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '16.3900', '0.0000', '0.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '0.0000', '0.0000', '2021-04-02', 'received', '16.3900', '16.3900', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '16.3900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (674, 54, NULL, 1879, 'PR-592', 'PERMOXYL SUSP', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-01-12', '450.0000', '5.0000', '2021-04-02', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (675, 54, NULL, 1880, 'PR-593', 'AMOXY SUSP (LUEX)', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-07-13', '540.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (676, 54, NULL, 1881, '5021265232062', 'PREGNACARE BREAST FEEDING UK', NULL, '105.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-11-02', '210.0000', '0.0000', '2021-04-02', 'received', '105.0000', '105.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '105.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (677, 54, NULL, 1882, 'PR-595', 'ICTHAMMOL OINT', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-12-22', '540.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (678, 54, NULL, 1883, 'PR-596', 'LIVERPLEX-B INFANT', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-09-05', '450.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (679, 54, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-10-16', '540.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (680, 54, NULL, 1885, 'PR-598', 'SALICYLIC OINT', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-05-03', '540.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (681, 54, NULL, 1886, 'PR-599', 'NORVASC 10MG 30?S', NULL, '90.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-06-28', '180.0000', '0.0000', '2021-04-02', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (682, 54, NULL, 1962, '5021265224128', 'VISIONANCE UK', NULL, '58.3800', '0.0000', '0.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-11-04', '0.0000', '0.0000', '2021-04-02', 'received', '58.3800', '58.3800', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '58.3800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (683, 54, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '90.0000', '0.0000', '16.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-05-25', '1440.0000', '7.0000', '2021-04-02', 'received', '90.0000', '90.0000', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (740, 56, NULL, 1946, '92115303', 'Ascorbin  Syrup 100ml', NULL, '1.5500', '0.0000', '100.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-04-01', '155.0000', '59.0000', '2021-04-02', 'received', '1.5500', '1.5500', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '1.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (741, 56, NULL, 1949, '68032552', ' Foliron tonic 200ML', NULL, '3.1000', '0.0000', '30.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-01-01', '93.0000', '10.0000', '2021-04-02', 'received', '3.1000', '3.1000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (742, 56, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.3800', '0.0000', '100.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-01-01', '138.0000', '53.0000', '2021-04-02', 'received', '1.3800', '1.3800', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '1.3800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (743, 58, NULL, 1972, '6181100533118', 'PERFECT WHITE SHOWER GEL', NULL, '13.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '26.0000', '0.0000', '2021-04-02', 'received', '13.0000', '13.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (744, 58, NULL, 1973, '6181100533101', 'CARO WHITE SHOWER GEL', NULL, '13.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '26.0000', '0.0000', '2021-04-02', 'received', '13.0000', '13.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (745, 58, NULL, 1974, '6186000077649', 'EVERSHEEN LOTION BIG 750ML', NULL, '12.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2025-02-18', '24.0000', '0.0000', '2021-04-02', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (746, 58, NULL, 1975, '6186000077410', 'EVERSHEEN LOTION MEDIUM 500ML', NULL, '8.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '17.0000', '0.0000', '2021-04-02', 'received', '8.5000', '8.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (747, 58, NULL, 1976, '6186000077427', 'EVERSHEEN LOTION SMALL 250ML', NULL, '5.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '10.0000', '0.0000', '2021-04-02', 'received', '5.0000', '5.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (748, 58, NULL, 1971, '6186000077434', 'QUEEN ELISABETH COCOA BUTTER LOTION 800ML', NULL, '11.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2025-02-03', '22.0000', '0.0000', '2021-04-02', 'received', '11.0000', '11.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (749, 58, NULL, 1978, '6186000077045', 'QUEEN ELISABETH COCO BUTTER LOTIN 400ML', NULL, '6.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '13.0000', '0.0000', '2021-04-02', 'received', '6.5000', '6.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (750, 58, NULL, 1980, '6186000077052', 'QUEEN ELISABETH COCOA BUTTER LOTION 250ML', NULL, '4.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '8.0000', '0.0000', '2021-04-02', 'received', '4.0000', '4.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (751, 58, NULL, 1981, '6186000077168', 'EVERSHEEN CREAM BIG', NULL, '8.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '17.0000', '0.0000', '2021-04-02', 'received', '8.5000', '8.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (752, 58, NULL, 1982, '6186000077267', 'EVERSHEEN CREAM SMALL', NULL, '4.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '9.0000', '0.0000', '2021-04-02', 'received', '4.5000', '4.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (753, 58, NULL, 1983, '6186000077014', 'QUEEN ELISABETH COCOA BUTTER CREAM 500ML', NULL, '11.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '22.0000', '0.0000', '2021-04-02', 'received', '11.0000', '11.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (754, 58, NULL, 1984, '6186000077021', 'QUEEN ELISABETH COCOA BUTTER CREAM  250ML MEDIUM', NULL, '6.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '13.0000', '0.0000', '2021-04-02', 'received', '6.5000', '6.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (755, 58, NULL, 1985, '6186000077038', 'QUEEN ELISABETH COCOA BUTTER CREAM 125ML', NULL, '4.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2025-01-04', '8.0000', '0.0000', '2021-04-02', 'received', '4.0000', '4.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (756, 58, NULL, 1986, '6181100323658', 'SIVODERM CREAM', NULL, '5.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '15.0000', '0.0000', '2021-04-02', 'received', '5.0000', '5.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (757, 58, NULL, 1987, '6181100323665', 'SIVODERM POWDER', NULL, '4.5000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '13.5000', '0.0000', '2021-04-02', 'received', '4.5000', '4.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (758, 58, NULL, 1988, '6182000127728', 'PHARMADERM', NULL, '5.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '15.0000', '0.0000', '2021-04-02', 'received', '5.0000', '5.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (759, 58, NULL, 1989, '6181100321821', 'SULFUR 18', NULL, '3.5000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '14.0000', '0.0000', '2021-04-02', 'received', '3.5000', '3.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (760, 58, NULL, 1990, '6182000129364', 'BROOKLYN STYLING GEL', NULL, '2.5000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '7.5000', '0.0000', '2021-04-02', 'received', '2.5000', '2.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (761, 58, NULL, 1991, '6181100234244', 'PARADISE POWDER', NULL, '5.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-12-31', '30.0000', '3.0000', '2021-04-02', 'received', '5.0000', '5.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (762, 58, NULL, 1992, '6033000171719', 'KLEANZ SANITIZER 100ML', NULL, '1.5000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '9.0000', '0.0000', '2021-04-02', 'received', '1.5000', '1.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (763, 58, NULL, 1993, '6033000330710', 'KLEANZ SANITIZER 50ML', NULL, '0.6000', '0.0000', '12.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '7.2000', '0.0000', '2021-04-02', 'received', '0.6000', '0.6000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '0.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (764, 58, NULL, 1994, '6182000105382', 'CAROTONE LOTION BIG 550ML', NULL, '12.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-11-11', '24.0000', '0.0000', '2021-04-02', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (765, 58, NULL, 1995, '6182000109939', 'CAROTONE LOTION MEDIUM 350ML', NULL, '8.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-12-12', '17.0000', '0.0000', '2021-04-02', 'received', '8.5000', '8.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (766, 58, NULL, 1996, '6182000100455', 'CAROTONE LOTION SMALL 215ML', NULL, '5.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '11.0000', '0.0000', '2021-04-02', 'received', '5.5000', '5.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (767, 58, NULL, 1997, '6182000100493', 'CAROTONE CREAM BIG 330ML', NULL, '8.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '17.0000', '0.0000', '2021-04-02', 'received', '8.5000', '8.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (768, 58, NULL, 1998, '6182000100486', 'CAROTONE CREAM SMALL135ML', NULL, '3.6000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '7.2000', '0.0000', '2021-04-02', 'received', '3.6000', '3.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '3.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (821, 62, NULL, 2051, '6186000077731', 'TENDRINA BOBY LOTION 500ML', NULL, '8.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '16.0000', '0.0000', '2021-04-02', 'received', '8.0000', '8.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (822, 62, NULL, 2052, '6186000077724', 'TENDRINA BOBY LOTION 250ML', NULL, '4.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '9.0000', '0.0000', '2021-04-02', 'received', '4.5000', '4.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (823, 62, NULL, 2041, '6181100535136', 'BABY MED LOTION 800ML', NULL, '12.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '24.0000', '2.0000', '2021-04-02', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (827, 64, NULL, 2110, '6932757117080', 'MOTHER THOUCH DIAPER', NULL, '35.0000', '0.0000', '9.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '315.0000', '0.0000', '2021-04-02', 'received', '35.0000', '35.0000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (828, 64, NULL, 2118, '11415402', 'AVEENO WIPES', NULL, '8.5000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '51.0000', '0.0000', '2021-04-02', 'received', '8.5000', '8.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (829, 64, NULL, 2112, '070330746336', 'FLEX 5 BIC RAZOR', NULL, '10.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '10.0000', '0.0000', '2021-04-02', 'received', '10.0000', '10.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (830, 64, NULL, 2113, '192624002949', 'BOD MEM SMALL', NULL, '20.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '20.0000', '1.0000', '2021-04-02', 'received', '20.0000', '20.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (831, 64, NULL, 2114, '192624002970', 'BOD MEN BIG', NULL, '20.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '20.0000', '1.0000', '2021-04-02', 'received', '20.0000', '20.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (832, 64, NULL, 2111, '072140028626', 'NIVEA MEN PACK', NULL, '40.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '80.0000', '0.0000', '2021-04-02', 'received', '40.0000', '40.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '40.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (833, 64, NULL, 2116, '7330933031332', 'ECO NATY DIAPER', NULL, '30.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '60.0000', '0.0000', '2021-04-02', 'received', '30.0000', '30.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (834, 64, NULL, 2117, '817810029417', 'HONEST DIAPER', NULL, '20.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '40.0000', '0.0000', '2021-04-02', 'received', '20.0000', '20.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (835, 64, NULL, 2115, '35179090', 'SMALL BASKET GIFT SET', NULL, '20.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '40.0000', '0.0000', '2021-04-02', 'received', '20.0000', '20.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (836, 64, NULL, 2119, '840038215454', 'SANITIZER BIG KEEP CLEAN', NULL, '30.0000', '0.0000', '12.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '0.0000', '2021-04-02', 'received', '30.0000', '30.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (837, 64, NULL, 2120, '850005911845', 'SANITIZERR SMALL SUAVE', NULL, '5.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '50.0000', '0.0000', '2021-04-02', 'received', '5.0000', '5.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (838, 64, NULL, 2121, '035000671127', 'MOUTH WASH COLGATE BIG', NULL, '20.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '20.0000', '1.0000', '2021-04-02', 'received', '20.0000', '20.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (839, 64, NULL, 2122, '035000455321', 'MOUTH WASH COLGATE SMALL', NULL, '20.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '40.0000', '2.0000', '2021-04-02', 'received', '20.0000', '20.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (840, 64, NULL, 2123, '842379108860', 'MOUNTH WASH SOLIMO', NULL, '20.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '20.0000', '0.0000', '2021-04-02', 'received', '20.0000', '20.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (841, 64, NULL, 2124, '079896174812', 'QUEEN HELENE COCOA BUTTER LOTION', NULL, '25.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '125.0000', '0.0000', '2021-04-02', 'received', '25.0000', '25.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (842, 64, NULL, 2125, '052181492303', 'CRYSTAL CLEAR  MONITOR', NULL, '20.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '20.0000', '0.0000', '2021-04-02', 'received', '20.0000', '20.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (843, 64, NULL, 2126, '017854103597', 'BAYLISS GIFT SET PINK', NULL, '30.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '0.0000', '2021-04-02', 'received', '30.0000', '30.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (844, 64, NULL, 2128, '017854103634', 'BATLIS &HARDING GIFT SET', NULL, '30.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '30.0000', '0.0000', '2021-04-02', 'received', '30.0000', '30.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (845, 64, NULL, 2127, '047400671881', 'JOY RAZAR GIT SET', NULL, '10.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '60.0000', '0.0000', '2021-04-02', 'received', '10.0000', '10.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (868, 55, NULL, 2092, '69091614', 'GLUCOSE C L/P', NULL, '4.1500', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '16.6000', '0.0000', '2021-04-02', 'received', '4.1500', '4.1500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '4.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (869, 55, NULL, 2091, '11166394', 'CA-C 1000 SANDOZ', NULL, '28.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '56.0000', '2.0000', '2021-04-02', 'received', '28.0000', '28.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (922, 23, NULL, 1444, 'PR-157', 'Entarcian 300 coo50003', NULL, '8.8000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '88.0000', '10.0000', '2021-03-30', 'received', '8.8000', '8.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (923, 23, NULL, 1445, 'PR-158', 'Iburex Caps c013D002', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (924, 23, NULL, 1446, 'PR-159', 'Tobufen syr L00YADW6', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (925, 23, NULL, 1447, '8906081306418', 'Herbal Lofnac HLB001', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (926, 23, NULL, 1449, 'PR-162', 'Wormee 4 tab wr036', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (927, 23, NULL, 1450, 'PR-163', 'Lofnac 100 supp WABG035', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '10.0000', '2021-03-30', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (928, 23, NULL, 1452, 'PR-165', 'Tobufon 400 T002e001', NULL, '90.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '50.0000', '2021-03-30', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (929, 23, NULL, 1453, 'PR-166', 'Muscoto 5% L018D002', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '5.0000', '2021-03-30', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (930, 23, NULL, 1454, 'PR-167', 'Ancigel  O L033E001', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (931, 23, NULL, 1455, 'PR-168', 'Gacet125MP KIACK006', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1011, 11, NULL, 1322, 'PR-35', 'BADRUF CREAM 30MG', NULL, '90.0000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-07-31', '900.0000', '0.0000', '2021-03-29', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1012, 11, NULL, 1301, 'PR-14', 'BASE COLD 1X6X10', NULL, '1.6800', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '1.6800', '0.0000', '2021-03-29', 'received', '1.6800', '1.6800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '1.6800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1013, 11, NULL, 1306, 'PR-19', 'DOMI 10: TAB', NULL, '2.1000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '21.0000', '10.0000', '2021-03-29', 'received', '2.1000', '2.1000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1014, 11, NULL, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '1.9000', '0.0000', '30.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '57.0000', '26.0000', '2021-03-29', 'received', '1.9000', '1.9000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1015, 11, NULL, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', NULL, '0.3700', '0.0000', '25.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '9.2500', '0.0000', '2021-03-29', 'received', '0.3700', '0.3700', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.3700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1016, 11, NULL, 1322, 'PR-35', 'BADRUF CREAM 30MG', NULL, '3.6000', '0.0000', '15.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '54.0000', '9.0000', '2021-03-29', 'received', '3.6000', '3.6000', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '3.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1017, 11, NULL, 1303, 'PR-16', 'BASE BOOM JELLY', NULL, '1.3800', '0.0000', '80.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '110.4000', '0.0000', '2021-03-29', 'received', '1.3800', '1.3800', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '1.3800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1032, 63, NULL, 2055, '34197416', 'ACTILIFE MUITIVITAMINS', NULL, '12.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '24.0000', '1.0000', '2021-04-02', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1033, 63, NULL, 2057, '16787356', 'ESSENTIAL EMBROCATION(LIQUID ROBB) 4ML', NULL, '1.6000', '0.0000', '24.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '38.4000', '24.0000', '2021-04-02', 'received', '1.6000', '1.6000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1034, 63, NULL, 2056, '26049852', 'ESSENTIAL EMBROCATION (LIQUID ROBB) 27ML', NULL, '5.4100', '0.0000', '12.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '64.9200', '9.0000', '2021-04-02', 'received', '5.4100', '5.4100', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '5.4100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1035, 57, NULL, 2093, '74359321', 'CALCIUM B12 SYRUP 200ML', NULL, '2.5500', '0.0000', '30.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-06-01', '76.5000', '10.0000', '2021-04-02', 'received', '2.5500', '2.5500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1036, 57, NULL, 2094, '68563120', 'COUGH & COLD 100ML CHILD CARE', NULL, '2.9000', '0.0000', '100.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-09-01', '290.0000', '60.0000', '2021-04-02', 'received', '2.9000', '2.9000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '2.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1037, 57, NULL, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '2.8000', '0.0000', '110.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-01-01', '308.0000', '58.0000', '2021-04-02', 'received', '2.8000', '2.8000', '110.0000', NULL, NULL, 1, 'pc', '110.0000', NULL, NULL, NULL, NULL, '2.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1038, 57, NULL, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', NULL, '2.7500', '0.0000', '105.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-02-01', '288.7500', '55.0000', '2021-04-02', 'received', '2.7500', '2.7500', '105.0000', NULL, NULL, 1, 'pc', '105.0000', NULL, NULL, NULL, NULL, '2.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1039, 57, NULL, 2095, '83888513', 'LETAMOL ELIXIR 125ML  LETAP', NULL, '1.5000', '0.0000', '100.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-02-01', '150.0000', '57.0000', '2021-04-02', 'received', '1.5000', '1.5000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1040, 57, NULL, 2096, '90371186', 'LETAVIT SYRUP 125ML', NULL, '1.5500', '0.0000', '40.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-03-01', '62.0000', '0.0000', '2021-04-02', 'received', '1.5500', '1.5500', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1041, 57, NULL, 2097, '70572709', 'MACRAFOLIN SYRUP 125ML', NULL, '1.6500', '0.0000', '40.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-02-01', '66.0000', '0.0000', '2021-04-02', 'received', '1.6500', '1.6500', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1042, 57, NULL, 2098, '39895805', 'MILK OF MAGNESIA 125ML LETAP', NULL, '1.0000', '0.0000', '40.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-03-01', '40.0000', '0.0000', '2021-04-02', 'received', '1.0000', '1.0000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1043, 57, NULL, 2099, '36936180', 'LETARON SYRUP 200ML', NULL, '2.8000', '0.0000', '30.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-03-01', '84.0000', '10.0000', '2021-04-02', 'received', '2.8000', '2.8000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1044, 57, NULL, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '1.6500', '0.0000', '40.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-01-01', '66.0000', '0.0000', '2021-04-02', 'received', '1.6500', '1.6500', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1045, 57, NULL, 2101, '56160077', 'LETAFEN SUSPENSION 100ML', NULL, '1.6500', '0.0000', '40.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-03-01', '66.0000', '0.0000', '2021-04-02', 'received', '1.6500', '1.6500', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1046, 57, NULL, 2102, '12180621', 'METRONIDAZOLE SUSP 100ML', NULL, '1.9000', '0.0000', '40.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-01-01', '76.0000', '0.0000', '2021-04-02', 'received', '1.9000', '1.9000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1047, 57, NULL, 2103, '77332390', 'LETAMOX TABLET 500MG 500MG', NULL, '0.4500', '0.0000', '420.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-12-01', '189.0000', '299.0000', '2021-04-02', 'received', '0.4500', '0.4500', '420.0000', NULL, NULL, 1, 'pc', '420.0000', NULL, NULL, NULL, NULL, '0.4500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1048, 57, NULL, 2104, '44677443', 'DYNWELL TABLETS', NULL, '0.2000', '0.0000', '650.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-01-01', '130.0000', '298.0000', '2021-04-02', 'received', '0.2000', '0.2000', '650.0000', NULL, NULL, 1, 'pc', '650.0000', NULL, NULL, NULL, NULL, '0.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1049, 57, NULL, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '1.3500', '0.0000', '60.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-01-01', '81.0000', '0.0000', '2021-04-02', 'received', '1.3500', '1.3500', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1050, 57, NULL, 2106, '26940098', 'XPEL SUSPENSION 20ML', NULL, '0.9900', '0.0000', '60.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-07-01', '59.4000', '0.0000', '2021-04-02', 'received', '0.9900', '0.9900', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1051, 57, NULL, 2107, '04659350', 'FUROSEMIDE TAB 40MG LETAP', NULL, '0.2500', '0.0000', '350.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-12-01', '87.5000', '50.0000', '2021-04-02', 'received', '0.2500', '0.2500', '350.0000', NULL, NULL, 1, 'pc', '350.0000', NULL, NULL, NULL, NULL, '0.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1052, 57, NULL, 2108, '85249693', 'ARFAN 20/120MG', NULL, '4.7500', '0.0000', '45.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-01-01', '213.7500', '22.0000', '2021-04-02', 'received', '4.7500', '4.7500', '45.0000', NULL, NULL, 1, 'pc', '45.0000', NULL, NULL, NULL, NULL, '4.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1053, 57, NULL, 2109, '94342778', 'ASCORBIN TABS LETAP', NULL, '0.2500', '0.0000', '450.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-04-01', '112.5000', '143.0000', '2021-04-02', 'received', '0.2500', '0.2500', '450.0000', NULL, NULL, 1, 'pc', '450.0000', NULL, NULL, NULL, NULL, '0.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1077, 17, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.9800', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-01-31', '54.9000', '0.0000', '2021-03-29', 'received', '10.9800', '10.9800', '5.0000', '515', NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1078, 17, NULL, 2062, '01665566', 'ZYMAX SUSP', NULL, '5.8900', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-12-31', '23.5600', '0.0000', '2021-03-29', 'received', '5.8900', '5.8900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '5.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1079, 17, NULL, 2063, '28182783', 'NEFLUCON (FLUCONAZOLE) CAP 150', NULL, '1.9900', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-06-30', '9.9500', '0.0000', '2021-03-29', 'received', '1.9900', '1.9900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '1.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1080, 17, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '29.0000', '0.0000', '11.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '319.0000', '11.0000', '2021-03-29', 'received', '29.0000', '29.0000', '11.0000', NULL, NULL, 1, 'pc', '11.0000', NULL, NULL, NULL, NULL, '29.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1173, 46, NULL, 2086, '06489706', 'METAGYL SUSP', NULL, '4.3200', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '25.9200', '0.0000', '2021-04-01', 'received', '4.3200', '4.3200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1174, 46, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '6.6500', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '19.9500', '0.0000', '2021-04-01', 'received', '6.6500', '6.6500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1175, 46, NULL, 2085, '35811477', 'PARA-DENK 125MG', NULL, '13.3400', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', NULL, '40.0200', '2.0000', '2021-04-01', 'received', '13.3400', '13.3400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.3400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1351, 67, NULL, 2136, '39315036', 'ALEVE', NULL, '0.9500', '0.0000', '120.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-03-03', '114.0000', '114.0000', '2021-04-07', 'received', '0.9500', '0.9500', '120.0000', '00012', NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '0.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1352, 67, NULL, 2138, '2890607011007', 'CARVEDILOL', NULL, '12.0500', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-11-11', '60.2500', '5.0000', '2021-04-07', 'received', '12.0500', '12.0500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1353, 67, NULL, 2137, '2890607011010', 'CAVEDILOL 6.25 MG', NULL, '7.9800', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-08-08', '39.9000', '5.0000', '2021-04-07', 'received', '7.9800', '7.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1354, 67, NULL, 2139, '827755010746', 'AMEN\'S POWDER', NULL, '42.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-02-02', '42.0000', '1.0000', '2021-04-07', 'received', '42.0000', '42.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '42.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1355, 67, NULL, 2140, '9556100104335', 'FLUCOR NIGHT', NULL, '10.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-03-31', '30.0000', '3.0000', '2021-04-07', 'received', '10.0000', '10.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1356, 67, NULL, 2141, '93746523', 'PROXIMEXA 500MG', NULL, '4.5000', '0.0000', '20.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-12-12', '90.0000', '20.0000', '2021-04-07', 'received', '4.5000', '4.5000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1357, 67, NULL, 2142, '5021265223855', 'WELLBABY ', NULL, '57.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-08-30', '171.0000', '3.0000', '2021-04-07', 'received', '57.0000', '57.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '57.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1358, 67, NULL, 2143, '4005292004916', 'GERMANY VIT C', NULL, '15.0000', '0.0000', '15.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-08-24', '225.0000', '15.0000', '2021-04-07', 'received', '15.0000', '15.0000', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1359, 67, NULL, 2144, '4316268448895', 'PROLIFE  VITC', NULL, '15.0000', '0.0000', '20.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-07-17', '300.0000', '5.0000', '2021-04-07', 'received', '15.0000', '15.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1360, 67, NULL, 2145, '4000987008118', 'AMOS VIT C', NULL, '15.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-06-30', '90.0000', '6.0000', '2021-04-07', 'received', '15.0000', '15.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1361, 67, NULL, 2146, '28780424', 'DICLOKIN-TR', NULL, '1.8100', '0.0000', '40.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-03-27', '72.4000', '40.0000', '2021-04-07', 'received', '1.8100', '1.8100', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.8100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1362, 67, NULL, 2147, '96565539', 'CYPON SRP', NULL, '7.1000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-05-30', '21.3000', '3.0000', '2021-04-07', 'received', '7.1000', '7.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1363, 67, NULL, 2148, '01503409', 'TINATET HAYAN CAPS', NULL, '35.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-05-31', '70.0000', '2.0000', '2021-04-07', 'received', '35.0000', '35.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1364, 67, NULL, 2149, '74837557', 'ZIPMAN CAPS', NULL, '14.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-11-11', '42.0000', '3.0000', '2021-04-07', 'received', '14.0000', '14.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1365, 67, NULL, 2150, '5060180720148', 'ATWOOD LAXATIVE', NULL, '30.4100', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-03-26', '60.8200', '2.0000', '2021-04-07', 'received', '30.4100', '30.4100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.4100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1366, 67, NULL, 2151, '05077634', 'TOMAC MIX', NULL, '17.5000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-11-30', '52.5000', '3.0000', '2021-04-07', 'received', '17.5000', '17.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1367, 67, NULL, 2152, '6034000189179', 'ADOM W&G MIX', NULL, '10.8300', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-02-28', '43.3200', '4.0000', '2021-04-07', 'received', '10.8300', '10.8300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '10.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1368, 67, NULL, 2153, '4058172309250', 'MADNESUIM TABLETS TUBE', NULL, '8.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-01-31', '40.0000', '3.0000', '2021-04-07', 'received', '8.0000', '8.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1369, 67, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '10.5000', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-09-16', '105.0000', '10.0000', '2021-04-07', 'received', '10.5000', '10.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1370, 67, NULL, 2155, '5000347045219', 'PANADOL EXTRA ADVANCE', NULL, '21.7000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-07-30', '108.5000', '4.0000', '2021-04-07', 'received', '21.7000', '21.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '21.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1371, 67, NULL, 2156, '10421120', 'LEENA CAPS', NULL, '3.2500', '0.0000', '10.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-09-30', '32.5000', '0.0000', '2021-04-07', 'received', '3.2500', '3.2500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1372, 67, NULL, 2157, '13804928', 'GVITHER INJ', NULL, '0.9800', '0.0000', '30.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-12-21', '29.4000', '20.0000', '2021-04-07', 'received', '0.9800', '0.9800', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1373, 67, NULL, 2158, '89036880', 'GEBEDOL EXTRA', NULL, '0.9400', '0.0000', '40.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-09-14', '37.6000', '40.0000', '2021-04-07', 'received', '0.9400', '0.9400', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '0.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1374, 67, NULL, 2159, '88244641', 'TREMENDOUS CAPS', NULL, '15.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-11-12', '45.0000', '3.0000', '2021-04-07', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1375, 67, NULL, 2160, '6034000214017', 'CHOCHO ANTIBACTRIL SOAP', NULL, '2.6000', '0.0000', '5.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-03-30', '13.0000', '4.0000', '2021-04-07', 'received', '2.6000', '2.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1376, 67, NULL, 2161, '58683972', 'GLYCERINE B/S', NULL, '8.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-02-27', '32.0000', '4.0000', '2021-04-07', 'received', '8.0000', '8.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1377, 67, NULL, 2162, '6156000252803', 'T C P SOAP', NULL, '6.5000', '0.0000', '12.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-06-24', '78.0000', '12.0000', '2021-04-07', 'received', '6.5000', '6.5000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1378, 67, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '20.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-05-09', '60.0000', '3.0000', '2021-04-07', 'received', '20.0000', '20.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1379, 67, NULL, 2165, '6001051000821', 'NIVEA MEN BODY LOTION', NULL, '18.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-02-27', '72.0000', '0.0000', '2021-04-07', 'received', '18.0000', '18.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1380, 67, NULL, 2166, '6036000078514', 'ULCERPLEX HERBAL', NULL, '5.5000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-06-16', '16.5000', '0.0000', '2021-04-07', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1381, 67, NULL, 2168, '8901082004356', 'APTIZOOOM', NULL, '26.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-03-30', '52.0000', '2.0000', '2021-04-07', 'received', '26.0000', '26.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1382, 67, NULL, 2169, '97038500', 'GEBEDOL', NULL, '0.9800', '0.0000', '60.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-07-26', '58.8000', '38.0000', '2021-04-07', 'received', '0.9800', '0.9800', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1389, 68, NULL, 2216, '8964000734667', 'LAVENDER OIL 40ML NATURAL', NULL, '12.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-09-30', '24.0000', '0.0000', '2021-04-07', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1390, 68, NULL, 2215, '8964000734742', 'CASTOR OIL NATURAL 40ML (HEMANI)', NULL, '12.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2021-11-30', '24.0000', '0.0000', '2021-04-07', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1391, 68, NULL, 2219, '8964000734674', 'PEPPERMINT OIL 40ML', NULL, '12.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-10-12', '24.0000', '0.0000', '2021-04-07', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1392, 68, NULL, 2218, '8964000734698', 'TEA TREE OIL 40ML', NULL, '12.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-11-30', '24.0000', '0.0000', '2021-04-07', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1393, 68, NULL, 2217, '8964000734650', 'BLACKSEED OIL 40ML', NULL, '12.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-05-24', '24.0000', '0.0000', '2021-04-07', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1394, 68, NULL, 2214, '8961102060823', 'PROSTATE OIL 60ML', NULL, '15.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-11-30', '30.0000', '0.0000', '2021-04-07', 'received', '15.0000', '15.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1395, 68, NULL, 2213, '8964000735695', 'CLOVE OIL 60ML', NULL, '10.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-10-30', '20.0000', '2.0000', '2021-04-07', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1396, 68, NULL, 2212, '8964000114018', 'BLACKSEEDS OIL 60ML', NULL, '10.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-11-30', '20.0000', '0.0000', '2021-04-07', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1397, 68, NULL, 2211, '8964000736371', 'COCONUT OIL 60ML', NULL, '10.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-10-30', '20.0000', '2.0000', '2021-04-07', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1398, 68, NULL, 2207, '8964001505662', 'ROSEHIP OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-10-01', '15.0000', '2.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1399, 68, NULL, 2208, '8964000114049', 'CASTOR OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-09-30', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1400, 68, NULL, 2206, '8964001505679', 'VITAMIN E OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-10-20', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1401, 68, NULL, 2209, '8964000267295', 'TURMERIC OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-10-10', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1402, 68, NULL, 2210, '8964000267318', 'CLOVE OIL SMALL 10ML', NULL, '5.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-05-05', '15.0000', '3.0000', '2021-04-07', 'received', '5.0000', '5.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1403, 68, NULL, 2188, '8964000577431', 'ARGAN OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-05-24', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1404, 68, NULL, 2190, '8964000736401', 'SIDR OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-10-30', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1405, 68, NULL, 2193, '8964000114216', 'ROSEMARY OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-10-10', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1406, 68, NULL, 2187, '8964000577981', 'TEA TREE OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-12-12', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1407, 68, NULL, 2192, '8964000267264', 'WHEAT OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-02-12', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1408, 68, NULL, 2185, '8964000737637', 'HORSETAIL OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-05-05', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1409, 68, NULL, 2183, '8964000114278', 'ONION OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-10-10', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1410, 68, NULL, 2186, '8964000735862', 'CUCUMBER', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-06-12', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1411, 68, NULL, 2191, '8964000114223', 'LAVENDER OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-06-06', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1412, 68, NULL, 2182, '8964000114230', 'OREGANO OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-05-24', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1413, 68, NULL, 2184, '8964000114353', 'MINT OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-06-30', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1414, 68, NULL, 2189, '8964000577967', 'COD LIVER OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-10-30', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1415, 68, NULL, 2194, '8964000735879', 'POMEGRANATE OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-10-30', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1416, 68, NULL, 2196, '8964000267288', 'SANDALWOOD OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-06-30', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1417, 68, NULL, 2195, '8964000267233', 'LEMON OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-06-23', '15.0000', '2.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1418, 68, NULL, 2197, '8964000114186', 'LINSEED OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-08-24', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1419, 68, NULL, 2198, '8964000267271', 'PUMPKIN SEED OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-06-23', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1420, 68, NULL, 2199, '8964000390658', 'ROSE OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-10-20', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1421, 68, NULL, 2200, '8964000114315', 'NEEM OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-10-20', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1422, 68, NULL, 2203, '8964000114056', 'MUSTARD OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2022-05-20', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1423, 68, NULL, 2201, '8964000114179', 'SESAME OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2023-08-20', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1424, 68, NULL, 2204, '8964000390771', 'JASMINE OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-10-10', '15.0000', '2.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1425, 68, NULL, 2205, '8964000114292', 'CINNAMON OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-10-30', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1426, 68, NULL, 2202, '8964000114094', 'FENNEL OIL', NULL, '7.5000', '0.0000', '2.0000', 4, '0.0000', NULL, '', '0', '0.0000', '2024-10-30', '15.0000', '0.0000', '2021-04-07', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1439, NULL, NULL, 1478, '8906087940128', 'IMPRESSER CAPS', NULL, '21.2000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '254.4000', '0.0000', '2021-04-08', 'received', '21.2000', '21.2000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1440, NULL, NULL, 1479, '8906087940135', 'IMPRESSER OIL', NULL, '42.3600', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '84.7200', '0.0000', '2021-04-08', 'received', '42.3600', '42.3600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1441, NULL, NULL, 1480, '5011501006519', 'DEEP FREEZE SPRAY', NULL, '29.0900', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '58.1800', '-1.0000', '2021-04-08', 'received', '29.0900', '29.0900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1442, NULL, NULL, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '24.9000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '74.7000', '0.0000', '2021-04-08', 'received', '24.9000', '24.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1443, NULL, NULL, 1482, '5011501040124', 'DEEP HEAT RUB 35G', NULL, '12.9900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '38.9700', '0.0000', '2021-04-08', 'received', '12.9900', '12.9900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1444, NULL, NULL, 1483, '5011501040131', 'DEEP HEAT RUB 67G', NULL, '17.3400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '52.0200', '1.0000', '2021-04-08', 'received', '17.3400', '17.3400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1445, NULL, NULL, 1484, '8470007006244', 'SILVER DERMA CREAM 50G', NULL, '26.4500', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '52.9000', '0.0000', '2021-04-08', 'received', '26.4500', '26.4500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1446, NULL, NULL, 1485, '008', 'NIZORAL CREAM', NULL, '23.1300', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '69.3900', '0.0000', '2021-04-08', 'received', '23.1300', '23.1300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1447, NULL, NULL, 1486, '5010441000687', 'HYDROCORTISONE CREAM', NULL, '17.2400', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '86.2000', '0.0000', '2021-04-08', 'received', '17.2400', '17.2400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1448, NULL, NULL, 1487, '8902292000893', 'KETAZOL CREAM', NULL, '4.8700', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.3500', '0.0000', '2021-04-08', 'received', '4.8700', '4.8700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1463, NULL, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '3.9200', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '19.6000', '0.0000', '2021-04-08', 'received', '3.9200', '3.9200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1464, NULL, NULL, 1489, '6938058600108', 'SAMOCID(SKIN AND NAIL)', NULL, '28.1700', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '169.0200', '0.0000', '2021-04-08', 'received', '28.1700', '28.1700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1465, NULL, NULL, 1490, '8903996006013', 'ACNEL GEL 20MG', NULL, '10.3400', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '51.7000', '0.0000', '2021-04-08', 'received', '10.3400', '10.3400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1466, NULL, NULL, 1322, 'PR-35', 'BADRUF CREAM 30MG', NULL, '3.6000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.0000', '0.0000', '2021-04-08', 'received', '3.6000', '3.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1481, NULL, 2, 1487, '8902292000893', 'KETAZOL CREAM', NULL, '4.8700', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '24.3500', '4.0000', '2021-04-10', 'received', '4.8700', '4.8700', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1482, NULL, 2, 1486, '5010441000687', 'HYDROCORTISONE CREAM', NULL, '17.2400', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '86.2000', '3.0000', '2021-04-10', 'received', '17.2400', '17.2400', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1483, NULL, 2, 1485, '008', 'NIZORAL CREAM', NULL, '23.1300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '69.3900', '0.0000', '2021-04-10', 'received', '23.1300', '23.1300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1484, NULL, 2, 1484, '8470007006244', 'SILVER DERMA CREAM 50G', NULL, '26.4500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '52.9000', '1.0000', '2021-04-10', 'received', '26.4500', '26.4500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1485, NULL, 2, 1483, '5011501040131', 'DEEP HEAT RUB 67G', NULL, '17.3400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '52.0200', '0.0000', '2021-04-10', 'received', '17.3400', '17.3400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1486, NULL, 2, 1482, '5011501040124', 'DEEP HEAT RUB 35G', NULL, '12.9900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '38.9700', '3.0000', '2021-04-10', 'received', '12.9900', '12.9900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1487, NULL, 2, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '24.9000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '74.7000', '1.0000', '2021-04-10', 'received', '24.9000', '24.9000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1488, NULL, 2, 1480, '5011501006519', 'DEEP FREEZE SPRAY', NULL, '29.0900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '58.1800', '0.0000', '2021-04-10', 'received', '29.0900', '29.0900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1489, NULL, 2, 1479, '8906087940135', 'IMPRESSER OIL', NULL, '42.3600', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '84.7200', '2.0000', '2021-04-10', 'received', '42.3600', '42.3600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1490, NULL, 2, 1478, '8906087940128', 'IMPRESSER CAPS', NULL, '21.2000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '254.4000', '4.0000', '2021-04-10', 'received', '21.2000', '21.2000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1491, NULL, 2, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '3.9200', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '19.6000', '1.0000', '2021-04-10', 'received', '3.9200', '3.9200', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1492, NULL, 2, 1489, '6938058600108', 'SAMOCID(SKIN AND NAIL)', NULL, '28.1700', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '169.0200', '4.0000', '2021-04-10', 'received', '28.1700', '28.1700', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1493, NULL, 2, 1490, '8903996006013', 'ACNEL GEL 20MG', NULL, '10.3400', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '51.7000', '5.0000', '2021-04-10', 'received', '10.3400', '10.3400', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1494, NULL, 2, 1322, 'PR-35', 'BADRUF CREAM 30MG', NULL, '3.6000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '18.0000', '5.0000', '2021-04-10', 'received', '3.6000', '3.6000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1495, 70, NULL, 2222, '4791014004950', 'QUALITEA GREEM TEA', NULL, '13.5000', '0.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2022-04-30', '135.0000', '0.0000', '2021-04-09', 'received', '13.5000', '13.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '13.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1496, NULL, 3, 2222, '4791014004950', 'QUALITEA GREEM TEA', NULL, '13.5000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, '2022-04-30', '135.0000', '3.0000', '2021-04-10', 'received', '13.5000', '13.5000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1497, NULL, 3, 1493, 'PR-206', 'GV PAINT', NULL, '1.6300', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '16.3000', '8.0000', '2021-04-10', 'received', '1.6300', '1.6300', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1498, NULL, 3, 1495, '8904107901401', 'MYCOLEX POWDER', NULL, '17.7300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '53.1900', '1.0000', '2021-04-10', 'received', '17.7300', '17.7300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1499, NULL, 3, 1496, 'PR-209', 'ENACEF SUSP', NULL, '8.8400', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '44.2000', '2.0000', '2021-04-10', 'received', '8.8400', '8.8400', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1500, NULL, 3, 1497, 'PR-210', 'JARIFAN 2 CAPS', NULL, '11.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '33.0000', '2.0000', '2021-04-10', 'received', '11.0000', '11.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1501, NULL, 3, 1498, 'PR-211', 'PAIN OFF TAB', NULL, '0.3300', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '16.5000', '48.0000', '2021-04-10', 'received', '0.3300', '0.3300', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1502, NULL, 3, 1499, 'PR-212', 'RAPINOL', NULL, '0.4100', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '20.5000', '10.0000', '2021-04-10', 'received', '0.4100', '0.4100', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1503, NULL, 3, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.6200', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '62.0000', '24.0000', '2021-04-10', 'received', '0.6200', '0.6200', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1504, NULL, 3, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.0500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '20.5000', '5.0000', '2021-04-10', 'received', '2.0500', '2.0500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1505, NULL, 3, 1502, '8850769018998', 'GOFEX400MG', NULL, '7.8000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '46.8000', '2.0000', '2021-04-10', 'received', '7.8000', '7.8000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1506, NULL, 3, 1503, '305731769203', 'ADVIL CAPLET 24\'', NULL, '32.5100', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '32.5100', '1.0000', '2021-04-10', 'received', '32.5100', '32.5100', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1507, NULL, 3, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.5000', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '90.0000', '0.0000', '2021-04-10', 'received', '1.5000', '1.5000', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1508, NULL, 3, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '13.3000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '79.8000', '1.0000', '2021-04-10', 'received', '13.3000', '13.3000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1509, NULL, 3, 1506, '7612797504765', 'MAXITROL EYE DROP', NULL, '16.2500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '81.2500', '3.0000', '2021-04-10', 'received', '16.2500', '16.2500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1510, NULL, 3, 1507, '002', 'SE\'FLOX EYE/EAR DROP', NULL, '5.5100', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '27.5500', '2.0000', '2021-04-10', 'received', '5.5100', '5.5100', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1511, NULL, 3, 1508, '7612797504857', 'FLAREX 0.1% EYE DROP', NULL, '20.6800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '62.0400', '2.0000', '2021-04-10', 'received', '20.6800', '20.6800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1512, NULL, 3, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '143.4600', '4.0000', '2021-04-10', 'received', '23.9100', '23.9100', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1513, NULL, 3, 1510, '009', 'CIPROLEX EYE & EAR DROP', NULL, '8.8600', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '44.3000', '1.0000', '2021-04-10', 'received', '8.8600', '8.8600', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1514, NULL, 3, 1511, '5413895053528', 'TEARS NATURAL 11', NULL, '25.8600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '77.5800', '1.0000', '2021-04-10', 'received', '25.8600', '25.8600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1515, NULL, 3, 1513, '6221032233103', 'DEXATROL EYE DROP', NULL, '11.9600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '35.8800', '1.0000', '2021-04-10', 'received', '11.9600', '11.9600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1516, NULL, 3, 1514, '6221032340177', 'DEXATROL EYE OINT', NULL, '11.9600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '35.8800', '2.0000', '2021-04-10', 'received', '11.9600', '11.9600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1517, NULL, 3, 1601, '8904091100316', 'CANDIDERM CREAM 15MG', NULL, '7.7300', '0.0000', '8.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '61.8400', '8.0000', '2021-04-10', 'received', '7.7300', '7.7300', NULL, NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1518, NULL, 3, 1516, '9588800180593', 'OPTIMOL EYE DROP', NULL, '15.7600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '47.2800', '3.0000', '2021-04-10', 'received', '15.7600', '15.7600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1519, NULL, 3, 1517, 'PR-230', 'NEOCORT EYE DROP', NULL, '23.6400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '47.2800', '1.0000', '2021-04-10', 'received', '23.6400', '23.6400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1520, NULL, 3, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', NULL, '6.9000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '34.5000', '2.0000', '2021-04-10', 'received', '6.9000', '6.9000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1521, NULL, 3, 1968, '5019781012206', 'VITAMIN E HEALTH AID', NULL, '55.1600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '165.4800', '2.0000', '2021-04-10', 'received', '55.1600', '55.1600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1522, NULL, 3, 1969, '8906016833507', 'CARTEF TAB 24   20/120', NULL, '4.3300', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '43.3000', '3.0000', '2021-04-10', 'received', '4.3300', '4.3300', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1523, NULL, 3, 2135, '42431074', 'POSTINOR LOCAL', NULL, '2.5000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '50.0000', '0.0000', '2021-04-10', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1524, NULL, 4, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.3500', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '67.0000', '6.0000', '2021-04-10', 'received', '3.3500', '3.3500', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1525, NULL, 4, 1520, 'PR-233', 'DICLOLEX 100MG', NULL, '1.4700', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '14.7000', '8.0000', '2021-04-10', 'received', '1.4700', '1.4700', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1526, NULL, 4, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.5000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '25.0000', '3.0000', '2021-04-10', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1527, NULL, 4, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', NULL, '0.3200', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '16.0000', '10.0000', '2021-04-10', 'received', '0.3200', '0.3200', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1528, NULL, 4, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', NULL, '0.9300', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '46.5000', '19.0000', '2021-04-10', 'received', '0.9300', '0.9300', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1529, NULL, 4, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '3.8400', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '38.4000', '10.0000', '2021-04-10', 'received', '3.8400', '3.8400', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1530, NULL, 4, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '3.8400', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '38.4000', '10.0000', '2021-04-10', 'received', '3.8400', '3.8400', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1531, NULL, NULL, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '3.8400', '0.0000', '-10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '-38.4000', '-1.0000', '2021-04-10', 'received', '3.8400', '3.8400', '-10.0000', NULL, NULL, 1, 'pc', '-10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1532, NULL, 4, 1525, '5000158063907', 'LEMSIP SACHETS 5\'S', NULL, '4.9100', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '49.1000', '0.0000', '2021-04-10', 'received', '4.9100', '4.9100', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1533, NULL, 4, 1526, '5052197041545', 'K-Y JELLY 82G', NULL, '33.4700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '100.4100', '2.0000', '2021-04-10', 'received', '33.4700', '33.4700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1534, NULL, 4, 1527, '8904159609416', 'PREGASAFE 75MG TAB', NULL, '13.1000', '0.0000', '18.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '235.8000', '3.0000', '2021-04-10', 'received', '13.1000', '13.1000', NULL, NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1535, NULL, 4, 1528, '4031571020445', 'METFORMIN DENK S00MG', NULL, '4.4000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '220.0000', '22.0000', '2021-04-10', 'received', '4.4000', '4.4000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1536, NULL, 4, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '0.0000', '24.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '85.2000', '3.0000', '2021-04-10', 'received', '3.5500', '3.5500', NULL, NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1537, NULL, 4, 1530, '4031571064159', 'METFORMIN DENK 1G', NULL, '28.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '86.1000', '3.0000', '2021-04-10', 'received', '28.7000', '28.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1538, NULL, 4, 1531, 'PR-244', 'CLOXA CAP 250MG (LETAP)', NULL, '0.9600', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '48.0000', '47.0000', '2021-04-10', 'received', '0.9600', '0.9600', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1539, NULL, 4, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', NULL, '90.0000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '4500.0000', '26.0000', '2021-04-10', 'received', '90.0000', '90.0000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1540, NULL, 4, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.0500', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '91.5000', '19.0000', '2021-04-10', 'received', '3.0500', '3.0500', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1541, NULL, 4, 1535, 'PR-248', 'PINEK XL 30MG TAB', NULL, '7.4900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '14.9800', '2.0000', '2021-04-10', 'received', '7.4900', '7.4900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1542, NULL, 4, 1537, 'PR-250', 'VITANE SYR', NULL, '40.2700', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '80.5400', '1.0000', '2021-04-10', 'received', '40.2700', '40.2700', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1543, NULL, 4, 1538, 'PR-251', 'TINY VITE DROP', NULL, '31.5200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '63.0400', '2.0000', '2021-04-10', 'received', '31.5200', '31.5200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1544, NULL, 4, 1539, '9556100104618', 'O\'YES FEMININE WASH 200ML', NULL, '18.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '54.0000', '1.0000', '2021-04-10', 'received', '18.0000', '18.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1545, NULL, 4, 1540, '8908003831138', 'LAWASH 100ML', NULL, '9.2600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '27.7800', '3.0000', '2021-04-10', 'received', '9.2600', '9.2600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1546, NULL, 4, 1541, '8902502106421', 'INFA V PESS', NULL, '18.7200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '56.1600', '2.0000', '2021-04-10', 'received', '18.7200', '18.7200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1547, NULL, 4, 1542, '8902502108920', 'INFAV OINT', NULL, '14.7800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '44.3400', '1.0000', '2021-04-10', 'received', '14.7800', '14.7800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1548, NULL, 4, 1543, '4031571066740', 'CLOTRI DENK CREAM', NULL, '17.9400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '35.8800', '1.0000', '2021-04-10', 'received', '17.9400', '17.9400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1549, NULL, 4, 1544, '4031571036033', 'CLOTRI DENK 100 PESS', NULL, '17.9400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '53.8200', '2.0000', '2021-04-10', 'received', '17.9400', '17.9400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1550, NULL, 4, 1545, '8904091105816', 'CANDID V6 PESS 6\'S', NULL, '7.3500', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '29.4000', '3.0000', '2021-04-10', 'received', '7.3500', '7.3500', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1551, NULL, 4, 1547, '5010724531013', 'ANUSOL OINTMENT 25G', NULL, '30.5800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '61.1600', '2.0000', '2021-04-10', 'received', '30.5800', '30.5800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1552, NULL, 4, 1549, '610074245209', 'LAVET', NULL, '21.1300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '63.3900', '1.0000', '2021-04-10', 'received', '21.1300', '21.1300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1553, NULL, 4, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '13.6900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '41.0700', '0.0000', '2021-04-10', 'received', '13.6900', '13.6900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1598, 66, NULL, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', NULL, '8.0000', '0.0000', '33.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '264.0000', '0.0000', '2021-04-04', 'received', '8.0000', '8.0000', '33.0000', NULL, NULL, 1, 'pc', '33.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1599, 66, NULL, 2130, '4005808837335', 'NIVEA SPRAY 250ML', NULL, '17.0000', '0.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2021-04-04', 'received', '17.0000', '17.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1600, 66, NULL, 2131, '4005900098238', 'NIVEA SPRAY 150ML', NULL, '12.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-04-04', 'received', '12.0000', '12.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1601, 66, NULL, 2132, '4005900579614', 'NIVEA BODY LOTION 400ML', NULL, '22.0000', '0.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '264.0000', '0.0000', '2021-04-04', 'received', '22.0000', '22.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '22.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1602, 66, NULL, 2133, '4005900795298', 'NIVEA BOBY LOTION COCOA', NULL, '19.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2021-04-04', 'received', '19.0000', '19.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1603, 66, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.2000', '0.0000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '3.0000', '2021-04-04', 'received', '2.2000', '2.2000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1604, 66, NULL, 2060, '54947392', 'PARACETAMOL TAB LOCAL', NULL, '0.3300', '0.0000', '500.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '500.0000', '2021-04-04', 'received', '0.3300', '0.3300', '500.0000', NULL, NULL, 1, 'pc', '500.0000', NULL, NULL, NULL, NULL, '0.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1622, NULL, NULL, 1551, '5021691032076', 'LEVOTHYROXINE TAB 50MG (MERC PHARMA)', NULL, '14.7700', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '73.8500', '0.0000', '2021-04-10', 'received', '14.7700', '14.7700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1623, NULL, NULL, 1552, 'PR-265', 'LIPITOR 10MG', NULL, '116.1000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '232.2000', '0.0000', '2021-04-10', 'received', '116.1000', '116.1000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1624, NULL, NULL, 1553, 'PR-266', 'LIPITOR 20MG', NULL, '191.9900', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '383.9800', '0.0000', '2021-04-10', 'received', '191.9900', '191.9900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1625, NULL, NULL, 1554, 'PR-267', 'COTRI SUS (M&G) SEPTRIN', NULL, '3.1600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '9.4800', '-4.0000', '2021-04-10', 'received', '3.1600', '3.1600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1626, NULL, NULL, 1555, '3582910081043', 'RHINATHIOL ADULT SYR 125ML', NULL, '22.2400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '66.7200', '3.0000', '2021-04-10', 'received', '22.2400', '22.2400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1627, NULL, NULL, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', NULL, '20.2400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '60.7200', '-1.0000', '2021-04-10', 'received', '20.2400', '20.2400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1628, NULL, NULL, 1557, 'PR-270', 'SE\'CLEAR EYE DROP', NULL, '7.8800', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '78.8000', '-1.0000', '2021-04-10', 'received', '7.8800', '7.8800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1629, NULL, NULL, 2083, '0114', 'CO-TRIM  TAB (LETAP) ', NULL, '0.5800', '0.0000', '100.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '58.0000', '-1.0000', '2021-04-10', 'received', '0.5800', '0.5800', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1630, NULL, NULL, 1559, 'PR-272', 'SIRDALUD 4MG', NULL, '22.1000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '132.6000', '0.0000', '2021-04-10', 'received', '22.1000', '22.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1631, NULL, NULL, 1560, 'PR-273', 'STUGERON', NULL, '4.6000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '4.6000', '0.0000', '2021-04-10', 'received', '4.6000', '4.6000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1632, NULL, NULL, 1548, '6223003960339', 'DAFLON S00MG', NULL, '2.8000', '0.0000', '60.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '168.0000', '0.0000', '2021-04-10', 'received', '2.8000', '2.8000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1633, NULL, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.3000', '0.0000', '24.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '55.2000', '6.0000', '2021-04-10', 'received', '2.3000', '2.3000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1634, NULL, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '3.8700', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '116.1000', '-1.0000', '2021-04-10', 'received', '3.8700', '3.8700', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1635, NULL, NULL, 1534, 'PR-247', 'PINEK 20MG TAB', NULL, '0.9800', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '19.6000', '0.0000', '2021-04-10', 'received', '0.9800', '0.9800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1636, NULL, NULL, 1561, 'PR-274', 'SPORANOX CAPS', NULL, '27.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '81.0000', '6.0000', '2021-04-10', 'received', '27.0000', '27.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1637, NULL, NULL, 1562, 'PR-275', 'SULPHUR OINT.', NULL, '5.1300', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '51.3000', '0.0000', '2021-04-10', 'received', '5.1300', '5.1300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1638, NULL, NULL, 1563, 'PR-276', 'AMICLOX SUSP. (ECL)', NULL, '4.9000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.5000', '0.0000', '2021-04-10', 'received', '4.9000', '4.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1655, NULL, 5, 1551, '5021691032076', 'LEVOTHYROXINE TAB 50MG (MERC PHARMA)', NULL, '14.7700', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '73.8500', '1.0000', '2021-04-10', 'received', '14.7700', '14.7700', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1656, NULL, 5, 1552, 'PR-265', 'LIPITOR 10MG', NULL, '116.1000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '232.2000', '2.0000', '2021-04-10', 'received', '116.1000', '116.1000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1657, NULL, 5, 1553, 'PR-266', 'LIPITOR 20MG', NULL, '191.9900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '383.9800', '2.0000', '2021-04-10', 'received', '191.9900', '191.9900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1658, NULL, 5, 1554, 'PR-267', 'COTRI SUS (M&G) SEPTRIN', NULL, '3.1600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '9.4800', '1.0000', '2021-04-10', 'received', '3.1600', '3.1600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1659, NULL, 5, 1555, '3582910081043', 'RHINATHIOL ADULT SYR 125ML', NULL, '22.2400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '66.7200', '3.0000', '2021-04-10', 'received', '22.2400', '22.2400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1660, NULL, 5, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', NULL, '20.2400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '60.7200', '3.0000', '2021-04-10', 'received', '20.2400', '20.2400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1661, NULL, 5, 1557, 'PR-270', 'SE\'CLEAR EYE DROP', NULL, '7.8800', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '78.8000', '1.0000', '2021-04-10', 'received', '7.8800', '7.8800', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1662, NULL, 5, 2083, '0114', 'CO-TRIM  TAB (LETAP) ', NULL, '0.5800', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '58.0000', '78.0000', '2021-04-10', 'received', '0.5800', '0.5800', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1663, NULL, 5, 1559, 'PR-272', 'SIRDALUD 4MG', NULL, '22.1000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '132.6000', '0.0000', '2021-04-10', 'received', '22.1000', '22.1000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1664, NULL, 5, 1548, '6223003960339', 'DAFLON S00MG', NULL, '2.8000', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '168.0000', '45.0000', '2021-04-10', 'received', '2.8000', '2.8000', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1665, NULL, 5, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.3000', '0.0000', '24.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '55.2000', '0.0000', '2021-04-10', 'received', '2.3000', '2.3000', NULL, NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1666, NULL, 5, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '3.8700', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '116.1000', '22.0000', '2021-04-10', 'received', '3.8700', '3.8700', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1667, NULL, 5, 1534, 'PR-247', 'PINEK 20MG TAB', NULL, '0.9800', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '19.6000', '13.0000', '2021-04-10', 'received', '0.9800', '0.9800', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1668, NULL, 5, 1561, 'PR-274', 'SPORANOX CAPS', NULL, '27.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '81.0000', '1.0000', '2021-04-10', 'received', '27.0000', '27.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1669, NULL, 5, 1562, 'PR-275', 'SULPHUR OINT.', NULL, '5.1300', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '51.3000', '3.0000', '2021-04-10', 'received', '5.1300', '5.1300', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1670, NULL, 5, 1563, 'PR-276', 'AMICLOX SUSP. (ECL)', NULL, '4.9000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '24.5000', '1.0000', '2021-04-10', 'received', '4.9000', '4.9000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1680, 71, NULL, 2223, '6033000083043', 'CERELAC TIN FRUIT', NULL, '14.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2022-09-30', '28.0000', '0.0000', '2021-04-11', 'received', '14.0000', '14.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1681, 71, NULL, 2224, '6033000086150', 'CERELAC TIN BISCUITY WITH MILK', NULL, '14.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2022-05-20', '28.0000', '0.0000', '2021-04-11', 'received', '14.0000', '14.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1682, 71, NULL, 2225, '6033000082985', 'CERELAC TIN WHEAT', NULL, '14.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2022-04-12', '56.0000', '0.0000', '2021-04-11', 'received', '14.0000', '14.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1683, 71, NULL, 2226, '6033000086358', 'CERELAC TIN MAIZE', NULL, '14.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2022-09-30', '56.0000', '0.0000', '2021-04-11', 'received', '14.0000', '14.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1684, 71, NULL, 2227, '6033000082992', 'CERELAC TIN RICE', NULL, '14.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2022-05-14', '42.0000', '0.0000', '2021-04-11', 'received', '14.0000', '14.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1685, 71, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '24.5000', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2022-07-30', '73.5000', '0.0000', '2021-04-11', 'received', '24.5000', '24.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '24.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1686, 71, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '24.5000', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2022-06-30', '73.5000', '0.0000', '2021-04-11', 'received', '24.5000', '24.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '24.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1687, 71, NULL, 2230, '8886472104437', 'SMA GOLD 1', NULL, '43.5000', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2022-10-04', '130.5000', '0.0000', '2021-04-11', 'received', '43.5000', '43.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '43.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1688, 71, NULL, 2231, '7501058633927', 'NAN 2', NULL, '33.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2022-05-06', '99.0000', '0.0000', '2021-04-11', 'received', '33.0000', '33.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1698, NULL, NULL, 2223, '6033000083043', 'CERELAC TIN FRUIT', NULL, '14.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '28.0000', '0.0000', '2021-04-11', 'received', '14.0000', '14.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1699, NULL, NULL, 2224, '6033000086150', 'CERELAC TIN BISCUITY WITH MILK', NULL, '14.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '28.0000', '0.0000', '2021-04-11', 'received', '14.0000', '14.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1700, NULL, NULL, 2225, '6033000082985', 'CERELAC TIN WHEAT', NULL, '14.0000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '56.0000', '-1.0000', '2021-04-11', 'received', '14.0000', '14.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1701, NULL, NULL, 2226, '6033000086358', 'CERELAC TIN MAIZE', NULL, '14.0000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '56.0000', '-1.0000', '2021-04-11', 'received', '14.0000', '14.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1702, NULL, NULL, 2227, '6033000082992', 'CERELAC TIN RICE', NULL, '14.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '42.0000', '-1.0000', '2021-04-11', 'received', '14.0000', '14.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1703, NULL, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '24.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '73.5000', '-1.0000', '2021-04-11', 'received', '24.5000', '24.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1704, NULL, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '24.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '73.5000', '-1.0000', '2021-04-11', 'received', '24.5000', '24.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1705, NULL, NULL, 2230, '8886472104437', 'SMA GOLD 1', NULL, '43.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '130.5000', '0.0000', '2021-04-11', 'received', '43.5000', '43.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1706, NULL, NULL, 2231, '7501058633927', 'NAN 2', NULL, '33.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '99.0000', '-3.0000', '2021-04-11', 'received', '33.0000', '33.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1707, NULL, 6, 2231, '7501058633927', 'NAN 2', NULL, '33.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '99.0000', '0.0000', '2021-04-11', 'received', '33.0000', '33.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1708, NULL, 6, 2230, '8886472104437', 'SMA GOLD 1', NULL, '43.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '130.5000', '0.0000', '2021-04-11', 'received', '43.5000', '43.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1709, NULL, 6, 2229, '7501058625922', 'LACTOGEN 2', NULL, '24.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '73.5000', '2.0000', '2021-04-11', 'received', '24.5000', '24.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1710, NULL, 6, 2228, '7501058625915', 'LACTOGEN  1', NULL, '24.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '73.5000', '0.0000', '2021-04-11', 'received', '24.5000', '24.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1711, NULL, 6, 2227, '6033000082992', 'CERELAC TIN RICE', NULL, '14.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '42.0000', '3.0000', '2021-04-11', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1712, NULL, 6, 2226, '6033000086358', 'CERELAC TIN MAIZE', NULL, '14.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '56.0000', '2.0000', '2021-04-11', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1713, NULL, 6, 2225, '6033000082985', 'CERELAC TIN WHEAT', NULL, '14.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '56.0000', '3.0000', '2021-04-11', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1714, NULL, 6, 2224, '6033000086150', 'CERELAC TIN BISCUITY WITH MILK', NULL, '14.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '28.0000', '0.0000', '2021-04-11', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1715, NULL, 6, 2223, '6033000083043', 'CERELAC TIN FRUIT', NULL, '14.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '28.0000', '2.0000', '2021-04-11', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1908, 73, NULL, 2303, '5024655004072', 'TRANEXAMIC ACID 500MG', NULL, '16.1000', '0.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2023-06-06', '96.6000', '0.0000', '2021-04-11', 'received', '16.1000', '16.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '16.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1909, 73, NULL, 2304, '90589903', 'PARA-DENK SUPP 250MG', NULL, '1.3300', '0.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9000', '0.0000', '2021-04-11', 'received', '1.3300', '1.3300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1910, 73, NULL, 2305, '18430069', 'NO-SPA 40MG S/S 20\'S', NULL, '1.3300', '0.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.3000', '0.0000', '2021-04-11', 'received', '1.3300', '1.3300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1979, NULL, NULL, 1442, '005', 'YAFO MAN CAPS', NULL, '13.0000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-39.0000', '6.0000', '2021-04-12', 'received', '13.0000', '13.0000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1981, NULL, NULL, 1441, '2150546225301', 'X DRIVE CAPS', NULL, '13.0000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-39.0000', '5.0000', '2021-04-12', 'received', '13.0000', '13.0000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1983, NULL, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '10.0000', '0.0000', '-4.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-40.0000', '8.0000', '2021-04-12', 'received', '10.0000', '10.0000', '-4.0000', NULL, NULL, 1, 'pc', '-4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1985, NULL, NULL, 1439, 'PR-152', 'VICTAGO s s', NULL, '1.0000', '0.0000', '-12.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-12.0000', '24.0000', '2021-04-12', 'received', '1.0000', '1.0000', '-12.0000', NULL, NULL, 1, 'pc', '-12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1987, NULL, NULL, 1438, '004', 'TRUMAN', NULL, '14.8000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-44.4000', '5.0000', '2021-04-12', 'received', '14.8000', '14.8000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1989, NULL, NULL, 1437, 'PR-150', 'TOP TONIC', NULL, '9.5000', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-19.0000', '4.0000', '2021-04-12', 'received', '9.5000', '9.5000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1991, NULL, NULL, 1436, 'PR-149', 'TOP FEVER ( 24)', NULL, '9.5000', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-19.0000', '4.0000', '2021-04-12', 'received', '9.5000', '9.5000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1993, NULL, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '18.5000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-55.5000', '3.0000', '2021-04-12', 'received', '18.5000', '18.5000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1995, NULL, NULL, 1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', NULL, '14.5000', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-29.0000', '3.0000', '2021-04-12', 'received', '14.5000', '14.5000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1997, NULL, NULL, 1433, 'PR-146', 'TIME HERBAL MIX(25)', NULL, '10.0000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-30.0000', '5.0000', '2021-04-12', 'received', '10.0000', '10.0000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1999, NULL, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '0.0000', '-6.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-54.0000', '7.0000', '2021-04-12', 'received', '9.0000', '9.0000', '-6.0000', NULL, NULL, 1, 'pc', '-6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2001, NULL, NULL, 1431, 'PR-144', 'SPARNIS GARLIC MIXTURE(30)', NULL, '10.5000', '0.0000', '-5.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-52.5000', '5.0000', '2021-04-12', 'received', '10.5000', '10.5000', '-5.0000', NULL, NULL, 1, 'pc', '-5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2003, NULL, NULL, 1430, 'PR-143', 'SOLAK MIXTURE(25)', NULL, '13.0000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-39.0000', '5.0000', '2021-04-12', 'received', '13.0000', '13.0000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2005, NULL, NULL, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', NULL, '13.0000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-39.0000', '14.0000', '2021-04-12', 'received', '13.0000', '13.0000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2008, NULL, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-45.0000', '3.0000', '2021-04-12', 'received', '15.0000', '15.0000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2010, NULL, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-72.0000', '2.0000', '2021-04-12', 'received', '36.0000', '36.0000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2012, NULL, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '0.0000', '-4.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-26.0000', '5.0000', '2021-04-12', 'received', '6.5000', '6.5000', '-4.0000', NULL, NULL, 1, 'pc', '-4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2014, NULL, NULL, 1424, '6036000070709', 'PROSTAT 60', NULL, '30.0000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-90.0000', '4.0000', '2021-04-12', 'received', '30.0000', '30.0000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2016, NULL, NULL, 1423, '6036000115455', 'PROSTACURE X', NULL, '30.0000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-90.0000', '6.0000', '2021-04-12', 'received', '30.0000', '30.0000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2018, NULL, NULL, 1422, 'PR-135', 'PROSTACURE TEA (32)', NULL, '21.0000', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-42.0000', '3.0000', '2021-04-12', 'received', '21.0000', '21.0000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2020, NULL, NULL, 1421, '6666666666666', 'PROSLUV CAPS', NULL, '19.8000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-59.4000', '6.0000', '2021-04-12', 'received', '19.8000', '19.8000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2022, NULL, NULL, 1420, 'PR-133', 'NAZO', NULL, '1.2000', '0.0000', '-12.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-14.4000', '17.0000', '2021-04-12', 'received', '1.2000', '1.2000', '-12.0000', NULL, NULL, 1, 'pc', '-12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2024, NULL, NULL, 1419, '5024389122233', 'MIGHTY POWER SYS LS', NULL, '10.5000', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-21.0000', '3.0000', '2021-04-12', 'received', '10.5000', '10.5000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2026, NULL, NULL, 1418, 'PR-131', 'MADAM CATERINE', NULL, '8.0000', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-16.0000', '2.0000', '2021-04-12', 'received', '8.0000', '8.0000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2028, NULL, NULL, 1417, 'PR-130', 'LUCKY V CARE', NULL, '11.5000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-34.5000', '6.0000', '2021-04-12', 'received', '11.5000', '11.5000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2030, NULL, NULL, 1416, 'PR-129', 'LUCKY MIXTURE', NULL, '10.0000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-30.0000', '5.0000', '2021-04-12', 'received', '10.0000', '10.0000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2032, NULL, NULL, 1415, '6034000157055', 'LIVING BITTERS SYP S s', NULL, '14.5000', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-29.0000', '3.0000', '2021-04-12', 'received', '14.5000', '14.5000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2034, NULL, NULL, 1414, '6034000157048', 'LIVING BITTERS CAPS', NULL, '19.0000', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-38.0000', '3.0000', '2021-04-12', 'received', '19.0000', '19.0000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2036, NULL, NULL, 1413, 'PR-126', 'KINGDOM GARLIC CAPS', NULL, '16.0000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-48.0000', '4.0000', '2021-04-12', 'received', '16.0000', '16.0000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2038, NULL, NULL, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', NULL, '14.0000', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-28.0000', '2.0000', '2021-04-12', 'received', '14.0000', '14.0000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2040, NULL, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.0000', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-50.0000', '0.0000', '2021-04-12', 'received', '25.0000', '25.0000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2042, NULL, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '2.2000', '0.0000', '-10.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-22.0000', '13.0000', '2021-04-12', 'received', '2.2000', '2.2000', '-10.0000', NULL, NULL, 1, 'pc', '-10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2044, NULL, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '0.0000', '-5.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-65.0000', '6.0000', '2021-04-12', 'received', '13.0000', '13.0000', '-5.0000', NULL, NULL, 1, 'pc', '-5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2046, NULL, NULL, 1408, '6050125568200', 'HAPIMAN CAPS', NULL, '9.5000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-28.5000', '6.0000', '2021-04-12', 'received', '9.5000', '9.5000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2048, NULL, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '16.8000', '0.0000', '-4.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-67.2000', '7.0000', '2021-04-12', 'received', '16.8000', '16.8000', '-4.0000', NULL, NULL, 1, 'pc', '-4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2050, NULL, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '16.8000', '0.0000', '-4.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-67.2000', '5.0000', '2021-04-12', 'received', '16.8000', '16.8000', '-4.0000', NULL, NULL, 1, 'pc', '-4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2052, NULL, NULL, 1404, 'PR-117', 'GBEDEMAH Garlic bitters', NULL, '9.0000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-27.0000', '6.0000', '2021-04-12', 'received', '9.0000', '9.0000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2054, NULL, NULL, 1403, '6036000115448', 'FEMACURE', NULL, '13.0000', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-26.0000', '4.0000', '2021-04-12', 'received', '13.0000', '13.0000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2056, NULL, NULL, 1402, 'PR-115', 'ERNEST OINT(200)', NULL, '2.2000', '0.0000', '-6.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-13.2000', '9.0000', '2021-04-12', 'received', '2.2000', '2.2000', '-6.0000', NULL, NULL, 1, 'pc', '-6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2058, NULL, NULL, 1401, 'PR-114', 'EKURO BEWU', NULL, '3.0000', '0.0000', '-6.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-18.0000', '12.0000', '2021-04-12', 'received', '3.0000', '3.0000', '-6.0000', NULL, NULL, 1, 'pc', '-6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2060, NULL, NULL, 1400, 'PR-113', 'DIAGELLETS 500ML(24)', NULL, '22.0000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-66.0000', '4.0000', '2021-04-12', 'received', '22.0000', '22.0000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2062, NULL, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '12.5000', '0.0000', '-4.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-50.0000', '5.0000', '2021-04-12', 'received', '12.5000', '12.5000', '-4.0000', NULL, NULL, 1, 'pc', '-4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2064, NULL, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '7.5000', '0.0000', '-5.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-37.5000', '10.0000', '2021-04-12', 'received', '7.5000', '7.5000', '-5.0000', NULL, NULL, 1, 'pc', '-5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2066, NULL, NULL, 1397, 'PR-110', 'ANGEL FETWEK3K3(200)', NULL, '3.2000', '0.0000', '-5.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-16.0000', '8.0000', '2021-04-12', 'received', '3.2000', '3.2000', '-5.0000', NULL, NULL, 1, 'pc', '-5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2068, NULL, NULL, 1396, 'PR-109', 'ANGEL CREAM(200)', NULL, '2.7000', '0.0000', '-5.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-13.5000', '7.0000', '2021-04-12', 'received', '2.7000', '2.7000', '-5.0000', NULL, NULL, 1, 'pc', '-5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2070, NULL, NULL, 1395, 'PR-108', 'AMUZU GARLIC', NULL, '8.5000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-25.5000', '6.0000', '2021-04-12', 'received', '8.5000', '8.5000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2072, NULL, NULL, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '6.5000', '0.0000', '-5.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-32.5000', '4.0000', '2021-04-12', 'received', '6.5000', '6.5000', '-5.0000', NULL, NULL, 1, 'pc', '-5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2074, NULL, NULL, 1393, 'PR-106', 'AGBEVE PHEVER( 30)', NULL, '6.5000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-19.5000', '4.0000', '2021-04-12', 'received', '6.5000', '6.5000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2076, NULL, NULL, 1392, '6036000115400', 'AFRO MOSES', NULL, '13.5000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-40.5000', '5.0000', '2021-04-12', 'received', '13.5000', '13.5000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2078, NULL, NULL, 1391, '6036000005930', 'ADUWUMWAA CAPS (240)', NULL, '11.0000', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-22.0000', '3.0000', '2021-04-12', 'received', '11.0000', '11.0000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2080, NULL, NULL, 1390, 'PR-103', '_ADUTW I MWAA BITTERS ( 2 5)', NULL, '7.5000', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-22.5000', '5.0000', '2021-04-12', 'received', '7.5000', '7.5000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2082, NULL, NULL, 1389, '6034000189360', 'ADOM PAWAY CAPS(l00)', NULL, '16.4000', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-32.8000', '3.0000', '2021-04-12', 'received', '16.4000', '16.4000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2084, NULL, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '5.3000', '0.0000', '-5.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-26.5000', '9.0000', '2021-04-12', 'received', '5.3000', '5.3000', '-5.0000', NULL, NULL, 1, 'pc', '-5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2086, NULL, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '11.3000', '0.0000', '-6.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-67.8000', '8.0000', '2021-04-12', 'received', '11.3000', '11.3000', '-6.0000', NULL, NULL, 1, 'pc', '-6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2088, NULL, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '0.0000', '-6.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-27.0000', '1.0000', '2021-04-12', 'received', '4.5000', '4.5000', '-6.0000', NULL, NULL, 1, 'pc', '-6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2089, 72, NULL, 2246, '5017007023364', 'AMILODIPINE 5MG TEVA', NULL, '6.8000', '0.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '0.0000', '2021-04-11', 'received', '6.8000', '6.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2090, 72, NULL, 2247, '29226629', 'TRISILICATE SYR', NULL, '2.5000', '0.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-04-11', 'received', '2.5000', '2.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2091, 72, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '2.5000', '0.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-11', 'received', '2.5000', '2.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2092, 72, NULL, 2249, '22244269', 'EXPECT SEED', NULL, '2.5000', '0.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-11', 'received', '2.5000', '2.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2093, 72, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '0.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.3400', '0.0000', '2021-04-11', 'received', '6.8900', '6.8900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2094, 72, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.6400', '0.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.2000', '0.0000', '2021-04-11', 'received', '11.6400', '11.6400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2095, 72, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '9.3000', '0.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '0.0000', '2021-04-11', 'received', '9.3000', '9.3000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '9.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2096, 72, NULL, 2253, '6221045010159', 'ACTIFED TAB', NULL, '9.2500', '0.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.2500', '0.0000', '2021-04-11', 'received', '9.2500', '9.2500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2097, 72, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '0.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.7600', '0.0000', '2021-04-11', 'received', '17.9400', '17.9400', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '17.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2098, 72, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.4900', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.4700', '0.0000', '2021-04-11', 'received', '17.4900', '17.4900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2099, 72, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '12.7400', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.2200', '0.0000', '2021-04-11', 'received', '12.7400', '12.7400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2100, 72, NULL, 2257, '84888052', 'OVACARE TABS', NULL, '4.0000', '0.0000', '15.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-04-11', 'received', '4.0000', '4.0000', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2101, 72, NULL, 2258, '8901138180614', 'SPEMAN TABS', NULL, '0.3500', '0.0000', '300.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '0.0000', '2021-04-11', 'received', '0.3500', '0.3500', '300.0000', NULL, NULL, 1, 'pc', '300.0000', NULL, NULL, NULL, NULL, '0.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2102, 72, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '19.0000', '0.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '0.0000', '2021-04-11', 'received', '19.0000', '19.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2103, 72, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.2000', '0.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '0.0000', '2021-04-11', 'received', '4.2000', '4.2000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2104, 72, NULL, 2261, '2112345602905', 'TIGER SPRAY', NULL, '18.9900', '0.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.9600', '0.0000', '2021-04-11', 'received', '18.9900', '18.9900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '18.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2105, 72, NULL, 2262, '69085595', 'LENOR CONTRACEPTIVE', NULL, '4.5000', '0.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-04-11', 'received', '4.5000', '4.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2106, 72, NULL, 2263, '6036000090417', 'LEVON 2', NULL, '4.9800', '0.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '0.0000', '2021-04-11', 'received', '4.9800', '4.9800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2107, 72, NULL, 2264, '78116631', 'LUBRIMAX JELLY 50G', NULL, '12.0000', '0.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '1.0000', '2021-04-11', 'received', '12.0000', '12.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2108, 72, NULL, 2265, '5014502000807', 'MINAMINO SYRUP M/S', NULL, '28.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2021-04-11', 'received', '28.0000', '28.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2109, 72, NULL, 2266, '8906046070682', 'KIDIVITE SYR L/S', NULL, '6.4900', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.4700', '0.0000', '2021-04-11', 'received', '6.4900', '6.4900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2110, 72, NULL, 2267, '52018792', 'KIDICS SYRUO', NULL, '9.5000', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2021-04-11', 'received', '9.5000', '9.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2111, 72, NULL, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', NULL, '14.6000', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.8000', '0.0000', '2021-04-11', 'received', '14.6000', '14.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2112, 72, NULL, 2269, '48726368', 'STOPKOFF CHIDREN', NULL, '4.9800', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9400', '0.0000', '2021-04-11', 'received', '4.9800', '4.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2113, 72, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '2.5000', '0.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '0.0000', '2021-04-11', 'received', '2.5000', '2.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2114, 72, NULL, 2271, '9556100104342', 'FLUCOR DAY', NULL, '12.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-04-11', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2115, 72, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '0.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2021-04-11', 'received', '5.5000', '5.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2116, 72, NULL, 2273, '04120489', 'RHIZIN SYRP', NULL, '2.6700', '0.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0200', '0.0000', '2021-04-11', 'received', '2.6700', '2.6700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.6700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2117, 72, NULL, 2274, '55192131', 'STOPKOFF EXP CHN', NULL, '3.9800', '0.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.9000', '0.0000', '2021-04-11', 'received', '3.9800', '3.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2118, 72, NULL, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', NULL, '1.0900', '0.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.7000', '0.0000', '2021-04-11', 'received', '1.0900', '1.0900', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.0900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2119, 72, NULL, 2276, '52459644', 'DALACIN C SYR', NULL, '55.1000', '0.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.1000', '0.0000', '2021-04-11', 'received', '55.1000', '55.1000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '55.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2120, 72, NULL, 2277, '71311341', 'ZUBES TABLETS ', NULL, '0.7800', '0.0000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '0.0000', '2021-04-11', 'received', '0.7800', '0.7800', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2121, 72, NULL, 2278, '55291532', 'HOT WATER BOTTLE UNCOVERED', NULL, '14.9900', '0.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9800', '0.0000', '2021-04-11', 'received', '14.9900', '14.9900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2122, 72, NULL, 2279, '6161105661986', 'PANADOL EXTRA', NULL, '2.6000', '0.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2021-04-11', 'received', '2.6000', '2.6000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2123, 72, NULL, 2280, '8995858999991', 'PROCOLD TABS', NULL, '1.9000', '0.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '0.0000', '2021-04-11', 'received', '1.9000', '1.9000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2124, 72, NULL, 2281, '087450449108', 'TYLENOL EXTRA', NULL, '3.0000', '0.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '0.0000', '2021-04-11', 'received', '3.0000', '3.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2125, 72, NULL, 2282, '40904860', 'SOVIT VIT E CAPS', NULL, '18.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-04-11', 'received', '18.0000', '18.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2126, 72, NULL, 2283, '8906009232225', 'LOFNAC TAB 100MG', NULL, '1.4300', '0.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '0.0000', '2021-04-11', 'received', '1.4300', '1.4300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.4300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2127, 72, NULL, 2284, '8906009232232', 'LOFNAC-P TAB', NULL, '1.3000', '0.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-04-11', 'received', '1.3000', '1.3000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2128, 72, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '0.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '179.0000', '0.0000', '2021-04-11', 'received', '35.8000', '35.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '35.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2129, 72, NULL, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '4.3000', '0.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.0000', '0.0000', '2021-04-11', 'received', '4.3000', '4.3000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2130, 72, NULL, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', NULL, '1.8000', '0.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-04-11', 'received', '1.8000', '1.8000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2131, 72, NULL, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '7.5900', '0.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.3600', '0.0000', '2021-04-11', 'received', '7.5900', '7.5900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '7.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2132, 72, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.2300', '0.0000', '70.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.1000', '0.0000', '2021-04-11', 'received', '0.2300', '0.2300', '70.0000', NULL, NULL, 1, 'pc', '70.0000', NULL, NULL, NULL, NULL, '0.2300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2133, 72, NULL, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', NULL, '7.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2021-04-11', 'received', '7.0000', '7.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2134, 72, NULL, 2291, '8904091112401', 'CANDIBIOTICS EAR DROPS 5ML', NULL, '19.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2021-04-11', 'received', '19.0000', '19.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2135, 72, NULL, 2292, '8908010926148', 'PREGNA  PREMIUM', NULL, '55.0000', '0.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '0.0000', '2021-04-11', 'received', '55.0000', '55.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '55.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2136, 72, NULL, 2293, '03010667', 'PENICILLIN V 125MG TABS', NULL, '1.4400', '0.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-04-11', 'received', '1.4400', '1.4400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.4400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2137, 72, NULL, 2294, '44448916', 'PENICILLIN OINTMENT', NULL, '3.5000', '0.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '0.0000', '2021-04-11', 'received', '3.5000', '3.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2138, 72, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '0.7000', '0.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2021-04-11', 'received', '0.7000', '0.7000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2139, 72, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '13.2900', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.8700', '0.0000', '2021-04-11', 'received', '13.2900', '13.2900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2140, 72, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '7.2000', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '0.0000', '2021-04-11', 'received', '7.2000', '7.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2141, 72, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '6.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-04-11', 'received', '6.0000', '6.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2142, 72, NULL, 2299, '8904107900961', 'DICLOLEX GEL', NULL, '6.0000', '0.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2021-04-11', 'received', '6.0000', '6.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2143, 72, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '0.0000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2021-04-11', 'received', '5.2000', '5.2000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '5.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2144, 72, NULL, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '39.0000', '0.0000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '312.0000', '0.0000', '2021-04-11', 'received', '39.0000', '39.0000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '39.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2145, 72, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.0600', '0.0000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.6000', '0.0000', '2021-04-11', 'received', '1.0600', '1.0600', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.0600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2146, 72, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '5.5000', '0.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2021-04-11', 'received', '5.5000', '5.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2147, 72, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '27.0000', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '0.0000', '2021-04-11', 'received', '27.0000', '27.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2148, 72, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0600', '0.0000', '2021-04-11', 'received', '19.0200', '19.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2149, 72, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '17.8000', '0.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.4000', '0.0000', '2021-04-11', 'received', '17.8000', '17.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2161, NULL, NULL, 1742, '53996671', 'SUDOCREM 30G TUBE', NULL, '17.8900', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '35.7800', '0.0000', '2021-04-12', 'received', '17.8900', '17.8900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2162, NULL, NULL, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', NULL, '3.9800', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '19.9000', '0.0000', '2021-04-12', 'received', '3.9800', '3.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2163, NULL, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '24.9800', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '49.9600', '2.0000', '2021-04-12', 'received', '24.9800', '24.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2164, NULL, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.9800', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '54.9000', '0.0000', '2021-04-12', 'received', '10.9800', '10.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2165, NULL, NULL, 2062, '01665566', 'ZYMAX SUSP', NULL, '5.8900', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '23.5600', '0.0000', '2021-04-12', 'received', '5.8900', '5.8900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2166, NULL, NULL, 1642, '6001135507628', 'BENYLIN DRY', NULL, '31.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '94.5000', '-2.0000', '2021-04-12', 'received', '31.5000', '31.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2167, NULL, NULL, 1750, 'PR-463', 'BENYLIN ORIG. SYRUP 100ML', NULL, '31.9800', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '127.9200', '0.0000', '2021-04-12', 'received', '31.9800', '31.9800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2168, NULL, NULL, 1751, 'PR-464', 'METRO-Z TABS 20', NULL, '3.6900', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.4500', '0.0000', '2021-04-12', 'received', '3.6900', '3.6900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2169, NULL, NULL, 2063, '28182783', 'NEFLUCON (FLUCONAZOLE) CAP 150', NULL, '1.9900', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '9.9500', '0.0000', '2021-04-12', 'received', '1.9900', '1.9900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2170, NULL, NULL, 1753, 'PR-466', 'LIVERTONE JUNIOR SYRUP 125ML', NULL, '4.6900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '14.0700', '0.0000', '2021-04-12', 'received', '4.6900', '4.6900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2171, NULL, NULL, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', NULL, '13.4800', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.9600', '-1.0000', '2021-04-12', 'received', '13.4800', '13.4800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2172, NULL, 8, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', NULL, '13.4800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '26.9600', '0.0000', '2021-04-12', 'received', '13.4800', '13.4800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2173, NULL, 8, 1753, 'PR-466', 'LIVERTONE JUNIOR SYRUP 125ML', NULL, '4.6900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '14.0700', '3.0000', '2021-04-12', 'received', '4.6900', '4.6900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2174, NULL, 8, 2063, '28182783', 'NEFLUCON (FLUCONAZOLE) CAP 150', NULL, '1.9900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '9.9500', '2.0000', '2021-04-12', 'received', '1.9900', '1.9900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2175, NULL, 8, 1751, 'PR-464', 'METRO-Z TABS 20', NULL, '3.6900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '18.4500', '3.0000', '2021-04-12', 'received', '3.6900', '3.6900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2176, NULL, 8, 1750, 'PR-463', 'BENYLIN ORIG. SYRUP 100ML', NULL, '31.9800', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '127.9200', '4.0000', '2021-04-12', 'received', '31.9800', '31.9800', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2177, NULL, 8, 1642, '6001135507628', 'BENYLIN DRY', NULL, '31.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '94.5000', '2.0000', '2021-04-12', 'received', '31.5000', '31.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2178, NULL, 8, 2062, '01665566', 'ZYMAX SUSP', NULL, '5.8900', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '23.5600', '1.0000', '2021-04-12', 'received', '5.8900', '5.8900', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2179, NULL, 8, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.9800', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '54.9000', '0.0000', '2021-04-12', 'received', '10.9800', '10.9800', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2180, NULL, 8, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '24.9800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '49.9600', '0.0000', '2021-04-12', 'received', '24.9800', '24.9800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2181, NULL, 8, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', NULL, '3.9800', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '19.9000', '5.0000', '2021-04-12', 'received', '3.9800', '3.9800', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2182, NULL, 8, 1742, '53996671', 'SUDOCREM 30G TUBE', NULL, '17.8900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '35.7800', '2.0000', '2021-04-12', 'received', '17.8900', '17.8900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2195, NULL, 10, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '4.6000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.8000', '0.0000', '2021-04-12', 'received', '4.6000', '4.6000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2196, NULL, 10, 1768, '8901040369305', 'VITAMIN C TABS 500MG 30\' (EXETER)', NULL, '0.6400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '1.9200', '0.0000', '2021-04-12', 'received', '0.6400', '0.6400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2197, NULL, 10, 1769, '6001135508526', 'BENYLIN PAED. SYRUP 1 00ML', NULL, '26.8700', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '53.7400', '0.0000', '2021-04-12', 'received', '26.8700', '26.8700', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2198, NULL, 10, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '42.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '126.0000', '3.0000', '2021-04-12', 'received', '42.0000', '42.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2199, NULL, 10, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '3.3900', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.9000', '9.0000', '2021-04-12', 'received', '3.3900', '3.3900', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2257, NULL, NULL, 1442, '005', 'YAFO MAN CAPS', NULL, '13.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '13.0000', '13.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2258, NULL, NULL, 1441, '2150546225301', 'X DRIVE CAPS', NULL, '13.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '13.0000', '13.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2259, NULL, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '10.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '10.0000', '10.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2260, NULL, NULL, 1439, 'PR-152', 'VICTAGO s s', NULL, '1.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '1.0000', '1.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2261, NULL, NULL, 1438, '004', 'TRUMAN', NULL, '14.8000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '14.8000', '14.8000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2262, NULL, NULL, 1437, 'PR-150', 'TOP TONIC', NULL, '9.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '9.5000', '9.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2263, NULL, NULL, 1436, 'PR-149', 'TOP FEVER ( 24)', NULL, '9.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '9.5000', '9.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2264, NULL, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '18.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '18.5000', '18.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2265, NULL, NULL, 1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', NULL, '14.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '2.0000', '2021-04-12', 'received', '14.5000', '14.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2266, NULL, NULL, 1433, 'PR-146', 'TIME HERBAL MIX(25)', NULL, '10.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '10.0000', '10.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2267, NULL, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '4.0000', '2021-04-12', 'received', '9.0000', '9.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2268, NULL, NULL, 1431, 'PR-144', 'SPARNIS GARLIC MIXTURE(30)', NULL, '10.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '10.5000', '10.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2269, NULL, NULL, 1430, 'PR-143', 'SOLAK MIXTURE(25)', NULL, '13.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '13.0000', '13.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2270, NULL, NULL, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', NULL, '13.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '3.0000', '2021-04-12', 'received', '13.0000', '13.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2271, NULL, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '3.0000', '2021-04-12', 'received', '15.0000', '15.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2272, NULL, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '3.0000', '2021-04-12', 'received', '36.0000', '36.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2273, NULL, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '2.0000', '2021-04-12', 'received', '6.5000', '6.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2274, NULL, NULL, 1424, '6036000070709', 'PROSTAT 60', NULL, '30.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '30.0000', '30.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2275, NULL, NULL, 1423, '6036000115455', 'PROSTACURE X', NULL, '30.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '2021-04-12', 'received', '30.0000', '30.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2276, NULL, NULL, 1422, 'PR-135', 'PROSTACURE TEA (32)', NULL, '21.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '21.0000', '21.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2277, NULL, NULL, 1421, '6666666666666', 'PROSLUV CAPS', NULL, '19.8000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '19.8000', '19.8000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2278, NULL, NULL, 1420, 'PR-133', 'NAZO', NULL, '1.2000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '1.2000', '1.2000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2279, NULL, NULL, 1419, '5024389122233', 'MIGHTY POWER SYS LS', NULL, '10.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '10.5000', '10.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2280, NULL, NULL, 1418, 'PR-131', 'MADAM CATERINE', NULL, '8.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '8.0000', '8.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2281, NULL, NULL, 1417, 'PR-130', 'LUCKY V CARE', NULL, '11.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '11.5000', '11.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2282, NULL, NULL, 1416, 'PR-129', 'LUCKY MIXTURE', NULL, '10.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '2021-04-12', 'received', '10.0000', '10.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2283, NULL, NULL, 1415, '6034000157055', 'LIVING BITTERS SYP S s', NULL, '14.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '2.0000', '2021-04-12', 'received', '14.5000', '14.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2284, NULL, NULL, 1414, '6034000157048', 'LIVING BITTERS CAPS', NULL, '19.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '19.0000', '19.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2285, NULL, NULL, 1413, 'PR-126', 'KINGDOM GARLIC CAPS', NULL, '16.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '16.0000', '16.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2286, NULL, NULL, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', NULL, '14.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '3.0000', '2021-04-12', 'received', '14.0000', '14.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2287, NULL, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '5.0000', '2021-04-12', 'received', '25.0000', '25.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2288, NULL, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '2.2000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '2.2000', '2.2000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2289, NULL, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '1.0000', '2021-04-12', 'received', '13.0000', '13.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2290, NULL, NULL, 1408, '6050125568200', 'HAPIMAN CAPS', NULL, '9.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '9.5000', '9.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2291, NULL, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '16.8000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '3.0000', '2021-04-12', 'received', '16.8000', '16.8000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2292, NULL, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '16.8000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '3.0000', '2021-04-12', 'received', '16.8000', '16.8000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2293, NULL, NULL, 1404, 'PR-117', 'GBEDEMAH Garlic bitters', NULL, '9.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '9.0000', '9.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2294, NULL, NULL, 1403, '6036000115448', 'FEMACURE', NULL, '13.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '13.0000', '13.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2295, NULL, NULL, 1402, 'PR-115', 'ERNEST OINT(200)', NULL, '2.2000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '2.2000', '2.2000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2296, NULL, NULL, 1401, 'PR-114', 'EKURO BEWU', NULL, '3.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '3.0000', '3.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2297, NULL, NULL, 1400, 'PR-113', 'DIAGELLETS 500ML(24)', NULL, '22.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '2021-04-12', 'received', '22.0000', '22.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2298, NULL, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '12.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '5.0000', '2021-04-12', 'received', '12.5000', '12.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2299, NULL, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '7.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '7.5000', '7.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2300, NULL, NULL, 1397, 'PR-110', 'ANGEL FETWEK3K3(200)', NULL, '3.2000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '3.2000', '3.2000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2301, NULL, NULL, 1396, 'PR-109', 'ANGEL CREAM(200)', NULL, '2.7000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '6.0000', '2021-04-12', 'received', '2.7000', '2.7000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2302, NULL, NULL, 1395, 'PR-108', 'AMUZU GARLIC', NULL, '8.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '8.5000', '8.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2303, NULL, NULL, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '6.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '5.0000', '2021-04-12', 'received', '6.5000', '6.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2304, NULL, NULL, 1393, 'PR-106', 'AGBEVE PHEVER( 30)', NULL, '6.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '6.5000', '6.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2305, NULL, NULL, 1392, '6036000115400', 'AFRO MOSES', NULL, '13.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '13.5000', '13.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2306, NULL, NULL, 1391, '6036000005930', 'ADUWUMWAA CAPS (240)', NULL, '11.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '11.0000', '11.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2307, NULL, NULL, 1390, 'PR-103', '_ADUTW I MWAA BITTERS ( 2 5)', NULL, '7.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '7.5000', '7.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2308, NULL, NULL, 1389, '6034000189360', 'ADOM PAWAY CAPS(l00)', NULL, '16.4000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '16.4000', '16.4000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2309, NULL, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '5.3000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '5.3000', '5.3000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2310, NULL, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '11.3000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-12', 'received', '11.3000', '11.3000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2311, NULL, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '12.0000', '2021-04-12', 'received', '4.5000', '4.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2312, NULL, 12, 1442, '005', 'YAFO MAN CAPS', NULL, '13.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '39.0000', '3.0000', '2021-04-12', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2313, NULL, 12, 1441, '2150546225301', 'X DRIVE CAPS', NULL, '13.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '39.0000', '3.0000', '2021-04-12', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2314, NULL, 12, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '10.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '40.0000', '4.0000', '2021-04-12', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2315, NULL, 12, 1439, 'PR-152', 'VICTAGO s s', NULL, '1.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '12.0000', '12.0000', '2021-04-12', 'received', '1.0000', '1.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2316, NULL, 12, 1438, '004', 'TRUMAN', NULL, '14.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '44.4000', '3.0000', '2021-04-12', 'received', '14.8000', '14.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2317, NULL, 12, 1437, 'PR-150', 'TOP TONIC', NULL, '9.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '19.0000', '2.0000', '2021-04-12', 'received', '9.5000', '9.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2318, NULL, 12, 1436, 'PR-149', 'TOP FEVER ( 24)', NULL, '9.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '19.0000', '2.0000', '2021-04-12', 'received', '9.5000', '9.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2319, NULL, 12, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '18.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '55.5000', '3.0000', '2021-04-12', 'received', '18.5000', '18.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2320, NULL, 12, 1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', NULL, '14.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '29.0000', '2.0000', '2021-04-12', 'received', '14.5000', '14.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2321, NULL, 12, 1433, 'PR-146', 'TIME HERBAL MIX(25)', NULL, '10.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '30.0000', '3.0000', '2021-04-12', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2322, NULL, 12, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '54.0000', '6.0000', '2021-04-12', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2323, NULL, 12, 1431, 'PR-144', 'SPARNIS GARLIC MIXTURE(30)', NULL, '10.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '52.5000', '5.0000', '2021-04-12', 'received', '10.5000', '10.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2324, NULL, 12, 1430, 'PR-143', 'SOLAK MIXTURE(25)', NULL, '13.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '39.0000', '3.0000', '2021-04-12', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2325, NULL, 12, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', NULL, '13.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '39.0000', '3.0000', '2021-04-12', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2326, NULL, 12, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', NULL, '13.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '52.0000', '4.0000', '2021-04-12', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2327, NULL, 12, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '45.0000', '3.0000', '2021-04-12', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2328, NULL, 12, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '72.0000', '2.0000', '2021-04-12', 'received', '36.0000', '36.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2329, NULL, 12, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '26.0000', '4.0000', '2021-04-12', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2330, NULL, 12, 1424, '6036000070709', 'PROSTAT 60', NULL, '30.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '90.0000', '3.0000', '2021-04-12', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2331, NULL, 12, 1423, '6036000115455', 'PROSTACURE X', NULL, '30.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '90.0000', '3.0000', '2021-04-12', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2332, NULL, 12, 1422, 'PR-135', 'PROSTACURE TEA (32)', NULL, '21.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '42.0000', '2.0000', '2021-04-12', 'received', '21.0000', '21.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2333, NULL, 12, 1421, '6666666666666', 'PROSLUV CAPS', NULL, '19.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '59.4000', '3.0000', '2021-04-12', 'received', '19.8000', '19.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2334, NULL, 12, 1420, 'PR-133', 'NAZO', NULL, '1.2000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '14.4000', '12.0000', '2021-04-12', 'received', '1.2000', '1.2000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2335, NULL, 12, 1419, '5024389122233', 'MIGHTY POWER SYS LS', NULL, '10.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '21.0000', '2.0000', '2021-04-12', 'received', '10.5000', '10.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2336, NULL, 12, 1418, 'PR-131', 'MADAM CATERINE', NULL, '8.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '16.0000', '2.0000', '2021-04-12', 'received', '8.0000', '8.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2337, NULL, 12, 1417, 'PR-130', 'LUCKY V CARE', NULL, '11.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '34.5000', '3.0000', '2021-04-12', 'received', '11.5000', '11.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2338, NULL, 12, 1416, 'PR-129', 'LUCKY MIXTURE', NULL, '10.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '30.0000', '3.0000', '2021-04-12', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2339, NULL, 12, 1415, '6034000157055', 'LIVING BITTERS SYP S s', NULL, '14.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '29.0000', '2.0000', '2021-04-12', 'received', '14.5000', '14.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2340, NULL, 12, 1414, '6034000157048', 'LIVING BITTERS CAPS', NULL, '19.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '38.0000', '2.0000', '2021-04-12', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2341, NULL, 12, 1413, 'PR-126', 'KINGDOM GARLIC CAPS', NULL, '16.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '48.0000', '3.0000', '2021-04-12', 'received', '16.0000', '16.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2342, NULL, 12, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', NULL, '14.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '28.0000', '2.0000', '2021-04-12', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2343, NULL, 12, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '50.0000', '2.0000', '2021-04-12', 'received', '25.0000', '25.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2344, NULL, 12, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '2.2000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '22.0000', '10.0000', '2021-04-12', 'received', '2.2000', '2.2000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2345, NULL, 12, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '65.0000', '5.0000', '2021-04-12', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2346, NULL, 12, 1408, '6050125568200', 'HAPIMAN CAPS', NULL, '9.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '28.5000', '3.0000', '2021-04-12', 'received', '9.5000', '9.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2347, NULL, 12, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '16.8000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '67.2000', '4.0000', '2021-04-12', 'received', '16.8000', '16.8000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2348, NULL, 12, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '16.8000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '67.2000', '4.0000', '2021-04-12', 'received', '16.8000', '16.8000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2349, NULL, 12, 1404, 'PR-117', 'GBEDEMAH Garlic bitters', NULL, '9.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '27.0000', '3.0000', '2021-04-12', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2350, NULL, 12, 1403, '6036000115448', 'FEMACURE', NULL, '13.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '26.0000', '2.0000', '2021-04-12', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2351, NULL, 12, 1402, 'PR-115', 'ERNEST OINT(200)', NULL, '2.2000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '13.2000', '6.0000', '2021-04-12', 'received', '2.2000', '2.2000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2352, NULL, 12, 1401, 'PR-114', 'EKURO BEWU', NULL, '3.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '18.0000', '6.0000', '2021-04-12', 'received', '3.0000', '3.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2353, NULL, 12, 1400, 'PR-113', 'DIAGELLETS 500ML(24)', NULL, '22.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '66.0000', '3.0000', '2021-04-12', 'received', '22.0000', '22.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2354, NULL, 12, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '12.5000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '50.0000', '4.0000', '2021-04-12', 'received', '12.5000', '12.5000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2355, NULL, 12, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '7.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '37.5000', '5.0000', '2021-04-12', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2356, NULL, 12, 1397, 'PR-110', 'ANGEL FETWEK3K3(200)', NULL, '3.2000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '16.0000', '5.0000', '2021-04-12', 'received', '3.2000', '3.2000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2357, NULL, 12, 1396, 'PR-109', 'ANGEL CREAM(200)', NULL, '2.7000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '13.5000', '5.0000', '2021-04-12', 'received', '2.7000', '2.7000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2358, NULL, 12, 1395, 'PR-108', 'AMUZU GARLIC', NULL, '8.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '25.5000', '3.0000', '2021-04-12', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2359, NULL, 12, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '6.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '32.5000', '5.0000', '2021-04-12', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2360, NULL, 12, 1393, 'PR-106', 'AGBEVE PHEVER( 30)', NULL, '6.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '19.5000', '3.0000', '2021-04-12', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2361, NULL, 12, 1392, '6036000115400', 'AFRO MOSES', NULL, '13.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '40.5000', '3.0000', '2021-04-12', 'received', '13.5000', '13.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2362, NULL, 12, 1391, '6036000005930', 'ADUWUMWAA CAPS (240)', NULL, '11.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '22.0000', '2.0000', '2021-04-12', 'received', '11.0000', '11.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2363, NULL, 12, 1390, 'PR-103', '_ADUTW I MWAA BITTERS ( 2 5)', NULL, '7.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '22.5000', '3.0000', '2021-04-12', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2364, NULL, 12, 1389, '6034000189360', 'ADOM PAWAY CAPS(l00)', NULL, '16.4000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '32.8000', '2.0000', '2021-04-12', 'received', '16.4000', '16.4000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2365, NULL, 12, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '5.3000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '26.5000', '5.0000', '2021-04-12', 'received', '5.3000', '5.3000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2366, NULL, 12, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '11.3000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '67.8000', '6.0000', '2021-04-12', 'received', '11.3000', '11.3000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2367, NULL, 12, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, '0000-00-00', '27.0000', '6.0000', '2021-04-12', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2406, 47, NULL, 1526, '5052197041545', 'K-Y JELLY 82G', NULL, '33.4700', '44.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.4100', '0.0000', '2021-04-01', 'received', '33.4700', '33.4700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.4700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2407, 47, NULL, 1498, 'PR-211', 'PAIN OFF TAB', NULL, '0.3300', '0.5000', '48.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.8400', '0.0000', '2021-04-01', 'received', '0.3300', '0.3300', '48.0000', NULL, NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, '0.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2408, 47, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.4100', '0.6000', '48.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6800', '0.0000', '2021-04-01', 'received', '0.4100', '0.4100', '48.0000', NULL, NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, '0.4100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2409, 47, NULL, 2084, '24569550', 'PRE-MECO', NULL, '15.0700', '20.0000', '9.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.6300', '0.0000', '2021-04-01', 'received', '15.0700', '15.0700', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '15.0700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2410, 47, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '11.5600', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.6800', '3.0000', '2021-04-01', 'received', '11.5600', '11.5600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.5600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2411, 47, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.1500', '8.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.9000', '0.0000', '2021-04-01', 'received', '6.1500', '6.1500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2412, 47, NULL, 1636, '4031571069116', 'VIT-B DENK', NULL, '9.8000', '13.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2021-04-01', 'received', '9.8000', '9.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2413, 47, NULL, 1642, '6001135507628', 'BENYLIN DRY', NULL, '31.5000', '41.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '0.0000', '2021-04-01', 'received', '31.5000', '31.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '31.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2414, 47, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '42.0000', '55.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2021-04-01', 'received', '42.0000', '42.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '42.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2415, 47, NULL, 1676, '8902451254525', 'LUEX CHILD CHESTY', NULL, '7.9000', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7000', '0.0000', '2021-04-01', 'received', '7.9000', '7.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2416, 47, NULL, 1677, '8902546578543', 'LUEX BABY COUGH', NULL, '7.8000', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '0.0000', '2021-04-01', 'received', '7.8000', '7.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2417, 47, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.3800', '5.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.2800', '6.0000', '2021-04-01', 'received', '1.3800', '1.3800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '1.3800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2418, 47, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '18.1900', '24.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.7600', '0.0000', '2021-04-01', 'received', '18.1900', '18.1900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '18.1900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2419, 47, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '12.3500', '16.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.7500', '0.0000', '2021-04-01', 'received', '12.3500', '12.3500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2420, 47, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '24.9800', '33.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.9400', '0.0000', '2021-04-01', 'received', '24.9800', '24.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '24.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2421, 47, NULL, 1560, 'PR-273', 'STUGERON', NULL, '4.6000', '6.0000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.8000', '0.0000', '2021-04-01', 'received', '4.6000', '4.6000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '4.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2422, 47, NULL, 1534, 'PR-247', 'PINEK 20MG TAB', NULL, '0.9800', '1.3000', '18.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6400', '0.0000', '2021-04-01', 'received', '0.9800', '0.9800', '18.0000', NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, '0.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2423, 47, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '3.8700', '5.1000', '28.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.3600', '0.0000', '2021-04-01', 'received', '3.8700', '3.8700', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '3.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2424, 47, NULL, 1548, '6223003960339', 'DAFLON S00MG', NULL, '2.8000', '3.6000', '54.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '151.2000', '0.0000', '2021-04-01', 'received', '2.8000', '2.8000', '54.0000', NULL, NULL, 1, 'pc', '54.0000', NULL, NULL, NULL, NULL, '2.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2425, 47, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.3000', '3.5000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '0.0000', '2021-04-01', 'received', '2.3000', '2.3000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '2.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2426, 47, NULL, 1564, '3838989544225', 'TADOL 100MG', NULL, '2.6000', '4.0000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '0.0000', '2021-04-01', 'received', '2.6000', '2.6000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2427, 47, NULL, 1571, 'udia111', 'DIABETMIN TABS 500MG', NULL, '1.9700', '2.5000', '18.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4600', '0.0000', '2021-04-01', 'received', '1.9700', '1.9700', '18.0000', NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, '1.9700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2428, 47, NULL, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', NULL, '1.7000', '2.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '0.0000', '2021-04-01', 'received', '1.7000', '1.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2429, 47, NULL, 1575, '5017007043294', 'LOSARTAN POTASSIUM 50MG (TEVA)', NULL, '20.6900', '14.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.1400', '0.0000', '2021-04-01', 'received', '20.6900', '20.6900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '20.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2430, 47, NULL, 1503, '305731769203', 'ADVIL CAPLET 24\'', NULL, '32.5100', '43.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5100', '1.0000', '2021-04-01', 'received', '32.5100', '32.5100', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '32.5100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2431, 47, NULL, 1634, 'PR-347', 'HYPONIDD TABS 20\' ?', NULL, '22.6600', '30.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.3200', '2.0000', '2021-04-01', 'received', '22.6600', '22.6600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2432, 47, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '5.9400', '8.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7600', '0.0000', '2021-04-01', 'received', '5.9400', '5.9400', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '5.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2434, NULL, 14, 1669, '5000456024778', 'NEXIUM 40MG TAB', NULL, '6.2000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '186.0000', '9.0000', '2021-04-12', 'received', '6.2000', '6.2000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2435, NULL, 14, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '17.7300', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '70.9200', '1.0000', '2021-04-12', 'received', '17.7300', '17.7300', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2436, NULL, 14, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '42.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '84.0000', '2.0000', '2021-04-12', 'received', '42.0000', '42.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2437, NULL, 14, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '28.7000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '143.5000', '3.0000', '2021-04-12', 'received', '28.7000', '28.7000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2438, NULL, 14, 1673, 'PR-386', 'DOXY CAPS (ESKAY)', NULL, '12.9000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.8000', '2.0000', '2021-04-12', 'received', '12.9000', '12.9000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2439, NULL, 14, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '2.9500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.5000', '4.0000', '2021-04-12', 'received', '2.9500', '2.9500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2440, NULL, 14, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '20.2800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.8400', '1.0000', '2021-04-12', 'received', '20.2800', '20.2800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2441, NULL, 14, 1676, '8902451254525', 'LUEX CHILD CHESTY', NULL, '7.9000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.7000', '3.0000', '2021-04-12', 'received', '7.9000', '7.9000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2442, NULL, 14, 1677, '8902546578543', 'LUEX BABY COUGH', NULL, '7.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.4000', '0.0000', '2021-04-12', 'received', '7.8000', '7.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2443, NULL, 14, 1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', NULL, '24.5300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '73.5900', '0.0000', '2021-04-12', 'received', '24.5300', '24.5300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2444, NULL, 14, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.3800', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.2800', '5.0000', '2021-04-12', 'received', '1.3800', '1.3800', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2445, NULL, 14, 1680, 'PR-393', 'BELLA COUGH MIXTURE', NULL, '4.9200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.7600', '3.0000', '2021-04-12', 'received', '4.9200', '4.9200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2446, NULL, 14, 1681, 'PR-394', 'GALVUS 50MG', NULL, '73.5600', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '147.1200', '2.0000', '2021-04-12', 'received', '73.5600', '73.5600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2447, NULL, 14, 1682, 'PR-395', 'SENAFEN TAB 100\'', NULL, '10.6700', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '106.7000', '3.0000', '2021-04-12', 'received', '10.6700', '10.6700', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2448, NULL, 14, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.9000', '2.0000', '2021-04-12', 'received', '7.8900', '7.8900', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2449, NULL, 14, 1684, '18906047544530', 'CLOPIDOGREL 75MG', NULL, '24.8200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.6400', '2.0000', '2021-04-12', 'received', '24.8200', '24.8200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2450, NULL, 14, 1685, 'PR-398', 'LARIAM TAB 250MG', NULL, '40.1200', '0.0000', '8.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '320.9600', '8.0000', '2021-04-12', 'received', '40.1200', '40.1200', NULL, NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2451, NULL, 14, 1686, '8901082006-81', 'ALKA-5 SYR', NULL, '26.6000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '79.8000', '0.0000', '2021-04-12', 'received', '26.6000', '26.6000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2452, NULL, 14, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '18.1900', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.7600', '3.0000', '2021-04-12', 'received', '18.1900', '18.1900', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2453, NULL, 14, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.2600', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.0400', '0.0000', '2021-04-12', 'received', '6.2600', '6.2600', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2454, NULL, 14, 1691, 'PR-404', 'JARIFAN 2 SYR', NULL, '10.3300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.9900', '2.0000', '2021-04-12', 'received', '10.3300', '10.3300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2455, NULL, 14, 1692, 'PR-405', 'DEXORANGE TONIC', NULL, '10.2900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.8700', '3.0000', '2021-04-12', 'received', '10.2900', '10.2900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2456, NULL, 14, 1693, 'PR-406', 'CITY BLOOD TONIC 200ML', NULL, '7.8600', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.4400', '2.0000', '2021-04-12', 'received', '7.8600', '7.8600', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2457, NULL, 14, 1694, 'PR-407', 'LEENASYR', NULL, '7.1900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.5700', '1.0000', '2021-04-12', 'received', '7.1900', '7.1900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2458, NULL, 14, 1695, '8908002671971', 'APETAMIN SYR', NULL, '15.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '77.5000', '1.0000', '2021-04-12', 'received', '15.5000', '15.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2459, NULL, 14, 1696, 'PR-409', 'CYFEN SYR', NULL, '10.2900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.8700', '2.0000', '2021-04-12', 'received', '10.2900', '10.2900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2460, NULL, 14, 1697, '8904023403058', 'APETI SYRUP-GEO', NULL, '9.2100', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.6300', '2.0000', '2021-04-12', 'received', '9.2100', '9.2100', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2461, NULL, 14, 1698, 'PR-411', 'ODYMIN SYR', NULL, '7.9800', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.9200', '2.0000', '2021-04-12', 'received', '7.9800', '7.9800', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2462, NULL, 14, 2156, '10421120', 'LEENA CAPS', NULL, '3.2500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.5000', '10.0000', '2021-04-12', 'received', '3.2500', '3.2500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2463, NULL, 14, 1700, '8904008410187', 'BECOATIN SYR', NULL, '7.8800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.6400', '0.0000', '2021-04-12', 'received', '7.8800', '7.8800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2464, NULL, 14, 1701, 'PR-414', 'HEPTOPEP SYR', NULL, '14.7800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.3400', '0.0000', '2021-04-12', 'received', '14.7800', '14.7800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2465, NULL, 14, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '14.9700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.9100', '1.0000', '2021-04-12', 'received', '14.9700', '14.9700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2466, NULL, 14, 1703, 'PR-416', 'VIGORIX SYR 200ML', NULL, '7.5900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.7700', '3.0000', '2021-04-12', 'received', '7.5900', '7.5900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2467, NULL, 14, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.0900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '81.2700', '3.0000', '2021-04-12', 'received', '27.0900', '27.0900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2468, NULL, 14, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '24.9800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '74.9400', '1.0000', '2021-04-12', 'received', '24.9800', '24.9800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2469, NULL, 14, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '12.3500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '61.7500', '1.0000', '2021-04-12', 'received', '12.3500', '12.3500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2470, NULL, 15, 1299, 'PR-12', 'ARTIBASE : SUSP', NULL, '3.9000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.0000', '6.0000', '2021-04-12', 'received', '3.9000', '3.9000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2471, NULL, 15, 1300, 'PR-13', 'ARTIBASE FORTE 80/4801X6', NULL, '5.2000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '104.0000', '11.0000', '2021-04-12', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2472, NULL, 15, 1301, 'PR-14', 'BASE COLD 1X6X10', NULL, '1.6800', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.8000', '7.0000', '2021-04-12', 'received', '1.6800', '1.6800', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2473, NULL, 15, 1302, 'PR-15', 'BASE COLD SYR', NULL, '4.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '10.0000', '2021-04-12', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2474, NULL, 15, 1303, 'PR-16', 'BASE BOOM JELLY', NULL, '1.3800', '0.0000', '80.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '110.4000', '80.0000', '2021-04-12', 'received', '1.3800', '1.3800', NULL, NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2475, NULL, 15, 1304, 'PR-17', 'BASECHLOR DROPS', NULL, '1.4500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.5000', '5.0000', '2021-04-12', 'received', '1.4500', '1.4500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2476, NULL, 15, 1305, 'PR-18', 'BASEKOF SYR', NULL, '5.2000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '5.0000', '2021-04-12', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2477, NULL, 15, 1306, 'PR-19', 'DOMI 10: TAB', NULL, '2.1000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.0000', '3.0000', '2021-04-12', 'received', '2.1000', '2.1000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2478, NULL, 15, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '1.9000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '5.7000', '0.0000', '2021-04-12', 'received', '1.9000', '1.9000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2479, NULL, 15, 1308, '5012617005687', 'FOLIC ACID 5MG OVAL', NULL, '8.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.0000', '2.0000', '2021-04-12', 'received', '8.0000', '8.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2480, NULL, 15, 1309, 'PR-22', 'GENTBASE EYE/EAR DROP', NULL, '1.6000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.0000', '10.0000', '2021-04-12', 'received', '1.6000', '1.6000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2481, NULL, 15, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.3700', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.4000', '0.0000', '2021-04-12', 'received', '0.3700', '0.3700', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2482, NULL, 15, 1312, 'PR-25', 'MILK OF MAGNESIA S/S', NULL, '6.3000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.9000', '1.0000', '2021-04-12', 'received', '6.3000', '6.3000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2483, NULL, 15, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', NULL, '0.4200', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '4.2000', '10.0000', '2021-04-12', 'received', '0.4200', '0.4200', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2484, NULL, 15, 1314, 'PR-27', 'WORMBASE SUSP', NULL, '1.2000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.0000', '8.0000', '2021-04-12', 'received', '1.2000', '1.2000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2485, NULL, 15, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', NULL, '0.3700', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.4000', '5.0000', '2021-04-12', 'received', '0.3700', '0.3700', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2486, NULL, 16, 1315, 'PR-28', '8 HOUR FEVER MIX', NULL, '20.9000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.9000', '1.0000', '2021-04-12', 'received', '20.9000', '20.9000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2487, NULL, 16, 1316, 'PR-29', 'FAMACOLD SYR', NULL, '6.3000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.9000', '1.0000', '2021-04-12', 'received', '6.3000', '6.3000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2488, NULL, 16, 1319, 'PR-32', 'PARA SYR AYRTON', NULL, '3.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.0000', '0.0000', '2021-04-12', 'received', '3.0000', '3.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2489, NULL, 16, 1320, 'PR-33', 'PARALEX BABY', NULL, '4.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.0000', '1.0000', '2021-04-12', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2490, NULL, 16, 1321, 'PR-34', 'TRES ORIX FORTE 1 00ML(S/S)', NULL, '9.8000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '58.8000', '1.0000', '2021-04-12', 'received', '9.8000', '9.8000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2491, NULL, 16, 1322, 'PR-35', 'BADRUF CREAM 30MG', NULL, '3.6000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '9.0000', '2021-04-12', 'received', '3.6000', '3.6000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2494, NULL, 17, 1946, '92115303', 'Ascorbin  Syrup 100ml', NULL, '1.5500', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.0000', '15.0000', '2021-04-12', 'received', '1.5500', '1.5500', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2495, NULL, 17, 2093, '74359321', 'CALCIUM B12 SYRUP 200ML', NULL, '2.5500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.5000', '10.0000', '2021-04-12', 'received', '2.5500', '2.5500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2496, NULL, 17, 2094, '68563120', 'COUGH & COLD 100ML CHILD CARE', NULL, '2.9000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '58.0000', '20.0000', '2021-04-12', 'received', '2.9000', '2.9000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2497, NULL, 17, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '2.8000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '56.0000', '12.0000', '2021-04-12', 'received', '2.8000', '2.8000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2498, NULL, 17, 1949, '68032552', ' Foliron tonic 200ML', NULL, '3.1000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.0000', '9.0000', '2021-04-12', 'received', '3.1000', '3.1000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2499, NULL, 17, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', NULL, '2.7500', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.0000', '20.0000', '2021-04-12', 'received', '2.7500', '2.7500', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2500, NULL, 17, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.3800', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.6000', '20.0000', '2021-04-12', 'received', '1.3800', '1.3800', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2501, NULL, 17, 2095, '83888513', 'LETAMOL ELIXIR 125ML  LETAP', NULL, '1.5000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '20.0000', '2021-04-12', 'received', '1.5000', '1.5000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2502, NULL, 17, 2096, '90371186', 'LETAVIT SYRUP 125ML', NULL, '1.5500', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.0000', '19.0000', '2021-04-12', 'received', '1.5500', '1.5500', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2503, NULL, 17, 2097, '70572709', 'MACRAFOLIN SYRUP 125ML', NULL, '1.6500', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '18.0000', '2021-04-12', 'received', '1.6500', '1.6500', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2504, NULL, 17, 2098, '39895805', 'MILK OF MAGNESIA 125ML LETAP', NULL, '1.0000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '20.0000', '2021-04-12', 'received', '1.0000', '1.0000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2505, NULL, 17, 2099, '36936180', 'LETARON SYRUP 200ML', NULL, '2.8000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.0000', '10.0000', '2021-04-12', 'received', '2.8000', '2.8000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2506, NULL, 17, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '1.6500', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '20.0000', '2021-04-12', 'received', '1.6500', '1.6500', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2507, NULL, 17, 2101, '56160077', 'LETAFEN SUSPENSION 100ML', NULL, '1.6500', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '20.0000', '2021-04-12', 'received', '1.6500', '1.6500', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2508, NULL, 17, 2102, '12180621', 'METRONIDAZOLE SUSP 100ML', NULL, '1.9000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.0000', '20.0000', '2021-04-12', 'received', '1.9000', '1.9000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2509, NULL, 17, 2103, '77332390', 'LETAMOX TABLET 500MG 500MG', NULL, '0.4500', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '60.0000', '2021-04-12', 'received', '0.4500', '0.4500', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2510, NULL, 17, 2104, '44677443', 'DYNWELL TABLETS', NULL, '0.2000', '0.0000', '150.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '145.0000', '2021-04-12', 'received', '0.2000', '0.2000', NULL, NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2511, NULL, 17, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '1.3500', '0.0000', '40.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.0000', '29.0000', '2021-04-12', 'received', '1.3500', '1.3500', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2512, NULL, 17, 2106, '26940098', 'XPEL SUSPENSION 20ML', NULL, '0.9900', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.7000', '30.0000', '2021-04-12', 'received', '0.9900', '0.9900', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2513, NULL, 17, 2107, '04659350', 'FUROSEMIDE TAB 40MG LETAP', NULL, '0.2500', '0.0000', '150.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.5000', '150.0000', '2021-04-12', 'received', '0.2500', '0.2500', NULL, NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2514, NULL, 17, 2109, '94342778', 'ASCORBIN TABS LETAP', NULL, '0.2500', '0.0000', '150.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.5000', '147.0000', '2021-04-12', 'received', '0.2500', '0.2500', NULL, NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2515, NULL, NULL, 1728, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2516, NULL, NULL, 1999, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2517, NULL, NULL, 1385, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2518, NULL, NULL, 1863, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2519, NULL, NULL, 1565, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2520, NULL, NULL, 2288, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2521, NULL, NULL, 1609, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2522, NULL, NULL, 2169, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-17.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2523, NULL, NULL, 2275, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2524, NULL, NULL, 1935, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2525, NULL, NULL, 2256, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2526, NULL, NULL, 2003, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2527, NULL, NULL, 1845, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2528, NULL, NULL, 2233, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2529, NULL, NULL, 1454, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2530, NULL, NULL, 2058, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2531, NULL, NULL, 1602, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2532, NULL, NULL, 2068, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2533, NULL, NULL, 2259, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2534, NULL, NULL, 2237, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2535, NULL, NULL, 1993, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2536, NULL, NULL, 1980, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2537, NULL, NULL, 1667, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2538, NULL, NULL, 2280, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2539, NULL, NULL, 1847, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2559, 78, NULL, 2312, '68007962', 'AQUAPHOR HEALING OINTMENT', NULL, '20.0000', '35.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-04-14', 'received', '20.0000', '20.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2560, 78, NULL, 2113, '192624002949', 'BOD MEM SMALL', NULL, '6.7000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1000', '0.0000', '2021-04-14', 'received', '6.7000', '6.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2561, 78, NULL, 2114, '192624002970', 'BOD MEN BIG', NULL, '6.7000', '12.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '0.0000', '2021-04-14', 'received', '6.7000', '6.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2562, 78, NULL, 2123, '842379108860', 'MOUTH WASH SOLIMO', NULL, '20.0000', '45.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-04-14', 'received', '20.0000', '20.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2563, NULL, 18, 2312, '68007962', 'AQUAPHOR HEALING OINTMENT', NULL, '20.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '1.0000', '2021-04-14', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2564, NULL, 18, 2118, '11415402', 'AVEENO WIPES', NULL, '8.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '51.0000', '6.0000', '2021-04-14', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2565, NULL, 18, 2110, '6932757117080', 'MOTHER THOUCH DIAPER', NULL, '35.0000', '0.0000', '9.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '315.0000', '9.0000', '2021-04-14', 'received', '35.0000', '35.0000', NULL, NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2566, NULL, 18, 2116, '7330933031332', 'ECO NATY DIAPER', NULL, '30.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '2.0000', '2021-04-14', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2567, NULL, 18, 2117, '817810029417', 'HONEST DIAPER', NULL, '20.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '2.0000', '2021-04-14', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2568, NULL, 18, 2124, '079896174812', 'QUEEN HELENE COCOA BUTTER LOTION', NULL, '25.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '125.0000', '5.0000', '2021-04-14', 'received', '25.0000', '25.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2569, NULL, 18, 2112, '070330746336', 'FLEX 5 BIC RAZOR', NULL, '10.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.0000', '1.0000', '2021-04-14', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2570, NULL, 18, 2111, '072140028626', 'NIVEA MEN PACK', NULL, '40.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '80.0000', '2.0000', '2021-04-14', 'received', '40.0000', '40.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2571, NULL, 18, 2115, '35179090', 'SMALL BASKET GIFT SET', NULL, '20.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '2.0000', '2021-04-14', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2572, NULL, 18, 2119, '840038215454', 'SANITIZER BIG KEEP CLEAN', NULL, '30.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '360.0000', '12.0000', '2021-04-14', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2573, NULL, 18, 2120, '850005911845', 'SANITIZERR SMALL SUAVE', NULL, '5.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.0000', '10.0000', '2021-04-14', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2574, NULL, 18, 2125, '052181492303', 'CRYSTAL CLEAR  MONITOR', NULL, '20.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '1.0000', '2021-04-14', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2575, NULL, 18, 2126, '017854103597', 'BAYLISS GIFT SET PINK', NULL, '30.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.0000', '3.0000', '2021-04-14', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2576, NULL, 18, 2128, '017854103634', 'BAYLIS &HARDING GIFT SET', NULL, '30.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '1.0000', '2021-04-14', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2577, NULL, 18, 2127, '047400671881', 'JOY RAZAR GIT SET', NULL, '10.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '6.0000', '2021-04-14', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2578, NULL, 18, 2114, '192624002970', 'BOD MEN BIG', NULL, '6.7000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.5000', '5.0000', '2021-04-14', 'received', '6.7000', '6.7000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2579, NULL, 18, 2113, '192624002949', 'BOD MEM SMALL', NULL, '6.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.1000', '1.0000', '2021-04-14', 'received', '6.7000', '6.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2580, NULL, 18, 2123, '842379108860', 'MOUTH WASH SOLIMO', NULL, '20.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '2.0000', '2021-04-14', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2581, NULL, NULL, 1931, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2582, NULL, NULL, 2178, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2583, NULL, NULL, 2279, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2584, NULL, NULL, 1839, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2585, NULL, NULL, 1772, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2586, NULL, NULL, 1819, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2587, NULL, NULL, 1616, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2588, NULL, NULL, 1888, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2589, NULL, NULL, 1600, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2590, NULL, NULL, 2072, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2591, NULL, NULL, 2143, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-10.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2592, NULL, NULL, 1371, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2593, NULL, NULL, 1805, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2594, NULL, NULL, 1717, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2595, NULL, NULL, 2268, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2596, NULL, NULL, 1952, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2597, NULL, NULL, 2146, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2630, NULL, 19, 2110, '6932757117080', 'MOTHER THOUCH DIAPER', NULL, '35.0000', '0.0000', '9.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '315.0000', '9.0000', '2021-04-15', 'received', '35.0000', '35.0000', NULL, NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2631, NULL, 19, 2118, '11415402', 'AVEENO WIPES', NULL, '8.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '51.0000', '5.0000', '2021-04-15', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2632, NULL, 19, 2112, '070330746336', 'FLEX 5 BIC RAZOR', NULL, '10.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.0000', '1.0000', '2021-04-15', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2633, NULL, 19, 2113, '192624002949', 'BOD MEM SMALL', NULL, '6.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.1000', '0.0000', '2021-04-15', 'received', '6.7000', '6.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2634, NULL, 19, 2114, '192624002970', 'BOD MEN BIG', NULL, '6.7000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.5000', '5.0000', '2021-04-15', 'received', '6.7000', '6.7000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2635, NULL, 19, 2111, '072140028626', 'NIVEA MEN PACK', NULL, '40.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '80.0000', '1.0000', '2021-04-15', 'received', '40.0000', '40.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2636, NULL, 19, 2116, '7330933031332', 'ECO NATY DIAPER', NULL, '30.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '2.0000', '2021-04-15', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2637, NULL, 19, 2117, '817810029417', 'HONEST DIAPER', NULL, '20.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '2.0000', '2021-04-15', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2638, NULL, 19, 2115, '35179090', 'SMALL BASKET GIFT SET', NULL, '20.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '0.0000', '2021-04-15', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2639, NULL, 19, 2119, '840038215454', 'SANITIZER BIG KEEP CLEAN', NULL, '30.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '360.0000', '11.0000', '2021-04-15', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2640, NULL, 19, 2120, '850005911845', 'SANITIZERR SMALL SUAVE', NULL, '5.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.0000', '5.0000', '2021-04-15', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2641, NULL, 19, 2124, '079896174812', 'QUEEN HELENE COCOA BUTTER LOTION', NULL, '25.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '125.0000', '3.0000', '2021-04-15', 'received', '25.0000', '25.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2642, NULL, 19, 2125, '052181492303', 'CRYSTAL CLEAR  MONITOR', NULL, '20.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '1.0000', '2021-04-15', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2643, NULL, 19, 2121, '035000671127', 'MOUTH WASH COLGATE BIG', NULL, '20.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '1.0000', '2021-04-15', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2644, NULL, 19, 2122, '035000455321', 'MOUTH WASH COLGATE SMALL', NULL, '20.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '1.0000', '2021-04-15', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2645, NULL, 19, 2123, '842379108860', 'MOUTH WASH SOLIMO', NULL, '20.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '1.0000', '2021-04-15', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2646, NULL, 19, 2126, '017854103597', 'BAYLISS GIFT SET PINK', NULL, '30.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.0000', '3.0000', '2021-04-15', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2647, NULL, 19, 2128, '017854103634', 'BAYLIS &HARDING GIFT SET', NULL, '30.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '1.0000', '2021-04-15', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2648, NULL, 19, 2127, '047400671881', 'JOY RAZAR GIT SET', NULL, '10.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '5.0000', '2021-04-15', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2649, NULL, NULL, 1585, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2650, NULL, NULL, 1342, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2651, NULL, NULL, 1449, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2652, NULL, NULL, 1572, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2653, NULL, NULL, 1905, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2654, NULL, NULL, 2136, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-10.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2655, NULL, NULL, 1953, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2656, NULL, NULL, 1874, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2657, 77, NULL, 1303, 'PR-16', 'BASE BOOM JELLY', NULL, '1.3800', '4.0000', '160.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.8000', '95.0000', '2021-04-12', 'received', '1.3800', '1.3800', '160.0000', NULL, NULL, 1, 'pc', '160.0000', NULL, NULL, NULL, NULL, '1.3800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2658, 77, NULL, 1302, 'PR-15', 'BASE COLD SYR', NULL, '4.0000', '6.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '25.0000', '2021-04-12', 'received', '4.0000', '4.0000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2659, 77, NULL, 1299, 'PR-12', 'ARTIBASE : SUSP', NULL, '3.9000', '5.0000', '0.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2021-04-12', 'received', '3.9000', '3.9000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '3.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2666, 80, NULL, 2314, '30357751', 'ARTIBASE SUSP', NULL, '3.9000', '5.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '0.0000', '2021-04-15', 'received', '3.9000', '3.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2667, 80, NULL, 1302, 'PR-15', 'BASE COLD SYR', NULL, '4.0000', '6.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2021-04-15', 'received', '4.0000', '4.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2668, 80, NULL, 1305, 'PR-18', 'BASEKOF SYR', NULL, '5.2000', '7.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-04-15', 'received', '5.2000', '5.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2669, 80, NULL, 1309, 'PR-22', 'GENTBASE EYE/EAR DROP', NULL, '1.6000', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2021-04-15', 'received', '1.6000', '1.6000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2670, 80, NULL, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', NULL, '0.4200', '3.0000', '15.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.3000', '0.0000', '2021-04-15', 'received', '0.4200', '0.4200', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '0.4200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2671, 80, NULL, 1314, 'PR-27', 'WORMBASE SUSP', NULL, '1.2000', '3.0000', '15.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-04-15', 'received', '1.2000', '1.2000', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '1.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2676, 65, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '14.0500', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.1500', '0.0000', '2021-04-02', 'received', '14.0500', '14.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2677, 65, NULL, 1378, '5011417569627', 'BONJELA BABY', NULL, '34.5000', '45.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2021-04-02', 'received', '34.5000', '34.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2678, 65, NULL, 1843, '5000456024754', 'NEXIUM TABS 20MG 14S', NULL, '4.3000', '5.6000', '42.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.6000', '12.0000', '2021-04-02', 'received', '4.3000', '4.3000', '42.0000', NULL, NULL, 1, 'pc', '42.0000', NULL, NULL, NULL, NULL, '4.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2679, 65, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '11.5000', '15.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2021-04-02', 'received', '11.5000', '11.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '11.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2680, 65, NULL, 1854, 'PR-567', 'IBUCAP L/S 20X20', NULL, '2.5000', '3.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-04-02', 'received', '2.5000', '2.5000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2681, 65, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.4000', '2.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2021-04-02', 'received', '1.4000', '1.4000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2682, 65, NULL, 1862, 'PR-575', 'UK MENNPACE', NULL, '37.3500', '49.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0500', '0.0000', '2021-04-02', 'received', '37.3500', '37.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '37.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2683, 65, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.0000', '2.6000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-04-02', 'received', '2.0000', '2.0000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2684, 65, NULL, 1878, 'PR-591', 'AMOXY BLIST 500MG L/P', NULL, '0.2800', '0.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '50.0000', '2021-04-02', 'received', '0.2800', '0.2800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2685, 65, NULL, 1757, 'PR-470', 'PERMOXYL (AMOX\'LIN ) SUSP 100ML', NULL, '4.4000', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-04-02', 'received', '4.4000', '4.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2686, 65, NULL, 1886, 'PR-599', 'NORVASC 10MG 30?S', NULL, '75.9000', '100.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '455.4000', '0.0000', '2021-04-02', 'received', '75.9000', '75.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '75.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2704, NULL, NULL, 2314, '30357751', 'ARTIBASE SUSP', NULL, '3.9000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '23.4000', '-3.0000', '2021-04-15', 'received', '3.9000', '3.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2705, NULL, NULL, 1302, 'PR-15', 'BASE COLD SYR', NULL, '4.0000', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '80.0000', '0.0000', '2021-04-15', 'received', '4.0000', '4.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2706, NULL, NULL, 1305, 'PR-18', 'BASEKOF SYR', NULL, '5.2000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.0000', '-1.0000', '2021-04-15', 'received', '5.2000', '5.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2707, NULL, NULL, 1886, 'PR-599', 'NORVASC 10MG 30?S', NULL, '227.7500', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '1366.5000', '0.0000', '2021-04-15', 'received', '227.7500', '227.7500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2708, NULL, NULL, 1309, 'PR-22', 'GENTBASE EYE/EAR DROP', NULL, '1.6000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '16.0000', '0.0000', '2021-04-15', 'received', '1.6000', '1.6000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2709, NULL, NULL, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', NULL, '0.4200', '0.0000', '15.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '6.3000', '0.0000', '2021-04-15', 'received', '0.4200', '0.4200', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2710, NULL, NULL, 1314, 'PR-27', 'WORMBASE SUSP', NULL, '1.2000', '0.0000', '15.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.0000', '0.0000', '2021-04-15', 'received', '1.2000', '1.2000', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2711, NULL, NULL, 1817, 'PR-530', 'TRES-ORIX 100MILS S/S', NULL, '9.5500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '28.6500', '0.0000', '2021-04-15', 'received', '9.5500', '9.5500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2727, NULL, NULL, 1450, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-117.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2728, NULL, NULL, 1575, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2729, NULL, NULL, 1331, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2730, NULL, NULL, 1715, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2731, NULL, NULL, 1989, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2732, NULL, NULL, 1619, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2733, NULL, NULL, 2211, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2734, NULL, NULL, 2010, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2735, NULL, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.3300', '0.0000', '500.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '165.0000', '-57.0000', '2021-04-15', 'received', '0.3300', '0.3300', '500.0000', NULL, NULL, 1, 'pc', '500.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2767, NULL, NULL, 2258, '8901138180614', 'SPEMAN TABS', NULL, '0.3500', '0.0000', '-300.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '-105.0000', '0.0000', '2021-04-15', 'received', '0.3500', '0.3500', '-300.0000', NULL, NULL, 1, 'pc', '-300.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2776, NULL, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '27.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '81.0000', '0.0000', '2021-04-15', 'received', '27.0000', '27.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2777, NULL, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '57.0600', '-3.0000', '2021-04-15', 'received', '19.0200', '19.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2778, NULL, NULL, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '13.6000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.8000', '3.0000', '2021-04-15', 'received', '13.6000', '13.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2779, NULL, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '17.8000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '53.4000', '0.0000', '2021-04-15', 'received', '17.8000', '17.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2780, NULL, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '5.5000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '27.5000', '1.0000', '2021-04-15', 'received', '5.5000', '5.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2781, NULL, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.0600', '0.0000', '60.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '63.6000', '-6.0000', '2021-04-15', 'received', '1.0600', '1.0600', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2782, NULL, NULL, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '39.0000', '0.0000', '8.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '312.0000', '-8.0000', '2021-04-15', 'received', '39.0000', '39.0000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2783, NULL, NULL, 2246, '5017007023364', 'AMILODIPINE 5MG TEVA', NULL, '6.8000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.8000', '0.0000', '2021-04-15', 'received', '6.8000', '6.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2784, NULL, NULL, 2247, '29226629', 'TRISILICATE SYR', NULL, '2.5000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.0000', '-1.0000', '2021-04-15', 'received', '2.5000', '2.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2785, NULL, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '2.5000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-04-15', 'received', '2.5000', '2.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2786, NULL, NULL, 2249, '22244269', 'EXPECT SEED', NULL, '2.5000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-04-15', 'received', '2.5000', '2.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2787, NULL, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '6.8900', '2.0000', '2021-04-15', 'received', '6.8900', '6.8900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2788, NULL, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.6400', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '58.2000', '-1.0000', '2021-04-15', 'received', '11.6400', '11.6400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2789, NULL, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '9.3000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '37.2000', '-3.0000', '2021-04-15', 'received', '9.3000', '9.3000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2790, NULL, NULL, 2253, '6221045010159', 'ACTIFED TAB', NULL, '9.2500', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '46.2500', '0.0000', '2021-04-15', 'received', '9.2500', '9.2500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2791, NULL, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '53.8200', '0.0000', '2021-04-15', 'received', '17.9400', '17.9400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2792, NULL, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.4900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '52.4700', '0.0000', '2021-04-15', 'received', '17.4900', '17.4900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2793, NULL, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '12.7400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '38.2200', '0.0000', '2021-04-15', 'received', '12.7400', '12.7400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2794, NULL, NULL, 2257, '84888052', 'OVACARE TABS', NULL, '4.0000', '0.0000', '15.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '60.0000', '0.0000', '2021-04-15', 'received', '4.0000', '4.0000', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2795, NULL, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '19.0000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '76.0000', '2.0000', '2021-04-15', 'received', '19.0000', '19.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2796, NULL, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.2000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '50.4000', '0.0000', '2021-04-15', 'received', '4.2000', '4.2000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2797, NULL, NULL, 2261, '2112345602905', 'TIGER SPRAY', NULL, '18.9900', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '75.9600', '0.0000', '2021-04-15', 'received', '18.9900', '18.9900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2798, NULL, NULL, 2262, '69085595', 'LENOR CONTRACEPTIVE', NULL, '4.5000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.0000', '-1.0000', '2021-04-15', 'received', '4.5000', '4.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2799, NULL, NULL, 2263, '6036000090417', 'LEVON 2', NULL, '4.9800', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '49.8000', '0.0000', '2021-04-15', 'received', '4.9800', '4.9800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2800, NULL, NULL, 2265, '5014502000807', 'MINAMINO SYRUP M/S', NULL, '28.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '56.0000', '0.0000', '2021-04-15', 'received', '28.0000', '28.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2801, NULL, NULL, 2266, '8906046070682', 'KIDIVITE SYR L/S', NULL, '6.4900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '19.4700', '-3.0000', '2021-04-15', 'received', '6.4900', '6.4900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2802, NULL, NULL, 2267, '52018792', 'KIDICS SYRUO', NULL, '9.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '28.5000', '0.0000', '2021-04-15', 'received', '9.5000', '9.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2928, NULL, NULL, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', NULL, '14.6000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '43.8000', '0.0000', '2021-04-15', 'received', '14.6000', '14.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2929, NULL, NULL, 2269, '48726368', 'STOPKOFF CHIDREN', NULL, '4.9800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '14.9400', '-1.0000', '2021-04-15', 'received', '4.9800', '4.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2930, NULL, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '2.5000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '12.5000', '3.0000', '2021-04-15', 'received', '2.5000', '2.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2931, NULL, NULL, 2271, '9556100104342', 'FLUCOR DAY', NULL, '12.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.0000', '0.0000', '2021-04-15', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2932, NULL, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '27.5000', '-4.0000', '2021-04-15', 'received', '5.5000', '5.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2933, NULL, NULL, 2273, '04120489', 'RHIZIN SYRP', NULL, '2.6700', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '16.0200', '-2.0000', '2021-04-15', 'received', '2.6700', '2.6700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2934, NULL, NULL, 2274, '55192131', 'STOPKOFF EXP CHN', NULL, '3.9800', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '19.9000', '0.0000', '2021-04-15', 'received', '3.9800', '3.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2935, NULL, NULL, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', NULL, '1.0900', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '32.7000', '-16.0000', '2021-04-15', 'received', '1.0900', '1.0900', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2936, NULL, NULL, 2276, '52459644', 'DALACIN C SYR', NULL, '55.1000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '55.1000', '0.0000', '2021-04-15', 'received', '55.1000', '55.1000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2937, NULL, NULL, 2277, '71311341', 'ZUBES TABLETS ', NULL, '0.7800', '0.0000', '25.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '19.5000', '-2.0000', '2021-04-15', 'received', '0.7800', '0.7800', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2938, NULL, NULL, 2278, '55291532', 'HOT WATER BOTTLE UNCOVERED', NULL, '14.9900', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '29.9800', '0.0000', '2021-04-15', 'received', '14.9900', '14.9900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2939, NULL, NULL, 2279, '6161105661986', 'PANADOL EXTRA', NULL, '2.6000', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '52.0000', '-6.0000', '2021-04-15', 'received', '2.6000', '2.6000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2940, NULL, NULL, 2280, '8995858999991', 'PROCOLD TABS', NULL, '1.9000', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '95.0000', '-1.0000', '2021-04-15', 'received', '1.9000', '1.9000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2941, NULL, NULL, 2281, '087450449108', 'TYLENOL EXTRA', NULL, '3.0000', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '150.0000', '-15.0000', '2021-04-15', 'received', '3.0000', '3.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2942, NULL, NULL, 2282, '40904860', 'SOVIT VIT E CAPS', NULL, '18.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '54.0000', '0.0000', '2021-04-15', 'received', '18.0000', '18.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2943, NULL, NULL, 2283, '8906009232225', 'LOFNAC TAB 100MG', NULL, '1.4300', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '28.6000', '-4.0000', '2021-04-15', 'received', '1.4300', '1.4300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2944, NULL, NULL, 2284, '8906009232232', 'LOFNAC-P TAB', NULL, '1.3000', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.0000', '0.0000', '2021-04-15', 'received', '1.3000', '1.3000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2945, NULL, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '179.0000', '0.0000', '2021-04-15', 'received', '35.8000', '35.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2946, NULL, NULL, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '4.3000', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '86.0000', '-13.0000', '2021-04-15', 'received', '4.3000', '4.3000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2947, NULL, NULL, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', NULL, '1.8000', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '90.0000', '0.0000', '2021-04-15', 'received', '1.8000', '1.8000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2948, NULL, NULL, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '7.5900', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.3600', '3.0000', '2021-04-15', 'received', '7.5900', '7.5900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2949, NULL, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.2300', '0.0000', '70.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '16.1000', '-1.0000', '2021-04-15', 'received', '0.2300', '0.2300', '70.0000', NULL, NULL, 1, 'pc', '70.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2950, NULL, NULL, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', NULL, '7.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '21.0000', '-1.0000', '2021-04-15', 'received', '7.0000', '7.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2951, NULL, NULL, 2291, '8904091112401', 'CANDIBIOTICS EAR DROPS 5ML', NULL, '19.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '57.0000', '0.0000', '2021-04-15', 'received', '19.0000', '19.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2952, NULL, NULL, 2292, '8908010926148', 'PREGNA  PREMIUM', NULL, '55.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '110.0000', '0.0000', '2021-04-15', 'received', '55.0000', '55.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2953, NULL, NULL, 2294, '44448916', 'PENICILLIN OINTMENT', NULL, '3.5000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.5000', '5.0000', '2021-04-15', 'received', '3.5000', '3.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2954, NULL, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '0.7000', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '35.0000', '0.0000', '2021-04-15', 'received', '0.7000', '0.7000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2955, NULL, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '13.2900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '39.8700', '1.0000', '2021-04-15', 'received', '13.2900', '13.2900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2956, NULL, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '7.2000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '21.6000', '0.0000', '2021-04-15', 'received', '7.2000', '7.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2957, NULL, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '6.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.0000', '0.0000', '2021-04-15', 'received', '6.0000', '6.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2958, NULL, NULL, 2305, '18430069', 'NO-SPA 40MG S/S 20\'S', NULL, '1.3300', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.3000', '5.0000', '2021-04-15', 'received', '1.3300', '1.3300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2959, NULL, NULL, 2303, '5024655004072', 'TRANEXAMIC ACID 500MG', NULL, '16.1000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '96.6000', '0.0000', '2021-04-15', 'received', '16.1000', '16.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2960, NULL, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '140.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '420.0000', '5.0000', '2021-04-15', 'received', '140.0000', '140.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2961, NULL, NULL, 2306, '76223-3201-2', 'DYKLO SPRAY', NULL, '36.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '72.0000', '0.0000', '2021-04-15', 'received', '36.0000', '36.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2962, NULL, NULL, 2308, '083502770183', 'PSYLLIUM HUSK', NULL, '20.0000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '80.0000', '0.0000', '2021-04-15', 'received', '20.0000', '20.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2963, NULL, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '0.0000', '25.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '130.0000', '-7.0000', '2021-04-15', 'received', '5.2000', '5.2000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3057, NULL, NULL, 2239, '5021265226085', 'PERFECTIL SKIN HAIR NAIL', NULL, '26.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '156.0000', '0.0000', '2021-04-15', 'received', '26.0000', '26.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3058, NULL, NULL, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', NULL, '6.5900', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '39.5400', '-3.0000', '2021-04-15', 'received', '6.5900', '6.5900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3059, NULL, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.4800', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '0.0000', '2021-04-15', 'received', '0.4800', '0.4800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3060, NULL, NULL, 2243, '84463478', 'CALAMINE LOTION', NULL, '3.5000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.5000', '0.0000', '2021-04-15', 'received', '3.5000', '3.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3061, NULL, NULL, 2293, '03010667', 'PENICILLIN V 125MG TABS', NULL, '1.4400', '0.0000', '100.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '144.0000', '0.0000', '2021-04-15', 'received', '1.4400', '1.4400', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3062, NULL, NULL, 2304, '90589903', 'PARA-DENK SUPP 250MG', NULL, '1.3300', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '39.9000', '-10.0000', '2021-04-15', 'received', '1.3300', '1.3300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3063, NULL, 20, 2304, '90589903', 'PARA-DENK SUPP 250MG', NULL, '1.3300', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.9000', '8.0000', '2021-04-15', 'received', '1.3300', '1.3300', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3064, NULL, 20, 2293, '03010667', 'PENICILLIN V 125MG TABS', NULL, '1.4400', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '144.0000', '64.0000', '2021-04-15', 'received', '1.4400', '1.4400', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3065, NULL, 20, 2243, '84463478', 'CALAMINE LOTION', NULL, '3.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.5000', '4.0000', '2021-04-15', 'received', '3.5000', '3.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3066, NULL, 20, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.4800', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '27.0000', '2021-04-15', 'received', '0.4800', '0.4800', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3067, NULL, 20, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', NULL, '6.5900', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.5400', '0.0000', '2021-04-15', 'received', '6.5900', '6.5900', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3068, NULL, 20, 2239, '5021265226085', 'PERFECTIL SKIN HAIR NAIL', NULL, '26.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '156.0000', '3.0000', '2021-04-15', 'received', '26.0000', '26.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3069, NULL, 20, 2315, '34300059', 'PARA LOCAL', NULL, '0.3300', '0.0000', '500.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '165.0000', '340.0000', '2021-04-15', 'received', '0.3300', '0.3300', NULL, NULL, NULL, 1, 'pc', '500.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3070, NULL, 20, 2314, '30357751', 'ARTIBASE SUSP', NULL, '3.9000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.4000', '3.0000', '2021-04-15', 'received', '3.9000', '3.9000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3071, NULL, 20, 1302, 'PR-15', 'BASE COLD SYR', NULL, '4.0000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '80.0000', '0.0000', '2021-04-15', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3072, NULL, 20, 1305, 'PR-18', 'BASEKOF SYR', NULL, '5.2000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '1.0000', '2021-04-15', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3073, NULL, 20, 1886, 'PR-599', 'NORVASC 10MG 30?S', NULL, '75.9000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '455.4000', '6.0000', '2021-04-15', 'received', '75.9000', '75.9000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3074, NULL, 20, 1309, 'PR-22', 'GENTBASE EYE/EAR DROP', NULL, '1.6000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.0000', '7.0000', '2021-04-15', 'received', '1.6000', '1.6000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3075, NULL, 20, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', NULL, '0.4200', '0.0000', '15.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.3000', '10.0000', '2021-04-15', 'received', '0.4200', '0.4200', NULL, NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3076, NULL, 20, 1314, 'PR-27', 'WORMBASE SUSP', NULL, '1.2000', '0.0000', '15.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '8.0000', '2021-04-15', 'received', '1.2000', '1.2000', NULL, NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3077, NULL, 20, 1817, 'PR-530', 'TRES-ORIX 100MILS S/S', NULL, '9.5500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.6500', '2.0000', '2021-04-15', 'received', '9.5500', '9.5500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3078, NULL, 20, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '27.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '81.0000', '0.0000', '2021-04-15', 'received', '27.0000', '27.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3079, NULL, 20, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.0600', '1.0000', '2021-04-15', 'received', '19.0200', '19.0200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3080, NULL, 20, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '13.6000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.8000', '1.0000', '2021-04-15', 'received', '13.6000', '13.6000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3081, NULL, 20, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '17.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '53.4000', '3.0000', '2021-04-15', 'received', '17.8000', '17.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3082, NULL, 20, 2236, '6033000270108', 'EFPAC JNR', NULL, '5.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.5000', '0.0000', '2021-04-15', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3083, NULL, 20, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.0600', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '63.6000', '11.0000', '2021-04-15', 'received', '1.0600', '1.0600', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3084, NULL, 20, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '39.0000', '0.0000', '8.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '312.0000', '0.0000', '2021-04-15', 'received', '39.0000', '39.0000', NULL, NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3085, NULL, 20, 2246, '5017007023364', 'AMILODIPINE 5MG TEVA', NULL, '6.8000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.8000', '6.0000', '2021-04-15', 'received', '6.8000', '6.8000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3086, NULL, 20, 2247, '29226629', 'TRISILICATE SYR', NULL, '2.5000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.0000', '5.0000', '2021-04-15', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3087, NULL, 20, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '2.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '0.0000', '2021-04-15', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3088, NULL, 20, 2249, '22244269', 'EXPECT SEED', NULL, '2.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-04-15', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3089, NULL, 20, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.8900', '0.0000', '2021-04-15', 'received', '6.8900', '6.8900', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3090, NULL, 20, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '41.3400', '2.0000', '2021-04-15', 'received', '6.8900', '6.8900', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3091, NULL, 20, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.6400', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '58.2000', '3.0000', '2021-04-15', 'received', '11.6400', '11.6400', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3092, NULL, 20, 2252, '08741188', 'FLUREST TABS', NULL, '9.3000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.2000', '0.0000', '2021-04-15', 'received', '9.3000', '9.3000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3093, NULL, 20, 2253, '6221045010159', 'ACTIFED TAB', NULL, '9.2500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.2500', '1.0000', '2021-04-15', 'received', '9.2500', '9.2500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3094, NULL, 20, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '53.8200', '1.0000', '2021-04-15', 'received', '17.9400', '17.9400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3095, NULL, 20, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.4900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.4700', '0.0000', '2021-04-15', 'received', '17.4900', '17.4900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3096, NULL, 20, 2256, '41965129', 'ZINCOFER SYR', NULL, '12.7400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.2200', '0.0000', '2021-04-15', 'received', '12.7400', '12.7400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3097, NULL, 20, 2257, '84888052', 'OVACARE TABS', NULL, '4.0000', '0.0000', '15.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '15.0000', '2021-04-15', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3098, NULL, 20, 2258, '8901138180614', 'SPEMAN TABS', NULL, '0.3500', '0.0000', '300.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '105.0000', '300.0000', '2021-04-15', 'received', '0.3500', '0.3500', NULL, NULL, NULL, 1, 'pc', '300.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3099, NULL, 20, 2258, '8901138180614', 'SPEMAN TABS', NULL, '0.3500', '0.0000', '300.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '105.0000', '300.0000', '2021-04-15', 'received', '0.3500', '0.3500', NULL, NULL, NULL, 1, 'pc', '300.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3100, NULL, 20, 2259, '72759006', 'DRAGON SPRAY', NULL, '19.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '76.0000', '1.0000', '2021-04-15', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3101, NULL, 20, 2260, '29581054', 'DRAGON TABS', NULL, '4.2000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.4000', '0.0000', '2021-04-15', 'received', '4.2000', '4.2000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3102, NULL, 20, 2261, '2112345602905', 'TIGER SPRAY', NULL, '18.9900', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '75.9600', '2.0000', '2021-04-15', 'received', '18.9900', '18.9900', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3103, NULL, 20, 2262, '69085595', 'LENOR CONTRACEPTIVE', NULL, '4.5000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '6.0000', '2021-04-15', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3104, NULL, 20, 2263, '6036000090417', 'LEVON 2', NULL, '4.9800', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.8000', '8.0000', '2021-04-15', 'received', '4.9800', '4.9800', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3105, NULL, 20, 2265, '5014502000807', 'MINAMINO SYRUP M/S', NULL, '28.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '56.0000', '0.0000', '2021-04-15', 'received', '28.0000', '28.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3106, NULL, 20, 2266, '8906046070682', 'KIDIVITE SYR L/S', NULL, '6.4900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.4700', '2.0000', '2021-04-15', 'received', '6.4900', '6.4900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3107, NULL, 20, 2267, '52018792', 'KIDICS SYRUO', NULL, '9.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.5000', '2.0000', '2021-04-15', 'received', '9.5000', '9.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3108, NULL, 20, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', NULL, '14.6000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.8000', '0.0000', '2021-04-15', 'received', '14.6000', '14.6000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3109, NULL, 20, 2269, '48726368', 'STOPKOFF CHIDREN', NULL, '4.9800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.9400', '2.0000', '2021-04-15', 'received', '4.9800', '4.9800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3110, NULL, 20, 2270, '64645876', 'MIST POT CIT', NULL, '2.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.5000', '2.0000', '2021-04-15', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3111, NULL, 20, 2271, '9556100104342', 'FLUCOR DAY', NULL, '12.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '0.0000', '2021-04-15', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3112, NULL, 20, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.5000', '4.0000', '2021-04-15', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3113, NULL, 20, 2273, '04120489', 'RHIZIN SYRP', NULL, '2.6700', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.0200', '0.0000', '2021-04-15', 'received', '2.6700', '2.6700', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3114, NULL, 20, 2274, '55192131', 'STOPKOFF EXP CHN', NULL, '3.9800', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.9000', '0.0000', '2021-04-15', 'received', '3.9800', '3.9800', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3115, NULL, 20, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', NULL, '1.0900', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.7000', '0.0000', '2021-04-15', 'received', '1.0900', '1.0900', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3116, NULL, 20, 2276, '52459644', 'DALACIN C SYR', NULL, '55.1000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.1000', '1.0000', '2021-04-15', 'received', '55.1000', '55.1000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3117, NULL, 20, 2277, '71311341', 'ZUBES TABLETS ', NULL, '0.7800', '0.0000', '25.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.5000', '4.0000', '2021-04-15', 'received', '0.7800', '0.7800', NULL, NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3118, NULL, 20, 2278, '55291532', 'HOT WATER BOTTLE UNCOVERED', NULL, '14.9900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.9800', '2.0000', '2021-04-15', 'received', '14.9900', '14.9900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3119, NULL, 20, 2279, '6161105661986', 'PANADOL EXTRA', NULL, '2.6000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.0000', '3.0000', '2021-04-15', 'received', '2.6000', '2.6000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3120, NULL, 20, 2280, '8995858999991', 'PROCOLD TABS', NULL, '1.9000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '95.0000', '4.0000', '2021-04-15', 'received', '1.9000', '1.9000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3121, NULL, 20, 2281, '087450449108', 'TYLENOL EXTRA', NULL, '3.0000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '150.0000', '12.0000', '2021-04-15', 'received', '3.0000', '3.0000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3122, NULL, 20, 2282, '40904860', 'SOVIT VIT E CAPS', NULL, '18.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.0000', '3.0000', '2021-04-15', 'received', '18.0000', '18.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3123, NULL, 20, 2283, '8906009232225', 'LOFNAC TAB 100MG', NULL, '1.4300', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.6000', '6.0000', '2021-04-15', 'received', '1.4300', '1.4300', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3124, NULL, 20, 2284, '8906009232232', 'LOFNAC-P TAB', NULL, '1.3000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '18.0000', '2021-04-15', 'received', '1.3000', '1.3000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3125, NULL, 20, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '179.0000', '2.0000', '2021-04-15', 'received', '35.8000', '35.8000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3126, NULL, 20, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '4.3000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '86.0000', '9.0000', '2021-04-15', 'received', '4.3000', '4.3000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3127, NULL, 20, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', NULL, '1.8000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.0000', '40.0000', '2021-04-15', 'received', '1.8000', '1.8000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3128, NULL, 20, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '7.5900', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.3600', '2.0000', '2021-04-15', 'received', '7.5900', '7.5900', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3129, NULL, 20, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.2300', '0.0000', '70.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.1000', '8.0000', '2021-04-15', 'received', '0.2300', '0.2300', NULL, NULL, NULL, 1, 'pc', '70.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3130, NULL, 20, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', NULL, '7.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.0000', '0.0000', '2021-04-15', 'received', '7.0000', '7.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3131, NULL, 20, 2291, '8904091112401', 'CANDIBIOTICS EAR DROPS 5ML', NULL, '19.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.0000', '0.0000', '2021-04-15', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3132, NULL, 20, 2292, '8908010926148', 'PREGNA  PREMIUM', NULL, '55.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '110.0000', '2.0000', '2021-04-15', 'received', '55.0000', '55.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3133, NULL, 20, 2294, '44448916', 'PENICILLIN OINTMENT', NULL, '3.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.5000', '1.0000', '2021-04-15', 'received', '3.5000', '3.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3134, NULL, 20, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '0.7000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.0000', '41.0000', '2021-04-15', 'received', '0.7000', '0.7000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3135, NULL, 20, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '13.2900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.8700', '1.0000', '2021-04-15', 'received', '13.2900', '13.2900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3136, NULL, 20, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '7.2000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.6000', '1.0000', '2021-04-15', 'received', '7.2000', '7.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3137, NULL, 20, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '6.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '1.0000', '2021-04-15', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3138, NULL, 20, 2305, '18430069', 'NO-SPA 40MG S/S 20\'S', NULL, '1.3300', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.3000', '6.0000', '2021-04-15', 'received', '1.3300', '1.3300', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3139, NULL, 20, 2303, '5024655004072', 'TRANEXAMIC ACID 500MG', NULL, '16.1000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '96.6000', '3.0000', '2021-04-15', 'received', '16.1000', '16.1000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3140, NULL, 20, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '140.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '420.0000', '2.0000', '2021-04-15', 'received', '140.0000', '140.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3141, NULL, 20, 2306, '76223-3201-2', 'DYKLO SPRAY', NULL, '36.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.0000', '2.0000', '2021-04-15', 'received', '36.0000', '36.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3142, NULL, 20, 2308, '083502770183', 'PSYLLIUM HUSK', NULL, '20.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '80.0000', '1.0000', '2021-04-15', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3143, NULL, 20, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '0.0000', '25.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '130.0000', '2.0000', '2021-04-15', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3144, NULL, 20, 2240, '5000198522501', 'PIRITON SYR', NULL, '33.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '66.0000', '0.0000', '2021-04-15', 'received', '33.0000', '33.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3165, NULL, NULL, 1755, 'PR-468', 'STOPKOF EXPT( CARBOCISTEINE)5?ULT 100ML', NULL, '5.5900', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '33.5400', '0.0000', '2021-04-15', 'received', '5.5900', '5.5900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3166, NULL, NULL, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', NULL, '4.9900', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '99.8000', '-6.0000', '2021-04-15', 'received', '4.9900', '4.9900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3167, NULL, NULL, 1757, 'PR-470', 'PERMOXYL (AMOX\'LIN ) SUSP 100ML', NULL, '4.4000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.4000', '0.0000', '2021-04-15', 'received', '4.4000', '4.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3168, NULL, NULL, 1758, 'PR-471', 'PREGNACARE (19) CAPS 30', NULL, '42.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '84.0000', '0.0000', '2021-04-15', 'received', '42.0000', '42.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3169, NULL, NULL, 2001, '012', 'BELLS OLIVE OIL 70ML', NULL, '2.5000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '12.5000', '-5.0000', '2021-04-15', 'received', '2.5000', '2.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3170, NULL, NULL, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', NULL, '1.5900', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '3.1800', '0.0000', '2021-04-15', 'received', '1.5900', '1.5900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3171, NULL, NULL, 1761, 'PR-474', 'OMECET CAPS 100', NULL, '1.8200', '0.0000', '40.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '72.8000', '-1.0000', '2021-04-15', 'received', '1.8200', '1.8200', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3172, NULL, NULL, 1762, 'PR-475', 'KIDIVITE MULTIVITAMIN DROPS 25ML', NULL, '8.2900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.8700', '-1.0000', '2021-04-15', 'received', '8.2900', '8.2900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3173, NULL, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.6900', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '23.4500', '5.0000', '2021-04-15', 'received', '4.6900', '4.6900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3174, NULL, NULL, 1764, 'PR-477', 'METHYLATED  SPIRIT  125ML', NULL, '90.0000', '0.0000', '5.0000', 4, '0.0000', 1, '0', NULL, NULL, NULL, '450.0000', '0.0000', '2021-04-15', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3175, NULL, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '5.3900', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.9500', '-2.0000', '2021-04-15', 'received', '5.3900', '5.3900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3176, NULL, NULL, 1766, 'PR-479', 'HIST AZINE SYRUP 60ML', NULL, '2.6900', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '16.1400', '-1.0000', '2021-04-15', 'received', '2.6900', '2.6900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3177, NULL, 9, 1766, 'PR-479', 'HIST AZINE SYRUP 60ML', NULL, '2.6900', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.1400', '5.0000', '2021-04-15', 'received', '2.6900', '2.6900', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3178, NULL, 9, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '5.3900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.9500', '2.0000', '2021-04-15', 'received', '5.3900', '5.3900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3179, NULL, 9, 1764, 'PR-477', 'METHYLATED  SPIRIT  125ML', NULL, '90.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '450.0000', '4.0000', '2021-04-15', 'received', '90.0000', '90.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3180, NULL, 9, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.6900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.4500', '2.0000', '2021-04-15', 'received', '4.6900', '4.6900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3181, NULL, 9, 1762, 'PR-475', 'KIDIVITE MULTIVITAMIN DROPS 25ML', NULL, '8.2900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.8700', '1.0000', '2021-04-15', 'received', '8.2900', '8.2900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3182, NULL, 9, 1761, 'PR-474', 'OMECET CAPS 100', NULL, '1.8200', '0.0000', '40.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.8000', '17.0000', '2021-04-15', 'received', '1.8200', '1.8200', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3183, NULL, 9, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', NULL, '1.5900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '3.1800', '0.0000', '2021-04-15', 'received', '1.5900', '1.5900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3184, NULL, 9, 2001, '012', 'BELLS OLIVE OIL 70ML', NULL, '2.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.5000', '3.0000', '2021-04-15', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3185, NULL, 9, 1758, 'PR-471', 'PREGNACARE (19) CAPS 30', NULL, '42.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '84.0000', '2.0000', '2021-04-15', 'received', '42.0000', '42.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3186, NULL, 9, 1757, 'PR-470', 'PERMOXYL (AMOX\'LIN ) SUSP 100ML', NULL, '4.4000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.4000', '6.0000', '2021-04-15', 'received', '4.4000', '4.4000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3187, NULL, 9, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', NULL, '4.9900', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '99.8000', '2.0000', '2021-04-15', 'received', '4.9900', '4.9900', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3188, NULL, 9, 1755, 'PR-468', 'STOPKOF EXPT( CARBOCISTEINE)5?ULT 100ML', NULL, '5.5900', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.5400', '2.0000', '2021-04-15', 'received', '5.5900', '5.5900', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3203, NULL, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '5.7900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.3700', '0.0000', '2021-04-15', 'received', '5.7900', '5.7900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3204, NULL, NULL, 1629, 'PR-342', 'GEN-M SUSP', NULL, '13.7900', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '68.9500', '-3.0000', '2021-04-15', 'received', '13.7900', '13.7900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3205, NULL, NULL, 1631, '8850769012651', 'ENAT 4001U CAPS', NULL, '36.9400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '110.8200', '0.0000', '2021-04-15', 'received', '36.9400', '36.9400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3206, NULL, NULL, 1632, '5024874030630', 'VALUPAK VITE 4001U', NULL, '19.5000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '97.5000', '-3.0000', '2021-04-15', 'received', '19.5000', '19.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3207, NULL, NULL, 1633, '8901138836832', 'TENTEX ROYAL CAPS', NULL, '31.0600', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '186.3600', '0.0000', '2021-04-15', 'received', '31.0600', '31.0600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3208, NULL, NULL, 1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', NULL, '13.1000', '0.0000', '15.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '196.5000', '0.0000', '2021-04-15', 'received', '13.1000', '13.1000', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3209, NULL, NULL, 1636, '4031571069116', 'VIT-B DENK', NULL, '9.8000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '98.0000', '0.0000', '2021-04-15', 'received', '9.8000', '9.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3210, NULL, NULL, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '10.2000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '102.0000', '0.0000', '2021-04-15', 'received', '10.2000', '10.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3211, NULL, NULL, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '5.8200', '0.0000', '16.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '93.1200', '16.0000', '2021-04-15', 'received', '5.8200', '5.8200', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3212, NULL, NULL, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', NULL, '6.6300', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '33.1500', '0.0000', '2021-04-15', 'received', '6.6300', '6.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3213, NULL, NULL, 1640, 'PR-353', 'HISTAZINE SYR', NULL, '2.6500', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.2500', '0.0000', '2021-04-15', 'received', '2.6500', '2.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3214, NULL, NULL, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', NULL, '0.9800', '0.0000', '108.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '105.8400', '-3.0000', '2021-04-15', 'received', '0.9800', '0.9800', '108.0000', NULL, NULL, 1, 'pc', '108.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3215, NULL, NULL, 1643, '6001135505433', 'BENYLIN ORIGINAL', NULL, '40.3900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '121.1700', '-1.0000', '2021-04-15', 'received', '40.3900', '40.3900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3216, NULL, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '33.8200', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '67.6400', '0.0000', '2021-04-15', 'received', '33.8200', '33.8200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3217, NULL, NULL, 1645, 'PR-358', 'AMCOF ADULT SYRUP', NULL, '4.7200', '0.0000', '8.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '37.7600', '0.0000', '2021-04-15', 'received', '4.7200', '4.7200', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3218, NULL, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '4.7200', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '47.2000', '-3.0000', '2021-04-15', 'received', '4.7200', '4.7200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3219, NULL, NULL, 1648, '8902404045453', 'ASTHALEX SYR 100ML', NULL, '5.6700', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.0100', '0.0000', '2021-04-15', 'received', '5.6700', '5.6700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3220, NULL, NULL, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '11.1900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '33.5700', '-2.0000', '2021-04-15', 'received', '11.1900', '11.1900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3221, NULL, NULL, 1650, 'PR-363', 'ZUBES EXTRA', NULL, '14.5800', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '87.4800', '-1.0000', '2021-04-15', 'received', '14.5800', '14.5800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3222, NULL, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.8300', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '68.3000', '-8.0000', '2021-04-15', 'received', '6.8300', '6.8300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3223, NULL, NULL, 1652, 'PR-365', 'CARBODEL JNR SYR', NULL, '4.0000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '16.0000', '0.0000', '2021-04-15', 'received', '4.0000', '4.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3224, NULL, NULL, 1653, 'PR-366', 'PRAZIQUANTEL 600MG TAB 100\'(ECL)', NULL, '8.6200', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '86.2000', '0.0000', '2021-04-15', 'received', '8.6200', '8.6200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3225, NULL, NULL, 1654, '8904091117703', 'RELCER GEL', NULL, '8.7400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.2200', '-1.0000', '2021-04-15', 'received', '8.7400', '8.7400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3226, NULL, NULL, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', NULL, '33.8400', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '67.6800', '0.0000', '2021-04-15', 'received', '33.8400', '33.8400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3227, NULL, NULL, 1656, '8902457848759', 'STOMOCAINE SUP', NULL, '14.6700', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '44.0100', '0.0000', '2021-04-15', 'received', '14.6700', '14.6700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3228, NULL, NULL, 1657, '5013548102087', 'MEDICATED CHARCOAL', NULL, '0.3800', '0.0000', '100.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '38.0000', '0.0000', '2021-04-15', 'received', '0.3800', '0.3800', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3229, NULL, NULL, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '27.9300', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '83.7900', '-1.0000', '2021-04-15', 'received', '27.9300', '27.9300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3230, NULL, NULL, 1659, '5021265228027', 'OMEGA H3 CAP', NULL, '40.6500', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '81.3000', '0.0000', '2021-04-15', 'received', '40.6500', '40.6500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3231, NULL, NULL, 1660, '5034593050901', 'NEOVITA CAP', NULL, '53.0800', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '106.1600', '0.0000', '2021-04-15', 'received', '53.0800', '53.0800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3232, NULL, NULL, 1661, 'PR-374', 'JOINTFLEX PLUS TABS 30\'5', NULL, '32.1800', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '64.3600', '-1.0000', '2021-04-15', 'received', '32.1800', '32.1800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3233, NULL, NULL, 1662, '3400970000913', 'IDEOS ~', NULL, '50.2400', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '100.4800', '2.0000', '2021-04-15', 'received', '50.2400', '50.2400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3234, NULL, NULL, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '83.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '166.0000', '0.0000', '2021-04-15', 'received', '83.0000', '83.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3235, NULL, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '0.0000', '24.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '31.2000', '-11.0000', '2021-04-15', 'received', '1.3000', '1.3000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3236, NULL, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7100', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.5500', '-5.0000', '2021-04-15', 'received', '2.7100', '2.7100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3237, NULL, NULL, 1966, '9556564303336', 'FIESTA CONDOM DOTTED', NULL, '2.7100', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.5500', '-1.0000', '2021-04-15', 'received', '2.7100', '2.7100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3238, NULL, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '12.7000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '38.1000', '1.0000', '2021-04-15', 'received', '12.7000', '12.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3239, NULL, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '4.5300', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.3000', '-4.0000', '2021-04-15', 'received', '4.5300', '4.5300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3240, NULL, 13, 1646, 'PR-359', 'AMCOF BABY', NULL, '4.5300', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.3000', '2.0000', '2021-04-15', 'received', '4.5300', '4.5300', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3241, NULL, 13, 1668, '8906016831572', 'Acidom Caps', NULL, '12.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.1000', '1.0000', '2021-04-15', 'received', '12.7000', '12.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3242, NULL, 13, 1966, '9556564303336', 'FIESTA CONDOM DOTTED', NULL, '2.7100', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.5500', '0.0000', '2021-04-15', 'received', '2.7100', '2.7100', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3243, NULL, 13, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7100', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.5500', '2.0000', '2021-04-15', 'received', '2.7100', '2.7100', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3244, NULL, 13, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '0.0000', '24.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.2000', '6.0000', '2021-04-15', 'received', '1.3000', '1.3000', NULL, NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3245, NULL, 13, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '83.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '166.0000', '0.0000', '2021-04-15', 'received', '83.0000', '83.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3246, NULL, 13, 1662, '3400970000913', 'IDEOS ~', NULL, '50.2400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '100.4800', '1.0000', '2021-04-15', 'received', '50.2400', '50.2400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3247, NULL, 13, 1661, 'PR-374', 'JOINTFLEX PLUS TABS 30\'5', NULL, '32.1800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '64.3600', '2.0000', '2021-04-15', 'received', '32.1800', '32.1800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3248, NULL, 13, 1660, '5034593050901', 'NEOVITA CAP', NULL, '53.0800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '106.1600', '2.0000', '2021-04-15', 'received', '53.0800', '53.0800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3249, NULL, 13, 1659, '5021265228027', 'OMEGA H3 CAP', NULL, '40.6500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '81.3000', '0.0000', '2021-04-15', 'received', '40.6500', '40.6500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3250, NULL, 13, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '27.9300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '83.7900', '0.0000', '2021-04-15', 'received', '27.9300', '27.9300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3251, NULL, 13, 1657, '5013548102087', 'MEDICATED CHARCOAL', NULL, '0.3800', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.0000', '0.0000', '2021-04-15', 'received', '0.3800', '0.3800', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3252, NULL, 13, 1656, '8902457848759', 'STOMOCAINE SUP', NULL, '14.6700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.0100', '2.0000', '2021-04-15', 'received', '14.6700', '14.6700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3253, NULL, 13, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', NULL, '33.8400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '67.6800', '1.0000', '2021-04-15', 'received', '33.8400', '33.8400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3254, NULL, 13, 1654, '8904091117703', 'RELCER GEL', NULL, '8.7400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.2200', '2.0000', '2021-04-15', 'received', '8.7400', '8.7400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3255, NULL, 13, 1653, 'PR-366', 'PRAZIQUANTEL 600MG TAB 100\'(ECL)', NULL, '8.6200', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '86.2000', '9.0000', '2021-04-15', 'received', '8.6200', '8.6200', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3256, NULL, 13, 1652, 'PR-365', 'CARBODEL JNR SYR', NULL, '4.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.0000', '4.0000', '2021-04-15', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3257, NULL, 13, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.8300', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '68.3000', '4.0000', '2021-04-15', 'received', '6.8300', '6.8300', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3258, NULL, 13, 1650, 'PR-363', 'ZUBES EXTRA', NULL, '14.5800', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '87.4800', '1.0000', '2021-04-15', 'received', '14.5800', '14.5800', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3259, NULL, 13, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '11.1900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.5700', '0.0000', '2021-04-15', 'received', '11.1900', '11.1900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3260, NULL, 13, 1648, '8902404045453', 'ASTHALEX SYR 100ML', NULL, '5.6700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.0100', '3.0000', '2021-04-15', 'received', '5.6700', '5.6700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3261, NULL, 13, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '4.7200', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '47.2000', '0.0000', '2021-04-15', 'received', '4.7200', '4.7200', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3262, NULL, 13, 1645, 'PR-358', 'AMCOF ADULT SYRUP', NULL, '4.7200', '0.0000', '8.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.7600', '3.0000', '2021-04-15', 'received', '4.7200', '4.7200', NULL, NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3263, NULL, 13, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '33.8200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '67.6400', '0.0000', '2021-04-15', 'received', '33.8200', '33.8200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3264, NULL, 13, 1643, '6001135505433', 'BENYLIN ORIGINAL', NULL, '40.3900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '121.1700', '0.0000', '2021-04-15', 'received', '40.3900', '40.3900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3265, NULL, 13, 1642, '6001135507628', 'BENYLIN DRY', NULL, '31.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '63.0000', '0.0000', '2021-04-15', 'received', '31.5000', '31.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3266, NULL, 13, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', NULL, '0.9800', '0.0000', '108.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '105.8400', '39.0000', '2021-04-15', 'received', '0.9800', '0.9800', NULL, NULL, NULL, 1, 'pc', '108.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3267, NULL, 13, 1640, 'PR-353', 'HISTAZINE SYR', NULL, '2.6500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.2500', '0.0000', '2021-04-15', 'received', '2.6500', '2.6500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3268, NULL, 13, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', NULL, '6.6300', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.1500', '1.0000', '2021-04-15', 'received', '6.6300', '6.6300', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3269, NULL, 13, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '5.8200', '0.0000', '16.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '93.1200', '0.0000', '2021-04-15', 'received', '5.8200', '5.8200', NULL, NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3270, NULL, 13, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '10.2000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '102.0000', '5.0000', '2021-04-15', 'received', '10.2000', '10.2000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3271, NULL, 13, 1636, '4031571069116', 'VIT-B DENK', NULL, '9.8000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '98.0000', '1.0000', '2021-04-15', 'received', '9.8000', '9.8000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3272, NULL, 13, 1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', NULL, '13.1000', '0.0000', '15.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '196.5000', '0.0000', '2021-04-15', 'received', '13.1000', '13.1000', NULL, NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3273, NULL, 13, 1633, '8901138836832', 'TENTEX ROYAL CAPS', NULL, '31.0600', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '186.3600', '6.0000', '2021-04-15', 'received', '31.0600', '31.0600', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3274, NULL, 13, 1632, '5024874030630', 'VALUPAK VITE 4001U', NULL, '19.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '97.5000', '1.0000', '2021-04-15', 'received', '19.5000', '19.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3275, NULL, 13, 1631, '8850769012651', 'ENAT 4001U CAPS', NULL, '36.9400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '110.8200', '2.0000', '2021-04-15', 'received', '36.9400', '36.9400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3276, NULL, 13, 1629, 'PR-342', 'GEN-M SUSP', NULL, '13.7900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '68.9500', '3.0000', '2021-04-15', 'received', '13.7900', '13.7900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3277, NULL, 13, 1628, 'PR-341', 'GUDAPET SYR', NULL, '5.7900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.3700', '2.0000', '2021-04-15', 'received', '5.7900', '5.7900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3278, NULL, 13, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', NULL, '13.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.0000', '3.0000', '2021-04-15', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3279, NULL, 13, 1439, 'PR-152', 'VICTAGO s s', NULL, '1.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.0000', '10.0000', '2021-04-15', 'received', '1.0000', '1.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3280, NULL, 13, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '10.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '2.0000', '2021-04-15', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3281, NULL, NULL, 1624, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3282, NULL, NULL, 1904, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3283, 31, NULL, 1676, '8902451254525', 'LUEX CHILD CHESTY', NULL, '7.9000', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7000', '3.0000', '2021-03-31', 'received', '7.9000', '7.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3284, 31, NULL, 1677, '8902546578543', 'LUEX BABY COUGH', NULL, '7.8000', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '3.0000', '2021-03-31', 'received', '7.8000', '7.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3285, 31, NULL, 1380, '4008500060070', 'PRIMOLUT N TABS 5MG- ORIGINAL', NULL, '7.7000', '10.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.4000', '0.0000', '2021-03-31', 'received', '7.7000', '7.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3286, 31, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.5000', '2.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-03-31', 'received', '1.5000', '1.5000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3287, 31, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '31.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.7300', '0.0000', '2021-03-31', 'received', '23.9100', '23.9100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3288, 31, NULL, 2135, '42431074', 'POSTINOR LOCAL', NULL, '2.5000', '5.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-03-31', 'received', '2.5000', '2.5000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3289, 31, NULL, 1527, '8904159609416', 'PREGASAFE 75MG TAB', NULL, '13.1000', '17.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.6000', '0.0000', '2021-03-31', 'received', '13.1000', '13.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '13.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3290, 31, NULL, 1542, '8902502108920', 'INFAV OINT', NULL, '14.7800', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.3400', '0.0000', '2021-03-31', 'received', '14.7800', '14.7800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3291, 31, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.3000', '3.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-03-31', 'received', '2.3000', '2.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3292, 31, NULL, 1555, '3582910081043', 'RHINATHIOL ADULT SYR 125ML', NULL, '22.2400', '29.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.7200', '0.0000', '2021-03-31', 'received', '22.2400', '22.2400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3293, 31, NULL, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', NULL, '20.2400', '27.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.7200', '0.0000', '2021-03-31', 'received', '20.2400', '20.2400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3294, 31, NULL, 1304, 'PR-17', 'BASECHLOR DROPS', NULL, '1.4500', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.4500', '0.0000', '2021-03-31', 'received', '1.4500', '1.4500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '1.4500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3295, 31, NULL, 2083, '0114', 'CO-TRIM  TAB (LETAP) ', NULL, '0.5800', '2.0000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '0.0000', '2021-03-31', 'received', '0.5800', '0.5800', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.5800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3296, 31, NULL, 1323, 'PR-36', 'GLIZONE 30MG', NULL, '7.9900', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9700', '0.0000', '2021-03-31', 'received', '7.9900', '7.9900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3297, 31, NULL, 1324, '6181100465976', 'MEDICAL ICE COOL', NULL, '4.0000', '5.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-03-31', 'received', '4.0000', '4.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3298, 31, NULL, 1325, '692771017440', 'MUPIROCIN OINTMENT 15G', NULL, '23.9800', '32.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.9600', '0.0000', '2021-03-31', 'received', '23.9800', '23.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3299, 31, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '3.0300', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.1500', '0.0000', '2021-03-31', 'received', '3.0300', '3.0300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.0300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3300, 31, NULL, 2079, '29942739', 'HIGH ELASTIC CREPE BANDAGE 2\"', NULL, '2.3000', '3.5000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '0.0000', '2021-03-31', 'received', '2.3000', '2.3000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '2.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3301, 31, NULL, 1328, 'PR-41', 'HIGH ELASTIC CREPE BANDAGE 4\"', NULL, '3.1500', '4.5000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.8000', '0.0000', '2021-03-31', 'received', '3.1500', '3.1500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3302, 31, NULL, 1329, 'PR-42', 'ZINC OXIDE PLASTER ROLL 41CHS', NULL, '8.5000', '11.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2021-03-31', 'received', '8.5000', '8.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3303, 31, NULL, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', NULL, '2.8000', '4.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '0.0000', '2021-03-31', 'received', '2.8000', '2.8000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '2.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3304, 31, NULL, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', NULL, '4.2000', '5.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2000', '0.0000', '2021-03-31', 'received', '4.2000', '4.2000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3305, 31, NULL, 1332, 'PR-45', 'ZINC OXIDE PLATER ROLL 31CH', NULL, '7.5000', '10.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-03-31', 'received', '7.5000', '7.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3306, 31, NULL, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', NULL, '0.5500', '1.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.6000', '0.0000', '2021-03-31', 'received', '0.5500', '0.5500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '0.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3307, 31, NULL, 1334, 'PR-47', 'GAUSE BANDAGE 41CH', NULL, '0.7000', '1.5000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.4000', '0.0000', '2021-03-31', 'received', '0.7000', '0.7000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '0.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3308, 31, NULL, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '0.8500', '2.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2000', '0.0000', '2021-03-31', 'received', '0.8500', '0.8500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '0.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3309, 31, NULL, 1336, 'PR-49', 'RUBBING ALCOHOL -MUL TITI', NULL, '15.0000', '20.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-03-31', 'received', '15.0000', '15.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3310, 31, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-03-31', 'received', '2.0000', '2.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3311, 31, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '4.0000', '5.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-03-31', 'received', '4.0000', '4.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3312, 31, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '1.5000', '2.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.5000', '0.0000', '2021-03-31', 'received', '1.5000', '1.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3313, 31, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '2.5000', '3.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '0.0000', '2021-03-31', 'received', '2.5000', '2.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3314, 31, NULL, 1341, 'PR-54', 'COTTON WOOL 500G', NULL, '13.5000', '18.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '0.0000', '2021-03-31', 'received', '13.5000', '13.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3315, 31, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.5300', '7.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.6000', '0.0000', '2021-03-31', 'received', '5.5300', '5.5300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '5.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3316, 31, NULL, 1343, '4008500060353', 'PROGYNOVA 2MG TABS', NULL, '43.9000', '58.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.8000', '0.0000', '2021-03-31', 'received', '43.9000', '43.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '43.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3317, 31, NULL, 1344, '8901082005391', 'EVANOVA CAPS', NULL, '32.0000', '42.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '0.0000', '2021-03-31', 'received', '32.0000', '32.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3318, 31, NULL, 1345, '8901082005339', 'ADDYZOA CAPS', NULL, '44.0000', '58.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2021-03-31', 'received', '44.0000', '44.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '44.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3319, 31, NULL, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.9300', '1.2000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8000', '13.0000', '2021-03-31', 'received', '0.9300', '0.9300', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.9300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3320, 31, NULL, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '3.4000', '4.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '41.0000', '2021-03-31', 'received', '3.4000', '3.4000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3321, 31, NULL, 1348, '8901077166144', 'APDYL-H COUGH SYRUP 200ML', NULL, '15.5000', '20.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2021-03-31', 'received', '15.5000', '15.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3322, 31, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '32.5000', '43.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '0.0000', '2021-03-31', 'received', '32.5000', '32.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '32.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3323, 31, NULL, 1350, '4084500846548', 'PEPTOBISMOL S/S 120ML', NULL, '30.0000', '40.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-03-31', 'received', '30.0000', '30.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3324, 31, NULL, 1351, '4084500846579', 'PEPTO BISMOL 240ML', NULL, '35.0000', '46.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2021-03-31', 'received', '35.0000', '35.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3325, 31, NULL, 2080, '06626042', 'KLIRE ATACID 125ML', NULL, '7.9000', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7000', '0.0000', '2021-03-31', 'received', '7.9000', '7.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3326, 31, NULL, 1353, '5060085540254', 'SELEVITE TABS', NULL, '20.5000', '27.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.0000', '0.0000', '2021-03-31', 'received', '20.5000', '20.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '20.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3327, 31, NULL, 1354, '5024874700106', 'HEALTH LINK WOMAN', NULL, '39.7500', '53.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.5000', '0.0000', '2021-03-31', 'received', '39.7500', '39.7500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '39.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3328, 31, NULL, 1355, 'PR-68', 'LIVOPAT CAPS- INDUS', NULL, '17.6200', '23.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8600', '0.0000', '2021-03-31', 'received', '17.6200', '17.6200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3329, 31, NULL, 1356, '5021265221608', 'CARDIOACE CAPS', NULL, '51.9800', '68.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.9600', '0.0000', '2021-03-31', 'received', '51.9800', '51.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '51.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3330, 31, NULL, 1676, '8902451254525', 'LUEX CHILD CHESTY', NULL, '7.9000', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.7000', '3.0000', '2021-03-31', 'received', '7.9000', '7.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3331, 31, NULL, 1677, '8902546578543', 'LUEX BABY COUGH', NULL, '7.8000', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '3.0000', '2021-03-31', 'received', '7.8000', '7.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3332, 31, NULL, 1359, 'PR-72', 'GALVUS 50 2X14', NULL, '37.3400', '48.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '373.4000', '0.0000', '2021-03-31', 'received', '37.3400', '37.3400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '37.3400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3333, 31, NULL, 1360, 'PR-73', 'GALVUS MET FCT 50/1000MG', NULL, '26.7000', '38.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.2000', '0.0000', '2021-03-31', 'received', '26.7000', '26.7000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '26.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3334, 31, NULL, 1361, '5021265221585', 'PREGNACARE (BE4) CONCEPTION ', NULL, '59.0300', '78.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0600', '0.0000', '2021-03-31', 'received', '59.0300', '59.0300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '59.0300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3335, 31, NULL, 1952, '5021265221004', 'MENOPACE CAP(UK)', NULL, '37.2600', '49.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5200', '0.0000', '2021-03-31', 'received', '37.2600', '37.2600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '37.2600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3336, 31, NULL, 1362, '8906078360300', 'BETA-CORT EEN DROPS 0.1 %', NULL, '19.0000', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2021-03-31', 'received', '19.0000', '19.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3337, 31, NULL, 1363, '5000456022774', 'CRESTOR 5MG TABS', NULL, '81.4000', '107.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.8000', '0.0000', '2021-03-31', 'received', '81.4000', '81.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '81.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3338, 31, NULL, 1364, '5021265244447', 'WELLWOMAN CAPS 70+', NULL, '52.5500', '69.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.1000', '0.0000', '2021-03-31', 'received', '52.5500', '52.5500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '52.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3339, 31, NULL, 1365, '8906116211496', 'PROWOMAN', NULL, '38.9800', '51.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.9600', '0.0000', '2021-03-31', 'received', '38.9800', '38.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '38.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3340, 31, NULL, 1366, 'PR-79', 'THYROXINE 100MG', NULL, '15.2900', '20.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.7400', '0.0000', '2021-03-31', 'received', '15.2900', '15.2900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '15.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3341, 31, NULL, 1953, '56415263', 'STAGYL TABS', NULL, '2.4900', '4.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.9000', '0.0000', '2021-03-31', 'received', '2.4900', '2.4900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3342, 31, NULL, 1954, '87246804', 'COLDRDID TAB', NULL, '2.5000', '3.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-03-31', 'received', '2.5000', '2.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3343, 31, NULL, 1955, '4014852751801', 'PROCOMIL TABLET', NULL, '11.7000', '15.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.2000', '0.0000', '2021-03-31', 'received', '11.7000', '11.7000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '11.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3344, 31, NULL, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '3.3900', '5.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.9000', '0.0000', '2021-03-31', 'received', '3.3900', '3.3900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.3900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3345, 31, NULL, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', NULL, '4.0000', '5.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-03-31', 'received', '4.0000', '4.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3346, 31, NULL, 1369, 'PR-82', 'NAPROX EC TABS ECL', NULL, '6.0000', '8.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-03-31', 'received', '6.0000', '6.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3347, 31, NULL, 1370, 'PR-83', 'LIVERPLEX-B ADULT SYR', NULL, '7.4500', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2500', '0.0000', '2021-03-31', 'received', '7.4500', '7.4500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.4500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3348, 31, NULL, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '5.5000', '7.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2021-03-31', 'received', '5.5000', '5.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3349, 31, NULL, 1372, 'PR-85', 'PARACETAMOL TAB 32\'S', NULL, '7.8900', '10.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7800', '0.0000', '2021-03-31', 'received', '7.8900', '7.8900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3350, 31, NULL, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '18.5300', '25.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5900', '0.0000', '2021-03-31', 'received', '18.5300', '18.5300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3351, 31, NULL, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '26.0000', '35.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-03-31', 'received', '26.0000', '26.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3352, 31, NULL, 1376, '7640153082107', 'IXYLO-MEPHA 0.05%', NULL, '34.0000', '45.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2021-03-31', 'received', '34.0000', '34.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3353, 31, NULL, 1377, '5000158062139', 'BONJELA ADULT', NULL, '35.4700', '47.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.9400', '0.0000', '2021-03-31', 'received', '35.4700', '35.4700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.4700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3354, 31, NULL, 1378, '5011417569627', 'BONJELA BABY', NULL, '34.5000', '45.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2021-03-31', 'received', '34.5000', '34.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3355, 31, NULL, 1379, 'PR-92', 'DIFLUCAN CAPS', NULL, '82.8700', '109.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.7400', '0.0000', '2021-03-31', 'received', '82.8700', '82.8700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '82.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3356, 31, NULL, 1380, '4008500060070', 'PRIMOLUT N TABS 5MG- ORIGINAL', NULL, '7.7000', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.1000', '2.0000', '2021-03-31', 'received', '7.7000', '7.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3357, 31, NULL, 1381, 'PR-94', '10 GOLDY FORTE OS', NULL, '6.8900', '10.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.9000', '0.0000', '2021-03-31', 'received', '6.8900', '6.8900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3358, 31, NULL, 1382, 'PR-95', 'ZULU EXTRA', NULL, '4.0000', '5.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-03-31', 'received', '4.0000', '4.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3359, 31, NULL, 1383, 'PR-96', 'ZULU - MR', NULL, '4.8000', '7.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-03-31', 'received', '4.8000', '4.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3360, 31, NULL, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', NULL, '13.5000', '18.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '0.0000', '2021-03-31', 'received', '13.5000', '13.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3361, 31, NULL, 1385, 'PR-98', 'AZIS TABS. 500MG', NULL, '6.3000', '8.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '0.0000', '2021-03-31', 'received', '6.3000', '6.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3362, NULL, 21, 1323, 'PR-36', 'GLIZONE 30MG', NULL, '7.9900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.9700', '3.0000', '2021-04-15', 'received', '7.9900', '7.9900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3363, NULL, 21, 1324, '6181100465976', 'MEDICAL ICE COOL', NULL, '4.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.0000', '1.0000', '2021-04-15', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3364, NULL, 21, 1325, '692771017440', 'MUPIROCIN OINTMENT 15G', NULL, '23.9800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '47.9600', '0.0000', '2021-04-15', 'received', '23.9800', '23.9800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3365, NULL, 21, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '3.0300', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.1500', '1.0000', '2021-04-15', 'received', '3.0300', '3.0300', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3366, NULL, 21, 1328, 'PR-41', 'HIGH ELASTIC CREPE BANDAGE 4\"', NULL, '3.1500', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.8000', '6.0000', '2021-04-15', 'received', '3.1500', '3.1500', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3367, NULL, 21, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', NULL, '2.8000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.6000', '9.0000', '2021-04-15', 'received', '2.8000', '2.8000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3368, NULL, 21, 2079, '29942739', 'HIGH ELASTIC CREPE BANDAGE 2\"', NULL, '2.3000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.6000', '12.0000', '2021-04-15', 'received', '2.3000', '2.3000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3369, NULL, 21, 1329, 'PR-42', 'ZINC OXIDE PLASTER ROLL 41CHS', NULL, '4.2000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.2000', '5.0000', '2021-04-15', 'received', '4.2000', '4.2000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3370, NULL, 21, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', NULL, '4.2000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.2000', '1.0000', '2021-04-15', 'received', '4.2000', '4.2000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3371, NULL, 21, 1332, 'PR-45', 'ZINC OXIDE PLATER ROLL 31CH', NULL, '7.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '3.0000', '2021-04-15', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3372, NULL, 21, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', NULL, '0.5500', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.6000', '2.0000', '2021-04-15', 'received', '0.5500', '0.5500', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3373, NULL, 21, 1334, 'PR-47', 'GAUSE BANDAGE 41CH', NULL, '0.7000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.4000', '8.0000', '2021-04-15', 'received', '0.7000', '0.7000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3374, NULL, 21, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '0.8500', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.2000', '0.0000', '2021-04-15', 'received', '0.8500', '0.8500', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3375, NULL, 21, 1336, 'PR-49', 'RUBBING ALCOHOL -MUL TITI', NULL, '15.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '75.0000', '1.0000', '2021-04-15', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3376, NULL, 21, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '5.0000', '2021-04-15', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3377, NULL, 21, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '4.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '1.0000', '2021-04-15', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3378, NULL, 21, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '1.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.5000', '1.0000', '2021-04-15', 'received', '1.5000', '1.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3379, NULL, 21, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '2.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.5000', '2.0000', '2021-04-15', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3380, NULL, 21, 1341, 'PR-54', 'COTTON WOOL 500G', NULL, '13.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.5000', '3.0000', '2021-04-15', 'received', '13.5000', '13.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3381, NULL, 21, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.5300', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '110.6000', '7.0000', '2021-04-15', 'received', '5.5300', '5.5300', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3382, NULL, 21, 1343, '4008500060353', 'PROGYNOVA 2MG TABS', NULL, '43.9000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '87.8000', '0.0000', '2021-04-15', 'received', '43.9000', '43.9000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3383, NULL, 21, 1344, '8901082005391', 'EVANOVA CAPS', NULL, '32.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '64.0000', '2.0000', '2021-04-15', 'received', '32.0000', '32.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3384, NULL, 21, 1345, '8901082005339', 'ADDYZOA CAPS', NULL, '44.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '88.0000', '2.0000', '2021-04-15', 'received', '44.0000', '44.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3385, NULL, 21, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.9300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '1.8600', '0.0000', '2021-04-15', 'received', '0.9300', '0.9300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3386, NULL, 21, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', NULL, '3.4000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.0000', '0.0000', '2021-04-15', 'received', '3.4000', '3.4000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3387, NULL, 21, 1348, '8901077166144', 'APDYL-H COUGH SYRUP 200ML', NULL, '15.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.5000', '2.0000', '2021-04-15', 'received', '15.5000', '15.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3388, NULL, 21, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '32.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '97.5000', '0.0000', '2021-04-15', 'received', '32.5000', '32.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3389, NULL, 21, 1350, '4084500846548', 'PEPTOBISMOL S/S 120ML', NULL, '30.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.0000', '2.0000', '2021-04-15', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3390, NULL, 21, 1351, '4084500846579', 'PEPTO BISMOL 240ML', NULL, '35.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '70.0000', '1.0000', '2021-04-15', 'received', '35.0000', '35.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3391, NULL, 21, 2080, '06626042', 'KLIRE ATACID 125ML', NULL, '7.9000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.7000', '3.0000', '2021-04-15', 'received', '7.9000', '7.9000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3392, NULL, 21, 1353, '5060085540254', 'SELEVITE TABS', NULL, '20.5000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '82.0000', '3.0000', '2021-04-15', 'received', '20.5000', '20.5000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3393, NULL, 21, 1354, '5024874700106', 'HEALTH LINK WOMAN', NULL, '39.7500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '79.5000', '1.0000', '2021-04-15', 'received', '39.7500', '39.7500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3394, NULL, 21, 1355, 'PR-68', 'LIVOPAT CAPS- INDUS', NULL, '17.6200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.8600', '2.0000', '2021-04-15', 'received', '17.6200', '17.6200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3395, NULL, 21, 1356, '5021265221608', 'CARDIOACE CAPS', NULL, '51.9800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '103.9600', '1.0000', '2021-04-15', 'received', '51.9800', '51.9800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3396, NULL, 21, 1676, '8902451254525', 'LUEX CHILD CHESTY', NULL, '7.9000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.7000', '2.0000', '2021-04-15', 'received', '7.9000', '7.9000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3397, NULL, 21, 1677, '8902546578543', 'LUEX BABY COUGH', NULL, '7.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.4000', '0.0000', '2021-04-15', 'received', '7.8000', '7.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3398, NULL, 21, 1359, 'PR-72', 'GALVUS 50 2X14', NULL, '37.3400', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '373.4000', '10.0000', '2021-04-15', 'received', '37.3400', '37.3400', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3399, NULL, 21, 1360, 'PR-73', 'GALVUS MET FCT 50/1000MG', NULL, '27.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '162.0000', '6.0000', '2021-04-15', 'received', '27.0000', '27.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3400, NULL, 21, 1361, '5021265221585', 'PREGNACARE (BE4) CONCEPTION ', NULL, '59.0300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '118.0600', '2.0000', '2021-04-15', 'received', '59.0300', '59.0300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3401, NULL, 21, 1952, '5021265221004', 'MENOPACE CAP(UK)', NULL, '37.2600', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '74.5200', '0.0000', '2021-04-15', 'received', '37.2600', '37.2600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3402, NULL, 21, 1362, '8906078360300', 'BETA-CORT EEN DROPS 0.1 %', NULL, '19.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.0000', '2.0000', '2021-04-15', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3403, NULL, 21, 1363, '5000456022774', 'CRESTOR 5MG TABS', NULL, '81.4000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '162.8000', '0.0000', '2021-04-15', 'received', '81.4000', '81.4000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3404, NULL, 21, 1364, '5021265244447', 'WELLWOMAN CAPS 70+', NULL, '52.5500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '105.1000', '2.0000', '2021-04-15', 'received', '52.5500', '52.5500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3405, NULL, 21, 1365, '8906116211496', 'PROWOMAN', NULL, '38.9800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '77.9600', '1.0000', '2021-04-15', 'received', '38.9800', '38.9800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3406, NULL, 21, 1366, 'PR-79', 'THYROXINE 100MG', NULL, '15.2900', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '91.7400', '6.0000', '2021-04-15', 'received', '15.2900', '15.2900', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3407, NULL, 21, 1953, '56415263', 'STAGYL TABS', NULL, '2.4900', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.9000', '2.0000', '2021-04-15', 'received', '2.4900', '2.4900', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3408, NULL, 21, 1954, '87246804', 'COLDRDID TAB', NULL, '2.5000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.0000', '0.0000', '2021-04-15', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3409, NULL, 21, 1955, '4014852751801', 'PROCOMIL TABLET', NULL, '11.7000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '70.2000', '4.0000', '2021-04-15', 'received', '11.7000', '11.7000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3410, NULL, 21, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '3.3900', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.9000', '0.0000', '2021-04-15', 'received', '3.3900', '3.3900', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3411, NULL, 21, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', NULL, '4.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '0.0000', '2021-04-15', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3412, NULL, 21, 1369, 'PR-82', 'NAPROX EC TABS ECL', NULL, '6.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '4.0000', '2021-04-15', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3413, NULL, 21, 1370, 'PR-83', 'LIVERPLEX-B ADULT SYR', NULL, '7.4500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.2500', '5.0000', '2021-04-15', 'received', '7.4500', '7.4500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3414, NULL, 21, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '5.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.5000', '3.0000', '2021-04-15', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3415, NULL, 21, 1372, 'PR-85', 'PARACETAMOL TAB 32\'S', NULL, '7.8900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.7800', '0.0000', '2021-04-15', 'received', '7.8900', '7.8900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3416, NULL, 21, 1373, '1227808', 'TEGRETOL CR 200MG', NULL, '40.5200', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.5200', '1.0000', '2021-04-15', 'received', '40.5200', '40.5200', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3417, NULL, 21, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '55.5900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '166.7700', '0.0000', '2021-04-15', 'received', '55.5900', '55.5900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3418, NULL, 21, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '26.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.0000', '2.0000', '2021-04-15', 'received', '26.0000', '26.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3419, NULL, 21, 1376, '7640153082107', 'IXYLO-MEPHA 0.05%', NULL, '34.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '68.0000', '0.0000', '2021-04-15', 'received', '34.0000', '34.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3420, NULL, 21, 1377, '5000158062139', 'BONJELA ADULT', NULL, '35.4700', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '70.9400', '1.0000', '2021-04-15', 'received', '35.4700', '35.4700', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3421, NULL, 21, 1378, '5011417569627', 'BONJELA BABY', NULL, '34.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '69.0000', '2.0000', '2021-04-15', 'received', '34.5000', '34.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3422, NULL, 21, 1379, 'PR-92', 'DIFLUCAN CAPS', NULL, '82.8700', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '165.7400', '0.0000', '2021-04-15', 'received', '82.8700', '82.8700', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3423, NULL, 21, 1380, '4008500060070', 'PRIMOLUT N TABS 5MG- ORIGINAL', NULL, '7.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.1000', '0.0000', '2021-04-15', 'received', '7.7000', '7.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3424, NULL, 21, 1381, 'PR-94', '10 GOLDY FORTE OS', NULL, '6.8900', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '68.9000', '0.0000', '2021-04-15', 'received', '6.8900', '6.8900', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3425, NULL, 21, 1382, 'PR-95', 'ZULU EXTRA', NULL, '4.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '3.0000', '2021-04-15', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3426, NULL, 21, 1383, 'PR-96', 'ZULU - MR', NULL, '4.8000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '2.0000', '2021-04-15', 'received', '4.8000', '4.8000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3427, NULL, 21, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', NULL, '13.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.5000', '0.0000', '2021-04-15', 'received', '13.5000', '13.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3428, NULL, 21, 1385, 'PR-98', 'AZIS TABS. 500MG', NULL, '6.3000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '63.0000', '1.0000', '2021-04-15', 'received', '6.3000', '6.3000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3429, NULL, NULL, 1780, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3458, NULL, NULL, 2320, '10865525', 'MALARIA TEST', NULL, '5.0000', '0.0000', '0.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '2021-04-16', 'received', '5.0000', '5.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3459, NULL, NULL, 2320, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-33.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3473, NULL, NULL, 2317, '74536436', 'HEMANI HERBAL TEA', NULL, '15.0000', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '450.0000', '29.0000', '2021-04-16', 'received', '15.0000', '15.0000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3474, NULL, NULL, 2318, '02898540', 'FACE MASK', NULL, '0.5000', '0.0000', '40.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '20.0000', '195.0000', '2021-04-16', 'received', '0.5000', '0.5000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3475, NULL, NULL, 2319, '27607621', 'KN95 FACE MASK', NULL, '3.5000', '0.0000', '40.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '140.0000', '40.0000', '2021-04-16', 'received', '3.5000', '3.5000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3477, NULL, NULL, 1961, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3478, NULL, NULL, 2220, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3479, NULL, NULL, 1991, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3480, NULL, NULL, 1620, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3481, NULL, NULL, 1610, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3482, NULL, NULL, 1871, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3483, NULL, NULL, 2168, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3484, NULL, NULL, 1851, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3485, NULL, NULL, 1622, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3486, NULL, NULL, 2140, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3487, NULL, NULL, 2317, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3488, NULL, NULL, 2318, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-191.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3489, NULL, NULL, 1579, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3490, NULL, NULL, 1455, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3491, NULL, NULL, 1783, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3492, NULL, NULL, 2037, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3493, NULL, NULL, 1976, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3494, NULL, NULL, 1903, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3495, NULL, NULL, 2026, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3496, NULL, NULL, 1735, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-14.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3525, NULL, NULL, 2321, '80141429', 'MIST F.A.C', NULL, '2.5000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '2.5000', '0.0000', '2021-04-17', 'received', '2.5000', '2.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3536, 76, NULL, 2311, '90764208', 'PREGNACARE 19', NULL, '46.2900', '60.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.5800', '1.0000', '2021-04-12', 'received', '46.2900', '46.2900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '46.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3537, 76, NULL, 1900, 'PR-613', 'Cefruate 500', NULL, '2.4600', '3.3000', '90.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '221.4000', '40.0000', '2021-04-12', 'received', '2.4600', '2.4600', '90.0000', NULL, NULL, 1, 'pc', '90.0000', NULL, NULL, NULL, NULL, '2.4600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3538, 76, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '3.8700', '5.0000', '26.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.6200', '0.0000', '2021-04-12', 'received', '3.8700', '3.8700', '26.0000', NULL, NULL, 1, 'pc', '26.0000', NULL, NULL, NULL, NULL, '3.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3539, 76, NULL, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', NULL, '4.9000', '6.5000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '196.0000', '0.0000', '2021-04-12', 'received', '4.9000', '4.9000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '4.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3540, 76, NULL, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', NULL, '1.8000', '2.5000', '29.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.2000', '0.0000', '2021-04-12', 'received', '1.8000', '1.8000', '29.0000', NULL, NULL, 1, 'pc', '29.0000', NULL, NULL, NULL, NULL, '1.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3570, NULL, NULL, 2326, '76020391', 'FLOOR CLEANER', NULL, '18.0000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '72.0000', '0.0000', '2021-04-17', 'received', '18.0000', '18.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3571, NULL, NULL, 2322, '19433378', 'LIQUID SOAP', NULL, '18.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.0000', '0.0000', '2021-04-17', 'received', '18.0000', '18.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3572, NULL, NULL, 2325, '68025873', 'ALWAYS PAD MAX', NULL, '5.5000', '0.0000', '8.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '44.0000', '0.0000', '2021-04-17', 'received', '5.5000', '5.5000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3573, NULL, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '10.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '31.5000', '-3.0000', '2021-04-17', 'received', '10.5000', '10.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3579, NULL, NULL, 1811, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3580, NULL, NULL, 1603, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3581, NULL, NULL, 1892, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3582, NULL, NULL, 2060, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-37.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3583, NULL, NULL, 2131, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3589, 79, NULL, 2110, '6932757117080', 'MOTHER THOUCH DIAPER', NULL, '35.0000', '50.0000', '9.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '315.0000', '0.0000', '2021-04-15', 'received', '35.0000', '35.0000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3590, 79, NULL, 2118, '11415402', 'AVEENO WIPES', NULL, '8.5000', '15.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2021-04-15', 'received', '8.5000', '8.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3591, 79, NULL, 2112, '070330746336', 'FLEX 5 BIC RAZOR', NULL, '10.0000', '30.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2021-04-15', 'received', '10.0000', '10.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3592, 79, NULL, 2113, '192624002949', 'BOD MEM SMALL', NULL, '6.7000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1000', '0.0000', '2021-04-15', 'received', '6.7000', '6.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3593, 79, NULL, 2114, '192624002970', 'BOD MEN BIG', NULL, '6.7000', '12.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '0.0000', '2021-04-15', 'received', '6.7000', '6.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3594, 79, NULL, 2111, '072140028626', 'NIVEA MEN PACK', NULL, '40.0000', '60.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2021-04-15', 'received', '40.0000', '40.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '40.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3595, 79, NULL, 2116, '7330933031332', 'ECO NATY DIAPER', NULL, '30.0000', '45.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-04-15', 'received', '30.0000', '30.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3596, 79, NULL, 2117, '817810029417', 'HONEST DIAPER', NULL, '20.0000', '40.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-04-15', 'received', '20.0000', '20.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3597, 79, NULL, 2115, '35179090', 'SMALL BASKET GIFT SET', NULL, '20.0000', '40.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-04-15', 'received', '20.0000', '20.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3598, 79, NULL, 2120, '850005911845', 'SANITIZERR SMALL SUAVE', NULL, '5.0000', '15.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-04-15', 'received', '5.0000', '5.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3599, 79, NULL, 2119, '840038215454', 'SANITIZER BIG KEEP CLEAN', NULL, '30.0000', '60.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '0.0000', '2021-04-15', 'received', '30.0000', '30.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3600, 79, NULL, 2121, '035000671127', 'MOUTH WASH COLGATE BIG', NULL, '20.0000', '50.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-04-15', 'received', '20.0000', '20.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3601, 79, NULL, 2122, '035000455321', 'MOUTH WASH COLGATE SMALL', NULL, '20.0000', '40.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-04-15', 'received', '20.0000', '20.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3602, 79, NULL, 2124, '079896174812', 'QUEEN HELENE COCOA BUTTER LOTION', NULL, '25.0000', '40.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '0.0000', '2021-04-15', 'received', '25.0000', '25.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3603, 79, NULL, 2125, '052181492303', 'CRYSTAL CLEAR  MONITOR', NULL, '20.0000', '50.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-04-15', 'received', '20.0000', '20.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3604, 79, NULL, 2123, '842379108860', 'MOUTH WASH SOLIMO', NULL, '20.0000', '45.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-04-15', 'received', '20.0000', '20.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3605, 79, NULL, 2126, '017854103597', 'BAYLISS GIFT SET PINK', NULL, '30.0000', '100.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-04-15', 'received', '30.0000', '30.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3606, 79, NULL, 2128, '017854103634', 'BAYLIS &HARDING GIFT SET', NULL, '30.0000', '100.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-04-15', 'received', '30.0000', '30.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3607, 79, NULL, 2127, '047400671881', 'JOY RAZAR GIT SET', NULL, '10.0000', '35.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-04-15', 'received', '10.0000', '10.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3608, 79, NULL, 2316, '59549986', 'SMA BABY FOOD', NULL, '44.0000', '46.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '0.0000', '2021-04-15', 'received', '44.0000', '44.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '44.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3609, 79, NULL, 2317, '74536436', 'HEMANI HERBAL TEA', NULL, '15.0000', '18.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '450.0000', '0.0000', '2021-04-15', 'received', '15.0000', '15.0000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3610, 79, NULL, 2318, '02898540', 'FACE MASK', NULL, '0.5000', '1.0000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-04-15', 'received', '0.5000', '0.5000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '0.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3611, 79, NULL, 2319, '27607621', 'KN95 FACE MASK', NULL, '3.5000', '4.0000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '0.0000', '2021-04-15', 'received', '3.5000', '3.5000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3612, 79, NULL, 2320, '10865525', 'MALARIA TEST', NULL, '5.0000', '7.0000', '0.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2021-04-15', 'received', '5.0000', '5.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3613, 79, NULL, 2326, '76020391', 'FLOOR CLEANER', NULL, '18.0000', '20.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-04-15', 'received', '18.0000', '18.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3614, 79, NULL, 2322, '19433378', 'LIQUID SOAP', NULL, '18.0000', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-04-15', 'received', '18.0000', '18.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3615, 79, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '10.5000', '14.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2021-04-15', 'received', '10.5000', '10.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3616, 79, NULL, 2325, '68025873', 'ALWAYS PAD MAX', NULL, '5.5000', '7.5000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-04-15', 'received', '5.5000', '5.5000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3617, 79, NULL, 2323, '20264165', 'DASTY DEGREESER', NULL, '15.0000', '30.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '10.0000', '2021-04-15', 'received', '15.0000', '15.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3618, 79, NULL, 2327, '66319646', 'MR Q', NULL, '4.5000', '6.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-04-15', 'received', '4.5000', '4.5000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3625, NULL, NULL, 1866, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3626, NULL, NULL, 1916, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3633, NULL, NULL, 1746, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-17.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3634, NULL, NULL, 1813, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3635, NULL, NULL, 1841, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3639, NULL, NULL, 1608, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3640, NULL, NULL, 2340, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3641, NULL, NULL, 2341, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3642, NULL, NULL, 2353, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3753, NULL, NULL, 1735, 'PR-448', 'EXFORGE TABS (10/160)MG 28', NULL, '4.6000', '0.0000', '84.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '386.4000', '0.0000', '2021-04-18', 'received', '4.6000', '4.6000', '84.0000', NULL, NULL, 1, 'pc', '84.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3754, NULL, NULL, 2328, '59058180', 'EXFORGE 5MG/160MG 28\'', NULL, '59.7400', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '238.9600', '0.0000', '2021-04-18', 'received', '59.7400', '59.7400', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3755, NULL, NULL, 2329, '93880955', 'EXFORGE HCT 5/160/12.5MG', NULL, '30.1300', '0.0000', '8.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '241.0400', '0.0000', '2021-04-18', 'received', '30.1300', '30.1300', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3833, NULL, NULL, 2366, '5017023371', 'AMILODIPINE 10 MG (TEVA)', NULL, '3.7500', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.0000', '-7.0000', '2021-04-18', 'received', '3.7500', '3.7500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3834, NULL, NULL, 2331, '22131552', 'IMODIYM CAPS 2MG 6\'S', NULL, '12.0700', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.2100', '-1.0000', '2021-04-18', 'received', '12.0700', '12.0700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3835, NULL, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '5.0900', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.5400', '0.0000', '2021-04-18', 'received', '5.0900', '5.0900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3836, NULL, NULL, 2333, '81610561', 'CIPROFLOXACIN SUSP (XIN-A)', NULL, '33.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '66.0000', '0.0000', '2021-04-18', 'received', '33.0000', '33.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3837, NULL, NULL, 2334, '99769153', 'CROMAX-2 EYE DROP', NULL, '16.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '48.0000', '0.0000', '2021-04-18', 'received', '16.0000', '16.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3838, NULL, NULL, 2335, '90387267', 'EPICROM EYE DROP 2%', NULL, '13.9000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '41.7000', '0.0000', '2021-04-18', 'received', '13.9000', '13.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3839, NULL, NULL, 2336, '74912018', 'ATENOLOL 50MG', NULL, '7.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '35.0000', '-1.0000', '2021-04-18', 'received', '7.0000', '7.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3840, NULL, NULL, 2337, '04743466', 'M2 TONE', NULL, '51.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '153.0000', '0.0000', '2021-04-18', 'received', '51.0000', '51.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3841, NULL, NULL, 2338, '45884609', 'DUROMIN 30MG', NULL, '9.6300', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '288.9000', '0.0000', '2021-04-18', 'received', '9.6300', '9.6300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3842, NULL, NULL, 2339, '56648929', 'BENDRO 5MG BLISTER UK', NULL, '7.2300', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.1500', '0.0000', '2021-04-18', 'received', '7.2300', '7.2300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3843, NULL, NULL, 2340, '49976874', 'BENDROFLUZIDE 2.5MG UK', NULL, '4.2000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '21.0000', '0.0000', '2021-04-18', 'received', '4.2000', '4.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3844, NULL, NULL, 2341, '67208590', 'NEXCOFER CAPS', NULL, '5.5900', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '22.3600', '0.0000', '2021-04-18', 'received', '5.5900', '5.5900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3845, NULL, NULL, 2342, '62530607', 'DICLO-DENK RECTAL SUPPOSITRY', NULL, '1.8600', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '55.8000', '0.0000', '2021-04-18', 'received', '1.8600', '1.8600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3846, NULL, NULL, 2343, '67107435', 'INFACOL DROPS 50ML', NULL, '36.2500', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '72.5000', '0.0000', '2021-04-18', 'received', '36.2500', '36.2500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3847, NULL, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '18.2000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '54.6000', '0.0000', '2021-04-18', 'received', '18.2000', '18.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3848, NULL, NULL, 2345, '37407616', 'PONSTAN CAPS 250MG', NULL, '7.6400', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '38.2000', '2.0000', '2021-04-18', 'received', '7.6400', '7.6400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3849, NULL, NULL, 2346, '68048014', 'CALAMINE OINT', NULL, '5.5000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '55.0000', '0.0000', '2021-04-18', 'received', '5.5000', '5.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3850, NULL, NULL, 2347, '27404535', 'SALICYLIC ACID OINT', NULL, '5.2000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.0000', '0.0000', '2021-04-18', 'received', '5.2000', '5.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3851, NULL, NULL, 2348, '70645774', 'LYNUX OINT', NULL, '22.0300', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '44.0600', '0.0000', '2021-04-18', 'received', '22.0300', '22.0300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3852, NULL, NULL, 2349, '82507445', 'CEBROTONIN TAB', NULL, '24.1000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '144.6000', '0.0000', '2021-04-18', 'received', '24.1000', '24.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3853, NULL, NULL, 2350, '58123990', 'COARTEM 6\'S', NULL, '10.3800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '31.1400', '0.0000', '2021-04-18', 'received', '10.3800', '10.3800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3854, NULL, NULL, 2351, '81129325', 'COARTEM 12\'S', NULL, '17.7000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '53.1000', '2.0000', '2021-04-18', 'received', '17.7000', '17.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3855, NULL, NULL, 2352, '84404614', 'TRAMADOL CAPS 50MG (KRAKA)', NULL, '20.0000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '80.0000', '0.0000', '2021-04-18', 'received', '20.0000', '20.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3856, NULL, NULL, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', NULL, '4.4500', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '22.2500', '0.0000', '2021-04-18', 'received', '4.4500', '4.4500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3857, NULL, NULL, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', NULL, '53.3100', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '106.6200', '40.0000', '2021-04-18', 'received', '53.3100', '53.3100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3858, NULL, NULL, 2356, '42767945', 'DIABETONE TABS UK', NULL, '38.9800', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '77.9600', '0.0000', '2021-04-18', 'received', '38.9800', '38.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3859, NULL, NULL, 2357, '22168350', 'LADINAS PICT', NULL, '4.0000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.0000', '0.0000', '2021-04-18', 'received', '4.0000', '4.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3860, NULL, NULL, 2358, '32893309', 'LOSAR-DENK 100MG', NULL, '27.2100', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '81.6300', '0.0000', '2021-04-18', 'received', '27.2100', '27.2100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3861, NULL, NULL, 2359, '66115662', 'LOSAR-DENK 50MG TAB', NULL, '16.2200', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '48.6600', '0.0000', '2021-04-18', 'received', '16.2200', '16.2200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3862, NULL, NULL, 2360, '04076969', 'ASMADRIN TABS', NULL, '0.5200', '0.0000', '25.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.0000', '-5.0000', '2021-04-18', 'received', '0.5200', '0.5200', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3863, NULL, NULL, 2361, '93787462', 'ASMANOL TABS 200', NULL, '0.4700', '0.0000', '25.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '11.7500', '-4.0000', '2021-04-18', 'received', '0.4700', '0.4700', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3864, NULL, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '82.0200', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '164.0400', '0.0000', '2021-04-18', 'received', '82.0200', '82.0200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3865, NULL, NULL, 2365, '37620765', 'CLARITHROMYCIN 500MG B-CLAR', NULL, '15.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.0000', '0.0000', '2021-04-18', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3866, NULL, NULL, 2363, '25326446', 'WELLMAN DRINK', NULL, '6.8800', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '68.8000', '0.0000', '2021-04-18', 'received', '6.8800', '6.8800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3867, NULL, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '35.6000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '71.2000', '0.0000', '2021-04-18', 'received', '35.6000', '35.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3868, NULL, 23, 2363, '25326446', 'WELLMAN DRINK', NULL, '6.8800', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '68.8000', '2.0000', '2021-04-18', 'received', '6.8800', '6.8800', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3869, NULL, 23, 2365, '37620765', 'CLARITHROMYCIN 500MG B-CLAR', NULL, '15.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '3.0000', '2021-04-18', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3870, NULL, 23, 2362, '63796869', 'ZINNAT 500MG', NULL, '82.0200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '164.0400', '1.0000', '2021-04-18', 'received', '82.0200', '82.0200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3871, NULL, 23, 2361, '93787462', 'ASMANOL TABS 200', NULL, '0.4700', '0.0000', '25.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.7500', '25.0000', '2021-04-18', 'received', '0.4700', '0.4700', NULL, NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3872, NULL, 23, 2360, '04076969', 'ASMADRIN TABS', NULL, '0.5200', '0.0000', '25.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.0000', '1.0000', '2021-04-18', 'received', '0.5200', '0.5200', NULL, NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3873, NULL, 23, 2359, '66115662', 'LOSAR-DENK 50MG TAB', NULL, '16.2200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '48.6600', '1.0000', '2021-04-18', 'received', '16.2200', '16.2200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3874, NULL, 23, 2358, '32893309', 'LOSAR-DENK 100MG', NULL, '27.2100', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '81.6300', '0.0000', '2021-04-18', 'received', '27.2100', '27.2100', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3875, NULL, 23, 2357, '22168350', 'LADINAS PICT', NULL, '4.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '6.0000', '2021-04-18', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3876, NULL, 23, 2356, '42767945', 'DIABETONE TABS UK', NULL, '38.9800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '77.9600', '1.0000', '2021-04-18', 'received', '38.9800', '38.9800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3877, NULL, 23, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', NULL, '53.3100', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '106.6200', '0.0000', '2021-04-18', 'received', '53.3100', '53.3100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3878, NULL, 23, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', NULL, '4.4500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.2500', '0.0000', '2021-04-18', 'received', '4.4500', '4.4500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3879, NULL, 23, 2352, '84404614', 'TRAMADOL CAPS 50MG (KRAKA)', NULL, '20.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '80.0000', '0.0000', '2021-04-18', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3880, NULL, 23, 2351, '81129325', 'COARTEM 12\'S', NULL, '17.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '53.1000', '2.0000', '2021-04-18', 'received', '17.7000', '17.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3881, NULL, 23, 2350, '58123990', 'COARTEM 6\'S', NULL, '10.3800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.1400', '0.0000', '2021-04-18', 'received', '10.3800', '10.3800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3882, NULL, 23, 2349, '82507445', 'CEBROTONIN TAB', NULL, '24.1000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '144.6000', '5.0000', '2021-04-18', 'received', '24.1000', '24.1000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3883, NULL, 23, 2348, '70645774', 'LYNUX OINT', NULL, '22.0300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.0600', '0.0000', '2021-04-18', 'received', '22.0300', '22.0300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3884, NULL, 23, 2347, '27404535', 'SALICYLIC ACID OINT', NULL, '5.2000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '5.0000', '2021-04-18', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3885, NULL, 23, 2346, '68048014', 'CALAMINE OINT', NULL, '5.5000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.0000', '2.0000', '2021-04-18', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3886, NULL, 23, 2345, '37407616', 'PONSTAN CAPS 250MG', NULL, '7.6400', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.2000', '3.0000', '2021-04-18', 'received', '7.6400', '7.6400', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3887, NULL, 23, 2344, '08199601', 'FOLIGROW TONIC', NULL, '18.2000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.6000', '0.0000', '2021-04-18', 'received', '18.2000', '18.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3888, NULL, 23, 2343, '67107435', 'INFACOL DROPS 50ML', NULL, '36.2500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.5000', '0.0000', '2021-04-18', 'received', '36.2500', '36.2500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3889, NULL, 23, 2342, '62530607', 'DICLO-DENK RECTAL SUPPOSITRY', NULL, '1.8600', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.8000', '20.0000', '2021-04-18', 'received', '1.8600', '1.8600', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3890, NULL, 23, 2341, '67208590', 'NEXCOFER CAPS', NULL, '5.5900', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.3600', '0.0000', '2021-04-18', 'received', '5.5900', '5.5900', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3891, NULL, 23, 2340, '49976874', 'BENDROFLUZIDE 2.5MG UK', NULL, '4.2000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.0000', '3.0000', '2021-04-18', 'received', '4.2000', '4.2000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3892, NULL, 23, 2339, '56648929', 'BENDRO 5MG BLISTER UK', NULL, '7.2300', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.1500', '5.0000', '2021-04-18', 'received', '7.2300', '7.2300', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3893, NULL, 23, 2338, '45884609', 'DUROMIN 30MG', NULL, '9.6300', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '288.9000', '30.0000', '2021-04-18', 'received', '9.6300', '9.6300', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3894, NULL, 23, 2337, '04743466', 'M2 TONE', NULL, '51.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '153.0000', '3.0000', '2021-04-18', 'received', '51.0000', '51.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3895, NULL, 23, 2336, '74912018', 'ATENOLOL 50MG', NULL, '7.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.0000', '2.0000', '2021-04-18', 'received', '7.0000', '7.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3896, NULL, 23, 2335, '90387267', 'EPICROM EYE DROP 2%', NULL, '13.9000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '41.7000', '1.0000', '2021-04-18', 'received', '13.9000', '13.9000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3897, NULL, 23, 2334, '99769153', 'CROMAX-2 EYE DROP', NULL, '16.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '48.0000', '1.0000', '2021-04-18', 'received', '16.0000', '16.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3898, NULL, 23, 2333, '81610561', 'CIPROFLOXACIN SUSP (XIN-A)', NULL, '33.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '66.0000', '0.0000', '2021-04-18', 'received', '33.0000', '33.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3899, NULL, 23, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '5.0900', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.5400', '3.0000', '2021-04-18', 'received', '5.0900', '5.0900', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3900, NULL, 23, 2331, '22131552', 'IMODIYM CAPS 2MG 6\'S', NULL, '12.0700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.2100', '0.0000', '2021-04-18', 'received', '12.0700', '12.0700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3901, NULL, 23, 2366, '5017023371', 'AMILODIPINE 10 MG (TEVA)', NULL, '3.7500', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '5.0000', '2021-04-18', 'received', '3.7500', '3.7500', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3902, NULL, 23, 1735, 'PR-448', 'EXFORGE TABS (10/160)MG 28', NULL, '4.6000', '0.0000', '84.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '386.4000', '0.0000', '2021-04-18', 'received', '4.6000', '4.6000', NULL, NULL, NULL, 1, 'pc', '84.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3903, NULL, 23, 2328, '59058180', 'EXFORGE 5MG/160MG 28\'', NULL, '59.7400', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '238.9600', '4.0000', '2021-04-18', 'received', '59.7400', '59.7400', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3904, NULL, 23, 2329, '93880955', 'EXFORGE HCT 5/160/12.5MG', NULL, '30.1300', '0.0000', '8.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '241.0400', '8.0000', '2021-04-18', 'received', '30.1300', '30.1300', NULL, NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3905, NULL, 23, 2354, '93872260', 'COLDRILIF SYR', NULL, '4.6000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.0000', '5.0000', '2021-04-18', 'received', '4.6000', '4.6000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3906, NULL, NULL, 1806, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3938, NULL, NULL, 2367, '21683139', 'SIVODERM SANITIZER BIG', NULL, '24.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '48.0000', '0.0000', '2021-04-18', 'received', '24.0000', '24.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3939, NULL, NULL, 2368, '85418156', 'SIVODERM  SANITIZER MEDIUM', NULL, '13.0000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.0000', '0.0000', '2021-04-18', 'received', '13.0000', '13.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3940, NULL, NULL, 2369, '41710683', 'PHARMADERM SANITIZER', NULL, '13.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.0000', '0.0000', '2021-04-18', 'received', '13.0000', '13.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3941, NULL, NULL, 2370, '92071659', 'BICTIGEL SANITIZER S/S', NULL, '2.5000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-04-18', 'received', '2.5000', '2.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3960, NULL, NULL, 2371, '83539675', 'FRESH LADY CAPS', NULL, '12.0000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '48.0000', '0.0000', '2021-04-18', 'received', '12.0000', '12.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3961, NULL, NULL, 2372, '48662385', 'FRESHMAN CAPS', NULL, '17.0000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '68.0000', '0.0000', '2021-04-18', 'received', '17.0000', '17.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3962, NULL, NULL, 2373, '56498485', 'LAUD STD', NULL, '11.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '34.5000', '0.0000', '2021-04-18', 'received', '11.5000', '11.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3963, NULL, NULL, 2374, '02032095', 'OSONS GARLIC CAPS', NULL, '6.1000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '61.0000', '0.0000', '2021-04-18', 'received', '6.1000', '6.1000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3964, NULL, NULL, 2375, '02290774', 'PA-KUM( ROCKMAN) CAPS', NULL, '12.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '37.5000', '0.0000', '2021-04-18', 'received', '12.5000', '12.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3965, NULL, NULL, 2376, '77456423', 'PROSTAFIT', NULL, '19.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '58.5000', '0.0000', '2021-04-18', 'received', '19.5000', '19.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3966, NULL, NULL, 2377, '96827889', 'ROCK GENECURE', NULL, '8.8000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.4000', '0.0000', '2021-04-18', 'received', '8.8000', '8.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3967, NULL, NULL, 2378, '08590643', 'VENE CAPS', NULL, '18.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '54.0000', '0.0000', '2021-04-18', 'received', '18.0000', '18.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4032, NULL, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '1.5900', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '47.7000', '-13.0000', '2021-04-19', 'received', '1.5900', '1.5900', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4033, NULL, NULL, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '37.9000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '227.4000', '0.0000', '2021-04-19', 'received', '37.9000', '37.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4034, NULL, NULL, 1496, 'PR-209', 'ENACEF SUSP', NULL, '8.8400', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.6800', '0.0000', '2021-04-19', 'received', '8.8400', '8.8400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4035, NULL, NULL, 2382, '28069626', 'EPICROM 4% EYE DROP', NULL, '15.6600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '46.9800', '0.0000', '2021-04-19', 'received', '15.6600', '15.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4036, NULL, NULL, 2383, '32782648', 'GINSOMIN EVE', NULL, '16.3000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '32.6000', '0.0000', '2021-04-19', 'received', '16.3000', '16.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4037, NULL, NULL, 2385, '52921', 'BECOATIN TABS', NULL, '7.8800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '23.6400', '0.0000', '2021-04-19', 'received', '7.8800', '7.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4038, NULL, NULL, 2386, '92175949', 'TETRACYCLINE EYE OINT 5G', NULL, '2.0100', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '10.0500', '0.0000', '2021-04-19', 'received', '2.0100', '2.0100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4039, NULL, NULL, 2387, '00790319', 'NORMAL TEARS EYE DROP', NULL, '14.0700', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '56.2800', '0.0000', '2021-04-19', 'received', '14.0700', '14.0700', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4040, NULL, NULL, 2388, '50008774', 'S/SEAS JOINTCARE SUPPLEX CAPS', NULL, '52.8500', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '105.7000', '0.0000', '2021-04-19', 'received', '52.8500', '52.8500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4041, NULL, NULL, 2389, '78098233', 'ALKA SELTZER 20\'S', NULL, '3.1400', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '94.2000', '0.0000', '2021-04-19', 'received', '3.1400', '3.1400', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4087, NULL, NULL, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.4000', '0.0000', '100.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.0000', '0.0000', '2021-04-19', 'received', '0.4000', '0.4000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4153, NULL, NULL, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', NULL, '5.2800', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '52.8000', '0.0000', '2021-04-19', 'received', '5.2800', '5.2800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4154, NULL, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '180.0000', '0.0000', '2021-04-19', 'received', '15.0000', '15.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4155, NULL, NULL, 2390, '76253920', 'NEXIUM 10 SACHET', NULL, '7.4000', '0.0000', '22.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '162.8000', '0.0000', '2021-04-19', 'received', '7.4000', '7.4000', '22.0000', NULL, NULL, 1, 'pc', '22.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4156, NULL, NULL, 2391, '12827991', 'ENAMYCIN TAB', NULL, '2.7000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '27.0000', '0.0000', '2021-04-19', 'received', '2.7000', '2.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4199, NULL, NULL, 2392, '10965636', 'CHOCHO SAOP', NULL, '3.2000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '9.6000', '0.0000', '2021-04-19', 'received', '3.2000', '3.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4200, NULL, NULL, 2022, '69436145', 'CHOCHO CREAM', NULL, '3.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '10.5000', '0.0000', '2021-04-19', 'received', '3.5000', '3.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4201, NULL, NULL, 2394, '14717379', 'MAAME DAGOMBA', NULL, '4.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '12.0000', '0.0000', '2021-04-19', 'received', '4.0000', '4.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4202, NULL, NULL, 2395, '99288830', 'TINATETT 230', NULL, '27.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '54.0000', '0.0000', '2021-04-19', 'received', '27.0000', '27.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4203, NULL, NULL, 2396, '57591599', 'LUCKY KOO MIX', NULL, '11.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '23.0000', '0.0000', '2021-04-19', 'received', '11.5000', '11.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4204, NULL, NULL, 2397, '92427320', 'GIFAS MIXTURE', NULL, '13.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '27.0000', '0.0000', '2021-04-19', 'received', '13.5000', '13.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4205, NULL, NULL, 2398, '83807653', 'KINGDOM GINSENG CAPS', NULL, '15.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.0000', '2.0000', '2021-04-19', 'received', '15.0000', '15.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4206, NULL, NULL, 2399, '95599749', 'HEPA PLUS', NULL, '8.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.5000', '0.0000', '2021-04-19', 'received', '8.5000', '8.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4207, NULL, NULL, 2400, '91513969', 'BRIGHTFOD STRONG', NULL, '12.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.0000', '0.0000', '2021-04-19', 'received', '12.5000', '12.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4208, NULL, NULL, 2402, '16734039', 'NANA ADJEI', NULL, '1.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '5.0000', '0.0000', '2021-04-19', 'received', '1.0000', '1.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4257, NULL, NULL, 1460, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4258, NULL, NULL, 1867, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-54.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4259, NULL, NULL, 1868, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4260, NULL, NULL, 2030, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4261, NULL, NULL, 1855, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4277, NULL, NULL, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', NULL, '8.0000', '0.0000', '39.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '312.0000', '0.0000', '2021-04-19', 'received', '8.0000', '8.0000', '39.0000', NULL, NULL, 1, 'pc', '39.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4278, NULL, NULL, 2130, '4005808837335', 'NIVEA SPRAY 250ML', NULL, '17.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '102.0000', '0.0000', '2021-04-19', 'received', '17.0000', '17.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4279, NULL, NULL, 2131, '4005900098238', 'NIVEA SPRAY 150ML', NULL, '12.0000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '48.0000', '0.0000', '2021-04-19', 'received', '12.0000', '12.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4280, NULL, NULL, 2132, '4005900579614', 'NIVEA BODY LOTION 400ML', NULL, '22.0000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '264.0000', '0.0000', '2021-04-19', 'received', '22.0000', '22.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4281, NULL, NULL, 2165, '6001051000821', 'NIVEA MEN BODY LOTION', NULL, '18.0000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '72.0000', '0.0000', '2021-04-19', 'received', '18.0000', '18.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4282, NULL, NULL, 2133, '4005900795298', 'NIVEA BOBY LOTION COCOA', NULL, '19.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '38.0000', '0.0000', '2021-04-19', 'received', '19.0000', '19.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4333, 69, NULL, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', NULL, '5.2800', '7.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.6000', '18.0000', '2021-04-08', 'received', '5.2800', '5.2800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '5.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4334, 69, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '35.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '5.0000', '2021-04-08', 'received', '15.0000', '15.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4335, 69, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '1.5900', '2.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.7000', '0.0000', '2021-04-08', 'received', '1.5900', '1.5900', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4336, 69, NULL, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '37.9000', '50.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '227.4000', '0.0000', '2021-04-08', 'received', '37.9000', '37.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '37.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4337, 69, NULL, 1496, 'PR-209', 'ENACEF SUSP', NULL, '8.8400', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6800', '0.0000', '2021-04-08', 'received', '8.8400', '8.8400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.8400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4338, 69, NULL, 2382, '28069626', 'EPICROM 4% EYE DROP', NULL, '15.6600', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.9800', '0.0000', '2021-04-08', 'received', '15.6600', '15.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4339, 69, NULL, 2383, '32782648', 'GINSOMIN EVE', NULL, '16.3000', '21.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.2000', '0.0000', '2021-04-08', 'received', '16.3000', '16.3000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '16.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4340, 69, NULL, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.4000', '0.5000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-04-08', 'received', '0.4000', '0.4000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4341, 69, NULL, 2385, '52921', 'BECOATIN TABS', NULL, '7.8800', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6400', '0.0000', '2021-04-08', 'received', '7.8800', '7.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4342, 69, NULL, 2386, '92175949', 'TETRACYCLINE EYE OINT 5G', NULL, '2.0100', '3.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0500', '0.0000', '2021-04-08', 'received', '2.0100', '2.0100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.0100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4343, 69, NULL, 2387, '00790319', 'NORMAL TEARS EYE DROP', NULL, '14.0700', '18.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.2800', '0.0000', '2021-04-08', 'received', '14.0700', '14.0700', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.0700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4344, 69, NULL, 2388, '50008774', 'S/SEAS JOINTCARE SUPPLEX CAPS', NULL, '52.8500', '70.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.7000', '0.0000', '2021-04-08', 'received', '52.8500', '52.8500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '52.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4345, 69, NULL, 2389, '78098233', 'ALKA SELTZER 20\'S', NULL, '3.1400', '4.5000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.2000', '0.0000', '2021-04-08', 'received', '3.1400', '3.1400', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.1400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4346, 69, NULL, 2403, '84832683', 'LIMZER CAPS 30\'', NULL, '17.8000', '24.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.8000', '0.0000', '2021-04-08', 'received', '17.8000', '17.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '17.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4347, 69, NULL, 2055, '34197416', 'ACTILIFE MUITIVITAMINS', NULL, '12.0000', '16.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-04-08', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4348, 69, NULL, 1373, '1227808', 'TEGRETOL CR 200MG', NULL, '8.1000', '10.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '5.0000', '2021-04-08', 'received', '8.1000', '8.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4349, 69, NULL, 2406, '8901138502829', 'MENTAT', NULL, '20.7000', '27.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.1000', '0.0000', '2021-04-08', 'received', '20.7000', '20.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4350, 69, NULL, 2407, '8901138140625', 'MENTAT SYRUP 100ML', NULL, '20.2000', '26.6600', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.6000', '0.0000', '2021-04-08', 'received', '20.2000', '20.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4351, 69, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '20.6000', '27.1900', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.8000', '0.0000', '2021-04-08', 'received', '20.6000', '20.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4352, 69, NULL, 1774, 'PR-487', 'ZESTRIL 10MG LISINOPRIL', NULL, '3.3000', '4.3000', '28.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.4000', '28.0000', '2021-04-08', 'received', '3.3000', '3.3000', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '3.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4353, 69, NULL, 1775, 'PR-488', 'ZESTRIL 5MG LISINOPRIL', NULL, '1.7000', '2.6000', '28.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.6000', '28.0000', '2021-04-08', 'received', '1.7000', '1.7000', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '1.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4354, 69, NULL, 1373, '1227808', 'TEGRETOL CR 200MG', NULL, '8.1000', '10.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '5.0000', '2021-04-08', 'received', '8.1000', '8.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4355, NULL, NULL, 2403, '84832683', 'LIMZER CAPS 30\'', NULL, '17.8000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '106.8000', '0.0000', '2021-04-19', 'received', '17.8000', '17.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4356, NULL, NULL, 2055, '34197416', 'ACTILIFE MUITIVITAMINS', NULL, '12.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '0.0000', '2021-04-19', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4357, NULL, 24, 2055, '34197416', 'ACTILIFE MUITIVITAMINS', NULL, '12.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '0.0000', '2021-04-19', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4358, NULL, 24, 2403, '84832683', 'LIMZER CAPS 30\'', NULL, '17.8000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '106.8000', '2.0000', '2021-04-19', 'received', '17.8000', '17.8000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4359, NULL, 24, 2402, '16734039', 'NANA ADJEI', NULL, '1.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '5.0000', '2.0000', '2021-04-19', 'received', '1.0000', '1.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4360, NULL, 24, 1401, 'PR-114', 'EKURO BEWU', NULL, '3.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '2.0000', '2021-04-19', 'received', '3.0000', '3.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4361, NULL, 24, 2400, '91513969', 'BRIGHTFOD STRONG', NULL, '12.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.0000', '1.0000', '2021-04-19', 'received', '12.5000', '12.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4362, NULL, 24, 2399, '95599749', 'HEPA PLUS', NULL, '8.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.5000', '0.0000', '2021-04-19', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4363, NULL, 24, 2398, '83807653', 'KINGDOM GINSENG CAPS', NULL, '15.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '2.0000', '2021-04-19', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4364, NULL, 24, 2397, '92427320', 'GIFAS MIXTURE', NULL, '13.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '2.0000', '2021-04-19', 'received', '13.5000', '13.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4365, NULL, 24, 2396, '57591599', 'LUCKY KOO MIX', NULL, '11.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.0000', '0.0000', '2021-04-19', 'received', '11.5000', '11.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4366, NULL, 24, 2395, '99288830', 'TINATETT 230', NULL, '27.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.0000', '1.0000', '2021-04-19', 'received', '27.0000', '27.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4367, NULL, 24, 2394, '14717379', 'MAAME DAGOMBA', NULL, '4.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.0000', '2.0000', '2021-04-19', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4368, NULL, 24, 2022, '69436145', 'CHOCHO CREAM', NULL, '3.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.5000', '1.0000', '2021-04-19', 'received', '3.5000', '3.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4369, NULL, 24, 2392, '10965636', 'CHOCHO SAOP', NULL, '3.2000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.6000', '0.0000', '2021-04-19', 'received', '3.2000', '3.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4370, NULL, 24, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.4000', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '38.0000', '2021-04-19', 'received', '0.4000', '0.4000', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4371, NULL, 24, 2228, '7501058625915', 'LACTOGEN  1', NULL, '24.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.5000', '0.0000', '2021-04-19', 'received', '24.5000', '24.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4372, NULL, 24, 2370, '92071659', 'BICTIGEL SANITIZER S/S', NULL, '2.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '6.0000', '2021-04-19', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4373, NULL, 24, 2369, '41710683', 'PHARMADERM SANITIZER', NULL, '13.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '2.0000', '2021-04-19', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4374, NULL, 24, 2368, '85418156', 'SIVODERM  SANITIZER MEDIUM', NULL, '13.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.0000', '0.0000', '2021-04-19', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4375, NULL, 24, 2367, '21683139', 'SIVODERM SANITIZER BIG', NULL, '24.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '48.0000', '2.0000', '2021-04-19', 'received', '24.0000', '24.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4376, NULL, 24, 2371, '83539675', 'FRESH LADY CAPS', NULL, '12.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '48.0000', '3.0000', '2021-04-19', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4377, NULL, 24, 2372, '48662385', 'FRESHMAN CAPS', NULL, '17.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '68.0000', '3.0000', '2021-04-19', 'received', '17.0000', '17.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4378, NULL, 24, 2373, '56498485', 'LAUD STD', NULL, '11.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.5000', '3.0000', '2021-04-19', 'received', '11.5000', '11.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4379, NULL, 24, 2374, '02032095', 'OSONS GARLIC CAPS', NULL, '6.1000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '61.0000', '10.0000', '2021-04-19', 'received', '6.1000', '6.1000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4380, NULL, 24, 2375, '02290774', 'PA-KUM( ROCKMAN) CAPS', NULL, '12.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.5000', '3.0000', '2021-04-19', 'received', '12.5000', '12.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4381, NULL, 24, 2376, '77456423', 'PROSTAFIT', NULL, '19.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '58.5000', '2.0000', '2021-04-19', 'received', '19.5000', '19.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4382, NULL, 24, 2377, '96827889', 'ROCK GENECURE', NULL, '8.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.4000', '3.0000', '2021-04-19', 'received', '8.8000', '8.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4383, NULL, 24, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '75.0000', '0.0000', '2021-04-19', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4384, NULL, 24, 2378, '08590643', 'VENE CAPS', NULL, '18.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.0000', '0.0000', '2021-04-19', 'received', '18.0000', '18.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4385, NULL, 24, 2379, '98167111', 'COLODIUM CAPS', NULL, '1.5900', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '47.7000', '12.0000', '2021-04-19', 'received', '1.5900', '1.5900', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4386, NULL, 24, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '37.9000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '227.4000', '2.0000', '2021-04-19', 'received', '37.9000', '37.9000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4387, NULL, 24, 1496, 'PR-209', 'ENACEF SUSP', NULL, '8.8400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.6800', '0.0000', '2021-04-19', 'received', '8.8400', '8.8400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4388, NULL, 24, 2382, '28069626', 'EPICROM 4% EYE DROP', NULL, '15.6600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.9800', '0.0000', '2021-04-19', 'received', '15.6600', '15.6600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4389, NULL, 24, 2383, '32782648', 'GINSOMIN EVE', NULL, '16.3000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.6000', '2.0000', '2021-04-19', 'received', '16.3000', '16.3000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4390, NULL, 24, 2385, '52921', 'BECOATIN TABS', NULL, '7.8800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.6400', '1.0000', '2021-04-19', 'received', '7.8800', '7.8800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4391, NULL, 24, 2386, '92175949', 'TETRACYCLINE EYE OINT 5G', NULL, '2.0100', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.0500', '1.0000', '2021-04-19', 'received', '2.0100', '2.0100', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4392, NULL, 24, 2387, '00790319', 'NORMAL TEARS EYE DROP', NULL, '14.0700', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '56.2800', '2.0000', '2021-04-19', 'received', '14.0700', '14.0700', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4393, NULL, 24, 2388, '50008774', 'S/SEAS JOINTCARE SUPPLEX CAPS', NULL, '52.8500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '105.7000', '0.0000', '2021-04-19', 'received', '52.8500', '52.8500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4394, NULL, 24, 2389, '78098233', 'ALKA SELTZER 20\'S', NULL, '3.1400', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '94.2000', '24.0000', '2021-04-19', 'received', '3.1400', '3.1400', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4395, NULL, 24, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', NULL, '5.2800', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.8000', '0.0000', '2021-04-19', 'received', '5.2800', '5.2800', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4396, NULL, 24, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '180.0000', '0.0000', '2021-04-19', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4397, NULL, 24, 2390, '76253920', 'NEXIUM 10 SACHET', NULL, '7.4000', '0.0000', '22.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '162.8000', '7.0000', '2021-04-19', 'received', '7.4000', '7.4000', NULL, NULL, NULL, 1, 'pc', '22.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4398, NULL, 24, 2391, '12827991', 'ENAMYCIN TAB', NULL, '2.7000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '3.0000', '2021-04-19', 'received', '2.7000', '2.7000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4399, NULL, 24, 2319, '27607621', 'KN95 FACE MASK', NULL, '3.5000', '0.0000', '40.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '140.0000', '0.0000', '2021-04-19', 'received', '3.5000', '3.5000', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4400, NULL, 24, 2318, '02898540', 'FACE MASK', NULL, '0.5000', '0.0000', '40.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '0.0000', '2021-04-19', 'received', '0.5000', '0.5000', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4401, NULL, 24, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', NULL, '8.0000', '0.0000', '39.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '312.0000', '26.0000', '2021-04-19', 'received', '8.0000', '8.0000', NULL, NULL, NULL, 1, 'pc', '39.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4402, NULL, 24, 2130, '4005808837335', 'NIVEA SPRAY 250ML', NULL, '17.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '102.0000', '4.0000', '2021-04-19', 'received', '17.0000', '17.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4403, NULL, 24, 2131, '4005900098238', 'NIVEA SPRAY 150ML', NULL, '12.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '48.0000', '3.0000', '2021-04-19', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4404, NULL, 24, 2132, '4005900579614', 'NIVEA BODY LOTION 400ML', NULL, '22.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '264.0000', '9.0000', '2021-04-19', 'received', '22.0000', '22.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4405, NULL, 24, 2165, '6001051000821', 'NIVEA MEN BODY LOTION', NULL, '18.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.0000', '3.0000', '2021-04-19', 'received', '18.0000', '18.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4406, NULL, 24, 2133, '4005900795298', 'NIVEA BOBY LOTION COCOA', NULL, '19.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.0000', '2.0000', '2021-04-19', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4425, NULL, NULL, 1963, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4426, NULL, NULL, 1574, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4427, NULL, NULL, 2038, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4428, NULL, NULL, 2027, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4429, NULL, NULL, 1983, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4430, NULL, NULL, 2000, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4452, NULL, NULL, 2405, '40815002', 'GLOVES', NULL, '1.2000', '0.0000', '100.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '120.0000', '0.0000', '2021-04-20', 'received', '1.2000', '1.2000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4453, NULL, NULL, 2404, '22467568', 'OMRON BLOOD PRESSURE MONITOR M2', NULL, '250.0000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '250.0000', '0.0000', '2021-04-20', 'received', '250.0000', '250.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4454, NULL, NULL, 2406, '8901138502829', 'MENTAT', NULL, '20.7000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '62.1000', '0.0000', '2021-04-20', 'received', '20.7000', '20.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4493, NULL, NULL, 2407, '8901138140625', 'MENTAT SYRUP 100ML', NULL, '20.2000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '60.6000', '0.0000', '2021-04-20', 'received', '20.2000', '20.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4494, NULL, NULL, 1774, 'PR-487', 'ZESTRIL 10MG LISINOPRIL', NULL, '3.3000', '0.0000', '28.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '92.4000', '0.0000', '2021-04-20', 'received', '3.3000', '3.3000', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4495, NULL, NULL, 1775, 'PR-488', 'ZESTRIL 5MG LISINOPRIL', NULL, '1.7000', '0.0000', '28.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '47.6000', '0.0000', '2021-04-20', 'received', '1.7000', '1.7000', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4496, NULL, NULL, 1373, '1227808', 'TEGRETOL CR 200MG', NULL, '8.1000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.5000', '0.0000', '2021-04-20', 'received', '8.1000', '8.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4497, NULL, NULL, 2408, '5011501009398', 'DEEP HEAT OINT 15G', NULL, '8.6200', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.8600', '0.0000', '2021-04-20', 'received', '8.6200', '8.6200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4498, NULL, NULL, 2409, '86934998', 'PROMETHAZINE SYR 60ML', NULL, '2.3100', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '11.5500', '-1.0000', '2021-04-20', 'received', '2.3100', '2.3100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4499, NULL, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '14.9700', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '44.9100', '0.0000', '2021-04-20', 'received', '14.9700', '14.9700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4500, NULL, NULL, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '4.3200', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.9200', '-1.0000', '2021-04-20', 'received', '4.3200', '4.3200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4501, NULL, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '16.3900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '49.1700', '0.0000', '2021-04-20', 'received', '16.3900', '16.3900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4502, NULL, NULL, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '4.6000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.8000', '-3.0000', '2021-04-20', 'received', '4.6000', '4.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4503, NULL, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.5000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.0000', '0.0000', '2021-04-20', 'received', '1.5000', '1.5000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4504, NULL, NULL, 2412, '17935935', 'GLIBINIL CAPS 5MG', NULL, '0.5200', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.0000', '0.0000', '2021-04-20', 'received', '0.5200', '0.5200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4505, NULL, NULL, 2413, '72302134', 'LETAVIN 125MG', NULL, '1.0500', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '52.5000', '-2.0000', '2021-04-20', 'received', '1.0500', '1.0500', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4524, 83, NULL, 2405, '40815002', 'GLOVES', NULL, '1.2000', '1.6000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-04-19', 'received', '1.2000', '1.2000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '1.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4525, 83, NULL, 2404, '22467568', 'OMRON BLOOD PRESSURE MONITOR M2', NULL, '250.0000', '300.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '250.0000', '0.0000', '2021-04-19', 'received', '250.0000', '250.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4526, 83, NULL, 2406, '8901138502829', 'MENTAT', NULL, '20.7000', '27.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.1000', '0.0000', '2021-04-19', 'received', '20.7000', '20.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4527, 83, NULL, 2407, '8901138140625', 'MENTAT SYRUP 100ML', NULL, '20.2000', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.6000', '0.0000', '2021-04-19', 'received', '20.2000', '20.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4528, 83, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '26.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0600', '0.0000', '2021-04-19', 'received', '19.0200', '19.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4529, 83, NULL, 1774, 'PR-487', 'ZESTRIL 10MG LISINOPRIL', NULL, '3.3000', '4.3000', '28.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.4000', '0.0000', '2021-04-19', 'received', '3.3000', '3.3000', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '3.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4530, 83, NULL, 1775, 'PR-488', 'ZESTRIL 5MG LISINOPRIL', NULL, '1.7000', '2.3000', '28.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.6000', '0.0000', '2021-04-19', 'received', '1.7000', '1.7000', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '1.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4531, 83, NULL, 1373, '1227808', 'TEGRETOL CR 200MG', NULL, '8.1000', '10.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '0.0000', '2021-04-19', 'received', '8.1000', '8.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4532, 83, NULL, 2408, '5011501009398', 'DEEP HEAT OINT 15G', NULL, '8.6200', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8600', '0.0000', '2021-04-19', 'received', '8.6200', '8.6200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4533, 83, NULL, 2409, '86934998', 'PROMETHAZINE SYR 60ML', NULL, '2.3100', '4.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5500', '0.0000', '2021-04-19', 'received', '2.3100', '2.3100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.3100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4534, 83, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '14.9700', '19.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.9100', '0.0000', '2021-04-19', 'received', '14.9700', '14.9700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.9700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4535, 83, NULL, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '4.3200', '6.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.9200', '0.0000', '2021-04-19', 'received', '4.3200', '4.3200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4536, 83, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '16.3900', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.1700', '0.0000', '2021-04-19', 'received', '16.3900', '16.3900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.3900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4537, 83, NULL, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', NULL, '53.3100', '71.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.6200', '0.0000', '2021-04-19', 'received', '53.3100', '53.3100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '53.3100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4538, 83, NULL, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '4.6000', '6.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '0.0000', '2021-04-19', 'received', '4.6000', '4.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4539, 83, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.5000', '2.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-04-19', 'received', '1.5000', '1.5000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4540, 83, NULL, 2412, '17935935', 'GLIBINIL CAPS 5MG', NULL, '0.5200', '1.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-04-19', 'received', '0.5200', '0.5200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4541, 83, NULL, 2413, '72302134', 'LETAVIN 125MG', NULL, '1.0500', '1.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '0.0000', '2021-04-19', 'received', '1.0500', '1.0500', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4542, 83, NULL, 2246, '5017007023364', 'AMILODIPINE 5MG TEVA', NULL, '3.4000', '5.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.4000', '6.0000', '2021-04-19', 'received', '3.4000', '3.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4543, 81, NULL, 1735, 'PR-448', 'EXFORGE TABS (10/160)MG 28', NULL, '4.6000', '6.0000', '84.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '386.4000', '0.0000', '2021-04-18', 'received', '4.6000', '4.6000', '84.0000', NULL, NULL, 1, 'pc', '84.0000', NULL, NULL, NULL, NULL, '4.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4544, 81, NULL, 2328, '59058180', 'EXFORGE 5MG/160MG 28\'', NULL, '59.7400', '79.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '238.9600', '0.0000', '2021-04-18', 'received', '59.7400', '59.7400', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '59.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4545, 81, NULL, 2329, '93880955', 'EXFORGE HCT 5/160/12.5MG', NULL, '30.1300', '40.0000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '241.0400', '0.0000', '2021-04-18', 'received', '30.1300', '30.1300', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '30.1300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4546, 81, NULL, 2331, '22131552', 'IMODIYM CAPS 2MG 6\'S', NULL, '12.0700', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.2100', '0.0000', '2021-04-18', 'received', '12.0700', '12.0700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4547, 81, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '5.0900', '7.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.5400', '0.0000', '2021-04-18', 'received', '5.0900', '5.0900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.0900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4548, 81, NULL, 2333, '81610561', 'CIPROFLOXACIN SUSP (XIN-A)', NULL, '33.0000', '43.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-04-18', 'received', '33.0000', '33.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4549, 81, NULL, 2334, '99769153', 'CROMAX-2 EYE DROP', NULL, '16.0000', '21.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-04-18', 'received', '16.0000', '16.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4550, 81, NULL, 2335, '90387267', 'EPICROM EYE DROP 2%', NULL, '13.9000', '18.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.7000', '0.0000', '2021-04-18', 'received', '13.9000', '13.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4551, 81, NULL, 2336, '74912018', 'ATENOLOL 50MG', NULL, '7.0000', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2021-04-18', 'received', '7.0000', '7.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4552, 81, NULL, 2337, '04743466', 'M2 TONE', NULL, '51.0000', '67.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '153.0000', '0.0000', '2021-04-18', 'received', '51.0000', '51.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '51.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4553, 81, NULL, 2338, '45884609', 'DUROMIN 30MG', NULL, '9.6300', '13.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '288.9000', '0.0000', '2021-04-18', 'received', '9.6300', '9.6300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '9.6300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4554, 81, NULL, 2339, '56648929', 'BENDRO 5MG BLISTER UK', NULL, '7.2300', '9.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.1500', '0.0000', '2021-04-18', 'received', '7.2300', '7.2300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.2300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4555, 81, NULL, 2340, '49976874', 'BENDROFLUZIDE 2.5MG UK', NULL, '4.2000', '5.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2021-04-18', 'received', '4.2000', '4.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4556, 81, NULL, 2341, '67208590', 'NEXCOFER CAPS', NULL, '5.5900', '7.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.3600', '0.0000', '2021-04-18', 'received', '5.5900', '5.5900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '5.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4557, 81, NULL, 2342, '62530607', 'DICLO-DENK RECTAL SUPPOSITRY', NULL, '1.8600', '2.5000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8000', '0.0000', '2021-04-18', 'received', '1.8600', '1.8600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4558, 81, NULL, 2343, '67107435', 'INFACOL DROPS 50ML', NULL, '36.2500', '48.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '0.0000', '2021-04-18', 'received', '36.2500', '36.2500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4559, 81, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '18.2000', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6000', '0.0000', '2021-04-18', 'received', '18.2000', '18.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4560, 81, NULL, 2345, '37407616', 'PONSTAN CAPS 250MG', NULL, '7.6400', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.2000', '0.0000', '2021-04-18', 'received', '7.6400', '7.6400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4561, 81, NULL, 2346, '68048014', 'CALAMINE OINT', NULL, '5.5000', '7.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2021-04-18', 'received', '5.5000', '5.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4562, 81, NULL, 2347, '27404535', 'SALICYLIC ACID OINT', NULL, '5.2000', '7.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-04-18', 'received', '5.2000', '5.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4563, 81, NULL, 2348, '70645774', 'LYNUX OINT', NULL, '22.0300', '29.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0600', '0.0000', '2021-04-18', 'received', '22.0300', '22.0300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.0300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4564, 81, NULL, 2349, '82507445', 'CEBROTONIN TAB', NULL, '24.1000', '32.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.6000', '0.0000', '2021-04-18', 'received', '24.1000', '24.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '24.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4565, 81, NULL, 2350, '58123990', 'COARTEM 6\'S', NULL, '10.3800', '13.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.1400', '0.0000', '2021-04-18', 'received', '10.3800', '10.3800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.3800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4566, 81, NULL, 2351, '81129325', 'COARTEM 12\'S', NULL, '17.7000', '23.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.1000', '0.0000', '2021-04-18', 'received', '17.7000', '17.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4567, 81, NULL, 2352, '84404614', 'TRAMADOL CAPS 50MG (KRAKA)', NULL, '20.0000', '26.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2021-04-18', 'received', '20.0000', '20.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4568, 81, NULL, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', NULL, '4.4500', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.2500', '0.0000', '2021-04-18', 'received', '4.4500', '4.4500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.4500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4569, 81, NULL, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', NULL, '53.3100', '71.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.6200', '0.0000', '2021-04-18', 'received', '53.3100', '53.3100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '53.3100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4570, 81, NULL, 2356, '42767945', 'DIABETONE TABS UK', NULL, '38.9800', '51.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.9600', '0.0000', '2021-04-18', 'received', '38.9800', '38.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '38.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4571, 81, NULL, 2357, '22168350', 'LADINAS PICT', NULL, '4.0000', '5.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-04-18', 'received', '4.0000', '4.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4572, 81, NULL, 2358, '32893309', 'LOSAR-DENK 100MG', NULL, '27.2100', '36.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6300', '0.0000', '2021-04-18', 'received', '27.2100', '27.2100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4573, 81, NULL, 2359, '66115662', 'LOSAR-DENK 50MG TAB', NULL, '16.2200', '21.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.6600', '0.0000', '2021-04-18', 'received', '16.2200', '16.2200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.2200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4574, 81, NULL, 2360, '04076969', 'ASMADRIN TABS', NULL, '0.5200', '0.6900', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2021-04-18', 'received', '0.5200', '0.5200', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4575, 81, NULL, 2361, '93787462', 'ASMANOL TABS 200', NULL, '0.4700', '0.6000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.7500', '0.0000', '2021-04-18', 'received', '0.4700', '0.4700', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.4700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4576, 81, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '82.0200', '108.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '164.0400', '0.0000', '2021-04-18', 'received', '82.0200', '82.0200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '82.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4577, 81, NULL, 2363, '25326446', 'WELLMAN DRINK', NULL, '6.8800', '9.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.8000', '0.0000', '2021-04-18', 'received', '6.8800', '6.8800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4578, 81, NULL, 2365, '37620765', 'CLARITHROMYCIN 500MG B-CLAR', NULL, '15.0000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-04-18', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4579, 81, NULL, 2366, '5017023371', 'AMILODIPINE 10 MG (TEVA)', NULL, '3.7500', '6.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-04-18', 'received', '3.7500', '3.7500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4580, 81, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '35.6000', '47.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.2000', '0.0000', '2021-04-18', 'received', '35.6000', '35.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4581, 81, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '4.6000', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-04-18', 'received', '4.6000', '4.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4582, 81, NULL, 2414, '85111706', 'AMLODIPINE 5MG', NULL, '3.4000', '5.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '0.0000', '2021-04-18', 'received', '3.4000', '3.4000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4602, NULL, NULL, 1591, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4603, NULL, NULL, 1577, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4604, NULL, NULL, 1831, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4620, NULL, NULL, 2414, '85111706', 'AMLODIPINE 5MG', NULL, '3.4000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.8000', '-3.0000', '2021-04-20', 'received', '3.4000', '3.4000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4642, 82, NULL, 2367, '21683139', 'SIVODERM SANITIZER BIG', NULL, '24.0000', '60.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-04-19', 'received', '24.0000', '24.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4643, 82, NULL, 2368, '85418156', 'SIVODERM  SANITIZER MEDIUM', NULL, '13.0000', '30.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2021-04-19', 'received', '13.0000', '13.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4644, 82, NULL, 2369, '41710683', 'PHARMADERM SANITIZER', NULL, '13.0000', '60.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-04-19', 'received', '13.0000', '13.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4645, 82, NULL, 2370, '92071659', 'BICTIGEL SANITIZER S/S', NULL, '2.5000', '3.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-19', 'received', '2.5000', '2.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4646, 82, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '24.5000', '28.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5000', '0.0000', '2021-04-19', 'received', '24.5000', '24.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '24.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4647, 82, NULL, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', NULL, '5.2800', '7.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '0.0000', '2021-04-19', 'received', '5.2800', '5.2800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4648, 82, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '35.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2021-04-19', 'received', '15.0000', '15.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4649, 82, NULL, 2390, '76253920', 'NEXIUM 10 SACHET', NULL, '7.4000', '9.0000', '22.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.8000', '0.0000', '2021-04-19', 'received', '7.4000', '7.4000', '22.0000', NULL, NULL, 1, 'pc', '22.0000', NULL, NULL, NULL, NULL, '7.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4650, 82, NULL, 2391, '12827991', 'ENAMYCIN TAB', NULL, '2.7000', '3.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-04-19', 'received', '2.7000', '2.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4651, 82, NULL, 2319, '27607621', 'KN95 FACE MASK', NULL, '3.5000', '4.0000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '0.0000', '2021-04-19', 'received', '3.5000', '3.5000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4652, 82, NULL, 2318, '02898540', 'FACE MASK', NULL, '0.5000', '1.0000', '200.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-04-19', 'received', '0.5000', '0.5000', '200.0000', NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, '0.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4653, 82, NULL, 2417, '89073800', 'DOVE SOAP', NULL, '14.5000', '18.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '0.0000', '2021-04-19', 'received', '14.5000', '14.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4654, 82, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.2000', '1.5000', '24.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '0.0000', '2021-04-19', 'received', '1.2000', '1.2000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4655, NULL, NULL, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '18.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '55.5000', '0.0000', '2021-04-20', 'received', '18.5000', '18.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4656, NULL, NULL, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', NULL, '5.0000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '5.0000', '-7.0000', '2021-04-20', 'received', '5.0000', '5.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4680, NULL, NULL, 1922, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4681, NULL, NULL, 1837, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4682, NULL, NULL, 1586, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4683, NULL, NULL, 2023, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4684, NULL, NULL, 1873, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4685, NULL, NULL, 1737, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4686, NULL, NULL, 2432, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4687, NULL, NULL, 2428, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4688, NULL, NULL, 2455, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4689, NULL, NULL, 1621, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4690, 44, NULL, 1967, '5023497400615', 'SALAMOL CFC INHALER', NULL, '19.5900', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.7700', '1.0000', '2021-04-01', 'received', '19.5900', '19.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4691, 44, NULL, 1706, 'PR-419', 'PROCOLD SYR 100ml', NULL, '90.0000', '20.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4692, 44, NULL, 1707, 'PR-420', 'MEDGLOBIN CAPS', NULL, '90.0000', '33.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4693, 44, NULL, 1708, 'PR-421', 'MEDGLOBIN SYR', NULL, '90.0000', '26.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4694, 44, NULL, 1710, 'PR-423', 'PRONALIN ADULT', NULL, '90.0000', '4.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4695, 44, NULL, 1711, 'PR-424', 'CIROTAMIN SYR', NULL, '90.0000', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4696, 44, NULL, 1712, 'PR-425', 'ATORVASTATIN 20MG TAB', NULL, '90.0000', '13.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '450.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4697, 44, NULL, 1713, 'PR-426', 'STRETCH GO', NULL, '90.0000', '20.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '450.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4698, 44, NULL, 1714, '5024874016771', 'VALPAK VITAMIN C500MG CHEWABLE', NULL, '90.0000', '22.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4699, 44, NULL, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '90.0000', '6.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '0.0000', '2021-04-01', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4700, 44, NULL, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', NULL, '13.0000', '17.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '4.0000', '2021-04-01', 'received', '13.0000', '13.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4701, 44, NULL, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', NULL, '13.0000', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-04-01', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4702, 44, NULL, 1439, 'PR-152', 'VICTAGO s s', NULL, '1.0000', '1.3000', '24.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '11.0000', '2021-04-01', 'received', '1.0000', '1.0000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4703, 44, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '10.0000', '13.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2021-04-01', 'received', '10.0000', '10.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4704, 44, NULL, 2371, '83539675', 'FRESH LADY CAPS', NULL, '12.0000', '17.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-04-01', 'received', '12.0000', '12.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4705, 44, NULL, 2372, '48662385', 'FRESHMAN CAPS', NULL, '17.0000', '22.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2021-04-01', 'received', '17.0000', '17.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4706, 44, NULL, 2373, '56498485', 'LAUD STD', NULL, '11.5000', '15.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '0.0000', '2021-04-01', 'received', '11.5000', '11.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4707, 44, NULL, 2374, '02032095', 'OSONS GARLIC CAPS', NULL, '6.1000', '8.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0000', '0.0000', '2021-04-01', 'received', '6.1000', '6.1000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4708, 44, NULL, 2375, '02290774', 'PA-KUM( ROCKMAN) CAPS', NULL, '12.5000', '16.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-04-01', 'received', '12.5000', '12.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4709, 44, NULL, 2376, '77456423', 'PROSTAFIT', NULL, '19.5000', '25.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2021-04-01', 'received', '19.5000', '19.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4710, 44, NULL, 2377, '96827889', 'ROCK GENECURE', NULL, '8.8000', '11.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '0.0000', '2021-04-01', 'received', '8.8000', '8.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4711, 44, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '20.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-04-01', 'received', '15.0000', '15.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4712, 44, NULL, 2378, '08590643', 'VENE CAPS', NULL, '18.0000', '23.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-04-01', 'received', '18.0000', '18.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4713, 44, NULL, 2392, '10965636', 'CHOCHO SAOP', NULL, '3.2000', '4.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.6000', '0.0000', '2021-04-01', 'received', '3.2000', '3.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4714, 44, NULL, 2022, '69436145', 'CHOCHO CREAM', NULL, '3.5000', '4.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '0.0000', '2021-04-01', 'received', '3.5000', '3.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4715, 44, NULL, 2394, '14717379', 'MAAME DAGOMBA', NULL, '4.0000', '5.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-04-01', 'received', '4.0000', '4.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4716, 44, NULL, 2395, '99288830', 'TINATETT 230', NULL, '27.0000', '35.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-04-01', 'received', '27.0000', '27.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4717, 44, NULL, 2396, '57591599', 'LUCKY KOO MIX', NULL, '11.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-04-01', 'received', '11.5000', '11.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '11.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4718, 44, NULL, 2397, '92427320', 'GIFAS MIXTURE', NULL, '13.5000', '18.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-04-01', 'received', '13.5000', '13.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4719, 44, NULL, 2398, '83807653', 'KINGDOM GINSENG CAPS', NULL, '15.0000', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-04-01', 'received', '15.0000', '15.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4720, 44, NULL, 2399, '95599749', 'HEPA PLUS', NULL, '8.5000', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2021-04-01', 'received', '8.5000', '8.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4721, 44, NULL, 2400, '91513969', 'BRIGHTFOD STRONG', NULL, '12.5000', '16.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-04-01', 'received', '12.5000', '12.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4722, 44, NULL, 1401, 'PR-114', 'EKURO BEWU', NULL, '3.0000', '4.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-04-01', 'received', '3.0000', '3.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4723, 44, NULL, 2402, '16734039', 'NANA ADJEI', NULL, '1.0000', '1.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '0.0000', '2021-04-01', 'received', '1.0000', '1.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '1.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4724, 44, NULL, 2393, '25300648', 'BOAFO OINT', NULL, '3.8000', '5.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8000', '0.0000', '2021-04-01', 'received', '3.8000', '3.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4725, 44, NULL, 1414, '6034000157048', 'LIVING BITTERS CAPS', NULL, '19.0000', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2021-04-01', 'received', '19.0000', '19.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4726, 44, NULL, 2456, '33589219', 'PILIEF OINT', NULL, '18.5000', '24.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '0.0000', '2021-04-01', 'received', '18.5000', '18.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4727, 44, NULL, 2457, '33345179', 'PILIEF TABS', NULL, '23.0000', '30.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2021-04-01', 'received', '23.0000', '23.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4728, 44, NULL, 1433, 'PR-146', 'TIME HERBAL MIX(25)', NULL, '10.0000', '13.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-04-01', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4729, 74, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '140.0000', '180.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '420.0000', '0.0000', '2021-04-11', 'received', '140.0000', '140.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4730, 74, NULL, 2308, '083502770183', 'PSYLLIUM HUSK', NULL, '20.0000', '40.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2021-04-11', 'received', '20.0000', '20.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4731, 74, NULL, 2306, '76223-3201-2', 'DYKLO SPRAY', NULL, '36.0000', '47.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-04-11', 'received', '36.0000', '36.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4732, 74, NULL, 1450, 'PR-163', 'Lofnac 100 supp WABG035', NULL, '0.8900', '1.2000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.9000', '0.0000', '2021-04-11', 'received', '0.8900', '0.8900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '0.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4733, 74, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.3300', '0.5000', '500.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '0.0000', '2021-04-11', 'received', '0.3300', '0.3300', '500.0000', NULL, NULL, 1, 'pc', '500.0000', NULL, NULL, NULL, NULL, '0.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4734, 74, NULL, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '13.6000', '18.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '0.0000', '2021-04-11', 'received', '13.6000', '13.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4735, 74, NULL, 2293, '03010667', 'PENICILLIN V 125MG TABS', NULL, '1.4400', '2.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-04-11', 'received', '1.4400', '1.4400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.4400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4736, 74, NULL, 2239, '5021265226085', 'PERFECTIL SKIN HAIR NAIL', NULL, '26.0000', '35.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '0.0000', '2021-04-11', 'received', '26.0000', '26.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '26.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4737, 74, NULL, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', NULL, '6.5900', '9.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.5400', '0.0000', '2021-04-11', 'received', '6.5900', '6.5900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4738, 74, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.4800', '1.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-04-11', 'received', '0.4800', '0.4800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.4800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4739, 74, NULL, 2243, '84463478', 'CALAMINE LOTION', NULL, '3.5000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '0.0000', '2021-04-11', 'received', '3.5000', '3.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4740, 74, NULL, 2240, '5000198522501', 'PIRITON SYR', NULL, '33.0000', '44.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-04-11', 'received', '33.0000', '33.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4741, 74, NULL, 2321, '80141429', 'MIST F.A.C', NULL, '2.5000', '3.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '1.0000', '2021-04-11', 'received', '2.5000', '2.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4742, 74, NULL, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '18.5000', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '0.0000', '2021-04-11', 'received', '18.5000', '18.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4743, 74, NULL, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', NULL, '5.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '0.0000', '2021-04-11', 'received', '5.0000', '5.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4744, 74, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '16.3900', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.1700', '0.0000', '2021-04-11', 'received', '16.3900', '16.3900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.3900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4745, NULL, NULL, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.2000', '0.0000', '24.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '28.8000', '-3.0000', '2021-04-21', 'received', '1.2000', '1.2000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4746, NULL, NULL, 2417, '89073800', 'DOVE SOAP', NULL, '14.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '43.5000', '0.0000', '2021-04-21', 'received', '14.5000', '14.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4780, 84, NULL, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', NULL, '9.9000', '20.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '0.0000', '2021-04-21', 'received', '9.9000', '9.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4781, 84, NULL, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', NULL, '7.0000', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2021-04-21', 'received', '7.0000', '7.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4782, 84, NULL, 2459, '26218313', 'ENAMYCIN SUS (ECL)', NULL, '5.2800', '7.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '0.0000', '2021-04-21', 'received', '5.2800', '5.2800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4783, 84, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '32.7700', '43.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '131.0800', '0.0000', '2021-04-21', 'received', '32.7700', '32.7700', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '32.7700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4784, 84, NULL, 1733, 'PR-446', 'ENAFIX TABS 200MG 10\'', NULL, '8.8900', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.6700', '0.0000', '2021-04-21', 'received', '8.8900', '8.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4785, 84, NULL, 1811, 'PR-524', 'VERMOX SUSP', NULL, '14.5300', '19.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5900', '0.0000', '2021-04-21', 'received', '14.5300', '14.5300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4786, 84, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '48.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '143.2000', '0.0000', '2021-04-21', 'received', '35.8000', '35.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '35.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4787, 84, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '56.2500', '74.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.5000', '0.0000', '2021-04-21', 'received', '56.2500', '56.2500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '56.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4788, 84, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '5.9400', '8.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '0.0000', '2021-04-21', 'received', '5.9400', '5.9400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4789, 84, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '20.0000', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-04-21', 'received', '20.0000', '20.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4790, 84, NULL, 2462, '03669885', 'WELLBABY DROP', NULL, '46.8500', '62.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8500', '0.0000', '2021-04-21', 'received', '46.8500', '46.8500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '46.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4791, 84, NULL, 2463, '22321274', 'ADVIL COMBO 50\'S', NULL, '2.8700', '4.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '143.5000', '0.0000', '2021-04-21', 'received', '2.8700', '2.8700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4792, 84, NULL, 2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', NULL, '5.9200', '8.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7600', '0.0000', '2021-04-21', 'received', '5.9200', '5.9200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.9200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4793, 84, NULL, 2168, '8901082004356', 'APTIZOOOM', NULL, '28.7000', '38.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.4000', '0.0000', '2021-04-21', 'received', '28.7000', '28.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4794, 84, NULL, 2464, '72877536', 'NEUROZAN', NULL, '54.0000', '71.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2021-04-21', 'received', '54.0000', '54.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '54.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4795, 84, NULL, 2465, '13163480', 'CORORANGE SYR', NULL, '7.8200', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4600', '0.0000', '2021-04-21', 'received', '7.8200', '7.8200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4796, 84, NULL, 2466, '574992', 'ZINCOFER CAPS', NULL, '13.5900', '18.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.1800', '0.0000', '2021-04-21', 'received', '13.5900', '13.5900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4797, 84, NULL, 2467, '97164110', 'LISINOPRIL 20MG TAB UK', NULL, '19.8000', '26.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2021-04-21', 'received', '19.8000', '19.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4798, 84, NULL, 2468, '92479608', 'ATENOLOL 100MG TABS UK', NULL, '4.8200', '6.3600', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.8200', '0.0000', '2021-04-21', 'received', '4.8200', '4.8200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '4.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4799, NULL, NULL, 2393, '25300648', 'BOAFO OINT', NULL, '3.8000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '22.8000', '5.0000', '2021-04-21', 'received', '3.8000', '3.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4800, NULL, NULL, 2456, '33589219', 'PILIEF OINT', NULL, '18.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '37.0000', '0.0000', '2021-04-21', 'received', '18.5000', '18.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4801, NULL, NULL, 2457, '33345179', 'PILIEF TABS', NULL, '23.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '46.0000', '-1.0000', '2021-04-21', 'received', '23.0000', '23.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4802, NULL, 28, 1433, 'PR-146', 'TIME HERBAL MIX(25)', NULL, '10.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '0.0000', '2021-04-21', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4803, NULL, 28, 2457, '33345179', 'PILIEF TABS', NULL, '23.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.0000', '0.0000', '2021-04-21', 'received', '23.0000', '23.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4804, NULL, 28, 2456, '33589219', 'PILIEF OINT', NULL, '18.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.0000', '2.0000', '2021-04-21', 'received', '18.5000', '18.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4805, NULL, 28, 1414, '6034000157048', 'LIVING BITTERS CAPS', NULL, '19.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.0000', '1.0000', '2021-04-21', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4806, NULL, 28, 2393, '25300648', 'BOAFO OINT', NULL, '2.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.0000', '1.0000', '2021-04-21', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4807, NULL, 28, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', NULL, '5.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '5.0000', '0.0000', '2021-04-21', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4808, NULL, 28, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '18.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.5000', '0.0000', '2021-04-21', 'received', '18.5000', '18.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4809, NULL, 28, 2406, '8901138502829', 'MENTAT', NULL, '20.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '62.1000', '2.0000', '2021-04-21', 'received', '20.7000', '20.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4810, NULL, 28, 2404, '22467568', 'OMRON BLOOD PRESSURE MONITOR M2', NULL, '250.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '250.0000', '1.0000', '2021-04-21', 'received', '250.0000', '250.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4811, NULL, 28, 2405, '40815002', 'GLOVES', NULL, '1.2000', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '78.0000', '2021-04-21', 'received', '1.2000', '1.2000', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4812, NULL, 28, 2407, '8901138140625', 'MENTAT SYRUP 100ML', NULL, '20.2000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.6000', '1.0000', '2021-04-21', 'received', '20.2000', '20.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4813, NULL, 28, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.0600', '1.0000', '2021-04-21', 'received', '19.0200', '19.0200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4814, NULL, 28, 1774, 'PR-487', 'ZESTRIL 10MG LISINOPRIL', NULL, '3.3000', '0.0000', '28.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '92.4000', '28.0000', '2021-04-21', 'received', '3.3000', '3.3000', NULL, NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4815, NULL, 28, 1775, 'PR-488', 'ZESTRIL 5MG LISINOPRIL', NULL, '1.7000', '0.0000', '28.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '47.6000', '28.0000', '2021-04-21', 'received', '1.7000', '1.7000', NULL, NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4816, NULL, 28, 1373, '1227808', 'TEGRETOL CR 200MG', NULL, '8.1000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.5000', '2.0000', '2021-04-21', 'received', '8.1000', '8.1000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4817, NULL, 28, 2408, '5011501009398', 'DEEP HEAT OINT 15G', NULL, '8.6200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.8600', '1.0000', '2021-04-21', 'received', '8.6200', '8.6200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4818, NULL, 28, 2409, '86934998', 'PROMETHAZINE SYR 60ML', NULL, '2.3100', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.5500', '5.0000', '2021-04-21', 'received', '2.3100', '2.3100', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4819, NULL, 28, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '14.9700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.9100', '2.0000', '2021-04-21', 'received', '14.9700', '14.9700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4820, NULL, 28, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '4.3200', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.9200', '0.0000', '2021-04-21', 'received', '4.3200', '4.3200', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4821, NULL, 28, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', NULL, '53.9700', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '107.9400', '0.0000', '2021-04-21', 'received', '53.9700', '53.9700', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4822, NULL, 28, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '4.6000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.8000', '0.0000', '2021-04-21', 'received', '4.6000', '4.6000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4823, NULL, 28, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.5000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '7.0000', '2021-04-21', 'received', '1.5000', '1.5000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4824, NULL, 28, 2412, '17935935', 'GLIBINIL CAPS 5MG', NULL, '0.5200', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '46.0000', '2021-04-21', 'received', '0.5200', '0.5200', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4825, NULL, 28, 2413, '72302134', 'LETAVIN 125MG', NULL, '1.0500', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.5000', '50.0000', '2021-04-21', 'received', '1.0500', '1.0500', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4826, NULL, 28, 2414, '85111706', 'AMLODIPINE 5MG', NULL, '3.4000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.8000', '6.0000', '2021-04-21', 'received', '3.4000', '3.4000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4827, NULL, 28, 2416, '42362525', 'VOLTIC WATER M/S', NULL, '1.2000', '0.0000', '24.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.8000', '4.0000', '2021-04-21', 'received', '1.2000', '1.2000', NULL, NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4828, NULL, 28, 2417, '89073800', 'DOVE SOAP', NULL, '14.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.5000', '2.0000', '2021-04-21', 'received', '14.5000', '14.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4829, NULL, 28, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', NULL, '9.9000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.5000', '2.0000', '2021-04-21', 'received', '9.9000', '9.9000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4830, NULL, 28, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', NULL, '7.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.0000', '0.0000', '2021-04-21', 'received', '7.0000', '7.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4831, NULL, 28, 2459, '26218313', 'ENAMYCIN SUS (ECL)', NULL, '5.2800', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.4000', '2.0000', '2021-04-21', 'received', '5.2800', '5.2800', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4832, NULL, 28, 2460, '07910647', 'EVECARE TAB', NULL, '32.7700', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '131.0800', '1.0000', '2021-04-21', 'received', '32.7700', '32.7700', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4833, NULL, 28, 1733, 'PR-446', 'ENAFIX TABS 200MG 10\'', NULL, '8.8900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.6700', '0.0000', '2021-04-21', 'received', '8.8900', '8.8900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4834, NULL, 28, 1811, 'PR-524', 'VERMOX SUSP', NULL, '14.5300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.5900', '0.0000', '2021-04-21', 'received', '14.5300', '14.5300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4835, NULL, 28, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '143.2000', '1.0000', '2021-04-21', 'received', '35.8000', '35.8000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4836, NULL, 28, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '56.2500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '112.5000', '0.0000', '2021-04-21', 'received', '56.2500', '56.2500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4837, NULL, 28, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '5.9400', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '59.4000', '0.0000', '2021-04-21', 'received', '5.9400', '5.9400', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4838, NULL, 28, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '20.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '0.0000', '2021-04-21', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4839, NULL, 28, 2462, '03669885', 'WELLBABY DROP', NULL, '46.8500', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.8500', '1.0000', '2021-04-21', 'received', '46.8500', '46.8500', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4840, NULL, 28, 2463, '22321274', 'ADVIL COMBO 50\'S', NULL, '2.8700', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '143.5000', '9.0000', '2021-04-21', 'received', '2.8700', '2.8700', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4841, NULL, 28, 2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', NULL, '5.9200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.7600', '1.0000', '2021-04-21', 'received', '5.9200', '5.9200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4842, NULL, 28, 2168, '8901082004356', 'APTIZOOOM', NULL, '28.7000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.4000', '1.0000', '2021-04-21', 'received', '28.7000', '28.7000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4843, NULL, 28, 2464, '72877536', 'NEUROZAN', NULL, '54.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '108.0000', '2.0000', '2021-04-21', 'received', '54.0000', '54.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4844, NULL, 28, 2465, '13163480', 'CORORANGE SYR', NULL, '7.8200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.4600', '2.0000', '2021-04-21', 'received', '7.8200', '7.8200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4845, NULL, 28, 2466, '574992', 'ZINCOFER CAPS', NULL, '13.5900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.1800', '0.0000', '2021-04-21', 'received', '13.5900', '13.5900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4846, NULL, 28, 2467, '97164110', 'LISINOPRIL 20MG TAB UK', NULL, '19.8000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.6000', '1.0000', '2021-04-21', 'received', '19.8000', '19.8000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4847, NULL, 28, 2468, '92479608', 'ATENOLOL 100MG TABS UK', NULL, '4.8200', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '4.8200', '0.0000', '2021-04-21', 'received', '4.8200', '4.8200', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4893, NULL, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '6.0500', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '60.5000', '-7.0000', '2021-04-21', 'received', '6.0500', '6.0500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4894, NULL, NULL, 1773, '7640153082091', 'XYLO ACINO MEPHA 0.10ML', NULL, '42.0500', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '84.1000', '0.0000', '2021-04-21', 'received', '42.0500', '42.0500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4895, NULL, NULL, 1776, '5000455005204', 'ZESTRIL TABS 20MG LISINOPRIL', NULL, '4.7000', '0.0000', '56.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '263.2000', '0.0000', '2021-04-21', 'received', '4.7000', '4.7000', '56.0000', NULL, NULL, 1, 'pc', '56.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4896, NULL, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '18.1900', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '90.9500', '-1.0000', '2021-04-21', 'received', '18.1900', '18.1900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4897, NULL, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '12.3500', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '123.5000', '0.0000', '2021-04-21', 'received', '12.3500', '12.3500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4898, NULL, NULL, 1779, 'PR-492', 'BISACODYL [GEO] 1000\'S', NULL, '0.3100', '0.0000', '100.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '31.0000', '-1.0000', '2021-04-21', 'received', '0.3100', '0.3100', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4899, NULL, NULL, 1781, 'PR-494', 'CAPS POLYFER', NULL, '4.1000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '41.0000', '0.0000', '2021-04-21', 'received', '4.1000', '4.1000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4900, NULL, NULL, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', NULL, '2.5000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.0000', '0.0000', '2021-04-21', 'received', '2.5000', '2.5000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4901, NULL, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '23.5500', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '117.7500', '0.0000', '2021-04-21', 'received', '23.5500', '23.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4902, NULL, NULL, 1784, 'PR-497', 'DROP CORORANGE', NULL, '4.8000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '14.4000', '0.0000', '2021-04-21', 'received', '4.8000', '4.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4903, NULL, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '14.0500', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '70.2500', '2.0000', '2021-04-21', 'received', '14.0500', '14.0500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4904, NULL, NULL, 1378, '5011417569627', 'BONJELA BABY', NULL, '34.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '69.0000', '0.0000', '2021-04-21', 'received', '34.5000', '34.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4905, NULL, NULL, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', NULL, '0.8100', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.5000', '0.0000', '2021-04-21', 'received', '0.8100', '0.8100', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4906, NULL, NULL, 1788, 'PR-501', 'KOFFEX SYR CHILD EXP', NULL, '4.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.5000', '-1.0000', '2021-04-21', 'received', '4.5000', '4.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4907, NULL, NULL, 1789, '7640128016717', 'LEXOTANIL 1.5MG', NULL, '35.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '105.0000', '0.0000', '2021-04-21', 'received', '35.0000', '35.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4908, NULL, NULL, 1790, '8904107900824', 'LEXSPORIN OINTMENT 20GMS', NULL, '16.9500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '50.8500', '0.0000', '2021-04-21', 'received', '16.9500', '16.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4909, NULL, NULL, 1791, '8904107900992', 'LEXSPORIN POWDER 10G', NULL, '13.9500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '41.8500', '0.0000', '2021-04-21', 'received', '13.9500', '13.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4910, NULL, NULL, 1960, '6033000298379', 'LIFEBUOY SOAP', NULL, '3.5600', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.8000', '0.0000', '2021-04-21', 'received', '3.5600', '3.5600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4911, NULL, NULL, 1793, '8850769017380', 'LIGABA 75MG(PREGABALIN)30\'S', NULL, '15.3000', '0.0000', '9.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '137.7000', '0.0000', '2021-04-21', 'received', '15.3000', '15.3000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4912, NULL, NULL, 1797, '8850769011388', 'PROSTACARE CAPS 30S', NULL, '51.7500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '155.2500', '0.0000', '2021-04-21', 'received', '51.7500', '51.7500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4913, NULL, NULL, 1798, '4008500115107', 'PROVIRON TABS 25MG', NULL, '40.3500', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '80.7000', '0.0000', '2021-04-21', 'received', '40.3500', '40.3500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4914, NULL, NULL, 1958, '7640128012184', 'ROCEPHIN INJ 1G IV', NULL, '54.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '108.0000', '0.0000', '2021-04-21', 'received', '54.0000', '54.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4915, NULL, NULL, 1802, '7640128017400', 'ROCEPHIN INJ 2G  IV', NULL, '86.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '172.0000', '0.0000', '2021-04-21', 'received', '86.0000', '86.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4916, NULL, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '4.2500', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '21.2500', '0.0000', '2021-04-21', 'received', '4.2500', '4.2500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4917, NULL, 29, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '4.2500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.2500', '5.0000', '2021-04-21', 'received', '4.2500', '4.2500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4918, NULL, 29, 1802, '7640128017400', 'ROCEPHIN INJ 2G  IV', NULL, '86.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '172.0000', '2.0000', '2021-04-21', 'received', '86.0000', '86.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4919, NULL, 29, 1958, '7640128012184', 'ROCEPHIN INJ 1G IV', NULL, '54.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '108.0000', '1.0000', '2021-04-21', 'received', '54.0000', '54.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4920, NULL, 29, 1555, '3582910081043', 'RHINATHIOL ADULT SYR 125ML', NULL, '22.2400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '66.7200', '1.0000', '2021-04-21', 'received', '22.2400', '22.2400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4921, NULL, 29, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', NULL, '20.2400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.7200', '1.0000', '2021-04-21', 'received', '20.2400', '20.2400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4922, NULL, 29, 1798, '4008500115107', 'PROVIRON TABS 25MG', NULL, '40.3500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '80.7000', '2.0000', '2021-04-21', 'received', '40.3500', '40.3500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4923, NULL, 29, 1797, '8850769011388', 'PROSTACARE CAPS 30S', NULL, '51.7500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '155.2500', '1.0000', '2021-04-21', 'received', '51.7500', '51.7500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4924, NULL, 29, 1793, '8850769017380', 'LIGABA 75MG(PREGABALIN)30\'S', NULL, '15.3000', '0.0000', '9.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '137.7000', '9.0000', '2021-04-21', 'received', '15.3000', '15.3000', NULL, NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4925, NULL, 29, 1960, '6033000298379', 'LIFEBUOY SOAP', NULL, '3.5600', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.8000', '5.0000', '2021-04-21', 'received', '3.5600', '3.5600', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4926, NULL, 29, 1791, '8904107900992', 'LEXSPORIN POWDER 10G', NULL, '13.9500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '41.8500', '0.0000', '2021-04-21', 'received', '13.9500', '13.9500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4927, NULL, 29, 1790, '8904107900824', 'LEXSPORIN OINTMENT 20GMS', NULL, '16.9500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.8500', '1.0000', '2021-04-21', 'received', '16.9500', '16.9500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4928, NULL, 29, 1789, '7640128016717', 'LEXOTANIL 1.5MG', NULL, '35.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '105.0000', '3.0000', '2021-04-21', 'received', '35.0000', '35.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4929, NULL, 29, 1788, 'PR-501', 'KOFFEX SYR CHILD EXP', NULL, '4.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.5000', '3.0000', '2021-04-21', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4930, NULL, 29, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', NULL, '0.8100', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.5000', '28.0000', '2021-04-21', 'received', '0.8100', '0.8100', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4931, NULL, 29, 1378, '5011417569627', 'BONJELA BABY', NULL, '34.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '69.0000', '2.0000', '2021-04-21', 'received', '34.5000', '34.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4932, NULL, 29, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '14.0500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '70.2500', '0.0000', '2021-04-21', 'received', '14.0500', '14.0500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4933, NULL, 29, 1784, 'PR-497', 'DROP CORORANGE', NULL, '4.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.4000', '3.0000', '2021-04-21', 'received', '4.8000', '4.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4934, NULL, 29, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '23.5500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '117.7500', '1.0000', '2021-04-21', 'received', '23.5500', '23.5500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4935, NULL, 29, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', NULL, '2.5000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '8.0000', '2021-04-21', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4936, NULL, 29, 1781, 'PR-494', 'CAPS POLYFER', NULL, '4.1000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '41.0000', '8.0000', '2021-04-21', 'received', '4.1000', '4.1000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4937, NULL, 29, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '35.6000', '0.0000', '0.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '0.0000', '0.0000', '2021-04-21', 'received', '35.6000', '35.6000', NULL, NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4938, NULL, 29, 1779, 'PR-492', 'BISACODYL [GEO] 1000\'S', NULL, '0.3100', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.0000', '67.0000', '2021-04-21', 'received', '0.3100', '0.3100', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4939, NULL, 29, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '12.3500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '123.5000', '0.0000', '2021-04-21', 'received', '12.3500', '12.3500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4940, NULL, 29, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '18.1900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.9500', '0.0000', '2021-04-21', 'received', '18.1900', '18.1900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4941, NULL, 29, 1776, '5000455005204', 'ZESTRIL TABS 20MG LISINOPRIL', NULL, '4.7000', '0.0000', '56.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '263.2000', '56.0000', '2021-04-21', 'received', '4.7000', '4.7000', NULL, NULL, NULL, 1, 'pc', '56.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4942, NULL, 29, 1773, '7640153082091', 'XYLO ACINO MEPHA 0.10ML', NULL, '42.0500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '84.1000', '0.0000', '2021-04-21', 'received', '42.0500', '42.0500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4943, NULL, 29, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '6.0500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.5000', '4.0000', '2021-04-21', 'received', '6.0500', '6.0500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4944, NULL, 29, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.2500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.7500', '0.0000', '2021-04-21', 'received', '4.2500', '4.2500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4945, NULL, 29, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '56.2500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '168.7500', '1.0000', '2021-04-21', 'received', '56.2500', '56.2500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4946, NULL, 29, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', NULL, '1.8000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '1.8000', '0.0000', '2021-04-21', 'received', '1.8000', '1.8000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4947, NULL, 29, 1808, '8906045432597', 'VITAFORCE SYRUP', NULL, '15.0500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.1500', '3.0000', '2021-04-21', 'received', '15.0500', '15.0500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4948, NULL, 29, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.2000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.6000', '3.0000', '2021-04-21', 'received', '9.2000', '9.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4949, NULL, 29, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '8.0500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.1500', '0.0000', '2021-04-21', 'received', '8.0500', '8.0500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4950, NULL, 29, 1811, 'PR-524', 'VERMOX SUSP', NULL, '14.5300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.5900', '0.0000', '2021-04-21', 'received', '14.5300', '14.5300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4951, NULL, 29, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.9000', '0.0000', '2021-04-21', 'received', '7.8900', '7.8900', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4952, NULL, 29, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '21.4500', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '85.8000', '0.0000', '2021-04-21', 'received', '21.4500', '21.4500', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4953, NULL, 29, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '18.2300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.6900', '0.0000', '2021-04-21', 'received', '18.2300', '18.2300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4954, NULL, 29, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', NULL, '14.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.4000', '0.0000', '2021-04-21', 'received', '14.8000', '14.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4955, NULL, 29, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '5.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '2.0000', '2021-04-21', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4956, NULL, 29, 1820, '8901040306010', 'TIMOL 0.5% (SANOFI)', NULL, '8.3700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.1100', '3.0000', '2021-04-21', 'received', '8.3700', '8.3700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4957, NULL, 29, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.4000', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '144.0000', '3.0000', '2021-04-21', 'received', '2.4000', '2.4000', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4958, NULL, 29, 1581, 'PR-294', 'TOUCH AND GO', NULL, '12.0500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.2500', '2.0000', '2021-04-21', 'received', '12.0500', '12.0500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4959, NULL, 29, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '4.9900', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.9000', '3.0000', '2021-04-21', 'received', '4.9900', '4.9900', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4960, NULL, 29, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '4.5000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '2.0000', '2021-04-21', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4961, NULL, 29, 1826, 'PR-539', 'SYRINGES & NEES (KOREA) 5ML', NULL, '0.2100', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.0000', '92.0000', '2021-04-21', 'received', '0.2100', '0.2100', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4962, NULL, 29, 1827, 'PR-540', 'SYRINGES & NEES 2MLS', NULL, '0.2000', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '96.0000', '2021-04-21', 'received', '0.2000', '0.2000', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4963, NULL, 29, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', NULL, '0.7300', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.5000', '8.0000', '2021-04-21', 'received', '0.7300', '0.7300', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4964, NULL, 29, 1829, '8934868137702', 'SUNLIGHT DW GREEN 400ML', NULL, '4.8900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.4500', '5.0000', '2021-04-21', 'received', '4.8900', '4.8900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4965, NULL, 29, 1830, '6033000296481', 'SUNLIGHT PINK BAR 120G', NULL, '0.9000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '4.5000', '2.0000', '2021-04-21', 'received', '0.9000', '0.9000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4966, NULL, 29, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '7.8000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.0000', '0.0000', '2021-04-21', 'received', '7.8000', '7.8000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4967, NULL, 29, 1832, 'PR-545', 'SYR TEGRATOL', NULL, '31.7000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.7000', '1.0000', '2021-04-21', 'received', '31.7000', '31.7000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4968, NULL, 29, 1835, '8901175038794', 'SIMVASTATIN 20MG(28s) UK', NULL, '18.9400', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '94.7000', '5.0000', '2021-04-21', 'received', '18.9400', '18.9400', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4969, NULL, 29, 1836, 'PR-549', 'SIRDALUD 2MG', NULL, '10.6000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '63.6000', '6.0000', '2021-04-21', 'received', '10.6000', '10.6000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4970, NULL, 29, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5500', '0.0000', '40.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.0000', '0.0000', '2021-04-21', 'received', '0.5500', '0.5500', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4971, NULL, 29, 1450, 'PR-163', 'Lofnac 100 supp WABG035', NULL, '0.8900', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.9000', '0.0000', '2021-04-21', 'received', '0.8900', '0.8900', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4972, NULL, 29, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.1500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '61.5000', '2.0000', '2021-04-21', 'received', '6.1500', '6.1500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4973, NULL, 29, 1840, 'PR-553', 'B COMPLEX B/P LP', NULL, '0.2400', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.0000', '16.0000', '2021-04-21', 'received', '0.2400', '0.2400', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4974, NULL, 29, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.3700', '0.0000', '80.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.6000', '0.0000', '2021-04-21', 'received', '0.3700', '0.3700', NULL, NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4975, NULL, 29, 1843, '5000456024754', 'NEXIUM TABS 20MG 14S', NULL, '4.3000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '129.0000', '13.0000', '2021-04-21', 'received', '4.3000', '4.3000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4976, NULL, 29, 1844, 'PR-557', 'LETAP AMPICLOX', NULL, '1.5000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '15.0000', '2021-04-21', 'received', '1.5000', '1.5000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4977, NULL, 29, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '19.5000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.0000', '2.0000', '2021-04-21', 'received', '19.5000', '19.5000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4978, NULL, 29, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '11.5000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.0000', '0.0000', '2021-04-21', 'received', '11.5000', '11.5000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4979, NULL, 29, 1847, '5028268050358', 'BEEHIVE BALSAM SYR', NULL, '18.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.5000', '0.0000', '2021-04-21', 'received', '18.5000', '18.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4980, NULL, 29, 1848, 'PR-561', 'DICLO INJ TROGE', NULL, '0.4200', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.0000', '97.0000', '2021-04-21', 'received', '0.4200', '0.4200', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4981, NULL, 29, 1849, '8906082820586', 'B CO INJ (MVC) 25\'S', NULL, '2.5000', '0.0000', '25.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '62.5000', '25.0000', '2021-04-21', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4982, NULL, 29, 2092, '69091614', 'GLUCOSE C L/P', NULL, '4.1500', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.6000', '2.0000', '2021-04-21', 'received', '4.1500', '4.1500', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4983, NULL, 29, 1852, 'PR-565', 'EYECOPEN ACPS 30?S', NULL, '14.9000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.7000', '3.0000', '2021-04-21', 'received', '14.9000', '14.9000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4984, NULL, 29, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '1.9000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.0000', '0.0000', '2021-04-21', 'received', '1.9000', '1.9000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4985, NULL, 29, 1854, 'PR-567', 'IBUCAP L/S 20X20', NULL, '2.5000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.0000', '5.0000', '2021-04-21', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4986, NULL, 29, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.4000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.0000', '13.0000', '2021-04-21', 'received', '1.4000', '1.4000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4987, NULL, 29, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.2500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.5000', '3.0000', '2021-04-21', 'received', '4.2500', '4.2500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4988, NULL, 29, 1857, '6033000270320', 'BX SYR S/S', NULL, '4.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.4000', '0.0000', '2021-04-21', 'received', '4.8000', '4.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4989, NULL, 29, 1859, '8901138502942', 'PILEX TAB', NULL, '22.6600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '67.9800', '2.0000', '2021-04-21', 'received', '22.6600', '22.6600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4990, NULL, 29, 1860, '8901138150891', 'PILEX OINTMENT', NULL, '21.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '64.5000', '1.0000', '2021-04-21', 'received', '21.5000', '21.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4991, NULL, 29, 1862, 'PR-575', 'UK MENNPACE', NULL, '37.3500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '112.0500', '3.0000', '2021-04-21', 'received', '37.3500', '37.3500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4992, NULL, 29, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.2200', '0.0000', '150.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '183.0000', '29.0000', '2021-04-21', 'received', '1.2200', '1.2200', NULL, NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4993, NULL, 29, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '6.0500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.1500', '0.0000', '2021-04-21', 'received', '6.0500', '6.0500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4994, NULL, 29, 1609, '8904107900893', 'MYCOLEX CREAM 20G', NULL, '12.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '2.0000', '2021-04-21', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4995, NULL, 29, 1866, 'PR-579', 'CETAPOL PM 120/12.5MG/5ML', NULL, '4.7500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.7500', '2.0000', '2021-04-21', 'received', '4.7500', '4.7500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4996, NULL, 29, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '10.0500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '100.5000', '0.0000', '2021-04-21', 'received', '10.0500', '10.0500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4997, NULL, 29, 1868, 'PR-581', 'CIPRO TAB 500MG (SHALCIP TAB)', NULL, '4.0300', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.3000', '5.0000', '2021-04-21', 'received', '4.0300', '4.0300', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4998, NULL, 29, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '2.8000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.0000', '0.0000', '2021-04-21', 'received', '2.8000', '2.8000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4999, NULL, 29, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', NULL, '2.7500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.5000', '10.0000', '2021-04-21', 'received', '2.7500', '2.7500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5000, NULL, 29, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.0000', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '0.0000', '2021-04-21', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5001, NULL, 29, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '11.9500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.8500', '0.0000', '2021-04-21', 'received', '11.9500', '11.9500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5002, NULL, 29, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.0500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.1500', '2.0000', '2021-04-21', 'received', '9.0500', '9.0500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5003, NULL, 29, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '49.6000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '99.2000', '0.0000', '2021-04-21', 'received', '49.6000', '49.6000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5004, NULL, 29, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '17.6500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.9500', '0.0000', '2021-04-21', 'received', '17.6500', '17.6500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5005, NULL, 29, 1757, 'PR-470', 'PERMOXYL (AMOX\'LIN ) SUSP 100ML', NULL, '4.4000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.0000', '5.0000', '2021-04-21', 'received', '4.4000', '4.4000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5006, NULL, 29, 1880, 'PR-593', 'AMOXY SUSP (LUEX)', NULL, '4.6000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.6000', '5.0000', '2021-04-21', 'received', '4.6000', '4.6000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5007, NULL, 29, 1881, '5021265232062', 'PREGNACARE BREAST FEEDING UK', NULL, '105.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '210.0000', '2.0000', '2021-04-21', 'received', '105.0000', '105.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5008, NULL, 29, 1882, 'PR-595', 'ICTHAMMOL OINT', NULL, '12.0500', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.3000', '6.0000', '2021-04-21', 'received', '12.0500', '12.0500', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5009, NULL, 29, 1883, 'PR-596', 'LIVERPLEX-B INFANT', NULL, '5.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.5000', '5.0000', '2021-04-21', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5010, NULL, 29, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '4.8500', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.1000', '2.0000', '2021-04-21', 'received', '4.8500', '4.8500', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5011, NULL, 29, 1885, 'PR-598', 'SALICYLIC OINT', NULL, '5.0500', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.3000', '6.0000', '2021-04-21', 'received', '5.0500', '5.0500', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5012, NULL, 29, 1886, 'PR-599', 'NORVASC 10MG 30?S', NULL, '227.7500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '455.5000', '2.0000', '2021-04-21', 'received', '227.7500', '227.7500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5013, NULL, 29, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '14.8000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '88.8000', '0.0000', '2021-04-21', 'received', '14.8000', '14.8000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5058, NULL, NULL, 1738, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5059, NULL, NULL, 2151, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5060, NULL, NULL, 2144, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5069, NULL, NULL, 2435, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5070, NULL, NULL, 2191, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5071, NULL, NULL, 1564, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5072, NULL, NULL, 1592, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5073, NULL, NULL, 1570, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5074, NULL, NULL, 2155, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5075, NULL, NULL, 1560, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5076, NULL, NULL, 1736, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5083, NULL, NULL, 2327, '66319646', 'MR Q', NULL, '4.5000', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '90.0000', '-4.0000', '2021-04-23', 'received', '4.5000', '4.5000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5084, NULL, 22, 2327, '66319646', 'MR Q', NULL, '4.5000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.0000', '7.0000', '2021-04-23', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5085, NULL, 22, 2321, '80141429', 'MIST F.A.C', NULL, '2.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.5000', '0.0000', '2021-04-23', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5086, NULL, 22, 2326, '76020391', 'FLOOR CLEANER', NULL, '18.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.0000', '3.0000', '2021-04-23', 'received', '18.0000', '18.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5087, NULL, 22, 2322, '19433378', 'LIQUID SOAP', NULL, '18.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '2.0000', '2021-04-23', 'received', '18.0000', '18.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5088, NULL, 22, 2325, '68025873', 'ALWAYS PAD MAX', NULL, '5.5000', '0.0000', '8.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.0000', '3.0000', '2021-04-23', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5089, NULL, 22, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '10.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.5000', '0.0000', '2021-04-23', 'received', '10.5000', '10.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5090, NULL, 22, 2470, '63996135', 'VENTOLIN NEBULES 5MG', NULL, '8.5000', '0.0000', '8.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '68.0000', '2.0000', '2021-04-23', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5091, NULL, 22, 2471, '81093795', 'LITTLE REMEDIES GRIPE WATER', NULL, '10.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '1.0000', '2021-04-23', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5092, NULL, 22, 2039, '8710447482032', 'REXONA DEO SPRAY 200ML', NULL, '9.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '4.0000', '2021-04-23', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5093, NULL, 22, 2472, '68854601', 'SOFT & GENTLIE SPRAY', NULL, '9.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.5000', '0.0000', '2021-04-23', 'received', '9.5000', '9.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5094, NULL, 22, 2473, '12094351', 'RIGHT GUARD SPRAY', NULL, '12.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '48.0000', '3.0000', '2021-04-23', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5095, NULL, 22, 2034, '4800888199188', 'REXONA ROLL ON 50ML', NULL, '6.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '6.0000', '2021-04-23', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5096, NULL, NULL, 1604, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5169, NULL, NULL, 1967, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5170, NULL, NULL, 2153, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5171, NULL, NULL, 2016, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5172, NULL, NULL, 2476, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5173, NULL, NULL, 2486, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5174, NULL, NULL, 2483, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5175, NULL, NULL, 2482, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5176, NULL, NULL, 2481, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5177, NULL, NULL, 2487, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5178, NULL, NULL, 2009, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5179, 87, NULL, 2476, '20264921', 'BLACK SEED', NULL, '10.0000', '12.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '200.0000', '0.0000', '2021-04-23', 'received', '10.0000', '10.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5180, 87, NULL, 2477, '98577401', 'SESAME SEED', NULL, '8.0000', '10.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2021-04-23', 'received', '8.0000', '8.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5181, 87, NULL, 2478, '10567518', 'MUSTARD SEED', NULL, '3.0000', '4.0000', '19.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2021-04-23', 'received', '3.0000', '3.0000', '19.0000', NULL, NULL, 1, 'pc', '19.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5182, 87, NULL, 2479, '64861163', 'CHIA SEED', NULL, '10.0000', '13.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '300.0000', '0.0000', '2021-04-23', 'received', '10.0000', '10.0000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5183, 87, NULL, 2481, '40294439', 'FENNEL SEED', NULL, '3.5000', '4.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2021-04-23', 'received', '3.5000', '3.5000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5184, 87, NULL, 2482, '83427820', 'FENUGREEK SEED', NULL, '6.0000', '8.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-04-23', 'received', '6.0000', '6.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5185, 87, NULL, 2483, '90693662', 'THYME LEAVES', NULL, '4.0000', '6.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-04-23', 'received', '4.0000', '4.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5186, 87, NULL, 2484, '00708902', 'PUMPKIN SEED', NULL, '17.0000', '20.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '170.0000', '0.0000', '2021-04-23', 'received', '17.0000', '17.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5187, 87, NULL, 2485, '40177526', 'GOLDEN RAISEN', NULL, '17.0000', '20.0000', '22.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '374.0000', '0.0000', '2021-04-23', 'received', '17.0000', '17.0000', '22.0000', NULL, NULL, 1, 'pc', '22.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5188, 87, NULL, 2487, '22129068', 'ALMOND SEED', NULL, '30.0000', '35.0000', '22.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '660.0000', '0.0000', '2021-04-23', 'received', '30.0000', '30.0000', '22.0000', NULL, NULL, 1, 'pc', '22.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5189, NULL, 30, 2476, '20264921', 'BLACK SEED', NULL, '10.0000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '200.0000', '17.0000', '2021-04-23', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5190, NULL, 30, 2477, '98577401', 'SESAME SEED', NULL, '8.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '80.0000', '6.0000', '2021-04-23', 'received', '8.0000', '8.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5191, NULL, 30, 2478, '10567518', 'MUSTARD SEED', NULL, '3.0000', '0.0000', '19.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.0000', '15.0000', '2021-04-23', 'received', '3.0000', '3.0000', NULL, NULL, NULL, 1, 'pc', '19.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5192, NULL, 30, 2479, '64861163', 'CHIA SEED', NULL, '10.0000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '300.0000', '18.0000', '2021-04-23', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5193, NULL, 30, 2481, '40294439', 'FENNEL SEED', NULL, '3.5000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '70.0000', '11.0000', '2021-04-23', 'received', '3.5000', '3.5000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5194, NULL, 30, 2482, '83427820', 'FENUGREEK SEED', NULL, '6.0000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '13.0000', '2021-04-23', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5195, NULL, 30, 2483, '90693662', 'THYME LEAVES', NULL, '4.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '4.0000', '2021-04-23', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5196, NULL, 30, 2484, '00708902', 'PUMPKIN SEED', NULL, '17.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '170.0000', '3.0000', '2021-04-23', 'received', '17.0000', '17.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5197, NULL, 30, 2485, '40177526', 'GOLDEN RAISEN', NULL, '17.0000', '0.0000', '22.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '374.0000', '14.0000', '2021-04-23', 'received', '17.0000', '17.0000', NULL, NULL, NULL, 1, 'pc', '22.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5198, NULL, 30, 2487, '22129068', 'ALMOND SEED', NULL, '30.0000', '0.0000', '22.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '660.0000', '0.0000', '2021-04-23', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '22.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5199, NULL, NULL, 2163, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5251, 86, NULL, 2418, '5000204957327', 'GLADE AIR FRESHNER', NULL, '9.5000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2021-04-23', 'received', '9.5000', '9.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5252, 86, NULL, 2419, '03336179', 'MR  MUSCLE', NULL, '14.0000', '18.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2021-04-23', 'received', '14.0000', '14.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5253, 86, NULL, 2420, '21380189', 'COWBELL TIN MILK', NULL, '21.5000', '28.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.5000', '0.0000', '2021-04-23', 'received', '21.5000', '21.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5254, 86, NULL, 2421, '51995515', 'MR MUSCLES FLOOR CLEANER', NULL, '14.0000', '18.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-04-23', 'received', '14.0000', '14.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5255, 86, NULL, 2422, '92383380', 'POWER ZONE B/S', NULL, '6.0000', '8.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-04-23', 'received', '6.0000', '6.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5256, 86, NULL, 2423, '57283790', 'POWER ZONE S/S', NULL, '4.0000', '6.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-04-23', 'received', '4.0000', '4.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5257, 86, NULL, 2424, '72870535', 'DEVA SOFTNER', NULL, '12.0000', '15.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-04-23', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5258, 86, NULL, 2425, '54377887', 'SASSO MOSQUITO SPRAY  B/S', NULL, '24.0000', '27.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-04-23', 'received', '24.0000', '24.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '24.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5259, 86, NULL, 2426, '49816115', 'COMFORT SOFTNER', NULL, '12.5000', '15.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-04-23', 'received', '12.5000', '12.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5260, 86, NULL, 2009, '50158911', 'DETTOL ANTISEPTIC 250ML', NULL, '18.0000', '20.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2021-04-23', 'received', '18.0000', '18.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5261, 86, NULL, 2427, '44595573', 'SAVLON SS/S', NULL, '5.8000', '7.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.6000', '0.0000', '2021-04-23', 'received', '5.8000', '5.8000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '5.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5262, 86, NULL, 2428, '50665292', 'HEAVEN MOSQUITO SPRAY', NULL, '11.0000', '13.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-04-23', 'received', '11.0000', '11.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5263, 86, NULL, 2012, '46653631', 'DETTOL ANTISEPTIC 165ML', NULL, '12.0000', '15.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-04-23', 'received', '12.0000', '12.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5264, 86, NULL, 2429, '5011309302417', 'ZEFLORA DISINFECTANT', NULL, '10.7000', '14.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.2000', '0.0000', '2021-04-23', 'received', '10.7000', '10.7000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5265, 86, NULL, 2417, '89073800', 'DOVE SOAP', NULL, '14.5000', '18.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '0.0000', '2021-04-23', 'received', '14.5000', '14.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5266, 86, NULL, 2430, '6926597271255', 'JOZZY KIDS TOOTHPASTE&BRUSH', NULL, '7.0000', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2021-04-23', 'received', '7.0000', '7.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5267, 86, NULL, 2431, '41187227', 'PEPSODENT BRUSH KIDS', NULL, '2.2000', '3.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.2000', '0.0000', '2021-04-23', 'received', '2.2000', '2.2000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5268, 86, NULL, 2432, '30456278', 'SO KLIN SOFTNER', NULL, '14.5000', '18.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.0000', '0.0000', '2021-04-23', 'received', '14.5000', '14.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5269, 86, NULL, 2433, '5060033370049', 'PRE MUM BREAST PAD', NULL, '0.8000', '1.0000', '80.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '0.0000', '2021-04-23', 'received', '0.8000', '0.8000', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '0.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5270, 86, NULL, 2434, '50763677', 'PEPSODENT 123', NULL, '5.2000', '7.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2021-04-23', 'received', '5.2000', '5.2000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5271, 86, NULL, 2435, '31684073', 'ORAL B TOOTHPASTE', NULL, '4.8000', '6.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '0.0000', '2021-04-23', 'received', '4.8000', '4.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5272, 86, NULL, 2436, '04225724', 'ANTI BACTERIAL WIPE', NULL, '15.0000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-04-23', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5273, 86, NULL, 2437, '44857984', 'APTAMIL BABY MILK', NULL, '80.0000', '100.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '0.0000', '2021-04-23', 'received', '80.0000', '80.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5274, 86, NULL, 2438, '59088740', 'NIDO +1 POWDERED MILK', NULL, '29.0000', '34.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '0.0000', '2021-04-23', 'received', '29.0000', '29.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '29.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5275, 86, NULL, 2439, '92520287', 'QUAKER OATS TIN', NULL, '15.0000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-04-23', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5276, 86, NULL, 2446, '17077517', 'PEPSODENT S/S', NULL, '2.5000', '4.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-23', 'received', '2.5000', '2.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5277, 86, NULL, 2442, '84998316', 'COLGATE TRIPPLE ACTION TOOTHPASTE', NULL, '4.8000', '6.5000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.6000', '0.0000', '2021-04-23', 'received', '4.8000', '4.8000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5278, 86, NULL, 2441, '82095661', 'COLGATE HERBAL TOOTHPASTE', NULL, '4.6000', '6.5000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '0.0000', '2021-04-23', 'received', '4.6000', '4.6000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5279, 86, NULL, 2443, '42430092', 'SOFTCARE SANITRY PAD', NULL, '4.0000', '6.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-04-23', 'received', '4.0000', '4.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5280, 86, NULL, 2444, '73221630', 'SOFTCARE BABY WIPES', NULL, '6.0000', '9.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-04-23', 'received', '6.0000', '6.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5281, 86, NULL, 2445, '08969985', 'ADULT DIAPER', NULL, '3.2000', '5.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '0.0000', '2021-04-23', 'received', '3.2000', '3.2000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5282, 86, NULL, 1960, '6033000298379', 'LIFEBUOY SOAP', NULL, '3.5600', '5.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3600', '0.0000', '2021-04-23', 'received', '3.5600', '3.5600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.5600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5283, 86, NULL, 2447, '50610187', 'IMPEPRIL LEATHER SOAP S/S', NULL, '3.8000', '6.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.8000', '0.0000', '2021-04-23', 'received', '3.8000', '3.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5284, 86, NULL, 2449, '73407261', 'DETTOL SOAP', NULL, '5.5000', '7.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-04-23', 'received', '5.5000', '5.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5285, 86, NULL, 2450, '16241595', 'HARPIC ANTISEPTIC', NULL, '13.5000', '16.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-04-23', 'received', '13.5000', '13.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '13.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5286, 86, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '5.1000', '7.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6000', '0.0000', '2021-04-23', 'received', '5.1000', '5.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5287, 86, NULL, 2475, '88463350', 'PEPSODENT CHARCOAL TOOTHPASTE', NULL, '7.0000', '9.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-04-23', 'received', '7.0000', '7.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '7.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5288, 86, NULL, 2448, '42222157', 'IMPERIAL LEATHER SOAP B/S', NULL, '5.0000', '7.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-04-23', 'received', '5.0000', '5.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5289, NULL, NULL, 2418, '5000204957327', 'GLADE AIR FRESHNER', NULL, '9.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '28.5000', '0.0000', '2021-04-24', 'received', '9.5000', '9.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5290, NULL, NULL, 2419, '03336179', 'MR  MUSCLE', NULL, '14.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '28.0000', '-2.0000', '2021-04-24', 'received', '14.0000', '14.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5291, NULL, NULL, 2421, '51995515', 'MR MUSCLES FLOOR CLEANER', NULL, '14.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '42.0000', '0.0000', '2021-04-24', 'received', '14.0000', '14.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5292, NULL, NULL, 2420, '21380189', 'COWBELL TIN MILK', NULL, '21.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '64.5000', '0.0000', '2021-04-24', 'received', '21.5000', '21.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5293, NULL, NULL, 2422, '92383380', 'POWER ZONE B/S', NULL, '6.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.0000', '0.0000', '2021-04-24', 'received', '6.0000', '6.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5294, NULL, NULL, 2423, '57283790', 'POWER ZONE S/S', NULL, '4.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '12.0000', '-1.0000', '2021-04-24', 'received', '4.0000', '4.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5295, NULL, NULL, 2424, '72870535', 'DEVA SOFTNER', NULL, '12.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.0000', '0.0000', '2021-04-24', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5296, NULL, NULL, 2425, '54377887', 'SASSO MOSQUITO SPRAY  B/S', NULL, '24.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '72.0000', '-1.0000', '2021-04-24', 'received', '24.0000', '24.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5297, NULL, NULL, 2426, '49816115', 'COMFORT SOFTNER', NULL, '12.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '37.5000', '0.0000', '2021-04-24', 'received', '12.5000', '12.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5298, NULL, NULL, 2009, '50158911', 'DETTOL ANTISEPTIC 250ML', NULL, '18.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '108.0000', '0.0000', '2021-04-24', 'received', '18.0000', '18.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5299, NULL, NULL, 2012, '46653631', 'DETTOL ANTISEPTIC 165ML', NULL, '12.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '72.0000', '0.0000', '2021-04-24', 'received', '12.0000', '12.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5300, NULL, NULL, 2428, '50665292', 'HEAVEN MOSQUITO SPRAY', NULL, '11.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '33.0000', '0.0000', '2021-04-24', 'received', '11.0000', '11.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5301, NULL, NULL, 2429, '5011309302417', 'ZEFLORA DISINFECTANT', NULL, '10.7000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '64.2000', '0.0000', '2021-04-24', 'received', '10.7000', '10.7000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5302, NULL, NULL, 2430, '6926597271255', 'JOZZY KIDS TOOTHPASTE&BRUSH', NULL, '7.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '21.0000', '-1.0000', '2021-04-24', 'received', '7.0000', '7.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5303, NULL, NULL, 2431, '41187227', 'PEPSODENT BRUSH KIDS', NULL, '2.2000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.2000', '-4.0000', '2021-04-24', 'received', '2.2000', '2.2000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5304, NULL, NULL, 2160, '6034000214017', 'CHOCHO ANTIBACTRIL SOAP', NULL, '2.6000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '2.6000', '0.0000', '2021-04-24', 'received', '2.6000', '2.6000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5305, NULL, NULL, 2436, '04225724', 'ANTI BACTERIAL WIPE', NULL, '15.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.0000', '0.0000', '2021-04-24', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5306, NULL, NULL, 2437, '44857984', 'APTAMIL BABY MILK', NULL, '80.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '160.0000', '-1.0000', '2021-04-24', 'received', '80.0000', '80.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5307, NULL, NULL, 2438, '59088740', 'NIDO +1 POWDERED MILK', NULL, '29.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '87.0000', '0.0000', '2021-04-24', 'received', '29.0000', '29.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5308, NULL, NULL, 2439, '92520287', 'QUAKER OATS TIN', NULL, '15.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.0000', '0.0000', '2021-04-24', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5309, NULL, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '5.1000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.6000', '0.0000', '2021-04-24', 'received', '5.1000', '5.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5310, NULL, NULL, 2475, '88463350', 'PEPSODENT CHARCOAL TOOTHPASTE', NULL, '7.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '42.0000', '0.0000', '2021-04-24', 'received', '7.0000', '7.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5311, NULL, NULL, 2441, '82095661', 'COLGATE HERBAL TOOTHPASTE', NULL, '4.6000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '55.2000', '-1.0000', '2021-04-24', 'received', '4.6000', '4.6000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5312, NULL, NULL, 2442, '84998316', 'COLGATE TRIPPLE ACTION TOOTHPASTE', NULL, '4.8000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '57.6000', '0.0000', '2021-04-24', 'received', '4.8000', '4.8000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5313, NULL, NULL, 2443, '42430092', 'SOFTCARE SANITRY PAD', NULL, '4.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '0.0000', '2021-04-24', 'received', '4.0000', '4.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5314, NULL, NULL, 2444, '73221630', 'SOFTCARE BABY WIPES', NULL, '6.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.0000', '0.0000', '2021-04-24', 'received', '6.0000', '6.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5315, NULL, NULL, 2445, '08969985', 'ADULT DIAPER', NULL, '3.2000', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '64.0000', '-10.0000', '2021-04-24', 'received', '3.2000', '3.2000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5316, NULL, NULL, 2446, '17077517', 'PEPSODENT S/S', NULL, '2.5000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-04-24', 'received', '2.5000', '2.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5317, NULL, NULL, 2447, '50610187', 'IMPEPRIL LEATHER SOAP S/S', NULL, '3.8000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '22.8000', '0.0000', '2021-04-24', 'received', '3.8000', '3.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5318, NULL, NULL, 2449, '73407261', 'DETTOL SOAP', NULL, '5.5000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '33.0000', '0.0000', '2021-04-24', 'received', '5.5000', '5.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5319, NULL, NULL, 2450, '16241595', 'HARPIC ANTISEPTIC', NULL, '13.5000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '54.0000', '0.0000', '2021-04-24', 'received', '13.5000', '13.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5320, NULL, NULL, 2432, '30456278', 'SO KLIN SOFTNER', NULL, '14.5000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '58.0000', '0.0000', '2021-04-24', 'received', '14.5000', '14.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5321, NULL, NULL, 2433, '5060033370049', 'PRE MUM BREAST PAD', NULL, '0.3200', '0.0000', '80.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.6000', '0.0000', '2021-04-24', 'received', '0.3200', '0.3200', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5322, NULL, NULL, 2434, '50763677', 'PEPSODENT 123', NULL, '5.2000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '31.2000', '0.0000', '2021-04-24', 'received', '5.2000', '5.2000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5323, NULL, NULL, 2435, '31684073', 'ORAL B TOOTHPASTE', NULL, '4.8000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '28.8000', '0.0000', '2021-04-24', 'received', '4.8000', '4.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5367, 90, NULL, 2452, '56056492', 'FINE FINE SOAP', NULL, '2.5000', '3.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.5000', '0.0000', '2021-04-24', 'received', '2.5000', '2.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5368, 90, NULL, 2399, '95599749', 'HEPA PLUS', NULL, '8.5000', '11.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2021-04-24', 'received', '8.5000', '8.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5369, 90, NULL, 2453, '3410766', 'MONA SOAP', NULL, '2.7000', '3.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.1000', '0.0000', '2021-04-24', 'received', '2.7000', '2.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '2.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5370, 90, NULL, 2451, '56986898', 'GIVERS MIX', NULL, '8.8000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '0.0000', '2021-04-24', 'received', '8.8000', '8.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5371, NULL, 33, 2451, '56986898', 'GIVERS MIX', NULL, '8.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.4000', '1.0000', '2021-04-24', 'received', '8.8000', '8.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5372, NULL, 33, 2452, '56056492', 'FINE FINE SOAP', NULL, '2.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.5000', '1.0000', '2021-04-24', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5373, NULL, 33, 2399, '95599749', 'HEPA PLUS', NULL, '8.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '51.0000', '0.0000', '2021-04-24', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5374, NULL, 33, 2453, '3410766', 'MONA SOAP', NULL, '2.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.1000', '3.0000', '2021-04-24', 'received', '2.7000', '2.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5403, NULL, NULL, 2493, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5429, NULL, NULL, 1889, 'PR-602', 'Doxykin Cap', NULL, '1.3000', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.0000', '0.0000', '2021-04-24', 'received', '1.3000', '1.3000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5430, NULL, NULL, 1890, 'PR-603', 'Fluxakin Cap', NULL, '3.3000', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '66.0000', '0.0000', '2021-04-24', 'received', '3.3000', '3.3000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5431, NULL, NULL, 1892, 'PR-605', 'Alugel', NULL, '0.5200', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.0000', '0.0000', '2021-04-24', 'received', '0.5200', '0.5200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5432, NULL, NULL, 1893, 'PR-606', 'Metrokin Sups', NULL, '4.4500', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.8000', '0.0000', '2021-04-24', 'received', '4.4500', '4.4500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5433, NULL, NULL, 1894, 'PR-607', 'Primadal', NULL, '3.6900', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '14.7600', '0.0000', '2021-04-24', 'received', '3.6900', '3.6900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5434, NULL, NULL, 1896, 'PR-609', 'Mayfer Cap', NULL, '4.3600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.0800', '0.0000', '2021-04-24', 'received', '4.3600', '4.3600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5435, NULL, NULL, 1895, 'PR-608', 'Mayfer Sup', NULL, '7.0200', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '21.0600', '0.0000', '2021-04-24', 'received', '7.0200', '7.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5436, NULL, NULL, 2064, '40046996', 'TASTYMOL', NULL, '4.2400', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.4400', '0.0000', '2021-04-24', 'received', '4.2400', '4.2400', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5437, NULL, NULL, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', NULL, '0.3700', '0.0000', '100.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '37.0000', '0.0000', '2021-04-24', 'received', '0.3700', '0.3700', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5438, NULL, NULL, 1900, 'PR-613', 'Cefruate 500', NULL, '2.4600', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.6000', '0.0000', '2021-04-24', 'received', '2.4600', '2.4600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5439, NULL, NULL, 1901, 'PR-614', 'Diclokin TR', NULL, '2.0100', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.2000', '0.0000', '2021-04-24', 'received', '2.0100', '2.0100', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5440, NULL, NULL, 1902, 'PR-615', 'Locid', NULL, '12.7200', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '12.7200', '0.0000', '2021-04-24', 'received', '12.7200', '12.7200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5441, NULL, NULL, 1903, 'PR-616', 'Lumeth Adult', NULL, '4.5000', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '135.0000', '0.0000', '2021-04-24', 'received', '4.5000', '4.5000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5442, NULL, NULL, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.3200', '0.0000', '45.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '14.4000', '-1.0000', '2021-04-24', 'received', '0.3200', '0.3200', '45.0000', NULL, NULL, 1, 'pc', '45.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5443, NULL, NULL, 1905, 'PR-618', 'ANTASIL', NULL, '0.4000', '0.0000', '100.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.0000', '-2.0000', '2021-04-24', 'received', '0.4000', '0.4000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5444, NULL, NULL, 1908, 'PR-621', 'Magacid tablet', NULL, '0.7000', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '35.0000', '-4.0000', '2021-04-24', 'received', '0.7000', '0.7000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5445, NULL, NULL, 1916, 'PR-629', 'Aspaul All in one', NULL, '8.2300', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '49.3800', '0.0000', '2021-04-24', 'received', '8.2300', '8.2300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5446, NULL, NULL, 1917, 'PR-630', 'Aspaul J', NULL, '4.3600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.0800', '0.0000', '2021-04-24', 'received', '4.3600', '4.3600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5447, NULL, NULL, 2129, '76264523', 'FINELIFE TONIC', NULL, '6.4100', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.6400', '0.0000', '2021-04-24', 'received', '6.4100', '6.4100', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5472, 22, NULL, 2065, '65765095', 'DOLOBAK', NULL, '1.6000', '2.0000', '24.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '0.0000', '2021-03-30', 'received', '1.6000', '1.6000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5473, 22, NULL, 2066, '05299189', 'MENTHOX LOZENGES', NULL, '0.5100', '1.0000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.7500', '0.0000', '2021-03-30', 'received', '0.5100', '0.5100', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.5100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5474, 22, NULL, 1905, 'PR-618', 'ANTASIL', NULL, '0.4000', '1.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-03-30', 'received', '0.4000', '0.4000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5475, 22, NULL, 2064, '40046996', 'TASTYMOL', NULL, '4.2400', '5.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.4400', '0.0000', '2021-03-30', 'received', '4.2400', '4.2400', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5476, 22, NULL, 1914, 'PR-627', 'Menthox Adult', NULL, '4.9000', '7.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '6.0000', '2021-03-30', 'received', '4.9000', '4.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5477, 22, NULL, 2129, '76264523', 'FINELIFE TONIC', NULL, '6.4100', '8.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6400', '0.0000', '2021-03-30', 'received', '6.4100', '6.4100', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.4100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5478, 22, NULL, 1931, 'PR-644', 'Exicam Do c0070002', NULL, '0.7000', '1.5000', '9.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.3000', '9.0000', '2021-03-30', 'received', '0.7000', '0.7000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '0.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5479, 22, NULL, 1931, 'PR-644', 'Exicam Do c0070002', NULL, '0.7000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.7000', '1.0000', '2021-03-30', 'received', '0.7000', '0.7000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '0.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5480, 22, NULL, 1901, 'PR-614', 'Diclokin TR', NULL, '2.0100', '3.0000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.4000', '19.0000', '2021-03-30', 'received', '2.0100', '2.0100', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.0100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5481, 22, NULL, 1895, 'PR-608', 'Mayfer Sup', NULL, '7.0200', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0600', '0.0000', '2021-03-30', 'received', '7.0200', '7.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5482, 22, NULL, 1318, '5017848248049', 'MENTHOX SYR ADULT', NULL, '4.9000', '6.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '0.0000', '2021-03-30', 'received', '4.9000', '4.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5483, 22, NULL, 1703, 'PR-416', 'VIGORIX SYR 200ML', NULL, '7.5900', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.7700', '0.0000', '2021-03-30', 'received', '7.5900', '7.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5484, 22, NULL, 2066, '05299189', 'MENTHOX LOZENGES', NULL, '0.5100', '1.0000', '75.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.2500', '25.0000', '2021-03-30', 'received', '0.5100', '0.5100', '75.0000', NULL, NULL, 1, 'pc', '75.0000', NULL, NULL, NULL, NULL, '0.5100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5485, 22, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.3200', '0.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '1.2800', '0.0000', '2021-03-30', 'received', '0.3200', '0.3200', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '0.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5486, NULL, NULL, 2066, '05299189', 'MENTHOX LOZENGES', NULL, '0.5100', '0.0000', '75.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '38.2500', '0.0000', '2021-04-24', 'received', '0.5100', '0.5100', '75.0000', NULL, NULL, 1, 'pc', '75.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5487, NULL, NULL, 1703, 'PR-416', 'VIGORIX SYR 200ML', NULL, '7.5900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '22.7700', '0.0000', '2021-04-24', 'received', '7.5900', '7.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5488, NULL, NULL, 2065, '65765095', 'DOLOBAK', NULL, '1.6000', '0.0000', '24.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '38.4000', '0.0000', '2021-04-24', 'received', '1.6000', '1.6000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5489, NULL, NULL, 1318, '5017848248049', 'MENTHOX SYR ADULT', NULL, '4.9000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '29.4000', '0.0000', '2021-04-24', 'received', '4.9000', '4.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5490, NULL, 34, 1895, 'PR-608', 'Mayfer Sup', NULL, '7.0200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.0600', '3.0000', '2021-04-24', 'received', '7.0200', '7.0200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5491, NULL, 34, 1318, '5017848248049', 'MENTHOX SYR ADULT', NULL, '4.9000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.4000', '1.0000', '2021-04-24', 'received', '4.9000', '4.9000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5492, NULL, 34, 2065, '65765095', 'DOLOBAK', NULL, '1.6000', '0.0000', '24.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.4000', '24.0000', '2021-04-24', 'received', '1.6000', '1.6000', NULL, NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5493, NULL, 34, 1703, 'PR-416', 'VIGORIX SYR 200ML', NULL, '7.5900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.7700', '2.0000', '2021-04-24', 'received', '7.5900', '7.5900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5494, NULL, 34, 2066, '05299189', 'MENTHOX LOZENGES', NULL, '0.5100', '0.0000', '75.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.2500', '75.0000', '2021-04-24', 'received', '0.5100', '0.5100', NULL, NULL, NULL, 1, 'pc', '75.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5495, NULL, 34, 1889, 'PR-602', 'Doxykin Cap', NULL, '1.3000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '20.0000', '2021-04-24', 'received', '1.3000', '1.3000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5496, NULL, 34, 1890, 'PR-603', 'Fluxakin Cap', NULL, '3.3000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '66.0000', '20.0000', '2021-04-24', 'received', '3.3000', '3.3000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5497, NULL, 34, 1892, 'PR-605', 'Alugel', NULL, '0.5200', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '49.0000', '2021-04-24', 'received', '0.5200', '0.5200', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5498, NULL, 34, 1893, 'PR-606', 'Metrokin Sups', NULL, '4.4500', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.8000', '3.0000', '2021-04-24', 'received', '4.4500', '4.4500', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5499, NULL, 34, 1894, 'PR-607', 'Primadal', NULL, '3.6900', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.7600', '1.0000', '2021-04-24', 'received', '3.6900', '3.6900', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5500, NULL, 34, 1896, 'PR-609', 'Mayfer Cap', NULL, '4.3600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.0800', '2.0000', '2021-04-24', 'received', '4.3600', '4.3600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5501, NULL, 34, 1895, 'PR-608', 'Mayfer Sup', NULL, '7.0200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.0600', '3.0000', '2021-04-24', 'received', '7.0200', '7.0200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5502, NULL, 34, 2064, '40046996', 'TASTYMOL', NULL, '4.2400', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.4400', '6.0000', '2021-04-24', 'received', '4.2400', '4.2400', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5503, NULL, 34, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', NULL, '0.3700', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.0000', '1.0000', '2021-04-24', 'received', '0.3700', '0.3700', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5504, NULL, 34, 1900, 'PR-613', 'Cefruate 500', NULL, '2.4600', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.6000', '0.0000', '2021-04-24', 'received', '2.4600', '2.4600', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5505, NULL, 34, 1901, 'PR-614', 'Diclokin TR', NULL, '2.0100', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.2000', '17.0000', '2021-04-24', 'received', '2.0100', '2.0100', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5506, NULL, 34, 1902, 'PR-615', 'Locid', NULL, '12.7200', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.7200', '1.0000', '2021-04-24', 'received', '12.7200', '12.7200', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5507, NULL, 34, 1903, 'PR-616', 'Lumeth Adult', NULL, '4.5000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '135.0000', '29.0000', '2021-04-24', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5508, NULL, 34, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.3200', '0.0000', '45.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.4000', '0.0000', '2021-04-24', 'received', '0.3200', '0.3200', NULL, NULL, NULL, 1, 'pc', '45.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5509, NULL, 34, 1905, 'PR-618', 'ANTASIL', NULL, '0.4000', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '75.0000', '2021-04-24', 'received', '0.4000', '0.4000', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5510, NULL, 34, 1908, 'PR-621', 'Magacid tablet', NULL, '0.7000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.0000', '34.0000', '2021-04-24', 'received', '0.7000', '0.7000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5511, NULL, 34, 1916, 'PR-629', 'Aspaul All in one', NULL, '8.2300', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.3800', '4.0000', '2021-04-24', 'received', '8.2300', '8.2300', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5512, NULL, 34, 1917, 'PR-630', 'Aspaul J', NULL, '4.3600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.0800', '1.0000', '2021-04-24', 'received', '4.3600', '4.3600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5513, NULL, 34, 2129, '76264523', 'FINELIFE TONIC', NULL, '6.4100', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.6400', '4.0000', '2021-04-24', 'received', '6.4100', '6.4100', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5514, NULL, 34, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.3200', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '1.2800', '0.0000', '2021-04-24', 'received', '0.3200', '0.3200', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5528, NULL, NULL, 2070, '014', 'CHLO EYE ', NULL, '2.0000', '0.0000', '-10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '-20.0000', '0.0000', '2021-04-24', 'received', '2.0000', '2.0000', '-10.0000', NULL, NULL, 1, 'pc', '-10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5551, 26, NULL, 2067, '86457170', 'X\'FERON CAPS', NULL, '4.0000', '6.4700', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-03-31', 'received', '4.0000', '4.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5552, 26, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.8000', '15.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.0000', '0.0000', '2021-03-31', 'received', '11.8000', '11.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '11.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5553, 26, NULL, 2069, '31446479', 'X\'MOX 500', NULL, '2.0400', '3.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8000', '0.0000', '2021-03-31', 'received', '2.0400', '2.0400', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.0400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5554, 26, NULL, 1963, '007', 'MUCOTIN ADULT 5%', NULL, '7.0000', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2021-03-31', 'received', '7.0000', '7.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5555, 26, NULL, 1922, '8904185507342', 'Blopen gel BG-138', NULL, '90.0000', '5.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5556, 26, NULL, 1923, 'PR-636', 'Revit tab ru-033', NULL, '1.8000', '2.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-03-31', 'received', '1.8000', '1.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5557, 26, NULL, 1925, 'PR-638', 'Tobins Cod oil T32003', NULL, '1.2000', '2.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-03-31', 'received', '1.2000', '1.2000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5558, 26, NULL, 2078, '80019843', 'X\'TRIM SUSP 100ML', NULL, '3.0000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-03-31', 'received', '3.0000', '3.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5559, 26, NULL, 1945, 'PR-658', 'Lufart susp D03E005', NULL, '9.5000', '12.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.5000', '4.0000', '2021-03-31', 'received', '9.5000', '9.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5560, 26, NULL, 2077, '99278971', 'ENTRALYN COUGH SYRUP', NULL, '3.0000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-03-31', 'received', '3.0000', '3.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5561, 26, NULL, 2313, '83991627', 'ENTRACIN 300', NULL, '8.7500', '12.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.5000', '0.0000', '2021-03-31', 'received', '8.7500', '8.7500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5562, 26, NULL, 1452, 'PR-165', 'Tobufon 400 T002e001', NULL, '1.2300', '2.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.5000', '0.0000', '2021-03-31', 'received', '1.2300', '1.2300', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.2300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5563, 26, NULL, 1928, '8906009234090', 'LOFNAC GEL GLF143', NULL, '5.1000', '7.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2021-03-31', 'received', '5.1000', '5.1000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5564, NULL, NULL, 2067, '86457170', 'X\'FERON CAPS', NULL, '4.9000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '49.0000', '0.0000', '2021-04-24', 'received', '4.9000', '4.9000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5565, NULL, NULL, 1445, 'PR-158', 'Iburex Caps c013D002', NULL, '2.6000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.0000', '0.0000', '2021-04-24', 'received', '2.6000', '2.6000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5566, NULL, NULL, 1446, 'PR-159', 'Tobufen syr L00YADW6', NULL, '4.1000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '20.5000', '0.0000', '2021-04-24', 'received', '4.1000', '4.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5567, NULL, NULL, 1447, '8906081306418', 'Herbal Lofnac HLB001', NULL, '5.7000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '34.2000', '0.0000', '2021-04-24', 'received', '5.7000', '5.7000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5568, NULL, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.8000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '118.0000', '-8.0000', '2021-04-24', 'received', '11.8000', '11.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5569, NULL, NULL, 1449, 'PR-162', 'Wormee 4 tab wr036', NULL, '0.6600', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '33.0000', '-2.0000', '2021-04-24', 'received', '0.6600', '0.6600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5570, NULL, NULL, 1450, 'PR-163', 'Lofnac 100 supp WABG035', NULL, '0.8900', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '8.9000', '5.0000', '2021-04-24', 'received', '0.8900', '0.8900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5571, NULL, NULL, 2069, '31446479', 'X\'MOX 500', NULL, '2.0400', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.8000', '0.0000', '2021-04-24', 'received', '2.0400', '2.0400', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5572, NULL, NULL, 1963, '007', 'MUCOTIN ADULT 5%', NULL, '7.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '35.0000', '0.0000', '2021-04-24', 'received', '7.0000', '7.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5573, NULL, NULL, 1454, 'PR-167', 'Ancigel  O L033E001', NULL, '9.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.0000', '-1.0000', '2021-04-24', 'received', '9.0000', '9.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5574, NULL, NULL, 1455, 'PR-168', 'Gacet125MP KIACK006', NULL, '4.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '20.0000', '0.0000', '2021-04-24', 'received', '4.0000', '4.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5575, NULL, NULL, 1922, '8904185507342', 'Blopen gel BG-138', NULL, '3.0000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.0000', '0.0000', '2021-04-24', 'received', '3.0000', '3.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5576, NULL, NULL, 1923, 'PR-636', 'Revit tab ru-033', NULL, '1.8000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.0000', '0.0000', '2021-04-24', 'received', '1.8000', '1.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5577, NULL, NULL, 1925, 'PR-638', 'Tobins Cod oil T32003', NULL, '1.2000', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.0000', '-1.0000', '2021-04-24', 'received', '1.2000', '1.2000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5578, NULL, NULL, 1926, 'PR-639', 'Tobutal tab T0-032', NULL, '1.8000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.0000', '0.0000', '2021-04-24', 'received', '1.8000', '1.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5579, NULL, NULL, 2072, '41512770', 'ZINVITE CAPS', NULL, '7.3800', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.9000', '-1.0000', '2021-04-24', 'received', '7.3800', '7.3800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5580, NULL, NULL, 2073, '59185019', 'DOMI 30', NULL, '2.3000', '0.0000', '25.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '57.5000', '0.0000', '2021-04-24', 'received', '2.3000', '2.3000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5581, NULL, NULL, 1306, 'PR-19', 'DOMI 10: TAB', NULL, '2.1000', '0.0000', '25.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '52.5000', '0.0000', '2021-04-24', 'received', '2.1000', '2.1000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5582, NULL, NULL, 1931, 'PR-644', 'Exicam Do c0070002', NULL, '0.7000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '0.7000', '0.0000', '2021-04-24', 'received', '0.7000', '0.7000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5583, NULL, NULL, 2075, '91642667', 'X\'FERON SYR 200ML', NULL, '7.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '35.0000', '0.0000', '2021-04-24', 'received', '7.0000', '7.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5584, NULL, NULL, 2076, '24451420', 'ZINVITE SYR', NULL, '8.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.0000', '0.0000', '2021-04-24', 'received', '8.0000', '8.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5585, NULL, NULL, 1934, '2553185615463', 'Mucotin  ENFANT 2% l017d007', NULL, '4.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '20.0000', '0.0000', '2021-04-24', 'received', '4.0000', '4.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5586, NULL, NULL, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', NULL, '0.7200', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.0000', '-13.0000', '2021-04-24', 'received', '0.7200', '0.7200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5587, NULL, NULL, 1936, 'PR-649', 'Jedition syr L034D003', NULL, '6.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.0000', '0.0000', '2021-04-24', 'received', '6.0000', '6.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5588, NULL, NULL, 1937, 'PR-650', 'Kofof child exp 1070D02', NULL, '3.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-04-24', 'received', '3.0000', '3.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5589, NULL, NULL, 1938, 'PR-651', 'Hilderm Cream CH Agh020', NULL, '11.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '55.0000', '0.0000', '2021-04-24', 'received', '11.0000', '11.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5590, NULL, NULL, 2078, '80019843', 'X\'TRIM SUSP 100ML', NULL, '3.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-04-24', 'received', '3.0000', '3.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5591, NULL, NULL, 2077, '99278971', 'ENTRALYN COUGH SYRUP', NULL, '3.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-04-24', 'received', '3.0000', '3.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5592, NULL, NULL, 1941, 'PR-654', 'Genti Gds11369', NULL, '1.6000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '16.0000', '-2.0000', '2021-04-24', 'received', '1.6000', '1.6000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5593, NULL, NULL, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '19.5000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '97.5000', '0.0000', '2021-04-24', 'received', '19.5000', '19.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5594, NULL, NULL, 1943, 'PR-656', 'Kofof Adult Lo12D002', NULL, '5.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.0000', '0.0000', '2021-04-24', 'received', '5.0000', '5.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5595, NULL, NULL, 1944, 'PR-657', 'Combact N E002d016', NULL, '5.0000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '50.0000', '0.0000', '2021-04-24', 'received', '5.0000', '5.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5596, NULL, NULL, 1579, 'PR-292', 'LUFART SUSP', NULL, '9.3600', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '46.8000', '0.0000', '2021-04-24', 'received', '9.3600', '9.3600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5597, NULL, 35, 1579, 'PR-292', 'LUFART SUSP', NULL, '9.3600', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.8000', '0.0000', '2021-04-24', 'received', '9.3600', '9.3600', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5598, NULL, 35, 1944, 'PR-657', 'Combact N E002d016', NULL, '5.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.0000', '9.0000', '2021-04-24', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5599, NULL, 35, 1943, 'PR-656', 'Kofof Adult Lo12D002', NULL, '5.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.0000', '1.0000', '2021-04-24', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5600, NULL, 35, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '19.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '97.5000', '1.0000', '2021-04-24', 'received', '19.5000', '19.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5601, NULL, 35, 1941, 'PR-654', 'Genti Gds11369', NULL, '1.6000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.0000', '2.0000', '2021-04-24', 'received', '1.6000', '1.6000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5602, NULL, 35, 2077, '99278971', 'ENTRALYN COUGH SYRUP', NULL, '3.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '5.0000', '2021-04-24', 'received', '3.0000', '3.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5603, NULL, 35, 2078, '80019843', 'X\'TRIM SUSP 100ML', NULL, '3.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '5.0000', '2021-04-24', 'received', '3.0000', '3.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5604, NULL, 35, 1938, 'PR-651', 'Hilderm Cream CH Agh020', NULL, '11.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.0000', '2.0000', '2021-04-24', 'received', '11.0000', '11.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5605, NULL, 35, 1937, 'PR-650', 'Kofof child exp 1070D02', NULL, '3.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '5.0000', '2021-04-24', 'received', '3.0000', '3.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5606, NULL, 35, 1936, 'PR-649', 'Jedition syr L034D003', NULL, '6.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '5.0000', '2021-04-24', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5607, NULL, 35, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', NULL, '0.7200', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '6.0000', '2021-04-24', 'received', '0.7200', '0.7200', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5608, NULL, 35, 1934, '2553185615463', 'Mucotin  ENFANT 2% l017d007', NULL, '4.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '4.0000', '2021-04-24', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5609, NULL, 35, 2076, '24451420', 'ZINVITE SYR', NULL, '8.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '3.0000', '2021-04-24', 'received', '8.0000', '8.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5610, NULL, 35, 2075, '91642667', 'X\'FERON SYR 200ML', NULL, '7.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.0000', '4.0000', '2021-04-24', 'received', '7.0000', '7.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5611, NULL, 35, 1306, 'PR-19', 'DOMI 10: TAB', NULL, '2.1000', '0.0000', '25.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.5000', '0.0000', '2021-04-24', 'received', '2.1000', '2.1000', NULL, NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5612, NULL, 35, 2073, '59185019', 'DOMI 30', NULL, '2.3000', '0.0000', '25.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.5000', '11.0000', '2021-04-24', 'received', '2.3000', '2.3000', NULL, NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5613, NULL, 35, 2072, '41512770', 'ZINVITE CAPS', NULL, '7.3800', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.9000', '1.0000', '2021-04-24', 'received', '7.3800', '7.3800', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5614, NULL, 35, 1926, 'PR-639', 'Tobutal tab T0-032', NULL, '1.8000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '10.0000', '2021-04-24', 'received', '1.8000', '1.8000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5615, NULL, 35, 1925, 'PR-638', 'Tobins Cod oil T32003', NULL, '1.2000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '29.0000', '2021-04-24', 'received', '1.2000', '1.2000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5616, NULL, 35, 1923, 'PR-636', 'Revit tab ru-033', NULL, '1.8000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '10.0000', '2021-04-24', 'received', '1.8000', '1.8000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5617, NULL, 35, 1922, '8904185507342', 'Blopen gel BG-138', NULL, '3.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '2.0000', '2021-04-24', 'received', '3.0000', '3.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5618, NULL, 35, 2070, '014', 'CHLO EYE ', NULL, '2.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '9.0000', '2021-04-24', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5619, NULL, 35, 2070, '014', 'CHLO EYE ', NULL, '2.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '10.0000', '2021-04-24', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5620, NULL, 35, 1455, 'PR-168', 'Gacet125MP KIACK006', NULL, '4.6000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.0000', '2.0000', '2021-04-24', 'received', '4.6000', '4.6000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5621, NULL, 35, 1454, 'PR-167', 'Ancigel  O L033E001', NULL, '9.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '3.0000', '2021-04-24', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5622, NULL, 35, 1963, '007', 'MUCOTIN ADULT 5%', NULL, '7.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.0000', '1.0000', '2021-04-24', 'received', '7.0000', '7.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5623, NULL, 35, 2069, '31446479', 'X\'MOX 500', NULL, '2.0400', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.8000', '20.0000', '2021-04-24', 'received', '2.0400', '2.0400', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5624, NULL, 35, 1449, 'PR-162', 'Wormee 4 tab wr036', NULL, '0.6600', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '37.0000', '2021-04-24', 'received', '0.6600', '0.6600', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5625, NULL, 35, 2068, '79519848', 'LUFART DS', NULL, '11.8000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '118.0000', '0.0000', '2021-04-24', 'received', '11.8000', '11.8000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5626, NULL, 35, 1447, '8906081306418', 'Herbal Lofnac HLB001', NULL, '5.7000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.2000', '3.0000', '2021-04-24', 'received', '5.7000', '5.7000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5627, NULL, 35, 1446, 'PR-159', 'Tobufen syr L00YADW6', NULL, '4.1000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.5000', '1.0000', '2021-04-24', 'received', '4.1000', '4.1000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5628, NULL, 35, 1445, 'PR-158', 'Iburex Caps c013D002', NULL, '2.6000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '10.0000', '2021-04-24', 'received', '2.6000', '2.6000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5629, NULL, 35, 2067, '86457170', 'X\'FERON CAPS', NULL, '4.9000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.0000', '9.0000', '2021-04-24', 'received', '4.9000', '4.9000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5630, NULL, 35, 1928, '8906009234090', 'LOFNAC GEL GLF143', NULL, '5.1000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '51.0000', '6.0000', '2021-04-24', 'received', '5.1000', '5.1000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5631, NULL, 35, 2313, '83991627', 'ENTRACIN 300', NULL, '8.7500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '87.5000', '0.0000', '2021-04-24', 'received', '8.7500', '8.7500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5632, NULL, 35, 1452, 'PR-165', 'Tobufon 400 T002e001', NULL, '1.2300', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '61.5000', '39.0000', '2021-04-24', 'received', '1.2300', '1.2300', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5633, NULL, NULL, 1605, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5634, NULL, NULL, 2167, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5635, NULL, NULL, 1583, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5636, NULL, NULL, 2015, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5637, NULL, NULL, 1347, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-98.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5638, NULL, NULL, 1711, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5642, NULL, NULL, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', NULL, '7.5400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '22.6200', '0.0000', '2021-04-25', 'received', '7.5400', '7.5400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5643, NULL, NULL, 2455, '07137762', 'AMITRIPTYLINE 25MG', NULL, '7.5300', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '22.5900', '-1.0000', '2021-04-25', 'received', '7.5300', '7.5300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5650, 89, NULL, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', NULL, '7.5400', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.6200', '0.0000', '2021-04-24', 'received', '7.5400', '7.5400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5651, 89, NULL, 2455, '07137762', 'AMITRIPTYLINE 25MG', NULL, '7.5300', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5900', '0.0000', '2021-04-24', 'received', '7.5300', '7.5300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5652, 89, NULL, 2497, '26571538', 'CALPOl 6+', NULL, '34.0000', '45.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '2.0000', '2021-04-24', 'received', '34.0000', '34.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5653, 89, NULL, 2500, '67342840', 'RENERVE PLUS', NULL, '5.6000', '7.2000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '336.0000', '0.0000', '2021-04-24', 'received', '5.6000', '5.6000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '5.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5654, 89, NULL, 2498, '86757348', 'PROXEED WOMEN', NULL, '9.6000', '12.0000', '14.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '134.4000', '2.0000', '2021-04-24', 'received', '9.6000', '9.6000', '14.0000', NULL, NULL, 1, 'pc', '14.0000', NULL, NULL, NULL, NULL, '9.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5655, 89, NULL, 2499, '01118964', 'PROXEED PLUS MEN', NULL, '10.0000', '13.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-04-24', 'received', '10.0000', '10.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5656, NULL, 32, 2455, '07137762', 'AMITRIPTYLINE 25MG', NULL, '7.5300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.5900', '1.0000', '2021-04-25', 'received', '7.5300', '7.5300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5657, NULL, 32, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', NULL, '7.5400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.6200', '0.0000', '2021-04-25', 'received', '7.5400', '7.5400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5658, NULL, 32, 2498, '86757348', 'PROXEED WOMEN', NULL, '9.6000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '115.2000', '12.0000', '2021-04-25', 'received', '9.6000', '9.6000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5659, NULL, 32, 2499, '01118964', 'PROXEED PLUS MEN', NULL, '10.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '100.0000', '10.0000', '2021-04-25', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5660, NULL, 32, 2500, '67342840', 'RENERVE PLUS', NULL, '5.6000', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '336.0000', '60.0000', '2021-04-25', 'received', '5.6000', '5.6000', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5744, NULL, NULL, 1573, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5785, NULL, NULL, 1687, 'PR-400', 'FLUCONAZOLE (DENK)', NULL, '12.0000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '120.0000', '-2.0000', '2021-04-25', 'received', '12.0000', '12.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5788, NULL, NULL, 2218, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5789, NULL, NULL, 1584, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5790, 85, NULL, 2470, '63996135', 'VENTOLIN NEBULES 5MG', NULL, '8.5000', '12.0000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2021-04-23', 'received', '8.5000', '8.5000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5791, 85, NULL, 2471, '81093795', 'LITTLE REMEDIES GRIPE WATER', NULL, '10.0000', '30.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-04-23', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5792, 85, NULL, 2039, '8710447482032', 'REXONA DEO SPRAY 200ML', NULL, '9.5000', '13.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2021-04-23', 'received', '9.5000', '9.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5793, 85, NULL, 2472, '68854601', 'SOFT & GENTLIE SPRAY', NULL, '9.5000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2021-04-23', 'received', '9.5000', '9.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5794, 85, NULL, 2473, '12094351', 'RIGHT GUARD SPRAY', NULL, '12.0000', '15.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-04-23', 'received', '12.0000', '12.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5795, 85, NULL, 2034, '4800888199188', 'REXONA ROLL ON 50ML', NULL, '6.0000', '7.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-04-23', 'received', '6.0000', '6.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5796, 85, NULL, 2501, '38191376', 'TCP SOAP', NULL, '5.8000', '8.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.6000', '0.0000', '2021-04-23', 'received', '5.8000', '5.8000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '5.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5797, 85, NULL, 2502, '14251017', 'TCP ANTISEPTIC LIQUID', NULL, '43.2000', '55.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.2000', '0.0000', '2021-04-23', 'received', '43.2000', '43.2000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '43.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5798, 85, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '16.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2021-04-23', 'received', '16.0000', '16.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '16.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5799, NULL, NULL, 2448, '42222157', 'IMPERIAL LEATHER SOAP B/S', NULL, '5.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.0000', '-1.0000', '2021-04-26', 'received', '5.0000', '5.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5800, NULL, NULL, 2427, '44595573', 'SAVLON SS/S', NULL, '5.8000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '69.6000', '0.0000', '2021-04-26', 'received', '5.8000', '5.8000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5801, NULL, 31, 2427, '44595573', 'SAVLON SS/S', NULL, '5.8000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '69.6000', '10.0000', '2021-04-26', 'received', '5.8000', '5.8000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5802, NULL, 31, 2448, '42222157', 'IMPERIAL LEATHER SOAP B/S', NULL, '5.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '5.0000', '2021-04-26', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5803, NULL, 31, 2418, '5000204957327', 'GLADE AIR FRESHNER', NULL, '9.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.5000', '3.0000', '2021-04-26', 'received', '9.5000', '9.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5804, NULL, 31, 2419, '03336179', 'MR  MUSCLE', NULL, '14.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.0000', '2.0000', '2021-04-26', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5805, NULL, 31, 2421, '51995515', 'MR MUSCLES FLOOR CLEANER', NULL, '14.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.0000', '3.0000', '2021-04-26', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5806, NULL, 31, 2420, '21380189', 'COWBELL TIN MILK', NULL, '21.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '64.5000', '2.0000', '2021-04-26', 'received', '21.5000', '21.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5807, NULL, 31, 2422, '92383380', 'POWER ZONE B/S', NULL, '6.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '1.0000', '2021-04-26', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5808, NULL, 31, 2423, '57283790', 'POWER ZONE S/S', NULL, '4.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.0000', '1.0000', '2021-04-26', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5809, NULL, 31, 2424, '72870535', 'DEVA SOFTNER', NULL, '12.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '2.0000', '2021-04-26', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5810, NULL, 31, 2425, '54377887', 'SASSO MOSQUITO SPRAY  B/S', NULL, '24.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.0000', '1.0000', '2021-04-26', 'received', '24.0000', '24.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5811, NULL, 31, 2426, '49816115', 'COMFORT SOFTNER', NULL, '12.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.5000', '0.0000', '2021-04-26', 'received', '12.5000', '12.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5812, NULL, 31, 2009, '50158911', 'DETTOL ANTISEPTIC 250ML', NULL, '18.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '108.0000', '5.0000', '2021-04-26', 'received', '18.0000', '18.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5813, NULL, 31, 2012, '46653631', 'DETTOL ANTISEPTIC 165ML', NULL, '12.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.0000', '6.0000', '2021-04-26', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5814, NULL, 31, 2428, '50665292', 'HEAVEN MOSQUITO SPRAY', NULL, '11.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '1.0000', '2021-04-26', 'received', '11.0000', '11.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5815, NULL, 31, 2429, '5011309302417', 'ZEFLORA DISINFECTANT', NULL, '10.7000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '64.2000', '6.0000', '2021-04-26', 'received', '10.7000', '10.7000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5816, NULL, 31, 2417, '89073800', 'DOVE SOAP', NULL, '14.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.5000', '2.0000', '2021-04-26', 'received', '14.5000', '14.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5817, NULL, 31, 2430, '6926597271255', 'JOZZY KIDS TOOTHPASTE&BRUSH', NULL, '7.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.0000', '3.0000', '2021-04-26', 'received', '7.0000', '7.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5818, NULL, 31, 2431, '41187227', 'PEPSODENT BRUSH KIDS', NULL, '2.2000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.2000', '6.0000', '2021-04-26', 'received', '2.2000', '2.2000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5819, NULL, 31, 2160, '6034000214017', 'CHOCHO ANTIBACTRIL SOAP', NULL, '2.6000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '2.6000', '1.0000', '2021-04-26', 'received', '2.6000', '2.6000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5820, NULL, 31, 2436, '04225724', 'ANTI BACTERIAL WIPE', NULL, '15.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '1.0000', '2021-04-26', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5821, NULL, 31, 2437, '44857984', 'APTAMIL BABY MILK', NULL, '80.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '160.0000', '0.0000', '2021-04-26', 'received', '80.0000', '80.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5822, NULL, 31, 2438, '59088740', 'NIDO +1 POWDERED MILK', NULL, '29.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '87.0000', '3.0000', '2021-04-26', 'received', '29.0000', '29.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5823, NULL, 31, 2439, '92520287', 'QUAKER OATS TIN', NULL, '15.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '1.0000', '2021-04-26', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5824, NULL, 31, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '5.1000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.6000', '0.0000', '2021-04-26', 'received', '5.1000', '5.1000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5825, NULL, 31, 2475, '88463350', 'PEPSODENT CHARCOAL TOOTHPASTE', NULL, '7.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.0000', '5.0000', '2021-04-26', 'received', '7.0000', '7.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5826, NULL, 31, 2441, '82095661', 'COLGATE HERBAL TOOTHPASTE', NULL, '4.6000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.2000', '7.0000', '2021-04-26', 'received', '4.6000', '4.6000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5827, NULL, 31, 2442, '84998316', 'COLGATE TRIPPLE ACTION TOOTHPASTE', NULL, '4.8000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.6000', '7.0000', '2021-04-26', 'received', '4.8000', '4.8000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5828, NULL, 31, 2443, '42430092', 'SOFTCARE SANITRY PAD', NULL, '4.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '4.0000', '2021-04-26', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5829, NULL, 31, 2444, '73221630', 'SOFTCARE BABY WIPES', NULL, '6.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '3.0000', '2021-04-26', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5830, NULL, 31, 2445, '08969985', 'ADULT DIAPER', NULL, '3.2000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '64.0000', '0.0000', '2021-04-26', 'received', '3.2000', '3.2000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5831, NULL, 31, 2446, '17077517', 'PEPSODENT S/S', NULL, '2.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '6.0000', '2021-04-26', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5832, NULL, 31, 1960, '6033000298379', 'LIFEBUOY SOAP', NULL, '3.5600', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.3600', '5.0000', '2021-04-26', 'received', '3.5600', '3.5600', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5833, NULL, 31, 2447, '50610187', 'IMPEPRIL LEATHER SOAP S/S', NULL, '3.8000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.8000', '6.0000', '2021-04-26', 'received', '3.8000', '3.8000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5834, NULL, 31, 2449, '73407261', 'DETTOL SOAP', NULL, '5.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '0.0000', '2021-04-26', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5835, NULL, 31, 2450, '16241595', 'HARPIC ANTISEPTIC', NULL, '13.5000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.0000', '4.0000', '2021-04-26', 'received', '13.5000', '13.5000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5836, NULL, 31, 2432, '30456278', 'SO KLIN SOFTNER', NULL, '14.5000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '58.0000', '2.0000', '2021-04-26', 'received', '14.5000', '14.5000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5837, NULL, 31, 2433, '5060033370049', 'PRE MUM BREAST PAD', NULL, '0.8000', '0.0000', '80.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '64.0000', '80.0000', '2021-04-26', 'received', '0.8000', '0.8000', NULL, NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5838, NULL, 31, 2434, '50763677', 'PEPSODENT 123', NULL, '5.2000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.2000', '5.0000', '2021-04-26', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5839, NULL, 31, 2435, '31684073', 'ORAL B TOOTHPASTE', NULL, '4.8000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.8000', '1.0000', '2021-04-26', 'received', '4.8000', '4.8000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5840, NULL, 31, 2501, '38191376', 'TCP SOAP', NULL, '5.8000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '69.6000', '12.0000', '2021-04-26', 'received', '5.8000', '5.8000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5841, NULL, 31, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '16.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.0000', '0.0000', '2021-04-26', 'received', '16.0000', '16.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5842, NULL, 31, 2502, '14251017', 'TCP ANTISEPTIC LIQUID', NULL, '43.2000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.2000', '0.0000', '2021-04-26', 'received', '43.2000', '43.2000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5843, NULL, NULL, 1580, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5862, NULL, NULL, 2071, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-19.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5863, NULL, NULL, 2504, '61281286', 'MIXTARD', NULL, '35.0000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '35.0000', '-1.0000', '2021-04-26', 'received', '35.0000', '35.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5864, NULL, 37, 2504, '61281286', 'MIXTARD', NULL, '35.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.0000', '1.0000', '2021-04-26', 'received', '35.0000', '35.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5865, NULL, 37, 2505, '28562016', 'ORELOX 100MG TABLETS', NULL, '68.5900', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '68.5900', '0.0000', '2021-04-26', 'received', '68.5900', '68.5900', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5866, NULL, 37, 1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', NULL, '13.1000', '0.0000', '15.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '196.5000', '15.0000', '2021-04-26', 'received', '13.1000', '13.1000', NULL, NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5867, NULL, 37, 2506, '46924578', 'E PANOL SYR', NULL, '3.4900', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.9400', '0.0000', '2021-04-26', 'received', '3.4900', '3.4900', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5868, NULL, 37, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.2600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.7800', '0.0000', '2021-04-26', 'received', '6.2600', '6.2600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5869, NULL, 37, 2507, '57385161', 'WELLTEEN HER', NULL, '34.2000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '68.4000', '1.0000', '2021-04-26', 'received', '34.2000', '34.2000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5870, NULL, 37, 2508, '13685865', 'WELLTEEN HIM', NULL, '34.2000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '68.4000', '2.0000', '2021-04-26', 'received', '34.2000', '34.2000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5871, NULL, 37, 2509, '01336804', 'VENTOLIN SYRUP 100ML', NULL, '13.7600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '41.2800', '3.0000', '2021-04-26', 'received', '13.7600', '13.7600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5872, NULL, 37, 2510, '68253343', 'ATENOLOL 100MG BRISTOL', NULL, '4.2000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.6000', '3.0000', '2021-04-26', 'received', '4.2000', '4.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5873, NULL, 37, 2511, '81055477', 'DUROL 300ML', NULL, '8.6000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.8000', '0.0000', '2021-04-26', 'received', '8.6000', '8.6000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5874, NULL, 37, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '24.6200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '73.8600', '0.0000', '2021-04-26', 'received', '24.6200', '24.6200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5875, NULL, 37, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.9000', '0.0000', '2021-04-26', 'received', '7.8900', '7.8900', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5876, NULL, 37, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.0000', '0.0000', '2021-04-26', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5877, NULL, 37, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '180.0000', '1.0000', '2021-04-26', 'received', '36.0000', '36.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5878, NULL, 37, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '13.9000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '69.5000', '2.0000', '2021-04-26', 'received', '13.9000', '13.9000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5897, NULL, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9900', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '139.8000', '13.0000', '2021-04-27', 'received', '6.9900', '6.9900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5898, NULL, 36, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9900', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '139.8000', '8.0000', '2021-04-27', 'received', '6.9900', '6.9900', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5899, NULL, 36, 1687, 'PR-400', 'FLUCONAZOLE (DENK)', NULL, '12.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '3.0000', '2021-04-27', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5900, NULL, 36, 2157, '13804928', 'GVITHER INJ', NULL, '0.9800', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.8000', '4.0000', '2021-04-27', 'received', '0.9800', '0.9800', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5912, NULL, NULL, 2512, '57681465', 'HONEY  500ML', NULL, '20.0000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '240.0000', '-1.0000', '2021-04-27', 'received', '20.0000', '20.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5913, NULL, NULL, 2513, '35471802', 'HONEY 1L', NULL, '40.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '240.0000', '-1.0000', '2021-04-27', 'received', '40.0000', '40.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5914, NULL, NULL, 2514, '98091900', 'TOMBROWN 500G', NULL, '10.0000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '120.0000', '-1.0000', '2021-04-27', 'received', '10.0000', '10.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5915, NULL, NULL, 2515, '22838029', 'CHILLI PEPPER', NULL, '16.0000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '192.0000', '-1.0000', '2021-04-27', 'received', '16.0000', '16.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5916, NULL, NULL, 2516, '60491534', 'TENDRINA CREAM B/S', NULL, '9.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.0000', '-1.0000', '2021-04-27', 'received', '9.0000', '9.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5917, NULL, NULL, 2517, '94045463', 'TENDRINA CREAM S/S', NULL, '5.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '10.0000', '0.0000', '2021-04-27', 'received', '5.0000', '5.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5918, NULL, NULL, 1980, '6186000077052', 'QUEEN ELISABETH COCOA BUTTER LOTION 250ML', NULL, '4.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '12.0000', '0.0000', '2021-04-27', 'received', '4.0000', '4.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5999, NULL, 40, 2109, '94342778', 'ASCORBIN TABS LETAP', NULL, '0.2500', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '0.2500', '0.0000', '2021-04-27', 'received', '0.2500', '0.2500', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6000, NULL, 40, 1946, '92115303', 'Ascorbin  Syrup 100ml', NULL, '1.5500', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.0000', '15.0000', '2021-04-27', 'received', '1.5500', '1.5500', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6001, NULL, 40, 2093, '74359321', 'CALCIUM B12 SYRUP 200ML', NULL, '2.5500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.5000', '9.0000', '2021-04-27', 'received', '2.5500', '2.5500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6002, NULL, 40, 2094, '68563120', 'COUGH & COLD 100ML CHILD CARE', NULL, '2.9000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '58.0000', '18.0000', '2021-04-27', 'received', '2.9000', '2.9000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6003, NULL, 40, 1947, '73002504', 'Dynwell 200ML  Syrup', NULL, '2.8000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '56.0000', '0.0000', '2021-04-27', 'received', '2.8000', '2.8000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6004, NULL, 40, 1949, '68032552', ' Foliron tonic 200ML', NULL, '3.1000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.0000', '10.0000', '2021-04-27', 'received', '3.1000', '3.1000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6005, NULL, 40, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', NULL, '2.7500', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.0000', '16.0000', '2021-04-27', 'received', '2.7500', '2.7500', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6006, NULL, 40, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.3800', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.6000', '0.0000', '2021-04-27', 'received', '1.3800', '1.3800', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6007, NULL, 40, 2095, '83888513', 'LETAMOL ELIXIR 125ML  LETAP', NULL, '1.5000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '18.0000', '2021-04-27', 'received', '1.5000', '1.5000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6008, NULL, 40, 2096, '90371186', 'LETAVIT SYRUP 125ML', NULL, '1.5500', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.0000', '15.0000', '2021-04-27', 'received', '1.5500', '1.5500', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6009, NULL, 40, 2097, '70572709', 'MACRAFOLIN SYRUP 125ML', NULL, '1.6500', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '19.0000', '2021-04-27', 'received', '1.6500', '1.6500', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6010, NULL, 40, 2098, '39895805', 'MILK OF MAGNESIA 125ML LETAP', NULL, '1.0000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '20.0000', '2021-04-27', 'received', '1.0000', '1.0000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6011, NULL, 40, 2099, '36936180', 'LETARON SYRUP 200ML', NULL, '2.8000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.0000', '9.0000', '2021-04-27', 'received', '2.8000', '2.8000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6012, NULL, 40, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', NULL, '1.6500', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '16.0000', '2021-04-27', 'received', '1.6500', '1.6500', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6013, NULL, 40, 2101, '56160077', 'LETAFEN SUSPENSION 100ML', NULL, '1.6500', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '18.0000', '2021-04-27', 'received', '1.6500', '1.6500', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6014, NULL, 40, 2102, '12180621', 'METRONIDAZOLE SUSP 100ML', NULL, '1.9000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.0000', '18.0000', '2021-04-27', 'received', '1.9000', '1.9000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6015, NULL, 40, 2103, '77332390', 'LETAMOX TABLET 500MG 500MG', NULL, '0.4500', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '60.0000', '2021-04-27', 'received', '0.4500', '0.4500', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6016, NULL, 40, 2104, '44677443', 'DYNWELL TABLETS', NULL, '0.2000', '0.0000', '150.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '121.0000', '2021-04-27', 'received', '0.2000', '0.2000', NULL, NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6017, NULL, 40, 2105, '11898104', 'DOXYCYCLINE 100MG', NULL, '1.3500', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '0.0000', '2021-04-27', 'received', '1.3500', '1.3500', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6018, NULL, 40, 2106, '26940098', 'XPEL SUSPENSION 20ML', NULL, '0.9900', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.7000', '28.0000', '2021-04-27', 'received', '0.9900', '0.9900', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6019, NULL, 40, 2107, '04659350', 'FUROSEMIDE TAB 40MG LETAP', NULL, '0.2500', '0.0000', '150.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.5000', '150.0000', '2021-04-27', 'received', '0.2500', '0.2500', NULL, NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6020, NULL, 40, 2108, '85249693', 'ARFAN 20/120MG', NULL, '4.7500', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '95.0000', '7.0000', '2021-04-27', 'received', '4.7500', '4.7500', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6021, NULL, 40, 2109, '94342778', 'ASCORBIN TABS LETAP', NULL, '0.2500', '0.0000', '150.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.5000', '108.0000', '2021-04-27', 'received', '0.2500', '0.2500', NULL, NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6034, NULL, NULL, 2520, '20687050', 'CAMEL LIQUID ANTISEPTIC 500ML', NULL, '18.6000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '111.6000', '0.0000', '2021-04-28', 'received', '18.6000', '18.6000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6035, NULL, NULL, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', NULL, '8.8000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '52.8000', '0.0000', '2021-04-28', 'received', '8.8000', '8.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6036, NULL, NULL, 2522, '02869770', 'CAMEL ANTISEPTIC LIQUID 125ML', NULL, '6.2000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '37.2000', '0.0000', '2021-04-28', 'received', '6.2000', '6.2000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6037, NULL, NULL, 2523, '89430832', 'CAMEL SOAP', NULL, '4.8000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '28.8000', '0.0000', '2021-04-28', 'received', '4.8000', '4.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6050, NULL, NULL, 1590, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6051, NULL, NULL, 1464, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6063, NULL, NULL, 2214, '8961102060823', 'PROSTATE OIL 60ML', NULL, '15.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '90.0000', '0.0000', '2021-04-29', 'received', '15.0000', '15.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6078, NULL, NULL, 2524, '8858854602732', 'XTREME TUMERIC SOAP', NULL, '10.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '60.0000', '0.0000', '2021-04-29', 'received', '10.0000', '10.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6079, NULL, NULL, 2525, '8850722212760', 'GOATMILK SOAP', NULL, '10.0000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '120.0000', '0.0000', '2021-04-29', 'received', '10.0000', '10.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6080, NULL, NULL, 2526, '8858854600110', 'VIRGINITY SOAP (SKIN DOCTOR0', NULL, '10.0000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '120.0000', '0.0000', '2021-04-29', 'received', '10.0000', '10.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6081, NULL, NULL, 2527, '655295237350', 'MACA POWDER (DR HERBALIST)', NULL, '40.0000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '400.0000', '0.0000', '2021-04-29', 'received', '40.0000', '40.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6098, NULL, NULL, 2528, '50186830', 'BLACK SOAP BIG', NULL, '8.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.0000', '0.0000', '2021-04-29', 'received', '8.5000', '8.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6099, NULL, NULL, 2529, '83499560', 'BLACK SOAP SMALL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-04-29', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6119, NULL, 42, 2504, '61281286', 'MIXTARD', NULL, '35.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '140.0000', '2.0000', '2021-04-30', 'received', '35.0000', '35.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6120, NULL, 42, 2536, '47357860', 'SOFT COLLAR NECK', NULL, '50.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.0000', '1.0000', '2021-04-30', 'received', '50.0000', '50.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6121, NULL, 42, 2537, '32182788', 'HARD COLLAR NECK', NULL, '80.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '80.0000', '0.0000', '2021-04-30', 'received', '80.0000', '80.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6122, NULL, 42, 2538, '95275481', 'KNEE BRACE', NULL, '120.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '1.0000', '2021-04-30', 'received', '120.0000', '120.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6123, NULL, 42, 2539, '39255568', 'THERMOMETER DIGITAL', NULL, '10.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '1.0000', '2021-04-30', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6124, NULL, 42, 2531, '6928001831338', 'AGE PERFECT (WOKALI)', NULL, '20.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '6.0000', '2021-04-30', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6125, NULL, 42, 2532, '8906081290236', ' GLAM&GLORY', NULL, '8.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '48.0000', '6.0000', '2021-04-30', 'received', '8.0000', '8.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6126, NULL, 42, 2534, '754604502834', 'NEEM FACIAL PRODUCT', NULL, '25.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '150.0000', '5.0000', '2021-04-30', 'received', '25.0000', '25.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6127, NULL, 42, 2533, '049022979109', 'APRICOT SCRUB', NULL, '18.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.0000', '2.0000', '2021-04-30', 'received', '18.0000', '18.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6128, NULL, 42, 2530, '7640149080124', 'Q7 GOLD (CARROT) SOAP', NULL, '22.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '66.0000', '2.0000', '2021-04-30', 'received', '22.0000', '22.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6129, NULL, 42, 2535, '740939004150', 'CLEAR N SMOOTH', NULL, '20.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '0.0000', '2021-04-30', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6204, 88, NULL, 1684, '18906047544530', 'CLOPIDOGREL 75MG', NULL, '24.8200', '33.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.6400', '0.0000', '2021-04-23', 'received', '24.8200', '24.8200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6205, 88, NULL, 2488, '57207509', 'DAONIL TAB (SANOFI) ', NULL, '9.8000', '13.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2021-04-23', 'received', '9.8000', '9.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6206, 88, NULL, 2490, '8904091112500', 'CANDID MOUTH PAINT', NULL, '8.6300', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8900', '0.0000', '2021-04-23', 'received', '8.6300', '8.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.6300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6207, 88, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '19.0000', '27.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '190.0000', '0.0000', '2021-04-23', 'received', '19.0000', '19.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6208, 88, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '19.5000', '26.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-04-23', 'received', '19.5000', '19.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '19.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6209, 88, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.2900', '44.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.8700', '0.0000', '2021-04-23', 'received', '33.2900', '33.2900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6210, 88, NULL, 1569, 'PR-282', 'TIGER CAPS', NULL, '14.2800', '19.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5600', '0.0000', '2021-04-23', 'received', '14.2800', '14.2800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6211, 88, NULL, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', NULL, '41.3700', '54.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.1100', '0.0000', '2021-04-23', 'received', '41.3700', '41.3700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '41.3700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6212, 88, NULL, 2493, '5060057401095', 'FRUSEMIDE TAB 40MG UK ALMUS', NULL, '6.5000', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2021-04-23', 'received', '6.5000', '6.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6213, 88, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '7.8800', '10.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.4000', '0.0000', '2021-04-23', 'received', '7.8800', '7.8800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6214, 88, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7100', '3.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.1000', '0.0000', '2021-04-23', 'received', '2.7100', '2.7100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.7100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6215, 88, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '12.2000', '16.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0000', '0.0000', '2021-04-23', 'received', '12.2000', '12.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6216, 88, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '12.3500', '16.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.7500', '0.0000', '2021-04-23', 'received', '12.3500', '12.3500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6217, 88, NULL, 2492, '51417644', 'NIZORAL SHAMPOO', NULL, '21.9900', '30.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.9800', '0.0000', '2021-04-23', 'received', '21.9900', '21.9900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6218, 88, NULL, 2548, '54581009', 'ZINCOVIT DROP', NULL, '6.7200', '9.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '0.0000', '2021-04-23', 'received', '6.7200', '6.7200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6219, 88, NULL, 2495, '19113194', 'CANDID V3', NULL, '8.6100', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8300', '0.0000', '2021-04-23', 'received', '8.6100', '8.6100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.6100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6220, NULL, NULL, 1684, '18906047544530', 'CLOPIDOGREL 75MG', NULL, '24.8200', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '49.6400', '0.0000', '2021-04-30', 'received', '24.8200', '24.8200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6221, NULL, NULL, 2490, '8904091112500', 'CANDID MOUTH PAINT', NULL, '8.6300', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.8900', '0.0000', '2021-04-30', 'received', '8.6300', '8.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6222, NULL, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '19.5000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '78.0000', '-2.0000', '2021-04-30', 'received', '19.5000', '19.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6223, NULL, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.2900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '99.8700', '-1.0000', '2021-04-30', 'received', '33.2900', '33.2900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6224, NULL, NULL, 1569, 'PR-282', 'TIGER CAPS', NULL, '14.2800', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '28.5600', '0.0000', '2021-04-30', 'received', '14.2800', '14.2800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6225, NULL, NULL, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', NULL, '41.3700', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '124.1100', '1.0000', '2021-04-30', 'received', '41.3700', '41.3700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6226, NULL, NULL, 2493, '5060057401095', 'FRUSEMIDE TAB 40MG UK ALMUS', NULL, '6.5000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '32.5000', '0.0000', '2021-04-30', 'received', '6.5000', '6.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6227, NULL, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '7.8800', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '39.4000', '-1.0000', '2021-04-30', 'received', '7.8800', '7.8800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6228, NULL, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '12.2000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '61.0000', '-6.0000', '2021-04-30', 'received', '12.2000', '12.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6229, NULL, NULL, 2492, '51417644', 'NIZORAL SHAMPOO', NULL, '21.9900', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '43.9800', '0.0000', '2021-04-30', 'received', '21.9900', '21.9900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6300, NULL, NULL, 2540, '20509028', 'SPANISH FLY', NULL, '45.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '135.0000', '3.0000', '2021-04-30', 'received', '45.0000', '45.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6301, NULL, NULL, 1591, '5017123328022', 'FUROSEMIDE 20MG TAB (CRESCENT)', NULL, '8.6600', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.3200', '0.0000', '2021-04-30', 'received', '8.6600', '8.6600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6302, NULL, NULL, 2541, '39996904', 'DEMACOT CREAM', NULL, '9.7500', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '48.7500', '0.0000', '2021-04-30', 'received', '9.7500', '9.7500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6303, NULL, NULL, 2542, '5021265223800', 'WELLKID CHEWABLE TAB', NULL, '54.2100', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '108.4200', '0.0000', '2021-04-30', 'received', '54.2100', '54.2100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6304, NULL, NULL, 2543, '89430673', 'SECURE CONTRACEPTIVE', NULL, '2.0000', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '60.0000', '4.0000', '2021-04-30', 'received', '2.0000', '2.0000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6305, NULL, NULL, 2544, '85585070', 'NEXCOFER SYR L/S', NULL, '6.8800', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '27.5200', '0.0000', '2021-04-30', 'received', '6.8800', '6.8800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6306, NULL, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '5.8800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.6400', '-1.0000', '2021-04-30', 'received', '5.8800', '5.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6307, NULL, NULL, 1502, '8850769018998', 'GOFEX400MG', NULL, '7.8000', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '234.0000', '0.0000', '2021-04-30', 'received', '7.8000', '7.8000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6308, NULL, NULL, 1811, 'PR-524', 'VERMOX SUSP', NULL, '14.5300', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '145.3000', '3.0000', '2021-04-30', 'received', '14.5300', '14.5300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6309, NULL, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '8.7600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.2800', '0.0000', '2021-04-30', 'received', '8.7600', '8.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6310, NULL, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '13.6300', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '27.2600', '1.0000', '2021-04-30', 'received', '13.6300', '13.6300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6311, NULL, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.0900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '81.2700', '-1.0000', '2021-04-30', 'received', '27.0900', '27.0900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6312, NULL, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '20.7800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '62.3400', '2.0000', '2021-04-30', 'received', '20.7800', '20.7800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6337, NULL, NULL, 1972, '6181100533118', 'PERFECT WHITE SHOWER GEL', NULL, '13.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.0000', '0.0000', '2021-04-30', 'received', '13.0000', '13.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6338, NULL, NULL, 1973, '6181100533101', 'CARO WHITE SHOWER GEL', NULL, '13.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.0000', '0.0000', '2021-04-30', 'received', '13.0000', '13.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6339, NULL, NULL, 1981, '6186000077168', 'EVERSHEEN CREAM BIG', NULL, '8.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.0000', '0.0000', '2021-04-30', 'received', '8.5000', '8.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6340, NULL, NULL, 1982, '6186000077267', 'EVERSHEEN CREAM SMALL', NULL, '4.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '9.0000', '0.0000', '2021-04-30', 'received', '4.5000', '4.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6341, NULL, NULL, 1974, '6186000077649', 'EVERSHEEN LOTION BIG 750ML', NULL, '12.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '0.0000', '2021-04-30', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6342, NULL, NULL, 1975, '6186000077410', 'EVERSHEEN LOTION MEDIUM 500ML', NULL, '8.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.0000', '0.0000', '2021-04-30', 'received', '8.5000', '8.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6343, NULL, NULL, 1976, '6186000077427', 'EVERSHEEN LOTION SMALL 250ML', NULL, '5.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '10.0000', '0.0000', '2021-04-30', 'received', '5.0000', '5.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6344, NULL, NULL, 1971, '6186000077434', 'QUEEN ELISABETH COCOA BUTTER LOTION 800ML', NULL, '11.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '22.0000', '0.0000', '2021-04-30', 'received', '11.0000', '11.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6345, NULL, NULL, 1978, '6186000077045', 'QUEEN ELISABETH COCO BUTTER LOTIN 400ML', NULL, '6.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.0000', '-1.0000', '2021-04-30', 'received', '6.5000', '6.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6346, NULL, NULL, 1983, '6186000077014', 'QUEEN ELISABETH COCOA BUTTER CREAM 500ML', NULL, '11.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '22.0000', '0.0000', '2021-04-30', 'received', '11.0000', '11.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6347, NULL, NULL, 1984, '6186000077021', 'QUEEN ELISABETH COCOA BUTTER CREAM  250ML MEDIUM', NULL, '6.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.0000', '0.0000', '2021-04-30', 'received', '6.5000', '6.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6348, NULL, NULL, 1985, '6186000077038', 'QUEEN ELISABETH COCOA BUTTER CREAM 125ML', NULL, '4.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '8.0000', '0.0000', '2021-04-30', 'received', '4.0000', '4.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6349, NULL, NULL, 1986, '6181100323658', 'SIVODERM CREAM', NULL, '5.0000', '0.0000', '9.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.0000', '0.0000', '2021-04-30', 'received', '5.0000', '5.0000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6350, NULL, NULL, 1987, '6181100323665', 'SIVODERM POWDER', NULL, '4.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.5000', '0.0000', '2021-04-30', 'received', '4.5000', '4.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6351, NULL, NULL, 1988, '6182000127728', 'PHARMADERM', NULL, '5.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-04-30', 'received', '5.0000', '5.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6352, NULL, NULL, 1989, '6181100321821', 'SULFUR 18', NULL, '3.5000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '14.0000', '0.0000', '2021-04-30', 'received', '3.5000', '3.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6353, NULL, NULL, 1990, '6182000129364', 'BROOKLYN STYLING GEL', NULL, '2.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '7.5000', '0.0000', '2021-04-30', 'received', '2.5000', '2.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6354, NULL, NULL, 1991, '6181100234244', 'PARADISE POWDER', NULL, '5.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-04-30', 'received', '5.0000', '5.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6355, NULL, NULL, 1992, '6033000171719', 'KLEANZ SANITIZER 100ML', NULL, '1.5000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '9.0000', '0.0000', '2021-04-30', 'received', '1.5000', '1.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6356, NULL, NULL, 1993, '6033000330710', 'KLEANZ SANITIZER 50ML', NULL, '0.6000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '7.2000', '0.0000', '2021-04-30', 'received', '0.6000', '0.6000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6357, NULL, NULL, 1994, '6182000105382', 'CAROTONE LOTION BIG 550ML', NULL, '12.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '0.0000', '2021-04-30', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6358, NULL, NULL, 1995, '6182000109939', 'CAROTONE LOTION MEDIUM 350ML', NULL, '8.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.0000', '0.0000', '2021-04-30', 'received', '8.5000', '8.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6359, NULL, NULL, 1996, '6182000100455', 'CAROTONE LOTION SMALL 215ML', NULL, '5.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '11.0000', '0.0000', '2021-04-30', 'received', '5.5000', '5.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6360, NULL, NULL, 1997, '6182000100493', 'CAROTONE CREAM BIG 330ML', NULL, '8.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.0000', '0.0000', '2021-04-30', 'received', '8.5000', '8.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6361, NULL, NULL, 1998, '6182000100486', 'CAROTONE CREAM SMALL135ML', NULL, '3.6000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '7.2000', '0.0000', '2021-04-30', 'received', '3.6000', '3.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6362, NULL, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '6.0000', '0.0000', '24.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '144.0000', '0.0000', '2021-04-30', 'received', '6.0000', '6.0000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6363, NULL, NULL, 2000, '6036000087004', 'FAYTEX', NULL, '7.5000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '37.5000', '0.0000', '2021-04-30', 'received', '7.5000', '7.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6364, NULL, NULL, 2005, '6926160704036', 'LILY ROSS TOOTHBRUSH HARD', NULL, '2.3300', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '27.9600', '0.0000', '2021-04-30', 'received', '2.3300', '2.3300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6365, NULL, NULL, 2006, '18256477', 'SMOKERS TOOTHBRUSH', NULL, '0.7500', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '9.0000', '0.0000', '2021-04-30', 'received', '0.7500', '0.7500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6366, NULL, NULL, 2008, '6003001000509', 'SAVELON ANTISEPTIC 125ML', NULL, '10.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '60.0000', '0.0000', '2021-04-30', 'received', '10.0000', '10.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6367, NULL, NULL, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', NULL, '15.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '90.0000', '-1.0000', '2021-04-30', 'received', '15.0000', '15.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6368, NULL, NULL, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.2500', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-04-30', 'received', '1.2500', '1.2500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6369, NULL, NULL, 2011, '6948031103014', 'VIP TOOTHBRUSH', NULL, '0.5300', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '6.3600', '0.0000', '2021-04-30', 'received', '0.5300', '0.5300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6370, NULL, NULL, 2013, '3612815532569', 'CAMPHOR', NULL, '3.0000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '3.0000', '0.0000', '2021-04-30', 'received', '3.0000', '3.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6371, NULL, NULL, 2014, '08906045943697', 'ACNE CLEAR GEL', NULL, '5.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.0000', '0.0000', '2021-04-30', 'received', '5.0000', '5.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6372, NULL, NULL, 2016, '6154000017026', 'BABY OIL CUSSIONS BIG', NULL, '8.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '0.0000', '2021-04-30', 'received', '8.0000', '8.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6373, NULL, NULL, 2015, '88820286', 'BABY OIL CUSSONS SMALL', NULL, '5.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-04-30', 'received', '5.0000', '5.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6374, NULL, NULL, 2017, '6001159111368', 'BIO OIL BIG 200ML', NULL, '23.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '46.0000', '0.0000', '2021-04-30', 'received', '23.0000', '23.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6375, NULL, NULL, 2018, '6001159111351', 'BIO OIL MEDIUM 125ML', NULL, '18.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.0000', '0.0000', '2021-04-30', 'received', '18.0000', '18.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6376, NULL, NULL, 2019, '6001159111641', 'BIO OIL SMALL60ML', NULL, '10.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '20.0000', '0.0000', '2021-04-30', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6377, NULL, NULL, 2023, '6001087011143', 'VASELINE LOTION  COCOA GLOW 400ML', NULL, '14.0000', '0.0000', '8.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '112.0000', '0.0000', '2021-04-30', 'received', '14.0000', '14.0000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6378, NULL, NULL, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', NULL, '4.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '0.0000', '2021-04-30', 'received', '4.0000', '4.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6379, NULL, NULL, 2026, '6001087005661', 'VASELINE CREAM 250ML6001087005661', NULL, '12.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '0.0000', '2021-04-30', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6380, NULL, NULL, 2027, '60018915', 'VASELINE CREAM SMALL 100ML', NULL, '6.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.0000', '0.0000', '2021-04-30', 'received', '6.0000', '6.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6381, NULL, NULL, 2028, '5137136225122', 'JRA CREAM BIG 220G', NULL, '21.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '63.0000', '0.0000', '2021-04-30', 'received', '21.0000', '21.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6382, NULL, NULL, 2029, '5137136225115', 'JRA CREAM MEDIUM 120G', NULL, '11.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '33.0000', '0.0000', '2021-04-30', 'received', '11.0000', '11.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6383, NULL, NULL, 2030, '00974156', 'JRA CREAM SMALL MEDIUM', NULL, '10.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.0000', '-1.0000', '2021-04-30', 'received', '10.0000', '10.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6384, NULL, NULL, 2031, '5137136225191', 'JRA CREAM SMALL 40G', NULL, '5.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '-1.0000', '2021-04-30', 'received', '5.0000', '5.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6385, NULL, NULL, 2032, '8859178707738', 'TOP COUNTRY ROLL ON 80ML', NULL, '5.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '16.5000', '0.0000', '2021-04-30', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6386, NULL, NULL, 2033, '8859178707721', 'TOP COUNTRY ROLL ON 60ML', NULL, '4.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.5000', '0.0000', '2021-04-30', 'received', '4.5000', '4.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6387, NULL, NULL, 2034, '4800888199188', 'REXONA ROLL ON 50ML', NULL, '6.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.0000', '0.0000', '2021-04-30', 'received', '6.0000', '6.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6388, NULL, NULL, 2035, '616762001072', 'POWER HOUSE ROLL ON 50ML', NULL, '5.2000', '0.0000', '11.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '57.2000', '-1.0000', '2021-04-30', 'received', '5.2000', '5.2000', '11.0000', NULL, NULL, 1, 'pc', '11.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6389, NULL, NULL, 2037, '96125700', 'SURE  DEO SPRAY 250ML', NULL, '10.0000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.0000', '-1.0000', '2021-04-30', 'received', '10.0000', '10.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6390, NULL, NULL, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '10.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '60.0000', '0.0000', '2021-04-30', 'received', '10.0000', '10.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6391, NULL, NULL, 2039, '8710447482032', 'REXONA DEO SPRAY 200ML', NULL, '9.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.0000', '0.0000', '2021-04-30', 'received', '9.0000', '9.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6392, NULL, NULL, 2040, '6181100535198', 'BABYMED POWDER 500G', NULL, '6.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.0000', '0.0000', '2021-04-30', 'received', '6.5000', '6.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6393, NULL, NULL, 2042, '6181100535143', 'BABYMED BATHING GEL 800ML', NULL, '12.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '0.0000', '2021-04-30', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6394, NULL, NULL, 2043, '8433295049256', 'SAIRO BABY SHAMPOO 750ML', NULL, '9.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.0000', '0.0000', '2021-04-30', 'received', '9.0000', '9.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6395, NULL, NULL, 2044, '68015242', 'BABYMED  BABY SET', NULL, '28.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '56.0000', '0.0000', '2021-04-30', 'received', '28.0000', '28.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6396, NULL, NULL, 2045, '6181100532166', 'DAY BY DAY POWDER 500 G', NULL, '6.5000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.0000', '-1.0000', '2021-04-30', 'received', '6.5000', '6.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6397, NULL, NULL, 2048, '67087247', 'DAY BY DAY BABY SET', NULL, '35.0000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '35.0000', '0.0000', '2021-04-30', 'received', '35.0000', '35.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6398, NULL, NULL, 2051, '6186000077731', 'TENDRINA BOBY LOTION 500ML', NULL, '8.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '16.0000', '0.0000', '2021-04-30', 'received', '8.0000', '8.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6399, NULL, NULL, 2052, '6186000077724', 'TENDRINA BOBY LOTION 250ML', NULL, '4.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '9.0000', '0.0000', '2021-04-30', 'received', '4.5000', '4.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6400, NULL, NULL, 2053, '6181100284225', 'CLINIC CLEAR BOBY LOTION 500ML', NULL, '19.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '57.0000', '0.0000', '2021-04-30', 'received', '19.0000', '19.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6401, NULL, NULL, 2054, '6181100284218', 'CLINIC CLEAR BOBY LOTION 250ML', NULL, '12.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.0000', '0.0000', '2021-04-30', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6402, NULL, 39, 2054, '6181100284218', 'CLINIC CLEAR BOBY LOTION 250ML', NULL, '12.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '3.0000', '2021-04-30', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6403, NULL, 39, 2053, '6181100284225', 'CLINIC CLEAR BOBY LOTION 500ML', NULL, '19.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.0000', '3.0000', '2021-04-30', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6404, NULL, 39, 2052, '6186000077724', 'TENDRINA BOBY LOTION 250ML', NULL, '4.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.0000', '1.0000', '2021-04-30', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6405, NULL, 39, 2051, '6186000077731', 'TENDRINA BOBY LOTION 500ML', NULL, '8.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.0000', '1.0000', '2021-04-30', 'received', '8.0000', '8.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6406, NULL, 39, 2048, '67087247', 'DAY BY DAY BABY SET', NULL, '35.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.0000', '0.0000', '2021-04-30', 'received', '35.0000', '35.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6407, NULL, 39, 2045, '6181100532166', 'DAY BY DAY POWDER 500 G', NULL, '6.5000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '4.0000', '2021-04-30', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6408, NULL, 39, 2044, '68015242', 'BABYMED  BABY SET', NULL, '28.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '56.0000', '1.0000', '2021-04-30', 'received', '28.0000', '28.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6409, NULL, 39, 2043, '8433295049256', 'SAIRO BABY SHAMPOO 750ML', NULL, '9.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '2.0000', '2021-04-30', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6410, NULL, 39, 2042, '6181100535143', 'BABYMED BATHING GEL 800ML', NULL, '12.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '2.0000', '2021-04-30', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6411, NULL, 39, 2040, '6181100535198', 'BABYMED POWDER 500G', NULL, '6.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.0000', '2.0000', '2021-04-30', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6412, NULL, 39, 2039, '8710447482032', 'REXONA DEO SPRAY 200ML', NULL, '9.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '2.0000', '2021-04-30', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6413, NULL, 39, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '10.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '3.0000', '2021-04-30', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6414, NULL, 39, 2037, '96125700', 'SURE  DEO SPRAY 250ML', NULL, '10.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '0.0000', '2021-04-30', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6415, NULL, 39, 2035, '616762001072', 'POWER HOUSE ROLL ON 50ML', NULL, '5.2000', '0.0000', '11.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.2000', '10.0000', '2021-04-30', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '11.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6416, NULL, 39, 2034, '4800888199188', 'REXONA ROLL ON 50ML', NULL, '6.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '1.0000', '2021-04-30', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6417, NULL, 39, 2033, '8859178707721', 'TOP COUNTRY ROLL ON 60ML', NULL, '4.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.5000', '3.0000', '2021-04-30', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6418, NULL, 39, 2032, '8859178707738', 'TOP COUNTRY ROLL ON 80ML', NULL, '5.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.5000', '0.0000', '2021-04-30', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6419, NULL, 39, 2031, '5137136225191', 'JRA CREAM SMALL 40G', NULL, '5.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '0.0000', '2021-04-30', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6420, NULL, 39, 2030, '00974156', 'JRA CREAM SMALL MEDIUM', NULL, '10.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '1.0000', '2021-04-30', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6421, NULL, 39, 2029, '5137136225115', 'JRA CREAM MEDIUM 120G', NULL, '11.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '3.0000', '2021-04-30', 'received', '11.0000', '11.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6422, NULL, 39, 2028, '5137136225122', 'JRA CREAM BIG 220G', NULL, '21.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '63.0000', '0.0000', '2021-04-30', 'received', '21.0000', '21.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6423, NULL, 39, 2027, '60018915', 'VASELINE CREAM SMALL 100ML', NULL, '6.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '0.0000', '2021-04-30', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6424, NULL, 39, 2026, '6001087005661', 'VASELINE CREAM 250ML6001087005661', NULL, '12.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '0.0000', '2021-04-30', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6425, NULL, 39, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', NULL, '4.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '3.0000', '2021-04-30', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6426, NULL, 39, 2023, '6001087011143', 'VASELINE LOTION  COCOA GLOW 400ML', NULL, '14.0000', '0.0000', '8.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '112.0000', '6.0000', '2021-04-30', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6427, NULL, 39, 2019, '6001159111641', 'BIO OIL SMALL60ML', NULL, '10.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '0.0000', '2021-04-30', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6428, NULL, 39, 2018, '6001159111351', 'BIO OIL MEDIUM 125ML', NULL, '18.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '0.0000', '2021-04-30', 'received', '18.0000', '18.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6429, NULL, 39, 2017, '6001159111368', 'BIO OIL BIG 200ML', NULL, '23.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.0000', '2.0000', '2021-04-30', 'received', '23.0000', '23.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6430, NULL, 39, 2015, '88820286', 'BABY OIL CUSSONS SMALL', NULL, '5.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '0.0000', '2021-04-30', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6431, NULL, 39, 2016, '6154000017026', 'BABY OIL CUSSIONS BIG', NULL, '8.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '0.0000', '2021-04-30', 'received', '8.0000', '8.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6432, NULL, 39, 2014, '08906045943697', 'ACNE CLEAR GEL', NULL, '5.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.0000', '4.0000', '2021-04-30', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6433, NULL, 39, 2013, '3612815532569', 'CAMPHOR', NULL, '3.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '3.0000', '0.0000', '2021-04-30', 'received', '3.0000', '3.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6434, NULL, 39, 2011, '6948031103014', 'VIP TOOTHBRUSH', NULL, '0.5300', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.3600', '6.0000', '2021-04-30', 'received', '0.5300', '0.5300', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6435, NULL, 39, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.2500', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '7.0000', '2021-04-30', 'received', '1.2500', '1.2500', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6436, NULL, 39, 2009, '50158911', 'DETTOL ANTISEPTIC 250ML', NULL, '18.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '108.0000', '5.0000', '2021-04-30', 'received', '18.0000', '18.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6437, NULL, 39, 2012, '46653631', 'DETTOL ANTISEPTIC 165ML', NULL, '12.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.0000', '3.0000', '2021-04-30', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6438, NULL, 39, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', NULL, '15.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.0000', '1.0000', '2021-04-30', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6439, NULL, 39, 2008, '6003001000509', 'SAVELON ANTISEPTIC 125ML', NULL, '10.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '4.0000', '2021-04-30', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6440, NULL, 39, 2006, '18256477', 'SMOKERS TOOTHBRUSH', NULL, '0.7500', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.0000', '12.0000', '2021-04-30', 'received', '0.7500', '0.7500', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6441, NULL, 39, 2005, '6926160704036', 'LILY ROSS TOOTHBRUSH HARD', NULL, '2.3300', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.9600', '0.0000', '2021-04-30', 'received', '2.3300', '2.3300', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6442, NULL, 39, 2001, '012', 'BELLS OLIVE OIL 70ML', NULL, '2.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '4.0000', '2021-04-30', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6443, NULL, 39, 2000, '6036000087004', 'FAYTEX', NULL, '7.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.5000', '4.0000', '2021-04-30', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6444, NULL, 39, 1999, '6971044950313', 'YAZZ PAD', NULL, '6.0000', '0.0000', '24.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '144.0000', '10.0000', '2021-04-30', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6445, NULL, 39, 1998, '6182000100486', 'CAROTONE CREAM SMALL135ML', NULL, '3.6000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.2000', '2.0000', '2021-04-30', 'received', '3.6000', '3.6000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6446, NULL, 39, 1997, '6182000100493', 'CAROTONE CREAM BIG 330ML', NULL, '8.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.0000', '1.0000', '2021-04-30', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6447, NULL, 39, 1996, '6182000100455', 'CAROTONE LOTION SMALL 215ML', NULL, '5.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.0000', '1.0000', '2021-04-30', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6448, NULL, 39, 1995, '6182000109939', 'CAROTONE LOTION MEDIUM 350ML', NULL, '8.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.0000', '0.0000', '2021-04-30', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6449, NULL, 39, 1994, '6182000105382', 'CAROTONE LOTION BIG 550ML', NULL, '12.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '2.0000', '2021-04-30', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6450, NULL, 39, 1993, '6033000330710', 'KLEANZ SANITIZER 50ML', NULL, '0.6000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.2000', '4.0000', '2021-04-30', 'received', '0.6000', '0.6000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6451, NULL, 39, 1992, '6033000171719', 'KLEANZ SANITIZER 100ML', NULL, '1.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.0000', '1.0000', '2021-04-30', 'received', '1.5000', '1.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6452, NULL, 39, 1991, '6181100234244', 'PARADISE POWDER', NULL, '5.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-04-30', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6453, NULL, 39, 1990, '6182000129364', 'BROOKLYN STYLING GEL', NULL, '2.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.5000', '3.0000', '2021-04-30', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6454, NULL, 39, 1989, '6181100321821', 'SULFUR 18', NULL, '3.5000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.0000', '2.0000', '2021-04-30', 'received', '3.5000', '3.5000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6455, NULL, 39, 1988, '6182000127728', 'PHARMADERM', NULL, '5.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '3.0000', '2021-04-30', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6456, NULL, 39, 1987, '6181100323665', 'SIVODERM POWDER', NULL, '4.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.5000', '0.0000', '2021-04-30', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6457, NULL, 39, 1986, '6181100323658', 'SIVODERM CREAM', NULL, '5.0000', '0.0000', '9.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '3.0000', '2021-04-30', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6458, NULL, 39, 1985, '6186000077038', 'QUEEN ELISABETH COCOA BUTTER CREAM 125ML', NULL, '4.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.0000', '0.0000', '2021-04-30', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6459, NULL, 39, 1984, '6186000077021', 'QUEEN ELISABETH COCOA BUTTER CREAM  250ML MEDIUM', NULL, '6.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.0000', '2.0000', '2021-04-30', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6460, NULL, 39, 1983, '6186000077014', 'QUEEN ELISABETH COCOA BUTTER CREAM 500ML', NULL, '11.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.0000', '0.0000', '2021-04-30', 'received', '11.0000', '11.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6461, NULL, 39, 1980, '6186000077052', 'QUEEN ELISABETH COCOA BUTTER LOTION 250ML', NULL, '4.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.0000', '1.0000', '2021-04-30', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6462, NULL, 39, 1978, '6186000077045', 'QUEEN ELISABETH COCO BUTTER LOTIN 400ML', NULL, '6.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.0000', '0.0000', '2021-04-30', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6463, NULL, 39, 1971, '6186000077434', 'QUEEN ELISABETH COCOA BUTTER LOTION 800ML', NULL, '11.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.0000', '2.0000', '2021-04-30', 'received', '11.0000', '11.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6464, NULL, 39, 1976, '6186000077427', 'EVERSHEEN LOTION SMALL 250ML', NULL, '5.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.0000', '0.0000', '2021-04-30', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6465, NULL, 39, 1975, '6186000077410', 'EVERSHEEN LOTION MEDIUM 500ML', NULL, '8.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.0000', '0.0000', '2021-04-30', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6466, NULL, 39, 1974, '6186000077649', 'EVERSHEEN LOTION BIG 750ML', NULL, '12.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '2.0000', '2021-04-30', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6467, NULL, 39, 1982, '6186000077267', 'EVERSHEEN CREAM SMALL', NULL, '4.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.0000', '2.0000', '2021-04-30', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6468, NULL, 39, 1981, '6186000077168', 'EVERSHEEN CREAM BIG', NULL, '8.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.0000', '2.0000', '2021-04-30', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6469, NULL, 39, 1973, '6181100533101', 'CARO WHITE SHOWER GEL', NULL, '13.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '2.0000', '2021-04-30', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6470, NULL, 39, 1972, '6181100533118', 'PERFECT WHITE SHOWER GEL', NULL, '13.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '2.0000', '2021-04-30', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6471, NULL, NULL, 1638, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6472, NULL, NULL, 1596, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6523, NULL, NULL, 2549, '07128035', 'GILLETTE RAZOR', NULL, '10.0000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '120.0000', '-1.0000', '2021-05-01', 'received', '10.0000', '10.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6524, NULL, NULL, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', NULL, '6.9000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.8000', '-1.0000', '2021-05-01', 'received', '6.9000', '6.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6525, NULL, NULL, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '70.6900', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '141.3800', '6.0000', '2021-05-01', 'received', '70.6900', '70.6900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6551, NULL, NULL, 1494, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6552, NULL, NULL, 1630, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6615, NULL, NULL, 1717, '3014230021404', 'BRUT DEOSPRAY ORIG. 200ML', NULL, '10.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.0000', '0.0000', '2021-05-03', 'received', '10.0000', '10.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6616, NULL, NULL, 1719, 'PR-432', 'NECLOBET -3 CREAM 30G', NULL, '4.5900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.7700', '0.0000', '2021-05-03', 'received', '4.5900', '4.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6617, NULL, NULL, 1721, 'PR-434', 'AZITEX(AZITHROMYCIN) SUSP. 200MG /5ML 15ML', NULL, '8.6900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.0700', '-1.0000', '2021-05-03', 'received', '8.6900', '8.6900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6618, NULL, NULL, 1722, 'PR-435', 'CLOTRIMAZOLE CREAM 1 G', NULL, '2.5900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '7.7700', '0.0000', '2021-05-03', 'received', '2.5900', '2.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6619, NULL, NULL, 1723, 'PR-436', 'HYDROCORTISONE CREAM 15G TEVA', NULL, '6.4800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '19.4400', '0.0000', '2021-05-03', 'received', '6.4800', '6.4800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6620, NULL, NULL, 1959, '5000456022798', 'CRESTOR 10MG', NULL, '81.4000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '162.8000', '0.0000', '2021-05-03', 'received', '81.4000', '81.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6621, NULL, NULL, 1724, '7321839722165', 'ATACAND PLUS TABLETS 16/12.5 28\'', NULL, '142.9000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '142.9000', '0.0000', '2021-05-03', 'received', '142.9000', '142.9000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6622, NULL, NULL, 1725, '7321839721397', 'ATACAND TABLETS 16MG 28\'', NULL, '142.9000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '285.8000', '0.0000', '2021-05-03', 'received', '142.9000', '142.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6623, NULL, NULL, 1726, '8680199905502', 'CLODIFEN (DICLOFENAC) SUPP. 100MG', NULL, '12.5800', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '62.9000', '0.0000', '2021-05-03', 'received', '12.5800', '12.5800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6624, NULL, NULL, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', NULL, '1.8000', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.0000', '0.0000', '2021-05-03', 'received', '1.8000', '1.8000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6625, NULL, NULL, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', NULL, '1.9000', '0.0000', '40.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '76.0000', '-16.0000', '2021-05-03', 'received', '1.9000', '1.9000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6626, NULL, NULL, 1729, 'PR-442', 'GYNO-DAKTARIN CREAM 40G', NULL, '41.5200', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '124.5600', '0.0000', '2021-05-03', 'received', '41.5200', '41.5200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6627, NULL, NULL, 1731, 'PR-444', 'DAKTARIN CREAM 15G', NULL, '19.9600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '59.8800', '0.0000', '2021-05-03', 'received', '19.9600', '19.9600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6628, NULL, NULL, 1732, 'PR-445', 'DAKTARIN ORAL GEL 40G', NULL, '36.2900', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '72.5800', '0.0000', '2021-05-03', 'received', '36.2900', '36.2900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6629, NULL, NULL, 1734, 'PR-447', 'ENAFIX SUSP. 100ML', NULL, '14.9800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '44.9400', '0.0000', '2021-05-03', 'received', '14.9800', '14.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6630, NULL, NULL, 1360, 'PR-73', 'GALVUS MET FCT 50/1000MG', NULL, '90.0000', '0.0000', '6.0000', 4, '0.0000', 1, '0', NULL, NULL, NULL, '540.0000', '0.0000', '2021-05-03', 'received', '90.0000', '90.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6631, NULL, NULL, 1737, '8901040310307', 'PREGNACIN PLUS CAPS 60\'', NULL, '46.9800', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '46.9800', '0.0000', '2021-05-03', 'received', '46.9800', '46.9800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6632, NULL, NULL, 1738, 'PR-451', 'MENTHODEX LOZENGES 15\'(SACHET} 50G', NULL, '7.1000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '21.3000', '0.0000', '2021-05-03', 'received', '7.1000', '7.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6633, NULL, NULL, 1740, 'PR-453', 'SILDENAFIL TABS 1 00MG 4\'(EXETER)', NULL, '7.3300', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '21.9900', '0.0000', '2021-05-03', 'received', '7.3300', '7.3300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6634, NULL, NULL, 1741, '5017007601289', 'SUDOCREAM 125G', NULL, '25.2800', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '50.5600', '0.0000', '2021-05-03', 'received', '25.2800', '25.2800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6658, 12, NULL, 1717, '3014230021404', 'BRUT DEOSPRAY ORIG. 200ML', NULL, '90.0000', '13.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6659, 12, NULL, 1718, 'PR-431', 'WISDOM FRESHBREADTH SPRAY 12.5ML 6.00 BTL', NULL, '90.0000', '11.0000', '0.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6660, 12, NULL, 1719, 'PR-432', 'NECLOBET -3 CREAM 30G', NULL, '90.0000', '6.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6661, 12, NULL, 1720, 'PR-433', 'FUROSEMIDE TABS 40MG 500\'(ECL)', NULL, '90.0000', '1.0000', '150.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13500.0000', '150.0000', '2021-03-30', 'received', '90.0000', '90.0000', '150.0000', NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6662, 12, NULL, 1721, 'PR-434', 'AZITEX(AZITHROMYCIN) SUSP. 200MG /5ML 15ML', NULL, '90.0000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6663, 12, NULL, 1722, 'PR-435', 'CLOTRIMAZOLE CREAM 1 G', NULL, '90.0000', '4.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6664, 12, NULL, 1723, 'PR-436', 'HYDROCORTISONE CREAM 15G TEVA', NULL, '90.0000', '8.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6665, 12, NULL, 1959, '5000456022798', 'CRESTOR 10MG', NULL, '81.4000', '107.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.8000', '0.0000', '2021-03-30', 'received', '81.4000', '81.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '81.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6666, 12, NULL, 1724, '7321839722165', 'ATACAND PLUS TABLETS 16/12.5 28\'', NULL, '90.0000', '188.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6667, 12, NULL, 1725, '7321839721397', 'ATACAND TABLETS 16MG 28\'', NULL, '90.0000', '188.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6668, 12, NULL, 1726, '8680199905502', 'CLODIFEN (DICLOFENAC) SUPP. 100MG', NULL, '90.0000', '17.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '450.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6669, 12, NULL, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', NULL, '90.0000', '2.3000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '1800.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6670, 12, NULL, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', NULL, '90.0000', '2.5000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '3600.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6671, 12, NULL, 1742, '53996671', 'SUDOCREM 30G TUBE', NULL, '17.8900', '23.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7800', '0.0000', '2021-03-30', 'received', '17.8900', '17.8900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6672, 12, NULL, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', NULL, '3.9800', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.9000', '0.0000', '2021-03-30', 'received', '3.9800', '3.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6673, 12, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '24.9800', '33.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.9600', '0.0000', '2021-03-30', 'received', '24.9800', '24.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6674, 12, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.9800', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9600', '0.0000', '2021-03-30', 'received', '10.9800', '10.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6675, 12, NULL, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', NULL, '3.5000', '5.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '28.0000', '2021-03-30', 'received', '3.5000', '3.5000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6676, 12, NULL, 2062, '01665566', 'ZYMAX SUSP', NULL, '5.8900', '8.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5600', '4.0000', '2021-03-30', 'received', '5.8900', '5.8900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '5.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6677, 12, NULL, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', NULL, '0.3200', '0.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '50.0000', '2021-03-30', 'received', '0.3200', '0.3200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6678, 12, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '10.5000', '14.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '0.0000', '2021-03-30', 'received', '10.5000', '10.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '10.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6679, 12, NULL, 1749, 'PR-462', 'BE NYLIN DRY COUGH SYR 1 00ML', NULL, '90.0000', '100.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '3.0000', '2021-03-30', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6680, 12, NULL, 1750, 'PR-463', 'BENYLIN ORIG. SYRUP 100ML', NULL, '31.9800', '42.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '127.9200', '4.0000', '2021-03-30', 'received', '31.9800', '31.9800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '31.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6681, 12, NULL, 1751, 'PR-464', 'METRO-Z TABS 20', NULL, '3.6900', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4500', '4.0000', '2021-03-30', 'received', '3.6900', '3.6900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6682, 12, NULL, 2063, '28182783', 'NEFLUCON (FLUCONAZOLE) CAP 150', NULL, '1.9900', '3.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.9500', '3.0000', '2021-03-30', 'received', '1.9900', '1.9900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '1.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6683, 12, NULL, 1753, 'PR-466', 'LIVERTONE JUNIOR SYRUP 125ML', NULL, '4.6900', '6.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0700', '2.0000', '2021-03-30', 'received', '4.6900', '4.6900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6684, 12, NULL, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', NULL, '13.4800', '18.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.9600', '0.0000', '2021-03-30', 'received', '13.4800', '13.4800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.4800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6746, NULL, NULL, 1759, '5017848251049', 'OLIVE  OIL 70ML', NULL, '11.5000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '57.5000', '0.0000', '2021-05-03', 'received', '11.5000', '11.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6771, 16, NULL, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '90.0000', '6.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6772, 16, NULL, 1768, '8901040369305', 'VITAMIN C TABS 500MG 30\' (EXETER)', NULL, '100.0000', '2.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '300.0000', '0.0000', '2021-03-30', 'received', '100.0000', '100.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6773, 16, NULL, 1769, '6001135508526', 'BENYLIN PAED. SYRUP 1 00ML', NULL, '90.0000', '35.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2021-03-30', 'received', '90.0000', '90.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6774, 16, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '90.0000', '55.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '2.0000', '2021-03-30', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6775, 16, NULL, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '3.3900', '5.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.9000', '4.0000', '2021-03-30', 'received', '3.3900', '3.3900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.3900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6776, NULL, NULL, 1463, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6777, 75, NULL, 2309, '23002945', 'Permoxyl caps 500mg', NULL, '1.9900', '2.6000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.8000', '0.0000', '2021-04-12', 'received', '1.9900', '1.9900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6778, 75, NULL, 1755, 'PR-468', 'STOPKOF EXPT( CARBOCISTEINE)5?ULT 100ML', NULL, '5.5900', '7.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5400', '6.0000', '2021-04-12', 'received', '5.5900', '5.5900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6779, 75, NULL, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', NULL, '4.9900', '6.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.8000', '20.0000', '2021-04-12', 'received', '4.9900', '4.9900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6780, 75, NULL, 1757, 'PR-470', 'PERMOXYL (AMOX\'LIN ) SUSP 100ML', NULL, '4.4000', '6.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.4000', '6.0000', '2021-04-12', 'received', '4.4000', '4.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6781, 75, NULL, 1758, 'PR-471', 'PREGNACARE (19) CAPS 30', NULL, '42.0000', '55.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '2.0000', '2021-04-12', 'received', '42.0000', '42.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '42.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6782, 75, NULL, 1759, '5017848251049', 'OLIVE  OIL 70ML', NULL, '11.5000', '15.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.5000', '4.0000', '2021-04-12', 'received', '11.5000', '11.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6783, 75, NULL, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', NULL, '1.5900', '2.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7500', '18.0000', '2021-04-12', 'received', '1.5900', '1.5900', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '1.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6784, 75, NULL, 1761, 'PR-474', 'OMECET CAPS 100', NULL, '1.8200', '3.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.8000', '40.0000', '2021-04-12', 'received', '1.8200', '1.8200', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6785, 75, NULL, 1762, 'PR-475', 'KIDIVITE MULTIVITAMIN DROPS 25ML', NULL, '8.2900', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.8700', '3.0000', '2021-04-12', 'received', '8.2900', '8.2900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6786, 75, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.6900', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4500', '5.0000', '2021-04-12', 'received', '4.6900', '4.6900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6787, 75, NULL, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', NULL, '4.3900', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9500', '0.0000', '2021-04-12', 'received', '4.3900', '4.3900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.3900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6788, 75, NULL, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', NULL, '5.3900', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.9500', '5.0000', '2021-04-12', 'received', '5.3900', '5.3900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.3900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6789, 75, NULL, 1640, 'PR-353', 'HISTAZINE SYR', NULL, '2.6500', '3.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.9000', '0.0000', '2021-04-12', 'received', '2.6500', '2.6500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6790, 75, NULL, 1766, 'PR-479', 'HIST AZINE SYRUP 60ML', NULL, '2.6900', '4.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.1400', '6.0000', '2021-04-12', 'received', '2.6900', '2.6900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6791, 75, NULL, 1456, '5026143702088', 'ALPHA VITAMIN C TABS', NULL, '15.0000', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-04-12', 'received', '15.0000', '15.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6792, 75, NULL, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '4.6000', '6.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '6.0000', '2021-04-12', 'received', '4.6000', '4.6000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6793, NULL, 45, 1741, '5017007601289', 'SUDOCREAM 125G', NULL, '25.2800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.5600', '0.0000', '2021-05-03', 'received', '25.2800', '25.2800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6794, NULL, 45, 1740, 'PR-453', 'SILDENAFIL TABS 1 00MG 4\'(EXETER)', NULL, '7.3300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.9900', '2.0000', '2021-05-03', 'received', '7.3300', '7.3300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6795, NULL, 45, 1738, 'PR-451', 'MENTHODEX LOZENGES 15\'(SACHET} 50G', NULL, '7.1000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.3000', '1.0000', '2021-05-03', 'received', '7.1000', '7.1000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6796, NULL, 45, 1737, '8901040310307', 'PREGNACIN PLUS CAPS 60\'', NULL, '46.9800', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.9800', '0.0000', '2021-05-03', 'received', '46.9800', '46.9800', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6797, NULL, 45, 1360, 'PR-73', 'GALVUS MET FCT 50/1000MG', NULL, '29.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '174.0000', '6.0000', '2021-05-03', 'received', '29.0000', '29.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6798, NULL, 45, 1734, 'PR-447', 'ENAFIX SUSP. 100ML', NULL, '14.9800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.9400', '3.0000', '2021-05-03', 'received', '14.9800', '14.9800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6799, NULL, 45, 1732, 'PR-445', 'DAKTARIN ORAL GEL 40G', NULL, '36.2900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.5800', '2.0000', '2021-05-03', 'received', '36.2900', '36.2900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6800, NULL, 45, 1731, 'PR-444', 'DAKTARIN CREAM 15G', NULL, '19.9600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '59.8800', '3.0000', '2021-05-03', 'received', '19.9600', '19.9600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6801, NULL, 45, 1729, 'PR-442', 'GYNO-DAKTARIN CREAM 40G', NULL, '41.5200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '124.5600', '3.0000', '2021-05-03', 'received', '41.5200', '41.5200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6802, NULL, 45, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', NULL, '1.9000', '0.0000', '40.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '76.0000', '0.0000', '2021-05-03', 'received', '1.9000', '1.9000', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6803, NULL, 45, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', NULL, '1.8000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '0.0000', '2021-05-03', 'received', '1.8000', '1.8000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6804, NULL, 45, 1726, '8680199905502', 'CLODIFEN (DICLOFENAC) SUPP. 100MG', NULL, '12.5800', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '62.9000', '4.0000', '2021-05-03', 'received', '12.5800', '12.5800', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6805, NULL, 45, 1725, '7321839721397', 'ATACAND TABLETS 16MG 28\'', NULL, '142.9000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '285.8000', '2.0000', '2021-05-03', 'received', '142.9000', '142.9000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6806, NULL, 45, 1724, '7321839722165', 'ATACAND PLUS TABLETS 16/12.5 28\'', NULL, '142.9000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '142.9000', '1.0000', '2021-05-03', 'received', '142.9000', '142.9000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6807, NULL, 45, 1959, '5000456022798', 'CRESTOR 10MG', NULL, '81.4000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '162.8000', '1.0000', '2021-05-03', 'received', '81.4000', '81.4000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6808, NULL, 45, 1723, 'PR-436', 'HYDROCORTISONE CREAM 15G TEVA', NULL, '6.4800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.4400', '2.0000', '2021-05-03', 'received', '6.4800', '6.4800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6809, NULL, 45, 1722, 'PR-435', 'CLOTRIMAZOLE CREAM 1 G', NULL, '2.5900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.7700', '0.0000', '2021-05-03', 'received', '2.5900', '2.5900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6810, NULL, 45, 1721, 'PR-434', 'AZITEX(AZITHROMYCIN) SUSP. 200MG /5ML 15ML', NULL, '8.6900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0700', '1.0000', '2021-05-03', 'received', '8.6900', '8.6900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6811, NULL, 45, 1719, 'PR-432', 'NECLOBET -3 CREAM 30G', NULL, '4.5900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.7700', '3.0000', '2021-05-03', 'received', '4.5900', '4.5900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6812, NULL, 45, 1717, '3014230021404', 'BRUT DEOSPRAY ORIG. 200ML', NULL, '10.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '1.0000', '2021-05-03', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6813, NULL, 45, 1742, '53996671', 'SUDOCREM 30G TUBE', NULL, '17.8900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.7800', '1.0000', '2021-05-03', 'received', '17.8900', '17.8900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6814, NULL, 45, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', NULL, '3.9800', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.9000', '4.0000', '2021-05-03', 'received', '3.9800', '3.9800', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6815, NULL, 45, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '24.9800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.9600', '2.0000', '2021-05-03', 'received', '24.9800', '24.9800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6816, NULL, 45, 1759, '5017848251049', 'OLIVE  OIL 70ML', NULL, '11.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.5000', '0.0000', '2021-05-03', 'received', '11.5000', '11.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6817, NULL, 46, 2003, '6033000102584', 'ROBB JAR', NULL, '4.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '48.0000', '2.0000', '2021-05-03', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6818, 59, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '6.0000', '7.5000', '24.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '0.0000', '2021-04-02', 'received', '6.0000', '6.0000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6819, 59, NULL, 2000, '6036000087004', 'FAYTEX', NULL, '7.5000', '9.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-04-02', 'received', '7.5000', '7.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6820, 59, NULL, 2001, '012', 'BELLS OLIVE OIL 70ML', NULL, '2.5000', '4.0000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-04-02', 'received', '2.5000', '2.5000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6821, 59, NULL, 2003, '6033000102584', 'ROBB JAR', NULL, '4.0000', '5.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-04-02', 'received', '4.0000', '4.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6822, 59, NULL, 2004, '44696495', 'ESSENTIAL EMBROCATION (LIQUID ROBB) 8ML', NULL, '1.5000', '2.5000', '36.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '35.0000', '2021-04-02', 'received', '1.5000', '1.5000', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6823, 59, NULL, 2005, '6926160704036', 'LILY ROSS TOOTHBRUSH HARD', NULL, '2.3300', '3.5000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9600', '0.0000', '2021-04-02', 'received', '2.3300', '2.3300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '2.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6824, 59, NULL, 2006, '18256477', 'SMOKERS TOOTHBRUSH', NULL, '0.7500', '1.5000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2021-04-02', 'received', '0.7500', '0.7500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '0.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6825, 59, NULL, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', NULL, '15.0000', '18.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-04-02', 'received', '15.0000', '15.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6826, 59, NULL, 2008, '6003001000509', 'SAVELON ANTISEPTIC 125ML', NULL, '10.0000', '13.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-04-02', 'received', '10.0000', '10.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6827, 59, NULL, 2009, '50158911', 'DETTOL ANTISEPTIC 250ML', NULL, '18.0000', '20.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2021-04-02', 'received', '18.0000', '18.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6828, 59, NULL, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.2500', '2.5000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-02', 'received', '1.2500', '1.2500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '1.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6829, 59, NULL, 2011, '6948031103014', 'VIP TOOTHBRUSH', NULL, '0.5300', '1.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.3600', '0.0000', '2021-04-02', 'received', '0.5300', '0.5300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '0.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6830, 59, NULL, 2012, '46653631', 'DETTOL ANTISEPTIC 165ML', NULL, '12.0000', '15.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-04-02', 'received', '12.0000', '12.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6831, 59, NULL, 2013, '3612815532569', 'CAMPHOR', NULL, '3.0000', '4.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.0000', '0.0000', '2021-04-02', 'received', '3.0000', '3.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6832, 59, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '6.0000', '7.5000', '0.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2021-04-02', 'received', '6.0000', '6.0000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6833, 59, NULL, 2000, '6036000087004', 'FAYTEX', NULL, '7.5000', '9.0000', '0.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2021-04-02', 'received', '7.5000', '7.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6834, 59, NULL, 2001, '012', 'BELLS OLIVE OIL 70ML', NULL, '2.5000', '4.0000', '0.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2021-04-02', 'received', '2.5000', '2.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6835, 60, NULL, 2014, '08906045943697', 'ACNE CLEAR GEL', NULL, '5.0000', '6.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-04-02', 'received', '5.0000', '5.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6836, 60, NULL, 2016, '6154000017026', 'BABY OIL CUSSIONS BIG', NULL, '8.0000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-04-02', 'received', '8.0000', '8.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6837, 60, NULL, 2015, '88820286', 'BABY OIL CUSSONS SMALL', NULL, '5.0000', '8.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-02', 'received', '5.0000', '5.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6838, 60, NULL, 2017, '6001159111368', 'BIO OIL BIG 200ML', NULL, '23.0000', '40.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2021-04-02', 'received', '23.0000', '23.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6839, 60, NULL, 2018, '6001159111351', 'BIO OIL MEDIUM 125ML', NULL, '18.0000', '30.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-04-02', 'received', '18.0000', '18.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6840, 60, NULL, 2019, '6001159111641', 'BIO OIL SMALL60ML', NULL, '10.0000', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-04-02', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6841, 60, NULL, 1986, '6181100323658', 'SIVODERM CREAM', NULL, '5.0000', '6.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-04-02', 'received', '5.0000', '5.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6842, 60, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.5000', '9.0000', '0.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2021-04-02', 'received', '7.5000', '7.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6843, 60, NULL, 2021, '96101102', 'LEMONVATE', NULL, '4.0000', '6.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '10.0000', '2021-04-02', 'received', '4.0000', '4.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6844, 60, NULL, 2022, '69436145', 'CHOCHO CREAM', NULL, '3.5000', '4.5000', '0.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.0000', '0.0000', '2021-04-02', 'received', '3.5000', '3.5000', '0.0000', NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6845, 60, NULL, 2023, '6001087011143', 'VASELINE LOTION  COCOA GLOW 400ML', NULL, '14.0000', '17.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2021-04-02', 'received', '14.0000', '14.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6846, 60, NULL, 2023, '6001087011143', 'VASELINE LOTION  COCOA GLOW 400ML', NULL, '14.0000', '17.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2021-04-02', 'received', '14.0000', '14.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6847, 60, NULL, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', NULL, '4.0000', '6.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-04-02', 'received', '4.0000', '4.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6848, 60, NULL, 2026, '6001087005661', 'VASELINE CREAM 250ML6001087005661', NULL, '12.0000', '15.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '2.0000', '2021-04-02', 'received', '12.0000', '12.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6849, 60, NULL, 2027, '60018915', 'VASELINE CREAM SMALL 100ML', NULL, '6.0000', '8.0000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '5.0000', '2021-04-02', 'received', '6.0000', '6.0000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6850, 60, NULL, 2028, '5137136225122', 'JRA CREAM BIG 220G', NULL, '21.0000', '23.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '0.0000', '2021-04-02', 'received', '21.0000', '21.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6851, 60, NULL, 2029, '5137136225115', 'JRA CREAM MEDIUM 120G', NULL, '11.0000', '14.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-04-02', 'received', '11.0000', '11.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6852, 60, NULL, 2031, '5137136225191', 'JRA CREAM SMALL 40G', NULL, '5.0000', '6.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-02', 'received', '5.0000', '5.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6853, 60, NULL, 2030, '00974156', 'JRA CREAM SMALL MEDIUM', NULL, '10.0000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-04-02', 'received', '10.0000', '10.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6854, 60, NULL, 2032, '8859178707738', 'TOP COUNTRY ROLL ON 80ML', NULL, '5.5000', '7.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-04-02', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6855, 60, NULL, 2033, '8859178707721', 'TOP COUNTRY ROLL ON 60ML', NULL, '4.5000', '5.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '0.0000', '2021-04-02', 'received', '4.5000', '4.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6856, 60, NULL, 2034, '4800888199188', 'REXONA ROLL ON 50ML', NULL, '6.0000', '7.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-04-02', 'received', '6.0000', '6.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6857, 60, NULL, 2035, '616762001072', 'POWER HOUSE ROLL ON 50ML', NULL, '5.2000', '7.0000', '11.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.2000', '0.0000', '2021-04-02', 'received', '5.2000', '5.2000', '11.0000', NULL, NULL, 1, 'pc', '11.0000', NULL, NULL, NULL, NULL, '5.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6858, 60, NULL, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', NULL, '8.0000', '10.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-04-02', 'received', '8.0000', '8.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6859, 60, NULL, 2037, '96125700', 'SURE  DEO SPRAY 250ML', NULL, '10.0000', '13.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-04-02', 'received', '10.0000', '10.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6860, 60, NULL, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '10.0000', '13.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-04-02', 'received', '10.0000', '10.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6861, 60, NULL, 2039, '8710447482032', 'REXONA DEO SPRAY 200ML', NULL, '9.0000', '14.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-04-02', 'received', '9.0000', '9.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6862, 61, NULL, 2040, '6181100535198', 'BABYMED POWDER 500G', NULL, '6.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2021-04-02', 'received', '6.5000', '6.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6863, 61, NULL, 2042, '6181100535143', 'BABYMED BATHING GEL 800ML', NULL, '12.0000', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-04-02', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6864, 61, NULL, 2044, '68015242', 'BABYMED  BABY SET', NULL, '28.0000', '38.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2021-04-02', 'received', '28.0000', '28.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6865, 61, NULL, 2045, '6181100532166', 'DAY BY DAY POWDER 500 G', NULL, '6.5000', '15.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-04-02', 'received', '6.5000', '6.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6866, 61, NULL, 2048, '67087247', 'DAY BY DAY BABY SET', NULL, '35.0000', '45.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '1.0000', '2021-04-02', 'received', '35.0000', '35.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6867, 61, NULL, 2048, '67087247', 'DAY BY DAY BABY SET', NULL, '35.0000', '45.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '1.0000', '2021-04-02', 'received', '35.0000', '35.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6868, 61, NULL, 2049, '6181100329162', 'BIOSKIN CREAM  MEDIUM', NULL, '8.5000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '3.0000', '2021-04-02', 'received', '8.5000', '8.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6869, 61, NULL, 2050, '6181100329155', 'BIOSKIN CREAM SMALL', NULL, '4.5000', '6.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '3.0000', '2021-04-02', 'received', '4.5000', '4.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6870, 61, NULL, 2053, '6181100284225', 'CLINIC CLEAR BOBY LOTION 500ML', NULL, '19.0000', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2021-04-02', 'received', '19.0000', '19.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6871, 61, NULL, 2054, '6181100284218', 'CLINIC CLEAR BOBY LOTION 250ML', NULL, '12.0000', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-04-02', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6872, 61, NULL, 2043, '8433295049256', 'SAIRO BABY SHAMPOO 750ML', NULL, '9.0000', '18.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-04-02', 'received', '9.0000', '9.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6873, 24, NULL, 1921, 'PR-634', 'Chlo ear CE-1002', NULL, '2.3000', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '10.0000', '2021-03-31', 'received', '2.3000', '2.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6874, 24, NULL, 1922, '8904185507342', 'Blopen gel BG-138', NULL, '3.3000', '5.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '8.0000', '2021-03-31', 'received', '3.3000', '3.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6875, 24, NULL, 1925, 'PR-638', 'Tobins Cod oil T32003', NULL, '1.2000', '2.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-03-31', 'received', '1.2000', '1.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6876, 24, NULL, 1926, 'PR-639', 'Tobutal tab T0-032', NULL, '90.0000', '2.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6877, 24, NULL, 1927, 'PR-640', 'Zinote Caps JE2004', NULL, '90.0000', '100.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '450.0000', '5.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6878, 24, NULL, 1928, '8906009234090', 'LOFNAC GEL GLF143', NULL, '90.0000', '7.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '900.0000', '9.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6879, 24, NULL, 1306, 'PR-19', 'DOMI 10: TAB', NULL, '2.1000', '3.0000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '14.0000', '2021-03-31', 'received', '2.1000', '2.1000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '2.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6880, 24, NULL, 1936, 'PR-649', 'Jedition syr L034D003', NULL, '90.0000', '8.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6881, 24, NULL, 1941, 'PR-654', 'Genti Gds11369', NULL, '90.0000', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '900.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6882, 24, NULL, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '90.0000', '26.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6883, 24, NULL, 1943, 'PR-656', 'Kofof Adult Lo12D002', NULL, '90.0000', '7.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6884, 24, NULL, 1937, 'PR-650', 'Kofof child exp 1070D02', NULL, '90.0000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '450.0000', '0.0000', '2021-03-31', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6885, 24, NULL, 1944, 'PR-657', 'Combact N E002d016', NULL, '90.0000', '7.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '900.0000', '1.0000', '2021-03-31', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6904, NULL, NULL, 2548, '54581009', 'ZINCOVIT DROP', NULL, '6.7200', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '33.6000', '-1.0000', '2021-05-03', 'received', '6.7200', '6.7200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6905, NULL, NULL, 2495, '19113194', 'CANDID V3', NULL, '8.6100', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.8300', '-1.0000', '2021-05-03', 'received', '8.6100', '8.6100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6949, NULL, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '24.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '49.0000', '0.0000', '2021-05-04', 'received', '24.5000', '24.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7003, NULL, NULL, 1962, '5021265224128', 'VISIONANCE UK', NULL, '29.1900', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '58.3800', '-2.0000', '2021-05-04', 'received', '29.1900', '29.1900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7087, NULL, NULL, 1710, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7088, 91, NULL, 2504, '61281286', 'MISTARD', NULL, '35.0000', '44.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2021-04-26', 'received', '35.0000', '35.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7089, 91, NULL, 2505, '28562016', 'ORELOX 100MG TABLETS', NULL, '68.5900', '90.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.5900', '0.0000', '2021-04-26', 'received', '68.5900', '68.5900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '68.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7090, 91, NULL, 1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', NULL, '13.1000', '17.0000', '15.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '196.5000', '0.0000', '2021-04-26', 'received', '13.1000', '13.1000', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '13.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7091, 91, NULL, 2506, '46924578', 'E PANOL SYR', NULL, '3.4900', '5.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.9400', '0.0000', '2021-04-26', 'received', '3.4900', '3.4900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7092, 91, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.2600', '8.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.7800', '0.0000', '2021-04-26', 'received', '6.2600', '6.2600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.2600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7093, 91, NULL, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '3.8400', '7.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '0.0000', '2021-04-26', 'received', '3.8400', '3.8400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.8400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7094, 91, NULL, 2507, '57385161', 'WELLTEEN HER', NULL, '34.2000', '45.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.4000', '0.0000', '2021-04-26', 'received', '34.2000', '34.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7095, 91, NULL, 2508, '13685865', 'WELLTEEN HIM', NULL, '34.2000', '45.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.4000', '0.0000', '2021-04-26', 'received', '34.2000', '34.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7096, 91, NULL, 2509, '01336804', 'VENTOLIN SYRUP 100ML', NULL, '13.7600', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.2800', '0.0000', '2021-04-26', 'received', '13.7600', '13.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.7600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7097, 91, NULL, 2510, '68253343', 'ATENOLOL 100MG BRISTOL', NULL, '4.2000', '6.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.6000', '0.0000', '2021-04-26', 'received', '4.2000', '4.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7098, 91, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.6000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '0.0000', '2021-04-26', 'received', '8.6000', '8.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7099, 91, NULL, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '24.6200', '32.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.8600', '0.0000', '2021-04-26', 'received', '24.6200', '24.6200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '24.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7100, 91, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '10.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.9000', '0.0000', '2021-04-26', 'received', '7.8900', '7.8900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7101, 91, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '12.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-04-26', 'received', '9.0000', '9.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7102, 91, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '47.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2021-04-26', 'received', '36.0000', '36.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '36.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7103, 91, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '13.9000', '18.3500', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.5000', '0.0000', '2021-04-26', 'received', '13.9000', '13.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7104, 91, NULL, 1445, 'PR-158', 'Iburex Caps c013D002', NULL, '2.6000', '3.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-04-26', 'received', '2.6000', '2.6000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7105, 91, NULL, 1921, 'PR-634', 'Chlo ear CE-1002', NULL, '2.0000', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-04-26', 'received', '2.0000', '2.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7106, 91, NULL, 2559, '42580620', 'ABBYVITA SYRP', NULL, '6.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2021-04-26', 'received', '6.0000', '6.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7107, 91, NULL, 2557, '86393917', 'METOCLOPRAMIDE', NULL, '1.0000', '1.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-04-26', 'received', '1.0000', '1.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7108, 91, NULL, 2558, '12419923', 'OVULATION TEST KIT', NULL, '5.0000', '7.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-04-26', 'received', '5.0000', '5.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7109, 91, NULL, 2556, '59713806', 'VERNA WATER  0.5L SMALL', NULL, '0.5800', '1.0000', '24.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.9200', '0.0000', '2021-04-26', 'received', '0.5800', '0.5800', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '0.5800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7110, NULL, NULL, 1921, 'PR-634', 'Chlo ear CE-1002', NULL, '2.0000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '20.0000', '0.0000', '2021-05-05', 'received', '2.0000', '2.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7111, NULL, 44, 1921, 'PR-634', 'Chlo ear CE-1002', NULL, '2.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '10.0000', '2021-05-05', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7112, NULL, 44, 1445, 'PR-158', 'Iburex Caps c013D002', NULL, '2.6000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '4.0000', '2021-05-05', 'received', '2.6000', '2.6000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7113, NULL, 44, 2492, '51417644', 'NIZORAL SHAMPOO', NULL, '21.9900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.9800', '0.0000', '2021-05-05', 'received', '21.9900', '21.9900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7114, NULL, 44, 2491, '57627875', 'BELLS VITAMIN C', NULL, '12.2000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '61.0000', '0.0000', '2021-05-05', 'received', '12.2000', '12.2000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7115, NULL, 44, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7100', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.1000', '5.0000', '2021-05-05', 'received', '2.7100', '2.7100', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7116, NULL, 44, 1700, '8904008410187', 'BECOATIN SYR', NULL, '7.8800', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.4000', '0.0000', '2021-05-05', 'received', '7.8800', '7.8800', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7117, NULL, 44, 2493, '5060057401095', 'FRUSEMIDE TAB 40MG UK ALMUS', NULL, '6.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.5000', '1.0000', '2021-05-05', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7118, NULL, 44, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', NULL, '41.3700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '124.1100', '0.0000', '2021-05-05', 'received', '41.3700', '41.3700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7119, NULL, 44, 1569, 'PR-282', 'TIGER CAPS', NULL, '14.2800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.5600', '0.0000', '2021-05-05', 'received', '14.2800', '14.2800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7120, NULL, 44, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.2900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '99.8700', '0.0000', '2021-05-05', 'received', '33.2900', '33.2900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7121, NULL, 44, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '19.5000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.0000', '0.0000', '2021-05-05', 'received', '19.5000', '19.5000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7122, NULL, 44, 2259, '72759006', 'DRAGON SPRAY', NULL, '19.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '190.0000', '2.0000', '2021-05-05', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7123, NULL, 44, 2490, '8904091112500', 'CANDID MOUTH PAINT', NULL, '8.6300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.8900', '3.0000', '2021-05-05', 'received', '8.6300', '8.6300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7124, NULL, 44, 1684, '18906047544530', 'CLOPIDOGREL 75MG', NULL, '24.8200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.6400', '1.0000', '2021-05-05', 'received', '24.8200', '24.8200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7125, NULL, 44, 2548, '54581009', 'ZINCOVIT DROP', NULL, '6.7200', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.6000', '2.0000', '2021-05-05', 'received', '6.7200', '6.7200', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7126, NULL, 44, 2495, '19113194', 'CANDID V3', NULL, '8.6100', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.8300', '3.0000', '2021-05-05', 'received', '8.6100', '8.6100', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7127, NULL, 44, 2557, '86393917', 'METOCLOPRAMIDE', NULL, '1.0000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '18.0000', '2021-05-05', 'received', '1.0000', '1.0000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7128, NULL, 44, 2558, '12419923', 'OVULATION TEST KIT', NULL, '5.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.0000', '3.0000', '2021-05-05', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7129, NULL, 44, 2559, '42580620', 'ABBYVITA SYRP', NULL, '6.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.0000', '0.0000', '2021-05-05', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7130, NULL, 44, 2556, '59713806', 'VERNA WATER  0.5L SMALL', NULL, '0.5800', '0.0000', '24.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.9200', '0.0000', '2021-05-05', 'received', '0.5800', '0.5800', NULL, NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7131, NULL, NULL, 2316, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7132, NULL, NULL, 2089, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7164, 96, NULL, 1852, 'PR-565', 'EYECOPEN ACPS 30?S', NULL, '5.0000', '7.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '6.0000', '2021-05-05', 'received', '5.0000', '5.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7165, 96, NULL, 2231, '7501058633927', 'NAN 2', NULL, '33.0000', '36.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.0000', '0.0000', '2021-05-05', 'received', '33.0000', '33.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '33.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7166, 96, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '24.5000', '28.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0000', '0.0000', '2021-05-05', 'received', '24.5000', '24.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '24.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7167, 96, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '24.5000', '28.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2021-05-05', 'received', '24.5000', '24.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '24.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7168, 96, NULL, 2566, '42135887', 'MILO TIN', NULL, '16.0000', '18.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-05-05', 'received', '16.0000', '16.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7169, 96, NULL, 2560, '27717765', 'HONEY 250G (GIFT OF NATURE)', NULL, '17.0000', '21.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2021-05-05', 'received', '17.0000', '17.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7170, 96, NULL, 2561, '65996534', 'MAGNESUIM CAPSULES', NULL, '30.0000', '80.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '0.0000', '2021-05-05', 'received', '30.0000', '30.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7171, 96, NULL, 2562, '69494430', 'PROBIOTICS', NULL, '30.0000', '80.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-05-05', 'received', '30.0000', '30.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7172, 96, NULL, 2563, '07901554', 'PROBIOTICS (RENEWLIFE)', NULL, '30.0000', '60.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-05-05', 'received', '30.0000', '30.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7173, 96, NULL, 2564, '72577674', 'NATURE\'S WAY HAIR AND NAIL', NULL, '30.0000', '80.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-05-05', 'received', '30.0000', '30.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7174, 96, NULL, 2567, '83596243', 'NAN 1', NULL, '33.0000', '37.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.0000', '0.0000', '2021-05-05', 'received', '33.0000', '33.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '33.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7175, 96, NULL, 2556, '59713806', 'VERNA WATER  0.5L SMALL', NULL, '0.5800', '1.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.9600', '0.0000', '2021-05-05', 'received', '0.5800', '0.5800', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '0.5800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7176, 96, NULL, 2565, '45244498', 'VERNA WATER MEDIUM', NULL, '0.8100', '1.5000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.3000', '0.0000', '2021-05-05', 'received', '0.8100', '0.8100', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.8100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7177, NULL, NULL, 2567, '83596243', 'NAN 1', NULL, '33.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '198.0000', '-2.0000', '2021-05-05', 'received', '33.0000', '33.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7178, NULL, NULL, 2566, '42135887', 'MILO TIN', NULL, '16.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '48.0000', '0.0000', '2021-05-05', 'received', '16.0000', '16.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7179, NULL, NULL, 2560, '27717765', 'HONEY 250G (GIFT OF NATURE)', NULL, '17.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '51.0000', '0.0000', '2021-05-05', 'received', '17.0000', '17.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7180, NULL, NULL, 2561, '65996534', 'MAGNESUIM CAPSULES', NULL, '30.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '150.0000', '0.0000', '2021-05-05', 'received', '30.0000', '30.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7181, NULL, NULL, 2562, '69494430', 'PROBIOTICS', NULL, '30.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '60.0000', '0.0000', '2021-05-05', 'received', '30.0000', '30.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7182, NULL, NULL, 2563, '07901554', 'PROBIOTICS (RENEWLIFE)', NULL, '30.0000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.0000', '0.0000', '2021-05-05', 'received', '30.0000', '30.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7183, NULL, NULL, 2564, '72577674', 'NATURE\'S WAY HAIR AND NAIL', NULL, '30.0000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.0000', '0.0000', '2021-05-05', 'received', '30.0000', '30.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7196, NULL, NULL, 2556, '59713806', 'VERNA WATER  0.5L SMALL', NULL, '0.5800', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '6.9600', '-18.0000', '2021-05-05', 'received', '0.5800', '0.5800', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7197, NULL, NULL, 2565, '45244498', 'VERNA WATER MEDIUM', NULL, '0.8100', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.3000', '0.0000', '2021-05-05', 'received', '0.8100', '0.8100', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7198, NULL, 47, 2565, '45244498', 'VERNA WATER MEDIUM', NULL, '0.8100', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.3000', '16.0000', '2021-05-05', 'received', '0.8100', '0.8100', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7199, NULL, 47, 2556, '59713806', 'VERNA WATER  0.5L SMALL', NULL, '0.5800', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.9600', '12.0000', '2021-05-05', 'received', '0.5800', '0.5800', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7200, NULL, 47, 2567, '83596243', 'NAN 1', NULL, '33.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '198.0000', '0.0000', '2021-05-05', 'received', '33.0000', '33.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7201, NULL, 47, 2231, '7501058633927', 'NAN 2', NULL, '33.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '198.0000', '3.0000', '2021-05-05', 'received', '33.0000', '33.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7202, NULL, 47, 2566, '42135887', 'MILO TIN', NULL, '16.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '48.0000', '0.0000', '2021-05-05', 'received', '16.0000', '16.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7203, NULL, 47, 2228, '7501058625915', 'LACTOGEN  1', NULL, '24.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '147.0000', '0.0000', '2021-05-05', 'received', '24.5000', '24.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7204, NULL, 47, 2229, '7501058625922', 'LACTOGEN 2', NULL, '24.5000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '98.0000', '4.0000', '2021-05-05', 'received', '24.5000', '24.5000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7205, NULL, 47, 2560, '27717765', 'HONEY 250G (GIFT OF NATURE)', NULL, '17.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '51.0000', '1.0000', '2021-05-05', 'received', '17.0000', '17.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7206, NULL, 47, 2561, '65996534', 'MAGNESUIM CAPSULES', NULL, '30.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '150.0000', '4.0000', '2021-05-05', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7207, NULL, 47, 2562, '69494430', 'PROBIOTICS', NULL, '30.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '1.0000', '2021-05-05', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7208, NULL, 47, 2563, '07901554', 'PROBIOTICS (RENEWLIFE)', NULL, '30.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '0.0000', '2021-05-05', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7209, NULL, 47, 2564, '72577674', 'NATURE\'S WAY HAIR AND NAIL', NULL, '30.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '1.0000', '2021-05-05', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7210, 97, NULL, 2568, '92928217', 'YOVANNY LOZ', NULL, '0.3300', '0.5000', '150.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '0.0000', '2021-05-05', 'received', '0.3300', '0.3300', '150.0000', NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, '0.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7211, 97, NULL, 2569, '30297629', 'METROBON F', NULL, '3.5000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '0.0000', '2021-05-05', 'received', '3.5000', '3.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7212, 97, NULL, 2570, '24041017', 'GOLDY SUSP', NULL, '7.4900', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.4500', '0.0000', '2021-05-05', 'received', '7.4900', '7.4900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7213, NULL, 48, 2568, '92928217', 'YOVANNY LOZ', NULL, '0.3300', '0.0000', '150.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.5000', '0.0000', '2021-05-05', 'received', '0.3300', '0.3300', NULL, NULL, NULL, 1, 'pc', '150.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7214, NULL, 48, 2569, '30297629', 'METROBON F', NULL, '3.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.5000', '2.0000', '2021-05-05', 'received', '3.5000', '3.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7215, NULL, 48, 2570, '24041017', 'GOLDY SUSP', NULL, '7.4900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.4500', '0.0000', '2021-05-05', 'received', '7.4900', '7.4900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7216, NULL, NULL, 1595, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7217, 98, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '5.4000', '7.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '0.0000', '2021-05-05', 'received', '5.4000', '5.4000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '5.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7218, 98, NULL, 1415, '6034000157055', 'LIVING BITTERS SYP S s', NULL, '15.0000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-05-05', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7219, 98, NULL, 2573, '11557669', 'MASADA', NULL, '8.0000', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-05-05', 'received', '8.0000', '8.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7220, 98, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '9.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2021-05-05', 'received', '6.5000', '6.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7221, 98, NULL, 2572, '17160763', 'SWEDISH BITTERS', NULL, '22.0000', '29.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-05-05', 'received', '22.0000', '22.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7222, 98, NULL, 2151, '05077634', 'TOMAC MIX', NULL, '17.5000', '23.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '0.0000', '2021-05-05', 'received', '17.5000', '17.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7223, 98, NULL, 1436, 'PR-149', 'TOP FEVER ( 24)', NULL, '9.5000', '12.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2021-05-05', 'received', '9.5000', '9.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7224, 98, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '10.0000', '13.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-05-05', 'received', '10.0000', '10.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7225, 98, NULL, 2571, '89677505', 'YAAKSON MIXTURE', NULL, '9.0000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-05-05', 'received', '9.0000', '9.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7226, NULL, 49, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '5.3000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.2000', '0.0000', '2021-05-05', 'received', '5.3000', '5.3000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7227, NULL, 49, 1415, '6034000157055', 'LIVING BITTERS SYP S s', NULL, '14.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.5000', '0.0000', '2021-05-05', 'received', '14.5000', '14.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7228, NULL, 49, 2573, '11557669', 'MASADA', NULL, '8.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '3.0000', '2021-05-05', 'received', '8.0000', '8.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7229, NULL, 49, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.5000', '0.0000', '2021-05-05', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7230, NULL, 49, 2572, '17160763', 'SWEDISH BITTERS', NULL, '22.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.0000', '1.0000', '2021-05-05', 'received', '22.0000', '22.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7231, NULL, 49, 2151, '05077634', 'TOMAC MIX', NULL, '17.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.5000', '0.0000', '2021-05-05', 'received', '17.5000', '17.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7232, NULL, 49, 1436, 'PR-149', 'TOP FEVER ( 24)', NULL, '9.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.5000', '3.0000', '2021-05-05', 'received', '9.5000', '9.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7233, NULL, 49, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '10.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.0000', '0.0000', '2021-05-05', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7234, NULL, 49, 2571, '89677505', 'YAAKSON MIXTURE', NULL, '9.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '1.0000', '2021-05-05', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7321, NULL, NULL, 2091, '11166394', 'CA-C 1000 SANDOZ', NULL, '18.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '108.0000', '0.0000', '2021-05-05', 'received', '18.0000', '18.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7382, NULL, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '29.0000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '348.0000', '0.0000', '2021-05-05', 'received', '29.0000', '29.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7383, NULL, NULL, 2574, '24484092', 'DULCOLAX TABS 5MG 20\'S', NULL, '0.7800', '0.0000', '40.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '31.2000', '28.0000', '2021-05-05', 'received', '0.7800', '0.7800', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7384, NULL, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.8700', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '8.6100', '0.0000', '2021-05-05', 'received', '2.8700', '2.8700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7385, NULL, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '5.4000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '32.4000', '-2.0000', '2021-05-05', 'received', '5.4000', '5.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7386, NULL, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.2000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '27.6000', '-2.0000', '2021-05-05', 'received', '9.2000', '9.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7387, NULL, NULL, 2575, '87228427', 'CANDEREL TABS', NULL, '12.8500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '38.5500', '0.0000', '2021-05-05', 'received', '12.8500', '12.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7388, NULL, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '22.6600', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.3200', '2.0000', '2021-05-05', 'received', '22.6600', '22.6600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7389, NULL, NULL, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '6.0500', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.2500', '-2.0000', '2021-05-05', 'received', '6.0500', '6.0500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7390, NULL, NULL, 2462, '03669885', 'WELLBABY DROP', NULL, '46.8500', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '46.8500', '0.0000', '2021-05-05', 'received', '46.8500', '46.8500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7391, NULL, NULL, 1530, '4031571064159', 'METFORMIN DENK 1G', NULL, '28.7000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '57.4000', '1.0000', '2021-05-05', 'received', '28.7000', '28.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7392, NULL, NULL, 1369, 'PR-82', 'NAPROX EC TABS ECL', NULL, '6.0000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '60.0000', '0.0000', '2021-05-05', 'received', '6.0000', '6.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7393, NULL, NULL, 2576, '59885419', 'DIAMICRON MR 60 MG TAB', NULL, '107.9300', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '107.9300', '0.0000', '2021-05-05', 'received', '107.9300', '107.9300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7422, NULL, NULL, 1612, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7457, NULL, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '4.2000', '0.0000', '70.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '294.0000', '0.0000', '2021-05-05', 'received', '4.2000', '4.2000', '70.0000', NULL, NULL, 1, 'pc', '70.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7492, 100, NULL, 2577, '71775757', 'PALM OLIVE 650ML BIG', NULL, '20.0000', '28.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-05-06', 'received', '20.0000', '20.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7493, 100, NULL, 2578, '00665739', 'PALM OLIVE 250ML SMALL', NULL, '10.0000', '18.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-05-06', 'received', '10.0000', '10.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7494, 100, NULL, 2579, '05691672', 'CIEN  SHOWER GEL', NULL, '20.0000', '28.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-05-06', 'received', '20.0000', '20.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7495, NULL, 51, 2577, '71775757', 'PALM OLIVE 650ML BIG', NULL, '20.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '0.0000', '2021-05-06', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7496, NULL, 51, 2578, '00665739', 'PALM OLIVE 250ML SMALL', NULL, '10.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '100.0000', '10.0000', '2021-05-06', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7497, NULL, 51, 2579, '05691672', 'CIEN  SHOWER GEL', NULL, '20.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '3.0000', '2021-05-06', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7498, NULL, NULL, 2154, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7512, NULL, NULL, 2058, '311917207889', 'VITAMIN B-12 FINEST NUTRITON', NULL, '10.0000', '0.0000', '22.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '220.0000', '0.0000', '2021-05-07', 'received', '10.0000', '10.0000', '22.0000', NULL, NULL, 1, 'pc', '22.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7513, NULL, 38, 2058, '311917207889', 'VITAMIN B-12 FINEST NUTRITON', NULL, '10.0000', '0.0000', '22.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '220.0000', '19.0000', '2021-05-07', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '22.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7514, NULL, 38, 1980, '6186000077052', 'QUEEN ELISABETH COCOA BUTTER LOTION 250ML', NULL, '4.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.0000', '0.0000', '2021-05-07', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7515, NULL, 38, 2517, '94045463', 'TENDRINA CREAM S/S', NULL, '5.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.0000', '2.0000', '2021-05-07', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7516, NULL, 38, 2516, '60491534', 'TENDRINA CREAM B/S', NULL, '9.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '2.0000', '2021-05-07', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7517, NULL, 38, 2515, '22838029', 'CHILLI PEPPER', NULL, '16.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '192.0000', '11.0000', '2021-05-07', 'received', '16.0000', '16.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7518, NULL, 38, 2514, '98091900', 'TOMBROWN 500G', NULL, '10.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '4.0000', '2021-05-07', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7519, NULL, 38, 2513, '35471802', 'HONEY 1L', NULL, '40.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '240.0000', '5.0000', '2021-05-07', 'received', '40.0000', '40.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7520, NULL, 38, 2512, '57681465', 'HONEY  500ML', NULL, '20.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '240.0000', '3.0000', '2021-05-07', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7521, NULL, 38, 2520, '20687050', 'CAMEL LIQUID ANTISEPTIC 500ML', NULL, '18.6000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '111.6000', '0.0000', '2021-05-07', 'received', '18.6000', '18.6000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7522, NULL, 38, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', NULL, '8.8000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.8000', '3.0000', '2021-05-07', 'received', '8.8000', '8.8000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7523, NULL, 38, 2522, '02869770', 'CAMEL ANTISEPTIC LIQUID 125ML', NULL, '6.2000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.2000', '5.0000', '2021-05-07', 'received', '6.2000', '6.2000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7524, NULL, 38, 2523, '89430832', 'CAMEL SOAP', NULL, '4.8000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.8000', '2.0000', '2021-05-07', 'received', '4.8000', '4.8000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7525, NULL, 38, 2580, '8858854600592', 'DARK SPOT REMOVER SOAP', NULL, '12.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.0000', '5.0000', '2021-05-07', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7586, NULL, NULL, 1564, '3838989544225', 'TADOL 100MG', NULL, '2.6000', '0.0000', '90.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '234.0000', '0.0000', '2021-05-07', 'received', '2.6000', '2.6000', '90.0000', NULL, NULL, 1, 'pc', '90.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7587, NULL, NULL, 1565, 'PR-278', 'PARLODEL TABLETS 2.5MG', NULL, '18.0500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '54.1500', '0.0000', '2021-05-07', 'received', '18.0500', '18.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7588, NULL, NULL, 2084, '24569550', 'PRE-MECO', NULL, '15.0700', '0.0000', '9.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '135.6300', '0.0000', '2021-05-07', 'received', '15.0700', '15.0700', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7589, NULL, NULL, 1567, 'PR-280', 'BRENEX SYRUP', NULL, '13.3000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '39.9000', '-2.0000', '2021-05-07', 'received', '13.3000', '13.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7590, NULL, NULL, 1568, '5000283659013', 'TAMSULOSIN MR CAPS 400MG ZENTIVA', NULL, '19.5900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '58.7700', '0.0000', '2021-05-07', 'received', '19.5900', '19.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7591, NULL, NULL, 1571, 'udia111', 'DIABETMIN TABS 500MG', NULL, '1.9700', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '39.4000', '0.0000', '2021-05-07', 'received', '1.9700', '1.9700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7592, NULL, NULL, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', NULL, '1.7000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '20.4000', '0.0000', '2021-05-07', 'received', '1.7000', '1.7000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7593, NULL, NULL, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.9600', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '98.0000', '-15.0000', '2021-05-07', 'received', '1.9600', '1.9600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7594, NULL, NULL, 1575, '5017007043294', 'LOSARTAN POTASSIUM 50MG (TEVA)', NULL, '10.3500', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '124.2000', '-2.0000', '2021-05-07', 'received', '10.3500', '10.3500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7595, NULL, NULL, 1576, 'PR-289', 'GRISORAL SUSP (MILDLAND)', NULL, '7.0500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '21.1500', '0.0000', '2021-05-07', 'received', '7.0500', '7.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7596, NULL, NULL, 1577, 'PR-290', 'MALIN LOZ', NULL, '2.1000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.2000', '0.0000', '2021-05-07', 'received', '2.1000', '2.1000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7597, NULL, NULL, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '1.9700', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '19.7000', '-1.0000', '2021-05-07', 'received', '1.9700', '1.9700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7598, NULL, NULL, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', NULL, '0.9900', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '49.5000', '-17.0000', '2021-05-07', 'received', '0.9900', '0.9900', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7599, NULL, NULL, 1582, '5017007016991', 'WARFARIN TAB 5MG 28\'', NULL, '9.3600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '28.0800', '0.0000', '2021-05-07', 'received', '9.3600', '9.3600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7600, NULL, NULL, 1583, '5060806420179', 'PROWOMAN DRINK 250ML', NULL, '5.8900', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '29.4500', '0.0000', '2021-05-07', 'received', '5.8900', '5.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7601, NULL, NULL, 1584, '5060806420162', 'PROMAN DRINK 250ML', NULL, '5.8900', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '29.4500', '0.0000', '2021-05-07', 'received', '5.8900', '5.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7602, NULL, NULL, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '8.9900', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '44.9500', '0.0000', '2021-05-07', 'received', '8.9900', '8.9900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7603, NULL, NULL, 1586, '5012616173004', 'ABIDEC DROP', NULL, '48.7600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '146.2800', '0.0000', '2021-05-07', 'received', '48.7600', '48.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7604, NULL, NULL, 1588, '8902396003509', 'CORORANGE DROP', NULL, '4.8000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '28.8000', '0.0000', '2021-05-07', 'received', '4.8000', '4.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7605, NULL, NULL, 1589, '8904008410118', 'GASTRACID SUSP (GR)', NULL, '6.4000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.6000', '0.0000', '2021-05-07', 'received', '6.4000', '6.4000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7606, NULL, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '1.7100', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '85.5000', '0.0000', '2021-05-07', 'received', '1.7100', '1.7100', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7633, NULL, NULL, 2142, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7634, NULL, NULL, 2170, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7693, NULL, NULL, 2581, '6006118000202', 'CIPROBAY 500', NULL, '92.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '184.0000', '-1.0000', '2021-05-08', 'received', '92.0000', '92.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7747, NULL, NULL, 2219, '8964000734674', 'PEPPERMINT OIL 40ML', NULL, '12.0000', '0.0000', '-2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '-24.0000', '-3.0000', '2021-05-08', 'received', '12.0000', '12.0000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7749, NULL, NULL, 2186, '8964000735862', 'CUCUMBER oil 30ml', NULL, '7.5000', '0.0000', '-2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '-15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7751, NULL, NULL, 2192, '8964000267264', 'WHEAT GERM  OIL 30ML', NULL, '7.5000', '0.0000', '-1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '-7.5000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7752, NULL, NULL, 2215, '8964000734742', 'CASTOR OIL NATURAL 40ML (HEMANI)', NULL, '12.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '0.0000', '2021-05-08', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7753, NULL, NULL, 2191, '8964000114223', 'LAVENDER OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7754, NULL, NULL, 2216, '8964000734667', 'LAVENDER OIL 40ML NATURAL', NULL, '12.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '0.0000', '2021-05-08', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7755, NULL, NULL, 2187, '8964000577981', 'TEA TREE OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '-1.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7756, NULL, NULL, 2218, '8964000734698', 'TEA TREE OIL 40ML', NULL, '12.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '0.0000', '2021-05-08', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7757, NULL, NULL, 2200, '8964000114315', 'NEEM OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7758, NULL, NULL, 2183, '8964000114278', 'ONION OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7759, NULL, NULL, 2212, '8964000114018', 'BLACKSEEDS OIL 60ML', NULL, '10.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '20.0000', '0.0000', '2021-05-08', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7760, NULL, NULL, 2217, '8964000734650', 'BLACKSEED OIL 40ML', NULL, '12.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '0.0000', '2021-05-08', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7861, NULL, NULL, 2469, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7862, NULL, NULL, 2178, '8964000114308', 'CARROT OIL', NULL, '7.5000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '7.5000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7863, NULL, NULL, 2176, '8964000737675', 'AVOCADO OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7864, NULL, NULL, 2181, '8964000737712', 'GREEN TEA OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7865, NULL, NULL, 2193, '8964000114216', 'ROSEMARY OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '-2.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7866, NULL, NULL, 2199, '8964000390658', 'ROSE OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7867, NULL, NULL, 2206, '8964001505679', 'VITAMIN E OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7868, NULL, NULL, 2203, '8964000114056', 'MUSTARD OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7869, NULL, NULL, 2190, '8964000736401', 'SIDR OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7870, NULL, NULL, 2208, '8964000114049', 'CASTOR OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7871, NULL, NULL, 2189, '8964000577967', 'COD LIVER OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7872, NULL, NULL, 2184, '8964000114353', 'MINT OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7873, NULL, NULL, 2202, '8964000114094', 'FENNEL OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7874, NULL, NULL, 2198, '8964000267271', 'PUMPKIN SEED OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7875, NULL, NULL, 2201, '8964000114179', 'SESAME OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7876, NULL, NULL, 2197, '8964000114186', 'LINSEED OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7877, NULL, NULL, 2196, '8964000267288', 'SANDALWOOD OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7878, NULL, NULL, 2209, '8964000267295', 'TURMERIC OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7879, NULL, NULL, 2188, '8964000577431', 'ARGAN OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '-1.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7880, NULL, NULL, 2194, '8964000735879', 'POMEGRANATE OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7881, NULL, NULL, 2182, '8964000114230', 'OREGANO OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7882, NULL, NULL, 2185, '8964000737637', 'HORSETAIL OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7964, NULL, NULL, 2180, '8964000267165', 'CAMPHOR OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7965, NULL, NULL, 2584, '53094861', 'ROSESHIP OIL', NULL, '10.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '20.0000', '0.0000', '2021-05-08', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7966, NULL, NULL, 2204, '8964000390771', 'JASMINE OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7967, NULL, NULL, 2179, '8964000733004', 'EUCALYPTUS OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7968, NULL, NULL, 2170, '8964000114070', 'SWEET ALMOND OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '-1.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7969, NULL, NULL, 2175, '8964000737682', 'APPLE OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7970, NULL, NULL, 2205, '8964000114292', 'CINNAMON OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7971, NULL, NULL, 2173, '8964000267202', 'GRAPESEED OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7972, NULL, NULL, 2586, '95261830', 'SEFFRON OIL', NULL, '10.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '20.0000', '0.0000', '2021-05-08', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7973, NULL, NULL, 2172, '8964000114247', 'THYME OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7974, NULL, NULL, 2177, '8964000577448', 'JOJOBA OIL', NULL, '7.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8111, 92, NULL, 2512, '57681465', 'HONEY  500ML', NULL, '20.0000', '25.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '0.0000', '2021-04-26', 'received', '20.0000', '20.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8112, 92, NULL, 2513, '35471802', 'HONEY 1L', NULL, '40.0000', '50.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '0.0000', '2021-04-26', 'received', '40.0000', '40.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '40.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8113, 92, NULL, 2514, '98091900', 'TOMBROWN 500G', NULL, '10.0000', '13.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-04-26', 'received', '10.0000', '10.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8114, 92, NULL, 2515, '22838029', 'CHILLI PEPPER', NULL, '16.0000', '20.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '192.0000', '0.0000', '2021-04-26', 'received', '16.0000', '16.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '16.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8115, 92, NULL, 2516, '60491534', 'TENDRINA CREAM B/S', NULL, '9.0000', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-04-26', 'received', '9.0000', '9.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8116, 92, NULL, 2517, '94045463', 'TENDRINA CREAM S/S', NULL, '5.0000', '7.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2021-04-26', 'received', '5.0000', '5.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8117, 92, NULL, 1980, '6186000077052', 'QUEEN ELISABETH COCOA BUTTER LOTION 250ML', NULL, '4.0000', '6.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-04-26', 'received', '4.0000', '4.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8118, 92, NULL, 2520, '20687050', 'CAMEL LIQUID ANTISEPTIC 500ML', NULL, '18.6000', '25.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '111.6000', '0.0000', '2021-04-26', 'received', '18.6000', '18.6000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '18.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8119, 92, NULL, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', NULL, '8.8000', '12.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '0.0000', '2021-04-26', 'received', '8.8000', '8.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8120, 92, NULL, 2522, '02869770', 'CAMEL ANTISEPTIC LIQUID 125ML', NULL, '6.2000', '9.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '0.0000', '2021-04-26', 'received', '6.2000', '6.2000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8121, 92, NULL, 2523, '89430832', 'CAMEL SOAP', NULL, '4.8000', '6.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '0.0000', '2021-04-26', 'received', '4.8000', '4.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8122, 92, NULL, 2058, '311917207889', 'VITAMIN B-12 FINEST NUTRITON', NULL, '10.0000', '40.0000', '23.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '230.0000', '0.0000', '2021-04-26', 'received', '10.0000', '10.0000', '23.0000', NULL, NULL, 1, 'pc', '23.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8123, 92, NULL, 2580, '8858854600592', 'DARK SPOT REMOVER SOAP', NULL, '12.0000', '15.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-04-26', 'received', '12.0000', '12.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8124, 92, NULL, 2178, '8964000114308', 'CARROT OIL', NULL, '7.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '1.0000', '2021-04-26', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8125, 92, NULL, 2176, '8964000737675', 'AVOCADO OIL', NULL, '7.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-26', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8126, 92, NULL, 2181, '8964000737712', 'GREEN TEA OIL', NULL, '7.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-26', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8127, 92, NULL, 2215, '8964000734742', 'CASTOR OIL NATURAL 40ML (HEMANI)', NULL, '12.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '1.0000', '2021-04-26', 'received', '12.0000', '12.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8128, 92, NULL, 2208, '8964000114049', 'CASTOR OIL', NULL, '7.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-26', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8129, 92, NULL, 2180, '8964000267165', 'CAMPHOR OIL', NULL, '7.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-26', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8130, 92, NULL, 2204, '8964000390771', 'JASMINE OIL', NULL, '7.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-26', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8131, 92, NULL, 2179, '8964000733004', 'EUCALYPTUS OIL', NULL, '7.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-26', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8132, 92, NULL, 2170, '8964000114070', 'SWEET ALMOND OIL', NULL, '7.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-26', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8133, 92, NULL, 2175, '8964000737682', 'APPLE OIL', NULL, '7.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-26', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8134, 92, NULL, 2585, '69794709', 'CINANMON OIL', NULL, '10.0000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '2.0000', '2021-04-26', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8135, 92, NULL, 2584, '53094861', 'ROSESHIP OIL', NULL, '10.0000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-04-26', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8136, 92, NULL, 2173, '8964000267202', 'GRAPESEED OIL', NULL, '7.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-26', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8137, 92, NULL, 2586, '95261830', 'SEFFRON OIL', NULL, '10.0000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-04-26', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8138, 92, NULL, 2172, '8964000114247', 'THYME OIL', NULL, '7.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-26', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8139, 92, NULL, 2171, '8964000114087', 'ALOE OIL', NULL, '7.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '2.0000', '2021-04-26', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8140, 92, NULL, 2177, '8964000577448', 'JOJOBA OIL', NULL, '7.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-26', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8141, 92, NULL, 2186, '8964000735862', 'CUCUMBER oil 30ml', NULL, '7.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-26', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8142, 92, NULL, 2186, '8964000735862', 'CUCUMBER oil 30ml', NULL, '7.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-04-26', 'received', '7.5000', '7.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8143, 92, NULL, 1477, 'PR-190', 'CORSODY 300ML (ALCOHOL FREE)', NULL, '40.9400', '54.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.9400', '0.0000', '2021-04-26', 'received', '40.9400', '40.9400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '40.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8144, 92, NULL, 2469, '50076979', 'Corsodyl mouth wash', NULL, '48.0000', '55.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-04-26', 'received', '48.0000', '48.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '48.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8145, NULL, NULL, 1477, 'PR-190', 'CORSODY 300ML (ALCOHOL FREE)', NULL, '40.9400', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.9400', '0.0000', '2021-05-08', 'received', '40.9400', '40.9400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8146, NULL, 53, 1477, 'PR-190', 'CORSODY 300ML (ALCOHOL FREE)', NULL, '40.9400', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.9400', '1.0000', '2021-05-08', 'received', '40.9400', '40.9400', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8147, NULL, 53, 2177, '8964000577448', 'JOJOBA OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8148, NULL, 53, 2172, '8964000114247', 'THYME OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8149, NULL, 53, 2586, '95261830', 'SEFFRON OIL', NULL, '10.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '2.0000', '2021-05-08', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8150, NULL, 53, 2173, '8964000267202', 'GRAPESEED OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '1.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8151, NULL, 53, 2205, '8964000114292', 'CINNAMON OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8152, NULL, 53, 2175, '8964000737682', 'APPLE OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8153, NULL, 53, 2170, '8964000114070', 'SWEET ALMOND OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '1.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8154, NULL, 53, 2179, '8964000733004', 'EUCALYPTUS OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8155, NULL, 53, 2204, '8964000390771', 'JASMINE OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8156, NULL, 53, 2584, '53094861', 'ROSESHIP OIL', NULL, '10.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '0.0000', '2021-05-08', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8157, NULL, 53, 2180, '8964000267165', 'CAMPHOR OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8158, NULL, 53, 2208, '8964000114049', 'CASTOR OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8159, NULL, 53, 2214, '8961102060823', 'PROSTATE OIL 60ML', NULL, '15.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '2.0000', '2021-05-08', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8160, NULL, 53, 2215, '8964000734742', 'CASTOR OIL NATURAL 40ML (HEMANI)', NULL, '12.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '0.0000', '2021-05-08', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8161, NULL, 53, 2191, '8964000114223', 'LAVENDER OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8162, NULL, 53, 2216, '8964000734667', 'LAVENDER OIL 40ML NATURAL', NULL, '12.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '1.0000', '2021-05-08', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8163, NULL, 53, 2187, '8964000577981', 'TEA TREE OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '1.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8164, NULL, 53, 2218, '8964000734698', 'TEA TREE OIL 40ML', NULL, '12.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '0.0000', '2021-05-08', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8165, NULL, 53, 2200, '8964000114315', 'NEEM OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8166, NULL, 53, 2183, '8964000114278', 'ONION OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8167, NULL, 53, 2212, '8964000114018', 'BLACKSEEDS OIL 60ML', NULL, '10.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '1.0000', '2021-05-08', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8168, NULL, 53, 2217, '8964000734650', 'BLACKSEED OIL 40ML', NULL, '12.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '1.0000', '2021-05-08', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8169, NULL, 53, 2219, '8964000734674', 'PEPPERMINT OIL 40ML', NULL, '12.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '1.0000', '2021-05-08', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8170, NULL, 53, 2186, '8964000735862', 'CUCUMBER oil 30ml', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8171, NULL, 53, 2192, '8964000267264', 'WHEAT GERM  OIL 30ML', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8172, NULL, 53, 2219, '8964000734674', 'PEPPERMINT OIL 40ML', NULL, '12.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '2.0000', '2021-05-08', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8173, NULL, 53, 2186, '8964000735862', 'CUCUMBER oil 30ml', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8174, NULL, 53, 2192, '8964000267264', 'WHEAT GERM  OIL 30ML', NULL, '7.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.5000', '1.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8175, NULL, 53, 2178, '8964000114308', 'CARROT OIL', NULL, '7.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.5000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8176, NULL, 53, 2176, '8964000737675', 'AVOCADO OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8177, NULL, 53, 2181, '8964000737712', 'GREEN TEA OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8178, NULL, 53, 2193, '8964000114216', 'ROSEMARY OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '1.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8179, NULL, 53, 2199, '8964000390658', 'ROSE OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8180, NULL, 53, 2206, '8964001505679', 'VITAMIN E OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '1.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8181, NULL, 53, 2203, '8964000114056', 'MUSTARD OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8182, NULL, 53, 2190, '8964000736401', 'SIDR OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8183, NULL, 53, 2208, '8964000114049', 'CASTOR OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8184, NULL, 53, 2189, '8964000577967', 'COD LIVER OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8185, NULL, 53, 2184, '8964000114353', 'MINT OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '1.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8186, NULL, 53, 2202, '8964000114094', 'FENNEL OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8187, NULL, 53, 2198, '8964000267271', 'PUMPKIN SEED OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8188, NULL, 53, 2201, '8964000114179', 'SESAME OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8189, NULL, 53, 2197, '8964000114186', 'LINSEED OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '1.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8190, NULL, 53, 2196, '8964000267288', 'SANDALWOOD OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8191, NULL, 53, 2209, '8964000267295', 'TURMERIC OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '1.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8192, NULL, 53, 2188, '8964000577431', 'ARGAN OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8193, NULL, 53, 2194, '8964000735879', 'POMEGRANATE OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8194, NULL, 53, 2182, '8964000114230', 'OREGANO OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8195, NULL, 53, 2185, '8964000737637', 'HORSETAIL OIL', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8196, NULL, 53, 2186, '8964000735862', 'CUCUMBER oil 30ml', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '2.0000', '2021-05-08', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8197, NULL, 53, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '5.4000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '64.8000', '11.0000', '2021-05-08', 'received', '5.4000', '5.4000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8198, NULL, 53, 2469, '50076979', 'Corsodyl mouth wash', NULL, '48.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '48.0000', '0.0000', '2021-05-08', 'received', '48.0000', '48.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8220, NULL, NULL, 2582, '81054441', 'AZILEX SUSP', NULL, '11.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '34.5000', '0.0000', '2021-05-08', 'received', '11.5000', '11.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8221, NULL, NULL, 2583, '30559942', 'VIAGRA TABS 100MG', NULL, '77.2500', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '309.0000', '0.0000', '2021-05-08', 'received', '77.2500', '77.2500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8222, NULL, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '3.3500', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '20.1000', '-7.0000', '2021-05-08', 'received', '3.3500', '3.3500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8223, NULL, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.0000', '0.0000', '60.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '120.0000', '0.0000', '2021-05-08', 'received', '2.0000', '2.0000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8224, NULL, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '39.4500', '-4.0000', '2021-05-08', 'received', '7.8900', '7.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8225, NULL, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.4000', '0.0000', '40.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '96.0000', '-10.0000', '2021-05-08', 'received', '2.4000', '2.4000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8249, NULL, NULL, 2587, '11447011', 'NEO MEDROL LOTION', NULL, '135.0000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '135.0000', '0.0000', '2021-05-08', 'received', '135.0000', '135.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8262, 101, NULL, 2582, '81054441', 'AZILEX SUSP', NULL, '11.5000', '30.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '0.0000', '2021-05-08', 'received', '11.5000', '11.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8263, 101, NULL, 2583, '30559942', 'VIAGRA TABS 100MG', NULL, '77.2500', '102.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '309.0000', '0.0000', '2021-05-08', 'received', '77.2500', '77.2500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '77.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8264, 101, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.2900', '44.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '166.4500', '0.0000', '2021-05-08', 'received', '33.2900', '33.2900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '33.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8265, 101, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '3.9000', '5.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '0.0000', '2021-05-08', 'received', '3.9000', '3.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8266, 101, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.0000', '2.6000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-05-08', 'received', '2.0000', '2.0000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8267, 101, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '15.0000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-05-08', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8268, 101, NULL, 2342, '62530607', 'DICLO-DENK RECTAL SUPPOSITRY', NULL, '1.8600', '2.5000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8000', '0.0000', '2021-05-08', 'received', '1.8600', '1.8600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8269, 101, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '10.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.4500', '0.0000', '2021-05-08', 'received', '7.8900', '7.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8270, 101, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.4000', '3.0000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '0.0000', '2021-05-08', 'received', '2.4000', '2.4000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8271, 101, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '26.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0600', '0.0000', '2021-05-08', 'received', '19.0200', '19.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8272, 101, NULL, 2587, '11447011', 'NEO MEDROL LOTION', NULL, '135.0000', '178.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '0.0000', '2021-05-08', 'received', '135.0000', '135.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '135.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8273, 101, NULL, 2588, '20381609', 'NORMAL SALINE INFUSSION', NULL, '4.0000', '5.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-05-08', 'received', '4.0000', '4.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8274, 101, NULL, 2589, '04036623', 'DEXTROSE SALINE DNS INFUSSION', NULL, '4.0000', '5.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2021-05-08', 'received', '4.0000', '4.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8275, 101, NULL, 2590, '06087300', 'GLUCOSE 5% INFUSSION', NULL, '4.0000', '5.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-05-08', 'received', '4.0000', '4.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8276, NULL, NULL, 2588, '20381609', 'NORMAL SALINE INFUSSION', NULL, '4.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '12.0000', '0.0000', '2021-05-08', 'received', '4.0000', '4.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8277, NULL, 54, 2588, '20381609', 'NORMAL SALINE INFUSSION', NULL, '4.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.0000', '0.0000', '2021-05-08', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8278, NULL, 54, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.0600', '0.0000', '2021-05-08', 'received', '19.0200', '19.0200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8279, NULL, 54, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.4000', '0.0000', '40.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '96.0000', '0.0000', '2021-05-08', 'received', '2.4000', '2.4000', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8280, NULL, 54, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.4500', '0.0000', '2021-05-08', 'received', '7.8900', '7.8900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8281, NULL, 54, 2342, '62530607', 'DICLO-DENK RECTAL SUPPOSITRY', NULL, '1.8600', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.8000', '20.0000', '2021-05-08', 'received', '1.8600', '1.8600', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8282, NULL, 54, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '14.0500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.1500', '2.0000', '2021-05-08', 'received', '14.0500', '14.0500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8283, NULL, 54, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.0000', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '0.0000', '2021-05-08', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8284, NULL, 54, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '3.3500', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.1000', '0.0000', '2021-05-08', 'received', '3.3500', '3.3500', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8285, NULL, 54, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '33.2900', '0.0000', '8.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '266.3200', '0.0000', '2021-05-08', 'received', '33.2900', '33.2900', NULL, NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8286, NULL, 54, 2583, '30559942', 'VIAGRA TABS 100MG', NULL, '77.2500', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '309.0000', '4.0000', '2021-05-08', 'received', '77.2500', '77.2500', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8287, NULL, 54, 2582, '81054441', 'AZILEX SUSP', NULL, '11.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.5000', '0.0000', '2021-05-08', 'received', '11.5000', '11.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8288, NULL, 54, 2587, '11447011', 'NEO MEDROL LOTION', NULL, '135.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '135.0000', '0.0000', '2021-05-08', 'received', '135.0000', '135.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8289, NULL, 54, 2589, '04036623', 'DEXTROSE SALINE DNS INFUSSION', NULL, '4.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.0000', '2.0000', '2021-05-08', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8290, NULL, 54, 2590, '06087300', 'GLUCOSE 5% INFUSSION', NULL, '4.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.0000', '3.0000', '2021-05-08', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8359, NULL, NULL, 1593, 'PR-306', 'LYRICA 75MG', NULL, '5.9000', '0.0000', '56.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '330.4000', '56.0000', '2021-05-08', 'received', '5.9000', '5.9000', '56.0000', NULL, NULL, 1, 'pc', '56.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8360, NULL, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '18.6100', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '55.8300', '-1.0000', '2021-05-08', 'received', '18.6100', '18.6100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8361, NULL, NULL, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '2.5700', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.7000', '-3.0000', '2021-05-08', 'received', '2.5700', '2.5700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8362, NULL, NULL, 1598, 'PR-311', 'GO COUGH SYR', NULL, '2.9300', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '8.7900', '0.0000', '2021-05-08', 'received', '2.9300', '2.9300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8395, 94, NULL, 2504, '61281286', 'MISTARD', NULL, '35.0000', '44.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '0.0000', '2021-04-30', 'received', '35.0000', '35.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8396, 94, NULL, 2536, '47357860', 'SOFT COLLAR NECK', NULL, '50.0000', '70.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-04-30', 'received', '50.0000', '50.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '50.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8397, 94, NULL, 2537, '32182788', 'HARD COLLAR NECK', NULL, '80.0000', '105.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2021-04-30', 'received', '80.0000', '80.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8398, 94, NULL, 2538, '95275481', 'KNEE BRACE', NULL, '120.0000', '150.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-04-30', 'received', '120.0000', '120.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8399, 94, NULL, 2539, '39255568', 'THERMOMETER DIGITAL', NULL, '10.0000', '15.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-04-30', 'received', '10.0000', '10.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8400, 94, NULL, 2531, '6928001831338', 'AGE PERFECT (WOKALI)', NULL, '20.0000', '28.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-04-30', 'received', '20.0000', '20.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8401, 94, NULL, 2532, '8906081290236', ' GLAM&GLORY', NULL, '8.0000', '15.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-04-30', 'received', '8.0000', '8.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8402, 94, NULL, 2534, '754604502834', 'NEEM FACIAL PRODUCT', NULL, '25.0000', '28.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '0.0000', '2021-04-30', 'received', '25.0000', '25.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8403, 94, NULL, 2533, '049022979109', 'APRICOT SCRUB', NULL, '18.0000', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-04-30', 'received', '18.0000', '18.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8404, 94, NULL, 2530, '7640149080124', 'Q7 GOLD (CARROT) SOAP', NULL, '22.0000', '25.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-04-30', 'received', '22.0000', '22.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8405, 94, NULL, 2535, '740939004150', 'CLEAR N SMOOTH', NULL, '20.0000', '24.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-04-30', 'received', '20.0000', '20.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8406, 94, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '7.8400', '10.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.0400', '0.0000', '2021-04-30', 'received', '7.8400', '7.8400', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '7.8400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8407, NULL, 50, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '35.3500', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '212.1000', '1.0000', '2021-05-09', 'received', '35.3500', '35.3500', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8408, NULL, 50, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '143.2000', '1.0000', '2021-05-09', 'received', '35.8000', '35.8000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8409, NULL, 50, 2392, '10965636', 'CHOCHO SAOP', NULL, '3.2000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.4000', '0.0000', '2021-05-09', 'received', '3.2000', '3.2000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8410, NULL, 50, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '29.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '348.0000', '0.0000', '2021-05-09', 'received', '29.0000', '29.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8411, NULL, 50, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '20.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '0.0000', '2021-05-09', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8412, NULL, 50, 2574, '24484092', 'DULCOLAX TABS 5MG 20\'S', NULL, '0.7800', '0.0000', '40.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.2000', '20.0000', '2021-05-09', 'received', '0.7800', '0.7800', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8413, NULL, 50, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', NULL, '1.8000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '0.0000', '2021-05-09', 'received', '1.8000', '1.8000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8414, NULL, 50, 2348, '70645774', 'LYNUX OINT', NULL, '22.0300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.0600', '0.0000', '2021-05-09', 'received', '22.0300', '22.0300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8415, NULL, 50, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.7500', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '75.0000', '4.0000', '2021-05-09', 'received', '3.7500', '3.7500', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8416, NULL, 50, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '28.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '86.1000', '0.0000', '2021-05-09', 'received', '28.7000', '28.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8417, NULL, 50, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '5.4000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.4000', '0.0000', '2021-05-09', 'received', '5.4000', '5.4000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8418, NULL, 50, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.6700', '0.0000', '2021-05-09', 'received', '6.8900', '6.8900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8419, NULL, 50, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.2000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.6000', '0.0000', '2021-05-09', 'received', '9.2000', '9.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8420, NULL, 50, 2575, '87228427', 'CANDEREL TABS', NULL, '12.8500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.5500', '3.0000', '2021-05-09', 'received', '12.8500', '12.8500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8421, NULL, 50, 1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', NULL, '13.1000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '393.0000', '0.0000', '2021-05-09', 'received', '13.1000', '13.1000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8422, NULL, 50, 1859, '8901138502942', 'PILEX TAB', NULL, '22.6600', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.3200', '1.0000', '2021-05-09', 'received', '22.6600', '22.6600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8423, NULL, 50, 2455, '07137762', 'AMITRIPTYLINE 25MG', NULL, '7.5300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.5900', '2.0000', '2021-05-09', 'received', '7.5300', '7.5300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8424, NULL, 50, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '5.8200', '0.0000', '32.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '186.2400', '11.0000', '2021-05-09', 'received', '5.8200', '5.8200', NULL, NULL, NULL, 1, 'pc', '32.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8425, NULL, 50, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '6.0500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.2500', '0.0000', '2021-05-09', 'received', '6.0500', '6.0500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8426, NULL, 50, 2462, '03669885', 'WELLBABY DROP', NULL, '46.8500', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.8500', '0.0000', '2021-05-09', 'received', '46.8500', '46.8500', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8427, NULL, 50, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '6.0500', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.3000', '1.0000', '2021-05-09', 'received', '6.0500', '6.0500', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8428, NULL, 50, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.8300', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.1500', '0.0000', '2021-05-09', 'received', '6.8300', '6.8300', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8429, NULL, 50, 1530, '4031571064159', 'METFORMIN DENK 1G', NULL, '28.7000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.4000', '1.0000', '2021-05-09', 'received', '28.7000', '28.7000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8430, NULL, 50, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '4.6000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.6000', '1.0000', '2021-05-09', 'received', '4.6000', '4.6000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8431, NULL, 50, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', NULL, '14.6000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.8000', '0.0000', '2021-05-09', 'received', '14.6000', '14.6000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8432, NULL, 50, 1561, 'PR-274', 'SPORANOX CAPS', NULL, '27.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '162.0000', '5.0000', '2021-05-09', 'received', '27.0000', '27.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8433, NULL, 50, 1369, 'PR-82', 'NAPROX EC TABS ECL', NULL, '6.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '5.0000', '2021-05-09', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8434, NULL, 50, 2576, '59885419', 'DIAMICRON MR 60 MG TAB', NULL, '107.9300', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '107.9300', '1.0000', '2021-05-09', 'received', '107.9300', '107.9300', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8435, NULL, 50, 2581, '6006118000202', 'CIPROBAY 500', NULL, '92.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '184.0000', '1.0000', '2021-05-09', 'received', '92.0000', '92.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8436, NULL, 50, 2592, '42909881', 'Zentel Suspension ', NULL, '7.8400', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '47.0400', '2.0000', '2021-05-09', 'received', '7.8400', '7.8400', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8530, NULL, NULL, 1547, '5010724531013', 'ANUSOL OINTMENT 25G', NULL, '30.5800', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.5800', '0.0000', '2021-05-10', 'received', '30.5800', '30.5800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8531, NULL, NULL, 2593, '8850769013252', 'GINSOMIN CAPS', NULL, '14.4000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '43.2000', '0.0000', '2021-05-10', 'received', '14.4000', '14.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8532, NULL, NULL, 2594, '8850769010831', 'ZEMAN CAPS', NULL, '16.4000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '49.2000', '0.0000', '2021-05-10', 'received', '16.4000', '16.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8533, NULL, NULL, 2595, '5011417560556', 'SWEETEX 700', NULL, '17.8900', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '35.7800', '0.0000', '2021-05-10', 'received', '17.8900', '17.8900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8534, NULL, NULL, 2596, '04414143', 'FEMISTAR CAPS', NULL, '19.7000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '39.4000', '0.0000', '2021-05-10', 'received', '19.7000', '19.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8535, NULL, NULL, 2597, '81022123', 'ABC BABY COUGH SYR', NULL, '3.8200', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '11.4600', '-1.0000', '2021-05-10', 'received', '3.8200', '3.8200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8536, NULL, NULL, 2599, '29486139', 'ABIDEC MULTIVITAMIN SYR', NULL, '45.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '90.0000', '1.0000', '2021-05-10', 'received', '45.0000', '45.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8537, NULL, NULL, 1538, 'PR-251', 'TINY VITE DROP', NULL, '31.5200', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '63.0400', '0.0000', '2021-05-10', 'received', '31.5200', '31.5200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8538, NULL, NULL, 2600, '5011417566800', 'LEMSIP COUGH SYR 180ML UK', NULL, '56.5000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '56.5000', '0.0000', '2021-05-10', 'received', '56.5000', '56.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8559, NULL, NULL, 2598, '48289194', 'FOLIC ACID TAB 28\' (EXETER)', NULL, '5.4300', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '16.2900', '2.0000', '2021-05-10', 'received', '5.4300', '5.4300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8589, NULL, NULL, 2415, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8599, NULL, NULL, 2540, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8611, NULL, NULL, 2601, '14487985', 'ULTRA SLIM HERBAL TEA', NULL, '16.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '80.0000', '0.0000', '2021-05-10', 'received', '16.0000', '16.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8623, NULL, NULL, 1471, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8624, NULL, NULL, 1957, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8625, 103, NULL, 2604, '43079266', 'COA MIXTURE', NULL, '90.0000', '120.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '0.0000', '2021-05-10', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8626, NULL, 56, 2604, '43079266', 'COA MIXTURE', NULL, '90.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '360.0000', '1.0000', '2021-05-10', 'received', '90.0000', '90.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8627, NULL, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '11.5600', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '69.3600', '0.0000', '2021-05-10', 'received', '11.5600', '11.5600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8628, NULL, NULL, 2085, '35811477', 'PARA-DENK 125MG', NULL, '1.4000', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '42.0000', '0.0000', '2021-05-10', 'received', '1.4000', '1.4000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8725, NULL, NULL, 1599, 'PR-312', 'RONZOLE 20MG CAPS', NULL, '12.8100', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.6200', '-1.0000', '2021-05-10', 'received', '12.8100', '12.8100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8726, NULL, NULL, 1600, 'PR-313', 'OMZOL CAPS 30\' (OMEPRAZOLE) SEDITA', NULL, '7.8800', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.7600', '0.0000', '2021-05-10', 'received', '7.8800', '7.8800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8727, NULL, NULL, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '55.1600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '165.4800', '1.0000', '2021-05-10', 'received', '55.1600', '55.1600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8728, NULL, NULL, 1606, 'PR-319', 'CLOMID 50MG (BRUNO)', NULL, '4.6200', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '138.6000', '0.0000', '2021-05-10', 'received', '4.6200', '4.6200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8729, NULL, NULL, 1609, '8904107900893', 'MYCOLEX CREAM 20G', NULL, '12.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '60.0000', '-1.0000', '2021-05-10', 'received', '12.0000', '12.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8730, NULL, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '14.7700', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '73.8500', '-1.0000', '2021-05-10', 'received', '14.7700', '14.7700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8731, NULL, NULL, 2086, '06489706', 'METAGYL SUSP', NULL, '4.3200', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.9200', '-1.0000', '2021-05-10', 'received', '4.3200', '4.3200', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8732, NULL, NULL, 1612, 'PR-325', 'GYPRONE PLUS TABS', NULL, '1.6000', '0.0000', '25.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.0000', '0.0000', '2021-05-10', 'received', '1.6000', '1.6000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8733, NULL, NULL, 1613, 'PR-326', 'GYPRON SYR', NULL, '9.8500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '29.5500', '0.0000', '2021-05-10', 'received', '9.8500', '9.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8734, NULL, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.1500', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.9000', '-6.0000', '2021-05-10', 'received', '6.1500', '6.1500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8735, NULL, NULL, 1616, 'PR-329', 'GACET SUPP 250MG', NULL, '6.8900', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '34.4500', '0.0000', '2021-05-10', 'received', '6.8900', '6.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8736, NULL, NULL, 1617, 'PR-330', 'ENTRAMOL 125MG SUPP', NULL, '4.6300', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '23.1500', '0.0000', '2021-05-10', 'received', '4.6300', '4.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8737, NULL, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '11.8200', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '59.1000', '0.0000', '2021-05-10', 'received', '11.8200', '11.8200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8738, NULL, NULL, 1619, 'PR-332', 'KLINDA300MG', NULL, '9.8500', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '98.5000', '0.0000', '2021-05-10', 'received', '9.8500', '9.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8739, NULL, NULL, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS', NULL, '54.1700', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '108.3400', '2.0000', '2021-05-10', 'received', '54.1700', '54.1700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8740, NULL, NULL, 1623, '5021265223398', 'PERFECTIL SKIN', NULL, '140.8400', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '281.6800', '0.0000', '2021-05-10', 'received', '140.8400', '140.8400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8741, NULL, NULL, 1626, '306420072116', 'VITAFOL CAP', NULL, '7.5900', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '37.9500', '0.0000', '2021-05-10', 'received', '7.5900', '7.5900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8892, NULL, NULL, 1601, '8904091100316', 'CANDIDERM CREAM 15MG', NULL, '7.7300', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '38.6500', '0.0000', '2021-05-10', 'received', '7.7300', '7.7300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8893, NULL, NULL, 1615, '5000456022811', 'CRESTOR 20MG', NULL, '69.6000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '278.4000', '0.0000', '2021-05-10', 'received', '69.6000', '69.6000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8894, NULL, NULL, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', NULL, '25.4200', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '101.6800', '0.0000', '2021-05-10', 'received', '25.4200', '25.4200', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8895, NULL, NULL, 1625, '8906116211458', 'PROMAN CAPS 30\' EXETER', NULL, '16.7000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '66.8000', '0.0000', '2021-05-10', 'received', '16.7000', '16.7000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8955, NULL, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.1000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.2000', '28.0000', '2021-05-10', 'received', '2.1000', '2.1000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9016, NULL, NULL, 2244, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9017, NULL, NULL, 1837, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9018, NULL, NULL, 2568, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-10.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9019, NULL, NULL, 1682, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9020, NULL, NULL, 1523, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '10.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9021, NULL, NULL, 2479, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9022, NULL, NULL, 1828, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9023, NULL, NULL, 1840, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '41.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9024, 102, NULL, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', NULL, '41.3700', '54.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '82.7400', '0.0000', '2021-05-10', 'received', '41.3700', '41.3700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '41.3700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9025, 102, NULL, 2403, '84832683', 'LIMZER CAPS 30\'', NULL, '17.8000', '24.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.8000', '0.0000', '2021-05-10', 'received', '17.8000', '17.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '17.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9026, 102, NULL, 1547, '5010724531013', 'ANUSOL OINTMENT 25G', NULL, '29.2000', '40.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2000', '0.0000', '2021-05-10', 'received', '29.2000', '29.2000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '29.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9027, 102, NULL, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '87.1300', '115.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.1300', '0.0000', '2021-05-10', 'received', '87.1300', '87.1300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '87.1300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9028, 102, NULL, 2593, '8850769013252', 'GINSOMIN CAPS', NULL, '14.4000', '19.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.2000', '0.0000', '2021-05-10', 'received', '14.4000', '14.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9029, 102, NULL, 2594, '8850769010831', 'ZEMAN CAPS', NULL, '16.4000', '21.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.2000', '0.0000', '2021-05-10', 'received', '16.4000', '16.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9030, 102, NULL, 1703, 'PR-416', 'VIGORIX SYR 200ML', NULL, '7.5900', '10.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.1800', '0.0000', '2021-05-10', 'received', '7.5900', '7.5900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9031, 102, NULL, 2595, '5011417560556', 'SWEETEX 700', NULL, '17.8900', '24.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.7800', '0.0000', '2021-05-10', 'received', '17.8900', '17.8900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9032, 102, NULL, 2596, '04414143', 'FEMISTAR CAPS', NULL, '19.7000', '26.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.4000', '0.0000', '2021-05-10', 'received', '19.7000', '19.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9033, 102, NULL, 2597, '81022123', 'ABC BABY COUGH SYR', NULL, '3.8200', '5.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.4600', '0.0000', '2021-05-10', 'received', '3.8200', '3.8200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9034, 102, NULL, 1586, '5012616173004', 'ABIDEC DROP', NULL, '45.8000', '65.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.6000', '0.0000', '2021-05-10', 'received', '45.8000', '45.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9035, 102, NULL, 1538, 'PR-251', 'TINY VITE DROP', NULL, '31.5200', '41.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0400', '0.0000', '2021-05-10', 'received', '31.5200', '31.5200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '31.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9036, 102, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '48.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.6000', '0.0000', '2021-05-10', 'received', '35.8000', '35.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9037, 102, NULL, 1419, '5024389122233', 'MIGHTY POWER SYS LS', NULL, '10.5000', '14.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2021-05-10', 'received', '10.5000', '10.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9038, 102, NULL, 1400, 'PR-113', 'DIAGELLETS 500ML(24)', NULL, '22.0000', '29.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-05-10', 'received', '22.0000', '22.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9039, 102, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '12.5000', '16.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-05-10', 'received', '12.5000', '12.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9040, 102, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '7.5000', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-05-10', 'received', '7.5000', '7.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9041, 102, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.0000', '33.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-05-10', 'received', '25.0000', '25.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9042, 102, NULL, 2598, '48289194', 'FOLIC ACID TAB 28\' (EXETER)', NULL, '5.4300', '7.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.8600', '0.0000', '2021-05-10', 'received', '5.4300', '5.4300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.4300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9043, 102, NULL, 2599, '29486139', 'ABIDEC MULTIVITAMIN SYR', NULL, '45.0000', '60.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-05-10', 'received', '45.0000', '45.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9044, 102, NULL, 2600, '5011417566800', 'LEMSIP COUGH SYR 180ML UK', NULL, '56.5000', '74.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.5000', '0.0000', '2021-05-10', 'received', '56.5000', '56.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '56.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9045, 102, NULL, 2598, '48289194', 'FOLIC ACID TAB 28\' (EXETER)', NULL, '5.4300', '7.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.2900', '0.0000', '2021-05-10', 'received', '5.4300', '5.4300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.4300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9046, 102, NULL, 2605, '92433638', 'COLESTOP 10MG', NULL, '8.7000', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1000', '0.0000', '2021-05-10', 'received', '8.7000', '8.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9047, NULL, 55, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.0000', '0.0000', '2021-05-11', 'received', '25.0000', '25.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9048, NULL, 55, 1400, 'PR-113', 'DIAGELLETS 500ML(24)', NULL, '22.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '66.0000', '1.0000', '2021-05-11', 'received', '22.0000', '22.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9049, NULL, 55, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '12.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.5000', '3.0000', '2021-05-11', 'received', '12.5000', '12.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9050, NULL, 55, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '7.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.5000', '0.0000', '2021-05-11', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9051, NULL, 55, 1419, '5024389122233', 'MIGHTY POWER SYS LS', NULL, '10.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.5000', '0.0000', '2021-05-11', 'received', '10.5000', '10.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9052, NULL, 55, 2600, '5011417566800', 'LEMSIP COUGH SYR 180ML UK', NULL, '56.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '56.5000', '0.0000', '2021-05-11', 'received', '56.5000', '56.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9053, NULL, 55, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '71.6000', '0.0000', '2021-05-11', 'received', '35.8000', '35.8000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9054, NULL, 55, 1538, 'PR-251', 'TINY VITE DROP', NULL, '31.5200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '63.0400', '2.0000', '2021-05-11', 'received', '31.5200', '31.5200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9055, NULL, 55, 2599, '29486139', 'ABIDEC MULTIVITAMIN SYR', NULL, '45.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.0000', '1.0000', '2021-05-11', 'received', '45.0000', '45.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9056, NULL, 55, 2597, '81022123', 'ABC BABY COUGH SYR', NULL, '3.8200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.4600', '1.0000', '2021-05-11', 'received', '3.8200', '3.8200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9057, NULL, 55, 2596, '04414143', 'FEMISTAR CAPS', NULL, '19.7000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.4000', '1.0000', '2021-05-11', 'received', '19.7000', '19.7000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9058, NULL, 55, 2595, '5011417560556', 'SWEETEX 700', NULL, '17.8900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.7800', '2.0000', '2021-05-11', 'received', '17.8900', '17.8900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9059, NULL, 55, 1703, 'PR-416', 'VIGORIX SYR 200ML', NULL, '7.5900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.1800', '2.0000', '2021-05-11', 'received', '7.5900', '7.5900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9060, NULL, 55, 2594, '8850769010831', 'ZEMAN CAPS', NULL, '16.4000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.2000', '3.0000', '2021-05-11', 'received', '16.4000', '16.4000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9061, NULL, 55, 2593, '8850769013252', 'GINSOMIN CAPS', NULL, '14.4000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.2000', '0.0000', '2021-05-11', 'received', '14.4000', '14.4000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9062, NULL, 55, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '83.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '83.0000', '0.0000', '2021-05-11', 'received', '83.0000', '83.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9063, NULL, 55, 1547, '5010724531013', 'ANUSOL OINTMENT 25G', NULL, '30.5800', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.5800', '1.0000', '2021-05-11', 'received', '30.5800', '30.5800', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9064, NULL, 55, 2403, '84832683', 'LIMZER CAPS 30\'', NULL, '17.8000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '106.8000', '2.0000', '2021-05-11', 'received', '17.8000', '17.8000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9065, NULL, 55, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', NULL, '41.3700', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '82.7400', '0.0000', '2021-05-11', 'received', '41.3700', '41.3700', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9066, NULL, 55, 2598, '48289194', 'FOLIC ACID TAB 28\' (EXETER)', NULL, '5.4300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.2900', '1.0000', '2021-05-11', 'received', '5.4300', '5.4300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9067, NULL, 55, 2605, '92433638', 'COLESTOP 10MG', NULL, '8.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.1000', '3.0000', '2021-05-11', 'received', '8.7000', '8.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9115, NULL, NULL, 1627, 'PR-340', 'S/SEAS C.L.O CAPS 60\'', NULL, '46.2600', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '92.5200', '0.0000', '2021-05-11', 'received', '46.2600', '46.2600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9225, NULL, NULL, 1634, 'PR-347', 'HYPONIDD TABS 20\' ?', NULL, '22.6600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '67.9800', '0.0000', '2021-05-11', 'received', '22.6600', '22.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9288, 95, NULL, 2540, '20509028', 'SPANISH FLY', NULL, '45.0000', '60.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '0.0000', '2021-04-30', 'received', '45.0000', '45.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9289, 95, NULL, 1591, '5017123328022', 'FUROSEMIDE 20MG TAB (CRESCENT)', NULL, '8.6600', '11.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.3200', '0.0000', '2021-04-30', 'received', '8.6600', '8.6600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9290, 95, NULL, 2541, '39996904', 'DEMACOT CREAM', NULL, '9.7500', '13.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.7500', '0.0000', '2021-04-30', 'received', '9.7500', '9.7500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9291, 95, NULL, 2542, '5021265223800', 'WELLKID CHEWABLE TAB', NULL, '54.2100', '72.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.4200', '0.0000', '2021-04-30', 'received', '54.2100', '54.2100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '54.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9292, 95, NULL, 2543, '89430673', 'SECURE CONTRACEPTIVE', NULL, '2.0000', '5.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-04-30', 'received', '2.0000', '2.0000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9293, 95, NULL, 2544, '85585070', 'NEXCOFER SYR L/S', NULL, '6.8800', '9.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5200', '0.0000', '2021-04-30', 'received', '6.8800', '6.8800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9294, 95, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '5.8800', '8.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6400', '0.0000', '2021-04-30', 'received', '5.8800', '5.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9295, 95, NULL, 1502, '8850769018998', 'GOFEX400MG', NULL, '7.8000', '10.5000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '0.0000', '2021-04-30', 'received', '7.8000', '7.8000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '7.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9296, 95, NULL, 1811, 'PR-524', 'VERMOX SUSP', NULL, '14.5300', '19.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '145.3000', '0.0000', '2021-04-30', 'received', '14.5300', '14.5300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9297, 95, NULL, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '7.5900', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.9500', '0.0000', '2021-04-30', 'received', '7.5900', '7.5900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9298, 95, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '80.0900', '11.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.1800', '0.0000', '2021-04-30', 'received', '80.0900', '80.0900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '80.0900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9299, 95, NULL, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', NULL, '33.8400', '45.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.6800', '0.0000', '2021-04-30', 'received', '33.8400', '33.8400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.8400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9300, 95, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '13.6300', '18.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.2600', '0.0000', '2021-04-30', 'received', '13.6300', '13.6300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.6300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9301, 95, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.2000', '6.0000', '16.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.2000', '0.0000', '2021-04-30', 'received', '4.2000', '4.2000', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, '4.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9302, 95, NULL, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', NULL, '6.6300', '9.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8900', '0.0000', '2021-04-30', 'received', '6.6300', '6.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.6300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9303, 95, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.0900', '35.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.2700', '0.0000', '2021-04-30', 'received', '27.0900', '27.0900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.0900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9304, 95, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.6400', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9200', '0.0000', '2021-04-30', 'received', '11.6400', '11.6400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9305, 95, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9900', '9.5000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '419.4000', '0.0000', '2021-04-30', 'received', '6.9900', '6.9900', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '6.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9306, 95, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '24.9800', '33.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.9000', '0.0000', '2021-04-30', 'received', '24.9800', '24.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '24.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9307, 95, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '17.6500', '27.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.9500', '0.0000', '2021-04-30', 'received', '17.6500', '17.6500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9308, 95, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '8.7600', '11.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.2800', '0.0000', '2021-04-30', 'received', '8.7600', '8.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.7600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9309, 95, NULL, 2549, '07128035', 'GILLETTE RAZOR', NULL, '10.0000', '15.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-04-30', 'received', '10.0000', '10.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9310, 95, NULL, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', NULL, '6.9000', '9.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '0.0000', '2021-04-30', 'received', '6.9000', '6.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9311, 95, NULL, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '70.6900', '46.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.3800', '0.0000', '2021-04-30', 'received', '70.6900', '70.6900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '70.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9312, 95, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '24.5000', '33.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '0.0000', '2021-04-30', 'received', '24.5000', '24.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9313, 95, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '29.0000', '38.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.0000', '2.0000', '2021-04-30', 'received', '29.0000', '29.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '29.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9314, 95, NULL, 1962, '5021265224128', 'VISIONANCE UK', NULL, '29.1900', '38.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.7600', '0.0000', '2021-04-30', 'received', '29.1900', '29.1900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '29.1900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9315, 95, NULL, 2091, '11166394', 'CA-C 1000 SANDOZ', NULL, '18.0000', '25.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2021-04-30', 'received', '18.0000', '18.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9316, 95, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '4.2000', '5.5000', '70.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '294.0000', '0.0000', '2021-04-30', 'received', '4.2000', '4.2000', '70.0000', NULL, NULL, 1, 'pc', '70.0000', NULL, NULL, NULL, NULL, '4.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9317, 95, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.2100', '11.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '246.3000', '0.0000', '2021-04-30', 'received', '8.2100', '8.2100', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '8.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9318, 95, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.8700', '3.8000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '172.2000', '0.0000', '2021-04-30', 'received', '2.8700', '2.8700', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9319, 95, NULL, 2365, '37620765', 'CLARITHROMYCIN 500MG B-CLAR', NULL, '1.5000', '2.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-04-30', 'received', '1.5000', '1.5000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9320, 95, NULL, 1492, '5017848249589', 'NERVE & BONE LINIMENT', NULL, '10.4400', '14.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.7600', '0.0000', '2021-04-30', 'received', '10.4400', '10.4400', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '10.4400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9321, 95, NULL, 1512, 'PR-225', 'CIPAC EYE ROP', NULL, '4.1000', '6.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.0000', '0.0000', '2021-04-30', 'received', '4.1000', '4.1000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9322, 95, NULL, 2433, '5060033370049', 'PRE MUM BREAST PAD', NULL, '0.7500', '1.0000', '80.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-04-30', 'received', '0.7500', '0.7500', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '0.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9323, 95, NULL, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '4.2500', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.2500', '0.0000', '2021-04-30', 'received', '4.2500', '4.2500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9324, 95, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '11.5600', '16.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.3600', '0.0000', '2021-04-30', 'received', '11.5600', '11.5600', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '11.5600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9325, 95, NULL, 2085, '35811477', 'PARA-DENK 125MG', NULL, '1.4000', '1.8000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-04-30', 'received', '1.4000', '1.4000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9326, 95, NULL, 1601, '8904091100316', 'CANDIDERM CREAM 15MG', NULL, '7.7300', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.6500', '0.0000', '2021-04-30', 'received', '7.7300', '7.7300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.7300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9327, 95, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9900', '9.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '139.8000', '0.0000', '2021-04-30', 'received', '6.9900', '6.9900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9328, 95, NULL, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '35.3500', '46.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.4000', '0.0000', '2021-04-30', 'received', '35.3500', '35.3500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '35.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9329, 95, NULL, 1615, '5000456022811', 'CRESTOR 20MG', NULL, '69.6000', '92.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '278.4000', '0.0000', '2021-04-30', 'received', '69.6000', '69.6000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '69.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9330, 95, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '5.4000', '7.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '0.0000', '2021-04-30', 'received', '5.4000', '5.4000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '5.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9331, 95, NULL, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', NULL, '25.4100', '33.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.6400', '0.0000', '2021-04-30', 'received', '25.4100', '25.4100', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '25.4100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9332, 95, NULL, 1625, '8906116211458', 'PROMAN CAPS 30\' EXETER', NULL, '16.7000', '22.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.8000', '0.0000', '2021-04-30', 'received', '16.7000', '16.7000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '16.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9333, 95, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.1000', '3.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2000', '0.0000', '2021-04-30', 'received', '2.1000', '2.1000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '2.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9334, 95, NULL, 1634, 'PR-347', 'HYPONIDD TABS 20\' ?', NULL, '22.6600', '30.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.9800', '0.0000', '2021-04-30', 'received', '22.6600', '22.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9335, 95, NULL, 1630, 'PR-343', 'GEN-M TAB 80/480', NULL, '16.7400', '22.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.7000', '0.0000', '2021-04-30', 'received', '16.7400', '16.7400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9336, 95, NULL, 1673, 'PR-386', 'DOXY CAPS (ESKAY)', NULL, '1.2900', '2.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '0.0000', '2021-04-30', 'received', '1.2900', '1.2900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9337, 95, NULL, 1681, 'PR-394', 'GALVUS 50MG', NULL, '36.8000', '48.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '368.0000', '0.0000', '2021-04-30', 'received', '36.8000', '36.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '36.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9338, 95, NULL, 1967, '5023497400615', 'SALAMOL CFC INHALER', NULL, '19.5900', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.7700', '0.0000', '2021-04-30', 'received', '19.5900', '19.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9339, NULL, NULL, 1630, 'PR-343', 'GEN-M TAB 80/480', NULL, '16.7400', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '83.7000', '0.0000', '2021-05-11', 'received', '16.7400', '16.7400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9405, NULL, NULL, 1967, '5023497400615', 'SALAMOL CFC INHALER', NULL, '19.5900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '58.7700', '0.0000', '2021-05-11', 'received', '19.5900', '19.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9406, NULL, NULL, 1673, 'PR-386', 'DOXY CAPS (ESKAY)', NULL, '1.2900', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.8000', '-1.0000', '2021-05-11', 'received', '1.2900', '1.2900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9407, NULL, NULL, 1681, 'PR-394', 'GALVUS 50MG', NULL, '36.8000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '368.0000', '0.0000', '2021-05-11', 'received', '36.8000', '36.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9408, NULL, 52, 1681, 'PR-394', 'GALVUS 50MG', NULL, '36.8000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '368.0000', '10.0000', '2021-05-11', 'received', '36.8000', '36.8000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9409, NULL, 52, 1673, 'PR-386', 'DOXY CAPS (ESKAY)', NULL, '1.2900', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.8000', '20.0000', '2021-05-11', 'received', '1.2900', '1.2900', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9410, NULL, 52, 1967, '5023497400615', 'SALAMOL CFC INHALER', NULL, '19.5900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '58.7700', '0.0000', '2021-05-11', 'received', '19.5900', '19.5900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9411, NULL, 52, 1634, 'PR-347', 'HYPONIDD TABS 20\' ?', NULL, '22.6600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '67.9800', '3.0000', '2021-05-11', 'received', '22.6600', '22.6600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9412, NULL, 52, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.1000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.2000', '0.0000', '2021-05-11', 'received', '2.1000', '2.1000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9413, NULL, 52, 1626, '306420072116', 'VITAFOL CAP', NULL, '7.5900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.9500', '0.0000', '2021-05-11', 'received', '7.5900', '7.5900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9414, NULL, 52, 1623, '5021265223398', 'PERFECTIL SKIN', NULL, '140.8400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '281.6800', '1.0000', '2021-05-11', 'received', '140.8400', '140.8400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9415, NULL, 52, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS', NULL, '54.1700', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '108.3400', '0.0000', '2021-05-11', 'received', '54.1700', '54.1700', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9416, NULL, 52, 1619, 'PR-332', 'KLINDA300MG', NULL, '9.8500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '98.5000', '0.0000', '2021-05-11', 'received', '9.8500', '9.8500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9417, NULL, 52, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '11.8200', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '59.1000', '0.0000', '2021-05-11', 'received', '11.8200', '11.8200', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9418, NULL, 52, 1617, 'PR-330', 'ENTRAMOL 125MG SUPP', NULL, '4.6300', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.1500', '4.0000', '2021-05-11', 'received', '4.6300', '4.6300', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9419, NULL, 52, 1616, 'PR-329', 'GACET SUPP 250MG', NULL, '6.8900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.4500', '0.0000', '2021-05-11', 'received', '6.8900', '6.8900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9420, NULL, 52, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.1500', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.9000', '0.0000', '2021-05-11', 'received', '6.1500', '6.1500', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9421, NULL, 52, 1613, 'PR-326', 'GYPRON SYR', NULL, '9.8500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.5500', '2.0000', '2021-05-11', 'received', '9.8500', '9.8500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9422, NULL, 52, 1612, 'PR-325', 'GYPRONE PLUS TABS', NULL, '1.6000', '0.0000', '25.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '4.0000', '2021-05-11', 'received', '1.6000', '1.6000', NULL, NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9423, NULL, 52, 2086, '06489706', 'METAGYL SUSP', NULL, '4.3200', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.9200', '3.0000', '2021-05-11', 'received', '4.3200', '4.3200', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9424, NULL, 52, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '14.7700', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '73.8500', '1.0000', '2021-05-11', 'received', '14.7700', '14.7700', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9425, NULL, 52, 1609, '8904107900893', 'MYCOLEX CREAM 20G', NULL, '12.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '1.0000', '2021-05-11', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9426, NULL, 52, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '3.3500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.7500', '0.0000', '2021-05-11', 'received', '3.3500', '3.3500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9427, NULL, 52, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.0000', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '0.0000', '2021-05-11', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9428, NULL, 52, 1606, 'PR-319', 'CLOMID 50MG (BRUNO)', NULL, '4.6200', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '138.6000', '20.0000', '2021-05-11', 'received', '4.6200', '4.6200', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9429, NULL, 52, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '55.1600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '165.4800', '1.0000', '2021-05-11', 'received', '55.1600', '55.1600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9430, NULL, 52, 1600, 'PR-313', 'OMZOL CAPS 30\' (OMEPRAZOLE) SEDITA', NULL, '7.8800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.7600', '1.0000', '2021-05-11', 'received', '7.8800', '7.8800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9431, NULL, 52, 1599, 'PR-312', 'RONZOLE 20MG CAPS', NULL, '12.8100', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.6200', '0.0000', '2021-05-11', 'received', '12.8100', '12.8100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9432, NULL, 52, 1598, 'PR-311', 'GO COUGH SYR', NULL, '2.9300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.7900', '2.0000', '2021-05-11', 'received', '2.9300', '2.9300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9433, NULL, 52, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '2.5700', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.7000', '1.0000', '2021-05-11', 'received', '2.5700', '2.5700', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9434, NULL, 52, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '18.6100', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.8300', '2.0000', '2021-05-11', 'received', '18.6100', '18.6100', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9435, NULL, 52, 1593, 'PR-306', 'LYRICA 75MG', NULL, '5.9000', '0.0000', '56.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '330.4000', '28.0000', '2021-05-11', 'received', '5.9000', '5.9000', NULL, NULL, NULL, 1, 'pc', '56.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9436, NULL, 52, 1591, '5017123328022', 'FUROSEMIDE 20MG TAB (CRESCENT)', NULL, '8.6600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.9800', '3.0000', '2021-05-11', 'received', '8.6600', '8.6600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9437, NULL, 52, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '1.7100', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '85.5000', '46.0000', '2021-05-11', 'received', '1.7100', '1.7100', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9438, NULL, 52, 1589, '8904008410118', 'GASTRACID SUSP (GR)', NULL, '6.4000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.6000', '0.0000', '2021-05-11', 'received', '6.4000', '6.4000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9439, NULL, 52, 1588, '8902396003509', 'CORORANGE DROP', NULL, '4.8000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.8000', '4.0000', '2021-05-11', 'received', '4.8000', '4.8000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9440, NULL, 52, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '14.0500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.1500', '0.0000', '2021-05-11', 'received', '14.0500', '14.0500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9441, NULL, 52, 1586, '5012616173004', 'ABIDEC DROP', NULL, '48.7600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '146.2800', '0.0000', '2021-05-11', 'received', '48.7600', '48.7600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9442, NULL, 52, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '8.9900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.9500', '0.0000', '2021-05-11', 'received', '8.9900', '8.9900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9443, NULL, 52, 1584, '5060806420162', 'PROMAN DRINK 250ML', NULL, '5.8900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.4500', '1.0000', '2021-05-11', 'received', '5.8900', '5.8900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9444, NULL, 52, 1583, '5060806420179', 'PROWOMAN DRINK 250ML', NULL, '5.8900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.4500', '4.0000', '2021-05-11', 'received', '5.8900', '5.8900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9445, NULL, 52, 1582, '5017007016991', 'WARFARIN TAB 5MG 28\'', NULL, '9.3600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.0800', '3.0000', '2021-05-11', 'received', '9.3600', '9.3600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9446, NULL, 52, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', NULL, '0.9900', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.5000', '33.0000', '2021-05-11', 'received', '0.9900', '0.9900', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9447, NULL, 52, 1578, 'PR-291', 'SAMALIN LOZENGES', NULL, '1.9700', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.7000', '5.0000', '2021-05-11', 'received', '1.9700', '1.9700', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9448, NULL, 52, 1577, 'PR-290', 'MALIN LOZ', NULL, '2.1000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.2000', '4.0000', '2021-05-11', 'received', '2.1000', '2.1000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9449, NULL, 52, 1576, 'PR-289', 'GRISORAL SUSP (MILDLAND)', NULL, '7.0500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.1500', '1.0000', '2021-05-11', 'received', '7.0500', '7.0500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9450, NULL, 52, 1575, '5017007043294', 'LOSARTAN POTASSIUM 50MG (TEVA)', NULL, '10.3500', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '124.2000', '4.0000', '2021-05-11', 'received', '10.3500', '10.3500', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9451, NULL, 52, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.9600', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '98.0000', '14.0000', '2021-05-11', 'received', '1.9600', '1.9600', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9452, NULL, 52, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', NULL, '1.7000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.4000', '2.0000', '2021-05-11', 'received', '1.7000', '1.7000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9453, NULL, 52, 1571, 'udia111', 'DIABETMIN TABS 500MG', NULL, '1.9700', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.4000', '16.0000', '2021-05-11', 'received', '1.9700', '1.9700', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9454, NULL, 52, 1568, '5000283659013', 'TAMSULOSIN MR CAPS 400MG ZENTIVA', NULL, '19.5900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '58.7700', '2.0000', '2021-05-11', 'received', '19.5900', '19.5900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9455, NULL, 52, 1567, 'PR-280', 'BRENEX SYRUP', NULL, '13.3000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.9000', '0.0000', '2021-05-11', 'received', '13.3000', '13.3000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9456, NULL, 52, 2084, '24569550', 'PRE-MECO', NULL, '15.0700', '0.0000', '9.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '135.6300', '9.0000', '2021-05-11', 'received', '15.0700', '15.0700', NULL, NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9457, NULL, 52, 1565, 'PR-278', 'PARLODEL TABLETS 2.5MG', NULL, '18.0500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.1500', '2.0000', '2021-05-11', 'received', '18.0500', '18.0500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9458, NULL, 52, 1564, '3838989544225', 'TADOL 100MG', NULL, '2.6000', '0.0000', '90.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '234.0000', '15.0000', '2021-05-11', 'received', '2.6000', '2.6000', NULL, NULL, NULL, 1, 'pc', '90.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9459, NULL, 52, 1560, 'PR-273', 'STUGERON', NULL, '4.6000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.0000', '8.0000', '2021-05-11', 'received', '4.6000', '4.6000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9460, NULL, 52, 2433, '5060033370049', 'PRE MUM BREAST PAD', NULL, '0.7500', '0.0000', '80.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '0.0000', '2021-05-11', 'received', '0.7500', '0.7500', NULL, NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9461, NULL, 52, 1804, 'PR-517', 'SAMALIN JUNIOR', NULL, '4.2500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.2500', '4.0000', '2021-05-11', 'received', '4.2500', '4.2500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9462, NULL, 52, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '11.5600', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '69.3600', '0.0000', '2021-05-11', 'received', '11.5600', '11.5600', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9463, NULL, 52, 2085, '35811477', 'PARA-DENK 125MG', NULL, '1.4000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.0000', '1.0000', '2021-05-11', 'received', '1.4000', '1.4000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9464, NULL, 52, 1601, '8904091100316', 'CANDIDERM CREAM 15MG', NULL, '7.7300', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.6500', '5.0000', '2021-05-11', 'received', '7.7300', '7.7300', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9465, NULL, 52, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9900', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '139.8000', '16.0000', '2021-05-11', 'received', '6.9900', '6.9900', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9466, NULL, 52, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '35.3500', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '141.4000', '0.0000', '2021-05-11', 'received', '35.3500', '35.3500', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9467, NULL, 52, 1615, '5000456022811', 'CRESTOR 20MG', NULL, '139.1600', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '556.6400', '2.0000', '2021-05-11', 'received', '139.1600', '139.1600', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9468, NULL, 52, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '5.4000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '64.8000', '3.0000', '2021-05-11', 'received', '5.4000', '5.4000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9469, NULL, 52, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', NULL, '50.8200', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '203.2800', '1.0000', '2021-05-11', 'received', '50.8200', '50.8200', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9470, NULL, 52, 1625, '8906116211458', 'PROMAN CAPS 30\' EXETER', NULL, '33.4700', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '133.8800', '4.0000', '2021-05-11', 'received', '33.4700', '33.4700', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9471, NULL, 52, 1627, 'PR-340', 'S/SEAS C.L.O CAPS 60\'', NULL, '46.2600', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '92.5200', '1.0000', '2021-05-11', 'received', '46.2600', '46.2600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9472, NULL, 52, 1630, 'PR-343', 'GEN-M TAB 80/480', NULL, '16.7400', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '83.7000', '1.0000', '2021-05-11', 'received', '16.7400', '16.7400', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9473, NULL, 52, 1706, 'PR-419', 'PROCOLD SYR 100ml', NULL, '15.2700', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '61.0800', '0.0000', '2021-05-11', 'received', '15.2700', '15.2700', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9474, NULL, 52, 1707, 'PR-420', 'MEDGLOBIN CAPS', NULL, '25.1200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.2400', '1.0000', '2021-05-11', 'received', '25.1200', '25.1200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9475, NULL, 52, 1708, 'PR-421', 'MEDGLOBIN SYR', NULL, '20.1900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.3800', '1.0000', '2021-05-11', 'received', '20.1900', '20.1900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9476, NULL, 52, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '6.6500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.9500', '0.0000', '2021-05-11', 'received', '6.6500', '6.6500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9477, NULL, 52, 1710, 'PR-423', 'PRONALIN ADULT', NULL, '3.4300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.2900', '1.0000', '2021-05-11', 'received', '3.4300', '3.4300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9478, NULL, 52, 1711, 'PR-424', 'CIROTAMIN SYR', NULL, '7.4900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.4700', '1.0000', '2021-05-11', 'received', '7.4900', '7.4900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9479, NULL, 52, 1712, 'PR-425', 'ATORVASTATIN 20MG TAB', NULL, '9.6500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '48.2500', '0.0000', '2021-05-11', 'received', '9.6500', '9.6500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9480, NULL, 52, 1713, 'PR-426', 'STRETCH GO', NULL, '15.1700', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '75.8500', '4.0000', '2021-05-11', 'received', '15.1700', '15.1700', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9481, NULL, 52, 1714, '5024874016771', 'VALPAK VITAMIN C500MG CHEWABLE', NULL, '16.8400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.5200', '2.0000', '2021-05-11', 'received', '16.8400', '16.8400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9482, NULL, 52, 1715, 'PR-428', 'SALOCOLD SYRUP', NULL, '4.9200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.7600', '0.0000', '2021-05-11', 'received', '4.9200', '4.9200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9483, NULL, NULL, 2605, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9484, NULL, NULL, 1519, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9485, NULL, NULL, 2557, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9486, NULL, NULL, 1310, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-41.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9487, NULL, NULL, 1346, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-31.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9488, NULL, NULL, 2213, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9489, 99, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '48.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '143.2000', '0.0000', '2021-05-05', 'received', '35.8000', '35.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '35.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9490, 99, NULL, 2392, '10965636', 'CHOCHO SAOP', NULL, '3.2000', '4.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.4000', '0.0000', '2021-05-05', 'received', '3.2000', '3.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '3.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9491, 99, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '29.0000', '38.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '348.0000', '0.0000', '2021-05-05', 'received', '29.0000', '29.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '29.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9492, 99, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '20.0000', '26.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-05-05', 'received', '20.0000', '20.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9493, 99, NULL, 2574, '24484092', 'DULCOLAX TABS 5MG 20\'S', NULL, '0.7800', '1.0000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2021-05-05', 'received', '0.7800', '0.7800', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '0.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9494, 99, NULL, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', NULL, '2.7600', '3.7000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '0.0000', '2021-05-05', 'received', '2.7600', '2.7600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.7600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9495, 99, NULL, 2348, '70645774', 'LYNUX OINT', NULL, '22.0300', '29.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0600', '0.0000', '2021-05-05', 'received', '22.0300', '22.0300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.0300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9496, 99, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.7500', '6.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-05-05', 'received', '3.7500', '3.7500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9497, 99, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '28.7000', '3.8000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.1000', '0.0000', '2021-05-05', 'received', '28.7000', '28.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9498, 99, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '5.4000', '7.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '0.0000', '2021-05-05', 'received', '5.4000', '5.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9499, 99, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.6700', '0.0000', '2021-05-05', 'received', '6.8900', '6.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9500, 99, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.2000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '0.0000', '2021-05-05', 'received', '9.2000', '9.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9501, 99, NULL, 2575, '87228427', 'CANDEREL TABS', NULL, '12.8500', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5500', '0.0000', '2021-05-05', 'received', '12.8500', '12.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9502, 99, NULL, 1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', NULL, '13.1000', '17.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '393.0000', '0.0000', '2021-05-05', 'received', '13.1000', '13.1000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '13.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9503, 99, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '22.6600', '30.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.3200', '0.0000', '2021-05-05', 'received', '22.6600', '22.6600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9504, 99, NULL, 2455, '07137762', 'AMITRIPTYLINE 25MG', NULL, '7.5300', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5900', '0.0000', '2021-05-05', 'received', '7.5300', '7.5300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9505, 99, NULL, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '5.8200', '8.0000', '32.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.2400', '0.0000', '2021-05-05', 'received', '5.8200', '5.8200', '32.0000', NULL, NULL, 1, 'pc', '32.0000', NULL, NULL, NULL, NULL, '5.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9506, 99, NULL, 1864, 'PR-577', 'VIROL BLOOD TONIC', NULL, '6.0500', '8.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.2500', '0.0000', '2021-05-05', 'received', '6.0500', '6.0500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9507, 99, NULL, 2462, '03669885', 'WELLBABY DROP', NULL, '46.8500', '61.8400', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8500', '0.0000', '2021-05-05', 'received', '46.8500', '46.8500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '46.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9508, 99, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '6.0500', '8.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.3000', '0.0000', '2021-05-05', 'received', '6.0500', '6.0500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9509, 99, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '7.8400', '9.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2000', '0.0000', '2021-05-05', 'received', '7.8400', '7.8400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.8400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9510, 99, NULL, 1530, '4031571064159', 'METFORMIN DENK 1G', NULL, '28.7000', '38.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.4000', '0.0000', '2021-05-05', 'received', '28.7000', '28.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9511, 99, NULL, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '4.6000', '6.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '0.0000', '2021-05-05', 'received', '4.6000', '4.6000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9512, 99, NULL, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', NULL, '14.6000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.8000', '0.0000', '2021-05-05', 'received', '14.6000', '14.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9513, 99, NULL, 1561, 'PR-274', 'SPORANOX CAPS', NULL, '27.0000', '35.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.0000', '0.0000', '2021-05-05', 'received', '27.0000', '27.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '27.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9514, 99, NULL, 1369, 'PR-82', 'NAPROX EC TABS ECL', NULL, '6.0000', '8.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-05-05', 'received', '6.0000', '6.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9515, 99, NULL, 2576, '59885419', 'DIAMICRON MR 60 MG TAB', NULL, '107.9300', '142.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.9300', '0.0000', '2021-05-05', 'received', '107.9300', '107.9300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '107.9300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9516, 99, NULL, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '35.3500', '46.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '212.1000', '0.0000', '2021-05-05', 'received', '35.3500', '35.3500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '35.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9517, 99, NULL, 2581, '6006118000202', 'CIPROBAY 500', NULL, '92.0000', '122.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '184.0000', '0.0000', '2021-05-05', 'received', '92.0000', '92.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '92.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9518, 99, NULL, 2168, '8901082004356', 'APTIZOOOM', NULL, '26.0000', '38.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-05-05', 'received', '26.0000', '26.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9519, 99, NULL, 1414, '6034000157048', 'LIVING BITTERS CAPS', NULL, '19.0000', '25.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '1.0000', '2021-05-05', 'received', '19.0000', '19.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9520, 99, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '31.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.6400', '0.0000', '2021-05-05', 'received', '23.9100', '23.9100', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '23.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9521, 99, NULL, 1740, 'PR-453', 'SILDENAFIL TABS 1 00MG 4\'(EXETER)', NULL, '7.3300', '10.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.6600', '0.0000', '2021-05-05', 'received', '7.3300', '7.3300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9522, 99, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9900', '9.5000', '75.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '524.2500', '0.0000', '2021-05-05', 'received', '6.9900', '6.9900', '75.0000', NULL, NULL, 1, 'pc', '75.0000', NULL, NULL, NULL, NULL, '6.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9523, 99, NULL, 2263, '6036000090417', 'LEVON 2', NULL, '4.9800', '8.0000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.8400', '0.0000', '2021-05-05', 'received', '4.9800', '4.9800', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '4.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9524, 99, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '12.5000', '16.5000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-05-05', 'received', '12.5000', '12.5000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '12.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9525, 99, NULL, 2543, '89430673', 'SECURE CONTRACEPTIVE', NULL, '2.0000', '5.0000', '28.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '0.0000', '2021-05-05', 'received', '2.0000', '2.0000', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9526, NULL, NULL, 1492, '5017848249589', 'NERVE & BONE LINIMENT', NULL, '10.4400', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '41.7600', '0.0000', '2021-05-13', 'received', '10.4400', '10.4400', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9527, NULL, NULL, 1512, 'PR-225', 'CIPAC EYE ROP', NULL, '4.1000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '41.0000', '0.0000', '2021-05-13', 'received', '4.1000', '4.1000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9528, NULL, 43, 1512, 'PR-225', 'CIPAC EYE ROP', NULL, '4.1000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '41.0000', '6.0000', '2021-05-13', 'received', '4.1000', '4.1000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9529, NULL, 43, 1492, '5017848249589', 'NERVE & BONE LINIMENT', NULL, '10.4400', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '41.7600', '4.0000', '2021-05-13', 'received', '10.4400', '10.4400', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9530, NULL, 43, 2091, '11166394', 'CA-C 1000 SANDOZ', NULL, '18.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '108.0000', '3.0000', '2021-05-13', 'received', '18.0000', '18.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9531, NULL, 43, 1962, '5021265224128', 'VISIONANCE UK', NULL, '29.1900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '58.3800', '2.0000', '2021-05-13', 'received', '29.1900', '29.1900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9532, NULL, 43, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '70.6900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '141.3800', '0.0000', '2021-05-13', 'received', '70.6900', '70.6900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9533, NULL, 43, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', NULL, '6.9000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.8000', '0.0000', '2021-05-13', 'received', '6.9000', '6.9000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9534, NULL, 43, 2549, '07128035', 'GILLETTE RAZOR', NULL, '10.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '11.0000', '2021-05-13', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9535, NULL, 43, 2540, '20509028', 'SPANISH FLY', NULL, '45.0000', '0.0000', '0.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '0.0000', '0.0000', '2021-05-13', 'received', '45.0000', '45.0000', NULL, NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9536, NULL, 43, 1591, '5017123328022', 'FUROSEMIDE 20MG TAB (CRESCENT)', NULL, '8.6600', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.3200', '0.0000', '2021-05-13', 'received', '8.6600', '8.6600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9537, NULL, 43, 2541, '39996904', 'DEMACOT CREAM', NULL, '9.7500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '48.7500', '2.0000', '2021-05-13', 'received', '9.7500', '9.7500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9538, NULL, 43, 2542, '5021265223800', 'WELLKID CHEWABLE TAB', NULL, '54.2100', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '108.4200', '1.0000', '2021-05-13', 'received', '54.2100', '54.2100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9539, NULL, 43, 2543, '89430673', 'SECURE CONTRACEPTIVE', NULL, '2.0000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '25.0000', '2021-05-13', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9540, NULL, 43, 2544, '85585070', 'NEXCOFER SYR L/S', NULL, '6.8800', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.5200', '1.0000', '2021-05-13', 'received', '6.8800', '6.8800', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9541, NULL, 43, 2545, '82780299', 'DREZ POWDER 10G', NULL, '5.8800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.6400', '0.0000', '2021-05-13', 'received', '5.8800', '5.8800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9542, NULL, 43, 1502, '8850769018998', 'GOFEX400MG', NULL, '7.8000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '234.0000', '3.0000', '2021-05-13', 'received', '7.8000', '7.8000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9543, NULL, 43, 1811, 'PR-524', 'VERMOX SUSP', NULL, '14.5300', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '145.3000', '0.0000', '2021-05-13', 'received', '14.5300', '14.5300', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9544, NULL, 43, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '7.5900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.9500', '0.0000', '2021-05-13', 'received', '7.5900', '7.5900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9545, NULL, 43, 2362, '63796869', 'ZINNAT 500MG', NULL, '82.0200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '164.0400', '0.0000', '2021-05-13', 'received', '82.0200', '82.0200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9546, NULL, 43, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', NULL, '33.8400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '67.6800', '0.0000', '2021-05-13', 'received', '33.8400', '33.8400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9547, NULL, 43, 2547, '30290939', 'VISCOF S SYR', NULL, '8.7600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.2800', '0.0000', '2021-05-13', 'received', '8.7600', '8.7600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9548, NULL, 43, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '13.6300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.2600', '0.0000', '2021-05-13', 'received', '13.6300', '13.6300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9549, NULL, 43, 2260, '29581054', 'DRAGON TABS', NULL, '4.2000', '0.0000', '16.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '67.2000', '0.0000', '2021-05-13', 'received', '4.2000', '4.2000', NULL, NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9550, NULL, 43, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', NULL, '6.6300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.8900', '0.0000', '2021-05-13', 'received', '6.6300', '6.6300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9551, NULL, 43, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.0900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '81.2700', '0.0000', '2021-05-13', 'received', '27.0900', '27.0900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9552, NULL, 43, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.6400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.9200', '1.0000', '2021-05-13', 'received', '11.6400', '11.6400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9553, NULL, 43, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9900', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '419.4000', '13.0000', '2021-05-13', 'received', '6.9900', '6.9900', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9554, NULL, 43, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '24.9800', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '124.9000', '0.0000', '2021-05-13', 'received', '24.9800', '24.9800', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9555, NULL, 43, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '20.7800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '62.3400', '0.0000', '2021-05-13', 'received', '20.7800', '20.7800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9556, NULL, 43, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '24.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.0000', '0.0000', '2021-05-13', 'received', '24.5000', '24.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9557, NULL, 43, 1962, '5021265224128', 'VISIONANCE UK', NULL, '29.1900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '58.3800', '2.0000', '2021-05-13', 'received', '29.1900', '29.1900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9558, NULL, 43, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '4.2000', '0.0000', '70.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '294.0000', '30.0000', '2021-05-13', 'received', '4.2000', '4.2000', NULL, NULL, NULL, 1, 'pc', '70.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9559, NULL, 43, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.2100', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '246.3000', '8.0000', '2021-05-13', 'received', '8.2100', '8.2100', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9560, NULL, 43, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.8700', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '172.2000', '17.0000', '2021-05-13', 'received', '2.8700', '2.8700', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9561, NULL, 43, 2365, '37620765', 'CLARITHROMYCIN 500MG B-CLAR', NULL, '1.5000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '0.0000', '2021-05-13', 'received', '1.5000', '1.5000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9562, NULL, 43, 2168, '8901082004356', 'APTIZOOOM', NULL, '26.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.0000', '1.0000', '2021-05-13', 'received', '26.0000', '26.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9563, NULL, 43, 1414, '6034000157048', 'LIVING BITTERS CAPS', NULL, '19.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.0000', '3.0000', '2021-05-13', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9564, NULL, 43, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '95.6400', '1.0000', '2021-05-13', 'received', '23.9100', '23.9100', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9565, NULL, 43, 1740, 'PR-453', 'SILDENAFIL TABS 1 00MG 4\'(EXETER)', NULL, '7.3300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.6600', '1.0000', '2021-05-13', 'received', '7.3300', '7.3300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9566, NULL, 43, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9900', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '349.5000', '50.0000', '2021-05-13', 'received', '6.9900', '6.9900', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9567, NULL, 43, 2263, '6036000090417', 'LEVON 2', NULL, '4.9800', '0.0000', '8.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.8400', '7.0000', '2021-05-13', 'received', '4.9800', '4.9800', NULL, NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9568, NULL, 43, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '12.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '62.5000', '1.0000', '2021-05-13', 'received', '12.5000', '12.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9569, NULL, 43, 2543, '89430673', 'SECURE CONTRACEPTIVE', NULL, '2.0000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '21.0000', '2021-05-13', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9570, NULL, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.3800', '0.0000', '1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '1.3800', '0.0000', '2021-05-13', 'received', '1.3800', '1.3800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9571, NULL, NULL, 2405, '40815002', 'GLOVES', NULL, '1.2000', '0.0000', '1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '1.2000', '0.0000', '2021-05-13', 'received', '1.2000', '1.2000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9572, NULL, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '0.0000', '1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '2.0000', '0.0000', '2021-05-13', 'received', '2.0000', '2.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9573, NULL, NULL, 2582, '81054441', 'AZILEX SUSP', NULL, '11.5000', '0.0000', '1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '11.5000', '1.0000', '2021-05-13', 'received', '11.5000', '11.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9574, NULL, NULL, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', NULL, '0.9300', '0.0000', '1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '0.9300', '0.0000', '2021-05-13', 'received', '0.9300', '0.9300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9575, NULL, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.3200', '0.0000', '2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '0.6400', '0.0000', '2021-05-13', 'received', '0.3200', '0.3200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9576, NULL, NULL, 1303, 'PR-16', 'BASE BOOM JELLY', NULL, '1.3800', '0.0000', '4.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '5.5200', '0.0000', '2021-05-13', 'received', '1.3800', '1.3800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9577, NULL, NULL, 1569, 'PR-282', 'TIGER CAPS', NULL, '14.2800', '0.0000', '1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '14.2800', '2.0000', '2021-05-13', 'received', '14.2800', '14.2800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9578, NULL, NULL, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '37.9000', '0.0000', '2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '75.8000', '2.0000', '2021-05-13', 'received', '37.9000', '37.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9579, NULL, NULL, 2345, '37407616', 'PONSTAN CAPS 250MG', NULL, '7.6400', '0.0000', '1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '7.6400', '0.0000', '2021-05-13', 'received', '7.6400', '7.6400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9580, NULL, NULL, 2342, '62530607', 'DICLO-DENK RECTAL SUPPOSITRY', NULL, '1.8600', '0.0000', '5.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '9.3000', '0.0000', '2021-05-13', 'received', '1.8600', '1.8600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9581, NULL, NULL, 2076, '24451420', 'ZINVITE SYR', NULL, '8.0000', '0.0000', '1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '8.0000', '2.0000', '2021-05-13', 'received', '8.0000', '8.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9582, NULL, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '0.0000', '1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '35.8000', '0.0000', '2021-05-13', 'received', '35.8000', '35.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9583, NULL, NULL, 2518, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9584, NULL, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.3800', '0.0000', '-1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-1.3800', '-1.0000', '2021-05-13', 'received', '1.3800', '1.3800', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9585, NULL, NULL, 2405, '40815002', 'GLOVES', NULL, '1.2000', '0.0000', '-1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-1.2000', '-1.0000', '2021-05-13', 'received', '1.2000', '1.2000', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9586, NULL, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '0.0000', '-1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-2.0000', '-1.0000', '2021-05-13', 'received', '2.0000', '2.0000', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9587, NULL, NULL, 2582, '81054441', 'AZILEX SUSP', NULL, '11.5000', '0.0000', '-1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-11.5000', '-1.0000', '2021-05-13', 'received', '11.5000', '11.5000', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9588, NULL, NULL, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', NULL, '0.9300', '0.0000', '-1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-0.9300', '-1.0000', '2021-05-13', 'received', '0.9300', '0.9300', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9589, NULL, NULL, 2169, '97038500', 'GEBEDOL', NULL, '0.9800', '0.0000', '-3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-2.9400', '0.0000', '2021-05-13', 'received', '0.9800', '0.9800', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9590, NULL, NULL, 2136, '39315036', 'ALEVE', NULL, '0.9500', '0.0000', '-1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-0.9500', '-11.0000', '2021-05-13', 'received', '0.9500', '0.9500', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9591, NULL, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.3200', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-0.6400', '-2.0000', '2021-05-13', 'received', '0.3200', '0.3200', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9592, NULL, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.0600', '0.0000', '-1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-1.0600', '0.0000', '2021-05-13', 'received', '1.0600', '1.0600', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9593, NULL, NULL, 1303, 'PR-16', 'BASE BOOM JELLY', NULL, '1.3800', '0.0000', '-4.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-5.5200', '-4.0000', '2021-05-13', 'received', '1.3800', '1.3800', '-4.0000', NULL, NULL, 1, 'pc', '-4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9594, NULL, NULL, 1569, 'PR-282', 'TIGER CAPS', NULL, '14.2800', '0.0000', '-1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-14.2800', '-1.0000', '2021-05-13', 'received', '14.2800', '14.2800', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9595, NULL, NULL, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', NULL, '5.0000', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-10.0000', '-6.0000', '2021-05-13', 'received', '5.0000', '5.0000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9596, NULL, NULL, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '37.9000', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-75.8000', '-2.0000', '2021-05-13', 'received', '37.9000', '37.9000', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9597, NULL, NULL, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', NULL, '0.9300', '0.0000', '-1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-0.9300', '-1.0000', '2021-05-13', 'received', '0.9300', '0.9300', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9598, NULL, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.3200', '0.0000', '-2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-0.6400', '-2.0000', '2021-05-13', 'received', '0.3200', '0.3200', '-2.0000', NULL, NULL, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9599, NULL, NULL, 2540, '20509028', 'SPANISH FLY', NULL, '45.0000', '0.0000', '-1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-45.0000', '-1.0000', '2021-05-13', 'received', '45.0000', '45.0000', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9600, NULL, NULL, 2345, '37407616', 'PONSTAN CAPS 250MG', NULL, '7.6400', '0.0000', '-1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-7.6400', '-1.0000', '2021-05-13', 'received', '7.6400', '7.6400', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9601, NULL, NULL, 2342, '62530607', 'DICLO-DENK RECTAL SUPPOSITRY', NULL, '1.8600', '0.0000', '-5.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-9.3000', '-5.0000', '2021-05-13', 'received', '1.8600', '1.8600', '-5.0000', NULL, NULL, 1, 'pc', '-5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9602, NULL, NULL, 2076, '24451420', 'ZINVITE SYR', NULL, '8.0000', '0.0000', '-1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-8.0000', '-1.0000', '2021-05-13', 'received', '8.0000', '8.0000', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9603, NULL, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '0.0000', '-1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-35.8000', '-1.0000', '2021-05-13', 'received', '35.8000', '35.8000', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9604, NULL, NULL, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', NULL, '4.3900', '0.0000', '-1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '-4.3900', '0.0000', '2021-05-13', 'received', '4.3900', '4.3900', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9605, NULL, NULL, 1910, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-9.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9608, NULL, NULL, 1875, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9609, NULL, NULL, 2607, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9613, NULL, NULL, 2606, '79633078', 'MOSQUITO NET RING', NULL, '40.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '80.0000', '0.0000', '2021-05-15', 'received', '40.0000', '40.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9619, NULL, NULL, 2607, '65744915', 'maalox sachets', NULL, '1.4000', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '28.0000', '0.0000', '2021-05-15', 'received', '1.4000', '1.4000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9623, 105, NULL, 2608, '57349245', 'CELLGEVITY', NULL, '83.3300', '100.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '333.3200', '0.0000', '2021-05-17', 'received', '83.3300', '83.3300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '83.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9624, NULL, 58, 2608, '57349245', 'CELLGEVITY', NULL, '83.3300', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '333.3200', '1.0000', '2021-05-17', 'received', '83.3300', '83.3300', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9737, NULL, NULL, 1545, '8904091105816', 'CANDID V6 PESS 6\'S', NULL, '7.3500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '22.0500', '0.0000', '2021-05-18', 'received', '7.3500', '7.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9738, NULL, NULL, 2466, '574992', 'ZINCOFER CAPS', NULL, '13.5900', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '27.1800', '0.0000', '2021-05-18', 'received', '13.5900', '13.5900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9739, NULL, NULL, 2614, '96562826', 'WELLMAN CAPS', NULL, '52.5100', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '52.5100', '0.0000', '2021-05-18', 'received', '52.5100', '52.5100', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9740, NULL, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.6000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.8000', '0.0000', '2021-05-18', 'received', '8.6000', '8.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9741, NULL, NULL, 2615, '04025050', 'COOL EYES DROP', NULL, '12.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '37.5000', '0.0000', '2021-05-18', 'received', '12.5000', '12.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9742, NULL, NULL, 2616, '98204323', 'NIFEDI-DENK 10MG', NULL, '3.0000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.0000', '0.0000', '2021-05-18', 'received', '3.0000', '3.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9743, NULL, NULL, 2617, '33457681', 'NIFEDI-DENK 20MG', NULL, '4.4000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '44.0000', '-2.0000', '2021-05-18', 'received', '4.4000', '4.4000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9744, NULL, NULL, 2613, '76873738', 'OSTEOCARE SYR UK', NULL, '29.4500', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '29.4500', '0.0000', '2021-05-18', 'received', '29.4500', '29.4500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9745, NULL, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '5.9400', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '29.7000', '-7.0000', '2021-05-18', 'received', '5.9400', '5.9400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9746, NULL, NULL, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '24.6200', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '49.2400', '0.0000', '2021-05-18', 'received', '24.6200', '24.6200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9747, NULL, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '1.6300', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '8.1500', '-1.0000', '2021-05-18', 'received', '1.6300', '1.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9748, NULL, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '7.1600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '21.4800', '0.0000', '2021-05-18', 'received', '7.1600', '7.1600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9780, 104, NULL, 2606, '79633078', 'MOSQUITO NET RING', NULL, '40.0000', '53.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2021-05-14', 'received', '40.0000', '40.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '40.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9781, 104, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.4000', '3.4000', '22.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8000', '0.0000', '2021-05-14', 'received', '2.4000', '2.4000', '22.0000', NULL, NULL, 1, 'pc', '22.0000', NULL, NULL, NULL, NULL, '2.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9782, 104, NULL, 2607, '65744915', 'maalox sachets', NULL, '1.4000', '1.7000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2021-05-14', 'received', '1.4000', '1.4000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9783, 104, NULL, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '87.0000', '115.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.0000', '0.0000', '2021-05-14', 'received', '87.0000', '87.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '87.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9784, NULL, 57, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.4000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '48.0000', '9.0000', '2021-05-18', 'received', '2.4000', '2.4000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9785, NULL, 57, 2606, '79633078', 'MOSQUITO NET RING', NULL, '40.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '80.0000', '0.0000', '2021-05-18', 'received', '40.0000', '40.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9786, NULL, 57, 2607, '65744915', 'maalox sachets', NULL, '1.4000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.0000', '15.0000', '2021-05-18', 'received', '1.4000', '1.4000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9787, NULL, 57, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '87.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '174.0000', '0.0000', '2021-05-18', 'received', '87.0000', '87.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9807, NULL, NULL, 2271, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9836, NULL, NULL, 2618, '72760937', 'BUSCOMED TAB 10MG', NULL, '4.1000', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '205.0000', '-4.0000', '2021-05-18', 'received', '4.1000', '4.1000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9934, 109, NULL, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '10.0000', '13.0000', '9.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-05-19', 'received', '10.0000', '10.0000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9935, 109, NULL, 2037, '96125700', 'SURE  DEO SPRAY 250ML', NULL, '10.0000', '13.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-05-19', 'received', '10.0000', '10.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9936, 109, NULL, 2620, '10026169042122', 'BODY SPLASH (COCONUT FANTASY)', NULL, '21.0000', '23.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '0.0000', '2021-05-19', 'received', '21.0000', '21.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9937, 109, NULL, 2622, '79117239', 'COMBANTRIN', NULL, '19.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '0.0000', '2021-05-19', 'received', '19.0000', '19.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9938, 109, NULL, 2621, '24840700', 'ADIDAS BODY SPRAY', NULL, '12.0000', '14.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '3.0000', '2021-05-19', 'received', '12.0000', '12.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9939, NULL, 62, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '10.0000', '0.0000', '9.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.0000', '4.0000', '2021-05-19', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9940, NULL, 62, 2621, '24840700', 'ADIDAS BODY SPRAY', NULL, '12.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '3.0000', '2021-05-19', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9941, NULL, 62, 2037, '96125700', 'SURE  DEO SPRAY 250ML', NULL, '10.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '0.0000', '2021-05-19', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9942, NULL, 62, 2620, '10026169042122', 'BODY SPLASH (COCONUT FANTASY)', NULL, '21.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '63.0000', '2.0000', '2021-05-19', 'received', '21.0000', '21.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9943, NULL, 62, 2622, '79117239', 'COMBANTRIN', NULL, '19.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.0000', '0.0000', '2021-05-19', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9944, NULL, NULL, 2245, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9975, NULL, NULL, 2619, '34146625', 'XARELTO 20MG', NULL, '31.5000', '0.0000', '14.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '441.0000', '0.0000', '2021-05-20', 'received', '31.5000', '31.5000', '14.0000', NULL, NULL, 1, 'pc', '14.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10010, NULL, NULL, 2238, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10011, 106, NULL, 1487, '8902292000893', 'KETAZOL CREAM', NULL, '4.8700', '6.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.6100', '0.0000', '2021-05-18', 'received', '4.8700', '4.8700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10012, 106, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '12.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-05-18', 'received', '9.0000', '9.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10013, 106, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '10.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.9000', '0.0000', '2021-05-18', 'received', '7.8900', '7.8900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10014, 106, NULL, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '55.1600', '73.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '275.8000', '0.0000', '2021-05-18', 'received', '55.1600', '55.1600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '55.1600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10015, 106, NULL, 2609, '48137025', 'ABYVITA TABS', NULL, '2.8000', '4.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.2000', '0.0000', '2021-05-18', 'received', '2.8000', '2.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '2.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10016, 106, NULL, 2610, '70419862', 'APPLE CIDER VINEGER S/S 473ML', NULL, '40.0000', '52.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2021-05-18', 'received', '40.0000', '40.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '40.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10017, 106, NULL, 2319, '27607621', 'KN95 FACE MASK', NULL, '3.0000', '3.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-05-18', 'received', '3.0000', '3.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10018, 106, NULL, 2611, '55130336', 'BROWN SUGAR', NULL, '9.0000', '12.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-05-18', 'received', '9.0000', '9.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10019, 106, NULL, 2624, '71356473', 'POLAR ICE', NULL, '15.0000', '20.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-05-18', 'received', '15.0000', '15.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10020, NULL, NULL, 2609, '48137025', 'ABYVITA TABS', NULL, '2.8000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '11.2000', '0.0000', '2021-05-20', 'received', '2.8000', '2.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10021, NULL, NULL, 2610, '70419862', 'APPLE CIDER VINEGER S/S 473ML', NULL, '40.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '80.0000', '-1.0000', '2021-05-20', 'received', '40.0000', '40.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10022, NULL, NULL, 2611, '55130336', 'BROWN SUGAR', NULL, '9.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '54.0000', '0.0000', '2021-05-20', 'received', '9.0000', '9.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10023, NULL, 59, 2611, '55130336', 'BROWN SUGAR', NULL, '9.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.0000', '4.0000', '2021-05-20', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10024, NULL, 59, 2319, '27607621', 'KN95 FACE MASK', NULL, '3.0000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '10.0000', '2021-05-20', 'received', '3.0000', '3.0000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10025, NULL, 59, 2610, '70419862', 'APPLE CIDER VINEGER S/S 473ML', NULL, '40.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '80.0000', '1.0000', '2021-05-20', 'received', '40.0000', '40.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10026, NULL, 59, 2609, '48137025', 'ABYVITA TABS', NULL, '2.8000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.2000', '3.0000', '2021-05-20', 'received', '2.8000', '2.8000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10027, NULL, 59, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '55.1600', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '275.8000', '4.0000', '2021-05-20', 'received', '55.1600', '55.1600', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10028, NULL, 59, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.9000', '3.0000', '2021-05-20', 'received', '7.8900', '7.8900', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10029, NULL, 59, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '3.0000', '2021-05-20', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10030, NULL, 59, 1487, '8902292000893', 'KETAZOL CREAM', NULL, '4.8700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.6100', '1.0000', '2021-05-20', 'received', '4.8700', '4.8700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10031, NULL, 59, 2624, '71356473', 'POLAR ICE', NULL, '15.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '2.0000', '2021-05-20', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10032, NULL, NULL, 2480, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10033, 107, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '7.8500', '11.0000', '15.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.7500', '0.0000', '2021-05-18', 'received', '7.8500', '7.8500', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '7.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10034, 107, NULL, 1545, '8904091105816', 'CANDID V6 PESS 6\'S', NULL, '7.3500', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0500', '0.0000', '2021-05-18', 'received', '7.3500', '7.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10035, 107, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '18.8000', '24.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.6000', '0.0000', '2021-05-18', 'received', '18.8000', '18.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10036, 107, NULL, 2466, '574992', 'ZINCOFER CAPS', NULL, '13.5900', '18.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.1800', '0.0000', '2021-05-18', 'received', '13.5900', '13.5900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10037, 107, NULL, 2541, '39996904', 'DEMACOT CREAM', NULL, '9.7500', '13.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2500', '0.0000', '2021-05-18', 'received', '9.7500', '9.7500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10038, 107, NULL, 2593, '8850769013252', 'GINSOMIN CAPS', NULL, '14.4000', '19.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.4000', '6.0000', '2021-05-18', 'received', '14.4000', '14.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '14.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10039, 107, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.6000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '0.0000', '2021-05-18', 'received', '8.6000', '8.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10040, 107, NULL, 1619, 'PR-332', 'KLINDA300MG', NULL, '9.8500', '13.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.5000', '0.0000', '2021-05-18', 'received', '9.8500', '9.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10041, 107, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '2.0000', '24.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2021-05-18', 'received', '1.3000', '1.3000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10042, 107, NULL, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', NULL, '29.4000', '39.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '0.0000', '2021-05-18', 'received', '29.4000', '29.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10043, 107, NULL, 2613, '76873738', 'OSTEOCARE SYR UK', NULL, '29.4500', '39.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4500', '0.0000', '2021-05-18', 'received', '29.4500', '29.4500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '29.4500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10044, 107, NULL, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '14.3000', '18.8800', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6000', '0.0000', '2021-05-18', 'received', '14.3000', '14.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10045, 107, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '5.9400', '8.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.7000', '0.0000', '2021-05-18', 'received', '5.9400', '5.9400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10046, 107, NULL, 2068, '79519848', 'LUFART DS', NULL, '13.0100', '17.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0500', '0.0000', '2021-05-18', 'received', '13.0100', '13.0100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.0100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10047, 107, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '48.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.6000', '0.0000', '2021-05-18', 'received', '35.8000', '35.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10048, 107, NULL, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '22.7100', '32.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.4200', '0.0000', '2021-05-18', 'received', '22.7100', '22.7100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.7100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10049, 107, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '1.6300', '3.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.1500', '0.0000', '2021-05-18', 'received', '1.6300', '1.6300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '1.6300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10050, 107, NULL, 2582, '81054441', 'AZILEX SUSP', NULL, '11.5000', '30.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '0.0000', '2021-05-18', 'received', '11.5000', '11.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10051, 107, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '7.1600', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.4800', '0.0000', '2021-05-18', 'received', '7.1600', '7.1600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.1600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10052, 107, NULL, 2614, '96562826', 'WELLMAN CAPS', NULL, '52.5100', '70.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5100', '0.0000', '2021-05-18', 'received', '52.5100', '52.5100', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '52.5100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10053, 107, NULL, 2615, '04025050', 'COOL EYES DROP', NULL, '12.5000', '16.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-05-18', 'received', '12.5000', '12.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10054, 107, NULL, 2616, '98204323', 'NIFEDI-DENK 10MG', NULL, '3.0000', '4.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-05-18', 'received', '3.0000', '3.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10055, 107, NULL, 2617, '33457681', 'NIFEDI-DENK 20MG', NULL, '4.4000', '6.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-05-18', 'received', '4.4000', '4.4000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10056, 107, NULL, 2618, '72760937', 'BUSCOMED TAB 10MG', NULL, '4.1000', '5.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '205.0000', '0.0000', '2021-05-18', 'received', '4.1000', '4.1000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '4.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10057, 107, NULL, 2305, '18430069', 'NO-SPA 40MG S/S 20\'S', NULL, '6.6000', '9.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-05-18', 'received', '6.6000', '6.6000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10058, 107, NULL, 2345, '37407616', 'PONSTAN CAPS 250MG', NULL, '8.0000', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-05-18', 'received', '8.0000', '8.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10059, 107, NULL, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS', NULL, '55.4500', '72.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.9000', '0.0000', '2021-05-18', 'received', '55.4500', '55.4500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '55.4500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10060, 107, NULL, 1725, '7321839721397', 'ATACAND TABLETS 16MG 28\'', NULL, '71.4500', '94.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '285.8000', '0.0000', '2021-05-18', 'received', '71.4500', '71.4500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '71.4500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10061, 107, NULL, 2619, '34146625', 'XARELTO 20MG', NULL, '31.5000', '41.5000', '14.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '441.0000', '0.0000', '2021-05-18', 'received', '31.5000', '31.5000', '14.0000', NULL, NULL, 1, 'pc', '14.0000', NULL, NULL, NULL, NULL, '31.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10062, 107, NULL, 2623, '01976331', 'BENDROFLUZIDE 2.5MG UK CRESCENT', NULL, '4.3000', '5.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.9000', '0.0000', '2021-05-18', 'received', '4.3000', '4.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10063, 107, NULL, 2625, '18152598', 'Olfen Gel', NULL, '17.0000', '23.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-05-18', 'received', '17.0000', '17.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10064, NULL, NULL, 2623, '01976331', 'BENDROFLUZIDE 2.5MG UK CRESCENT', NULL, '4.3000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '12.9000', '0.0000', '2021-05-21', 'received', '4.3000', '4.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10162, NULL, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '32.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '65.0000', '2.0000', '2021-05-22', 'received', '32.5000', '32.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10163, NULL, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '17.7300', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '35.4600', '3.0000', '2021-05-22', 'received', '17.7300', '17.7300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10164, NULL, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '22.5000', '5.0000', '2021-05-22', 'received', '7.5000', '7.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10165, NULL, NULL, 2168, '8901082004356', 'APTIZOOOM', NULL, '26.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '78.0000', '1.0000', '2021-05-22', 'received', '26.0000', '26.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10166, NULL, NULL, 2505, '28562016', 'ORELOX 100MG TABLETS', NULL, '68.5900', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '68.5900', '0.0000', '2021-05-22', 'received', '68.5900', '68.5900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10167, NULL, NULL, 2518, '51929198', 'TAVANIC 500MG', NULL, '107.1800', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '107.1800', '2.0000', '2021-05-22', 'received', '107.1800', '107.1800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10168, NULL, NULL, 2626, '10089309', 'OSTECARE TABS INDIA', NULL, '7.8800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '23.6400', '0.0000', '2021-05-22', 'received', '7.8800', '7.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10169, NULL, NULL, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '5.5000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '27.5000', '5.0000', '2021-05-22', 'received', '5.5000', '5.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10196, 111, NULL, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', NULL, '41.3700', '54.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.3700', '0.0000', '2021-05-22', 'received', '41.3700', '41.3700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '41.3700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10197, 111, NULL, 1981, '6186000077168', 'EVERSHEEN CREAM BIG', NULL, '8.5000', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2021-05-22', 'received', '8.5000', '8.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10198, 111, NULL, 1982, '6186000077267', 'EVERSHEEN CREAM SMALL', NULL, '4.5000', '7.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '0.0000', '2021-05-22', 'received', '4.5000', '4.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10199, 111, NULL, 1973, '6181100533101', 'CARO WHITE SHOWER GEL', NULL, '13.0000', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-05-22', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10200, 111, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '2.5000', '3.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '0.0000', '2021-05-22', 'received', '2.5000', '2.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10201, 111, NULL, 2628, '92643129', 'ADOM NATURAL MAN MIXTURE', NULL, '12.5000', '16.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-05-22', 'received', '12.5000', '12.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10202, 111, NULL, 2629, '80991602', 'LIQUID SANITIZER', NULL, '10.0000', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-05-22', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10203, 111, NULL, 2630, '61266775', 'CARO WHITE OIL', NULL, '4.0000', '6.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-05-22', 'received', '4.0000', '4.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10204, 111, NULL, 2631, '30731680', 'CARO WHITE SAOP', NULL, '5.0000', '7.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-05-22', 'received', '5.0000', '5.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10205, 111, NULL, 2632, '92106440', 'CARO WHITE LOTION', NULL, '9.5000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '0.0000', '2021-05-22', 'received', '9.5000', '9.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10206, 111, NULL, 2627, '47630599', 'ATORVASTATIN 10MG', NULL, '10.5000', '14.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2021-05-22', 'received', '10.5000', '10.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10207, NULL, 64, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', NULL, '41.3700', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '41.3700', '0.0000', '2021-05-22', 'received', '41.3700', '41.3700', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10208, NULL, 64, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '2.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.5000', '3.0000', '2021-05-22', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10209, NULL, 64, 2628, '92643129', 'ADOM NATURAL MAN MIXTURE', NULL, '12.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.5000', '3.0000', '2021-05-22', 'received', '12.5000', '12.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10210, NULL, 64, 2629, '80991602', 'LIQUID SANITIZER', NULL, '10.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '2.0000', '2021-05-22', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10211, NULL, 64, 1981, '6186000077168', 'EVERSHEEN CREAM BIG', NULL, '8.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.5000', '2.0000', '2021-05-22', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10212, NULL, 64, 1982, '6186000077267', 'EVERSHEEN CREAM SMALL', NULL, '4.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.5000', '2.0000', '2021-05-22', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10213, NULL, 64, 1973, '6181100533101', 'CARO WHITE SHOWER GEL', NULL, '13.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.0000', '1.0000', '2021-05-22', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10214, NULL, 64, 1973, '6181100533101', 'CARO WHITE SHOWER GEL', NULL, '13.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.0000', '1.0000', '2021-05-22', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10215, NULL, 64, 1973, '6181100533101', 'CARO WHITE SHOWER GEL', NULL, '13.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.0000', '1.0000', '2021-05-22', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10216, NULL, 64, 2630, '61266775', 'CARO WHITE OIL', NULL, '4.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.0000', '3.0000', '2021-05-22', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10217, NULL, 64, 2631, '30731680', 'CARO WHITE SAOP', NULL, '5.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '1.0000', '2021-05-22', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10218, NULL, 64, 2632, '92106440', 'CARO WHITE LOTION', NULL, '9.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.5000', '3.0000', '2021-05-22', 'received', '9.5000', '9.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10219, NULL, 64, 2627, '47630599', 'ATORVASTATIN 10MG', NULL, '10.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.5000', '2.0000', '2021-05-22', 'received', '10.5000', '10.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10224, NULL, NULL, 2024, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10225, 108, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '5.3000', '7.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.6000', '0.0000', '2021-05-18', 'received', '5.3000', '5.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10226, 108, NULL, 1402, 'PR-115', 'ERNEST OINT(200)', NULL, '2.2000', '3.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '0.0000', '2021-05-18', 'received', '2.2000', '2.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10227, 108, NULL, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', NULL, '14.0000', '18.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-05-18', 'received', '14.0000', '14.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10228, 108, NULL, 2394, '14717379', 'MAAME DAGOMBA', NULL, '4.0000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-05-18', 'received', '4.0000', '4.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10229, 108, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '9.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '0.0000', '2021-05-18', 'received', '6.5000', '6.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10230, 108, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-05-18', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10231, 108, NULL, 1430, 'PR-143', 'SOLAK MIXTURE(25)', NULL, '13.0000', '17.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-05-18', 'received', '13.0000', '13.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10232, 108, NULL, 2395, '99288830', 'TINATETT 230', NULL, '27.0000', '35.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-05-18', 'received', '27.0000', '27.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10233, 108, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '21.5000', '28.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '0.0000', '2021-05-18', 'received', '21.5000', '21.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10234, 108, NULL, 2633, '36871243', 'GANA BALM', NULL, '3.5000', '5.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2021-05-18', 'received', '3.5000', '3.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10235, NULL, 61, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '21.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.0000', '1.0000', '2021-05-24', 'received', '21.5000', '21.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10236, NULL, 61, 2395, '99288830', 'TINATETT 230', NULL, '27.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.0000', '2.0000', '2021-05-24', 'received', '27.0000', '27.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10237, NULL, 61, 1430, 'PR-143', 'SOLAK MIXTURE(25)', NULL, '13.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '0.0000', '2021-05-24', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10238, NULL, 61, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-24', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10239, NULL, 61, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '0.0000', '2021-05-24', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10240, NULL, 61, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.5000', '2.0000', '2021-05-24', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10241, NULL, 61, 2394, '14717379', 'MAAME DAGOMBA', NULL, '4.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '3.0000', '2021-05-24', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10242, NULL, 61, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', NULL, '14.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.0000', '0.0000', '2021-05-24', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10243, NULL, 61, 1402, 'PR-115', 'ERNEST OINT(200)', NULL, '2.2000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.0000', '2.0000', '2021-05-24', 'received', '2.2000', '2.2000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10244, NULL, 61, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '5.3000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.6000', '0.0000', '2021-05-24', 'received', '5.3000', '5.3000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10245, NULL, 61, 2633, '36871243', 'GANA BALM', NULL, '3.5000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.0000', '6.0000', '2021-05-24', 'received', '3.5000', '3.5000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10246, NULL, NULL, 1657, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-161.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10247, NULL, NULL, 2299, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10248, NULL, NULL, 2634, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10249, 110, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '20.6900', '28.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0700', '0.0000', '2021-05-21', 'received', '20.6900', '20.6900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10250, 110, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '35.6000', '47.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.8000', '0.0000', '2021-05-21', 'received', '35.6000', '35.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '35.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10251, 110, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '35.0000', '43.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2021-05-21', 'received', '35.0000', '35.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10252, 110, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '20.0000', '26.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-05-21', 'received', '20.0000', '20.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10253, 110, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '18.5000', '24.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '0.0000', '2021-05-21', 'received', '18.5000', '18.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10254, 110, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '17.7300', '24.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4600', '0.0000', '2021-05-21', 'received', '17.7300', '17.7300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.7300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10255, 110, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.2000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '0.0000', '2021-05-21', 'received', '9.2000', '9.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10256, 110, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '10.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.8000', '0.0000', '2021-05-21', 'received', '7.8900', '7.8900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '7.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10257, 110, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.8800', '9.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6400', '0.0000', '2021-05-21', 'received', '7.8800', '7.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10258, 110, NULL, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', NULL, '14.6000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.8000', '0.0000', '2021-05-21', 'received', '14.6000', '14.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10259, 110, NULL, 2168, '8901082004356', 'APTIZOOOM', NULL, '26.0000', '38.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-05-21', 'received', '26.0000', '26.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10260, 110, NULL, 1636, '4031571069116', 'VIT-B DENK', NULL, '9.8000', '13.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '196.0000', '0.0000', '2021-05-21', 'received', '9.8000', '9.8000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '9.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10261, 110, NULL, 2505, '28562016', 'ORELOX 100MG TABLETS', NULL, '68.5900', '90.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.5900', '0.0000', '2021-05-21', 'received', '68.5900', '68.5900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '68.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10262, 110, NULL, 2518, '51929198', 'TAVANIC 500MG', NULL, '107.1800', '140.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.1800', '0.0000', '2021-05-21', 'received', '107.1800', '107.1800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '107.1800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10263, 110, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '26.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0600', '0.0000', '2021-05-21', 'received', '19.0200', '19.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10264, 110, NULL, 2626, '10089309', 'OSTECARE TABS INDIA', NULL, '7.8800', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6400', '0.0000', '2021-05-21', 'received', '7.8800', '7.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10265, 110, NULL, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '39.0000', '51.0000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '312.0000', '0.0000', '2021-05-21', 'received', '39.0000', '39.0000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '39.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10266, 110, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.8700', '3.8000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.1000', '0.0000', '2021-05-21', 'received', '2.8700', '2.8700', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10267, 110, NULL, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', NULL, '2.9900', '4.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.9400', '0.0000', '2021-05-21', 'received', '2.9900', '2.9900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10268, 110, NULL, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '5.5000', '7.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2021-05-21', 'received', '5.5000', '5.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10269, 110, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '8.7600', '11.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.2800', '0.0000', '2021-05-21', 'received', '8.7600', '8.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.7600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10270, 110, NULL, 2635, '2208744', 'PLASTER S/S', NULL, '3.0000', '4.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-05-21', 'received', '3.0000', '3.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10271, 110, NULL, 2634, '20074246', 'COTTON SKIN ESSENTIALS', NULL, '12.0000', '15.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-05-21', 'received', '12.0000', '12.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10296, NULL, NULL, 2634, '20074246', 'COTTON SKIN ESSENTIALS/ORGANIC', NULL, '12.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '72.0000', '0.0000', '2021-05-25', 'received', '12.0000', '12.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10297, NULL, NULL, 2635, '2208744', 'PLASTER ROLL S/S', NULL, '3.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '-1.0000', '2021-05-25', 'received', '3.0000', '3.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10298, NULL, 63, 2635, '2208744', 'PLASTER ROLL S/S', NULL, '3.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-25', 'received', '3.0000', '3.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10299, NULL, 63, 2634, '20074246', 'COTTON SKIN ESSENTIALS/ORGANIC', NULL, '12.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.0000', '2.0000', '2021-05-25', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10300, NULL, 63, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '5.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.5000', '0.0000', '2021-05-25', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10301, NULL, 63, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', NULL, '2.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '0.0000', '2021-05-25', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10302, NULL, 63, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.8700', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '86.1000', '0.0000', '2021-05-25', 'received', '2.8700', '2.8700', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10303, NULL, 63, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '39.0000', '0.0000', '8.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '312.0000', '2.0000', '2021-05-25', 'received', '39.0000', '39.0000', NULL, NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10304, NULL, 63, 2626, '10089309', 'OSTECARE TABS INDIA', NULL, '7.8800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.6400', '2.0000', '2021-05-25', 'received', '7.8800', '7.8800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10305, NULL, 63, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.0600', '0.0000', '2021-05-25', 'received', '19.0200', '19.0200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10306, NULL, 63, 2518, '51929198', 'TAVANIC 500MG', NULL, '107.1800', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '107.1800', '0.0000', '2021-05-25', 'received', '107.1800', '107.1800', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10307, NULL, 63, 2505, '28562016', 'ORELOX 100MG TABLETS', NULL, '68.5900', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '68.5900', '1.0000', '2021-05-25', 'received', '68.5900', '68.5900', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10308, NULL, 63, 1636, '4031571069116', 'VIT-B DENK', NULL, '9.8000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '196.0000', '10.0000', '2021-05-25', 'received', '9.8000', '9.8000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10309, NULL, 63, 2168, '8901082004356', 'APTIZOOOM', NULL, '26.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.0000', '0.0000', '2021-05-25', 'received', '26.0000', '26.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10310, NULL, 63, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', NULL, '14.6000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.8000', '0.0000', '2021-05-25', 'received', '14.6000', '14.6000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10311, NULL, 63, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.5000', '0.0000', '2021-05-25', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10312, NULL, 63, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '157.8000', '2.0000', '2021-05-25', 'received', '7.8900', '7.8900', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10313, NULL, 63, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.2000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.6000', '0.0000', '2021-05-25', 'received', '9.2000', '9.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10314, NULL, 63, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '17.7300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.4600', '0.0000', '2021-05-25', 'received', '17.7300', '17.7300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10315, NULL, 63, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '17.8000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.8000', '0.0000', '2021-05-25', 'received', '17.8000', '17.8000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10316, NULL, 63, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '17.8000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.8000', '0.0000', '2021-05-25', 'received', '17.8000', '17.8000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10317, NULL, 63, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '20.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '3.0000', '2021-05-25', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10318, NULL, 63, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '32.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '65.0000', '0.0000', '2021-05-25', 'received', '32.5000', '32.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10319, NULL, 63, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '35.6000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '106.8000', '0.0000', '2021-05-25', 'received', '35.6000', '35.6000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10320, NULL, 63, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '18.6100', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.8300', '2.0000', '2021-05-25', 'received', '18.6100', '18.6100', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10321, NULL, 63, 2547, '30290939', 'VISCOF S SYR', NULL, '8.7600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.2800', '1.0000', '2021-05-25', 'received', '8.7600', '8.7600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10322, NULL, 63, 2144, '4316268448895', 'PROLIFE  VITC', NULL, '15.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '180.0000', '0.0000', '2021-05-25', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10323, NULL, 63, 2169, '97038500', 'GEBEDOL', NULL, '0.9800', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.6000', '0.0000', '2021-05-25', 'received', '0.9800', '0.9800', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10324, NULL, NULL, 2150, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10325, NULL, NULL, 2552, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10326, NULL, NULL, 2636, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10360, 113, NULL, 2636, '86196755', 'KIDIMIN SYR', NULL, '7.5000', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-05-25', 'received', '7.5000', '7.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10361, 113, NULL, 2637, '30755055', 'KIDICARE SYR', NULL, '10.0000', '13.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-05-25', 'received', '10.0000', '10.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10362, 113, NULL, 1737, '8901040310307', 'PREGNACIN PLUS CAPS 60\'', NULL, '46.9800', '62.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.9600', '0.0000', '2021-05-25', 'received', '46.9800', '46.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '46.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10363, 113, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '13.3000', '17.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9000', '0.0000', '2021-05-25', 'received', '13.3000', '13.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10364, 113, NULL, 2492, '51417644', 'NIZORAL SHAMPOO', NULL, '21.9900', '30.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.9800', '0.0000', '2021-05-25', 'received', '21.9900', '21.9900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10365, 113, NULL, 1480, '5011501006519', 'DEEP FREEZE SPRAY', NULL, '29.5000', '38.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.5000', '0.0000', '2021-05-25', 'received', '29.5000', '29.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '29.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10366, 113, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.4800', '3.4000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.2000', '0.0000', '2021-05-25', 'received', '2.4800', '2.4800', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.4800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10367, 113, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '14.7700', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.3100', '0.0000', '2021-05-25', 'received', '14.7700', '14.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.7700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10368, 113, NULL, 2271, '9556100104342', 'FLUCOR DAY', NULL, '12.0000', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-05-25', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10369, 113, NULL, 1707, 'PR-420', 'MEDGLOBIN CAPS', NULL, '25.5000', '33.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2021-05-25', 'received', '25.5000', '25.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10370, 113, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.2100', '11.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '246.3000', '0.0000', '2021-05-25', 'received', '8.2100', '8.2100', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '8.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10371, 113, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '12.7000', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.1000', '0.0000', '2021-05-25', 'received', '12.7000', '12.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10372, 113, NULL, 1564, '3838989544225', 'TADOL 100MG', NULL, '2.6000', '4.0000', '90.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '0.0000', '2021-05-25', 'received', '2.6000', '2.6000', '90.0000', NULL, NULL, 1, 'pc', '90.0000', NULL, NULL, NULL, NULL, '2.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10373, 113, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.1500', '4.5000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '0.0000', '2021-05-25', 'received', '3.1500', '3.1500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10374, 113, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.0000', '3.0000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-05-25', 'received', '2.0000', '2.0000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10375, 113, NULL, 1708, 'PR-421', 'MEDGLOBIN SYR', NULL, '20.1900', '26.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.5700', '0.0000', '2021-05-25', 'received', '20.1900', '20.1900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.1900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10376, 113, NULL, 2638, '71491998', 'SUDOCREAM 60G S/S', NULL, '19.6200', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8600', '0.0000', '2021-05-25', 'received', '19.6200', '19.6200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10377, NULL, NULL, 2637, '30755055', 'KIDICARE SYR', NULL, '10.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.0000', '0.0000', '2021-05-25', 'received', '10.0000', '10.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10378, NULL, NULL, 2636, '86196755', 'KIDIMIN SYR', NULL, '7.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '22.5000', '1.0000', '2021-05-25', 'received', '7.5000', '7.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10379, NULL, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '13.3000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '39.9000', '2.0000', '2021-05-25', 'received', '13.3000', '13.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10380, NULL, NULL, 1707, 'PR-420', 'MEDGLOBIN CAPS', NULL, '25.1200', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '50.2400', '0.0000', '2021-05-25', 'received', '25.1200', '25.1200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10381, NULL, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.0500', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '91.5000', '0.0000', '2021-05-25', 'received', '3.0500', '3.0500', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10382, NULL, NULL, 1708, 'PR-421', 'MEDGLOBIN SYR', NULL, '20.1900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '60.5700', '-1.0000', '2021-05-25', 'received', '20.1900', '20.1900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10383, NULL, 66, 1708, 'PR-421', 'MEDGLOBIN SYR', NULL, '20.1900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.5700', '1.0000', '2021-05-25', 'received', '20.1900', '20.1900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10384, NULL, 66, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.0000', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '0.0000', '2021-05-25', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10385, NULL, 66, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.0500', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '91.5000', '2.0000', '2021-05-25', 'received', '3.0500', '3.0500', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10386, NULL, 66, 1564, '3838989544225', 'TADOL 100MG', NULL, '2.6000', '0.0000', '90.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '234.0000', '90.0000', '2021-05-25', 'received', '2.6000', '2.6000', NULL, NULL, NULL, 1, 'pc', '90.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10387, NULL, 66, 1668, '8906016831572', 'Acidom Caps', NULL, '12.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.1000', '0.0000', '2021-05-25', 'received', '12.7000', '12.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10388, NULL, 66, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.2100', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '246.3000', '0.0000', '2021-05-25', 'received', '8.2100', '8.2100', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10389, NULL, 66, 1707, 'PR-420', 'MEDGLOBIN CAPS', NULL, '25.1200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.2400', '0.0000', '2021-05-25', 'received', '25.1200', '25.1200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10390, NULL, 66, 2271, '9556100104342', 'FLUCOR DAY', NULL, '12.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '2.0000', '2021-05-25', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10391, NULL, 66, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '14.7700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.3100', '1.0000', '2021-05-25', 'received', '14.7700', '14.7700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10392, NULL, 66, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.4000', '0.0000', '40.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '96.0000', '10.0000', '2021-05-25', 'received', '2.4000', '2.4000', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10393, NULL, 66, 1480, '5011501006519', 'DEEP FREEZE SPRAY', NULL, '29.0900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '87.2700', '1.0000', '2021-05-25', 'received', '29.0900', '29.0900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10394, NULL, 66, 2492, '51417644', 'NIZORAL SHAMPOO', NULL, '21.9900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.9800', '0.0000', '2021-05-25', 'received', '21.9900', '21.9900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10395, NULL, 66, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '13.3000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.9000', '0.0000', '2021-05-25', 'received', '13.3000', '13.3000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10396, NULL, 66, 1737, '8901040310307', 'PREGNACIN PLUS CAPS 60\'', NULL, '46.9800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '93.9600', '2.0000', '2021-05-25', 'received', '46.9800', '46.9800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10397, NULL, 66, 2636, '86196755', 'KIDIMIN SYR', NULL, '7.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.5000', '2.0000', '2021-05-25', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10398, NULL, 66, 2637, '30755055', 'KIDICARE SYR', NULL, '10.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '2.0000', '2021-05-25', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10399, NULL, 66, 2638, '71491998', 'SUDOCREAM 60G S/S', NULL, '19.6200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '58.8600', '3.0000', '2021-05-25', 'received', '19.6200', '19.6200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10400, 114, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '17.0000', '22.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-05-25', 'received', '17.0000', '17.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10401, 114, NULL, 2392, '10965636', 'CHOCHO SAOP', NULL, '3.7000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2021-05-25', 'received', '3.7000', '3.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10402, 114, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '9.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-05-25', 'received', '6.5000', '6.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10403, 114, NULL, 1431, 'PR-144', 'SPARNIS GARLIC MIXTURE(30)', NULL, '11.0000', '15.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '1.0000', '2021-05-25', 'received', '11.0000', '11.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10404, NULL, 67, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '17.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.0000', '0.0000', '2021-05-25', 'received', '17.0000', '17.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10405, NULL, 67, 2392, '10965636', 'CHOCHO SAOP', NULL, '3.7000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.5000', '3.0000', '2021-05-25', 'received', '3.7000', '3.7000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10406, NULL, 67, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.0000', '2.0000', '2021-05-25', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10407, NULL, 67, 1431, 'PR-144', 'SPANISH GARLIC MIXTURE(30)', NULL, '11.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.0000', '4.0000', '2021-05-25', 'received', '11.0000', '11.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10444, NULL, NULL, 1831, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10445, NULL, NULL, 1550, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10483, NULL, NULL, 2463, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10484, NULL, NULL, 2355, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10523, NULL, NULL, 2625, '18152598', 'Olfen Gel', NULL, '17.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '34.0000', '0.0000', '2021-05-26', 'received', '17.0000', '17.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10524, NULL, 60, 2623, '01976331', 'BENDROFLUZIDE 2.5MG UK CRESCENT', NULL, '4.3000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.9000', '0.0000', '2021-05-26', 'received', '4.3000', '4.3000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10525, NULL, 60, 1725, '7321839721397', 'ATACAND TABLETS 16MG 28\'', NULL, '71.4500', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '285.8000', '3.0000', '2021-05-26', 'received', '71.4500', '71.4500', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10526, NULL, 60, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '7.1600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.4800', '1.0000', '2021-05-26', 'received', '7.1600', '7.1600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10527, NULL, 60, 2582, '81054441', 'AZILEX SUSP', NULL, '11.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.5000', '0.0000', '2021-05-26', 'received', '11.5000', '11.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10528, NULL, 60, 1493, 'PR-206', 'GV PAINT', NULL, '1.6300', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.1500', '0.0000', '2021-05-26', 'received', '1.6300', '1.6300', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10529, NULL, 60, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.8000', '0.0000', '2021-05-26', 'received', '35.8000', '35.8000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10530, NULL, 60, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '24.6200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.2400', '0.0000', '2021-05-26', 'received', '24.6200', '24.6200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10531, NULL, 60, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.8000', '0.0000', '2021-05-26', 'received', '35.8000', '35.8000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10532, NULL, 60, 2068, '79519848', 'LUFART DS', NULL, '11.8000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '59.0000', '0.0000', '2021-05-26', 'received', '11.8000', '11.8000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10533, NULL, 60, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '5.9400', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.7000', '0.0000', '2021-05-26', 'received', '5.9400', '5.9400', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10534, NULL, 60, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '13.6000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.2000', '0.0000', '2021-05-26', 'received', '13.6000', '13.6000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10535, NULL, 60, 2613, '76873738', 'OSTEOCARE SYR UK', NULL, '29.4500', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.4500', '0.0000', '2021-05-26', 'received', '29.4500', '29.4500', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10536, NULL, 60, 2617, '33457681', 'NIFEDI-DENK 20MG', NULL, '4.4000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.0000', '2.0000', '2021-05-26', 'received', '4.4000', '4.4000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10537, NULL, 60, 2616, '98204323', 'NIFEDI-DENK 10MG', NULL, '3.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '6.0000', '2021-05-26', 'received', '3.0000', '3.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10538, NULL, 60, 2615, '04025050', 'COOL EYES DROP', NULL, '12.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.5000', '1.0000', '2021-05-26', 'received', '12.5000', '12.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10539, NULL, 60, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', NULL, '25.4200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.8400', '0.0000', '2021-05-26', 'received', '25.4200', '25.4200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10540, NULL, 60, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '0.0000', '24.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.2000', '0.0000', '2021-05-26', 'received', '1.3000', '1.3000', NULL, NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10541, NULL, 60, 1619, 'PR-332', 'KLINDA300MG', NULL, '9.8500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '98.5000', '0.0000', '2021-05-26', 'received', '9.8500', '9.8500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10542, NULL, 60, 2511, '81055477', 'DUROL 300ML', NULL, '8.6000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.8000', '0.0000', '2021-05-26', 'received', '8.6000', '8.6000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10543, NULL, 60, 2383, '32782648', 'GINSOMIN EVE', NULL, '16.3000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.6000', '2.0000', '2021-05-26', 'received', '16.3000', '16.3000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10544, NULL, 60, 2383, '32782648', 'GINSOMIN EVE', NULL, '16.3000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.6000', '2.0000', '2021-05-26', 'received', '16.3000', '16.3000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10545, NULL, 60, 2383, '32782648', 'GINSOMIN EVE', NULL, '16.3000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.6000', '2.0000', '2021-05-26', 'received', '16.3000', '16.3000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10546, NULL, 60, 2614, '96562826', 'WELLMAN CAPS', NULL, '52.5100', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.5100', '0.0000', '2021-05-26', 'received', '52.5100', '52.5100', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10547, NULL, 60, 2541, '39996904', 'DEMACOT CREAM', NULL, '9.7500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.2500', '1.0000', '2021-05-26', 'received', '9.7500', '9.7500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10548, NULL, 60, 2466, '574992', 'ZINCOFER CAPS', NULL, '13.5900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.1800', '0.0000', '2021-05-26', 'received', '13.5900', '13.5900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10549, NULL, 60, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.4900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.9800', '0.0000', '2021-05-26', 'received', '17.4900', '17.4900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10550, NULL, 60, 1545, '8904091105816', 'CANDID V6 PESS 6\'S', NULL, '7.3500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.0500', '2.0000', '2021-05-26', 'received', '7.3500', '7.3500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10551, NULL, 60, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '7.8500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.2500', '1.0000', '2021-05-26', 'received', '7.8500', '7.8500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10552, NULL, 60, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '7.8500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.5000', '10.0000', '2021-05-26', 'received', '7.8500', '7.8500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10553, NULL, 60, 2618, '72760937', 'BUSCOMED TAB 10MG', NULL, '4.1000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '205.0000', '27.0000', '2021-05-26', 'received', '4.1000', '4.1000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10554, NULL, 60, 2345, '37407616', 'PONSTAN CAPS 250MG', NULL, '7.6400', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.2000', '1.0000', '2021-05-26', 'received', '7.6400', '7.6400', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10555, NULL, 60, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS', NULL, '55.4500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '110.9000', '2.0000', '2021-05-26', 'received', '55.4500', '55.4500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10556, NULL, 60, 2305, '18430069', 'NO-SPA 40MG S/S 20\'S', NULL, '1.3300', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.6500', '0.0000', '2021-05-26', 'received', '1.3300', '1.3300', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10557, NULL, 60, 2619, '34146625', 'XARELTO 20MG', NULL, '31.5000', '0.0000', '14.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '441.0000', '0.0000', '2021-05-26', 'received', '31.5000', '31.5000', NULL, NULL, NULL, 1, 'pc', '14.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10558, NULL, 60, 2625, '18152598', 'Olfen Gel', NULL, '17.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.0000', '1.0000', '2021-05-26', 'received', '17.0000', '17.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10562, NULL, NULL, 2473, '12094351', 'RIGHT GUARD SPRAY', NULL, '12.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '60.0000', '0.0000', '2021-05-26', 'received', '12.0000', '12.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10566, NULL, NULL, 2135, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10567, NULL, NULL, 1329, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10568, NULL, NULL, 2457, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10569, 112, NULL, 2473, '12094351', 'RIGHT GUARD SPRAY', NULL, '12.0000', '15.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-05-22', 'received', '12.0000', '12.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10570, 112, NULL, 2131, '4005900098238', 'NIVEA SPRAY 150ML', NULL, '12.0000', '15.0000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '0.0000', '2021-05-22', 'received', '12.0000', '12.0000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10571, 112, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '7.5000', '10.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-05-22', 'received', '7.5000', '7.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10572, 112, NULL, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '0.8700', '1.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.1000', '0.0000', '2021-05-22', 'received', '0.8700', '0.8700', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10573, NULL, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '7.5000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '75.0000', '-2.0000', '2021-05-28', 'received', '7.5000', '7.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10574, NULL, 65, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '7.5000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '75.0000', '4.0000', '2021-05-28', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10575, NULL, 65, 2473, '12094351', 'RIGHT GUARD SPRAY', NULL, '12.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '0.0000', '2021-05-28', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10576, NULL, 65, 2131, '4005900098238', 'NIVEA SPRAY 150ML', NULL, '12.0000', '0.0000', '8.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '96.0000', '3.0000', '2021-05-28', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10577, NULL, 65, 2643, '51795551', 'VOLTIC WATER S/S', NULL, '0.8700', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.1000', '4.0000', '2021-05-28', 'received', '0.8700', '0.8700', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10578, NULL, NULL, 2511, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10581, NULL, NULL, 2381, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10582, 116, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '36.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '540.0000', '0.0000', '2021-05-28', 'received', '15.0000', '15.0000', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10583, 116, NULL, 2437, '44857984', 'APTAMIL BABY MILK', NULL, '80.0000', '100.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.0000', '0.0000', '2021-05-28', 'received', '80.0000', '80.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10584, 116, NULL, 2644, '46646498', 'COMFORT SOFTNER B/S', NULL, '50.0000', '60.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-05-28', 'received', '50.0000', '50.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '50.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10585, 116, NULL, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.2500', '2.5000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-05-28', 'received', '1.2500', '1.2500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '1.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10586, 116, NULL, 2433, '5060033370049', 'PRE MUM BREAST PAD', NULL, '0.7500', '1.0000', '80.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-05-28', 'received', '0.7500', '0.7500', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '0.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10587, 116, NULL, 2645, '04241482', 'COMFORT SOFTNER M/S', NULL, '21.0000', '26.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-05-28', 'received', '21.0000', '21.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10588, 116, NULL, 2646, '15816669', 'GLADE PAPER AIR FRESHNER', NULL, '6.0000', '7.5000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-05-28', 'received', '6.0000', '6.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10589, 116, NULL, 2647, '65619135', 'SOFTCARE  DIAPER BIG', NULL, '30.0000', '40.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-05-28', 'received', '30.0000', '30.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10590, 116, NULL, 2445, '08969985', 'ADULT DIAPER', NULL, '4.3000', '5.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.0000', '0.0000', '2021-05-28', 'received', '4.3000', '4.3000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10591, 116, NULL, 2430, '6926597271255', 'JOZZY KIDS TOOTHPASTE&BRUSH', NULL, '7.0000', '10.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2021-05-28', 'received', '7.0000', '7.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '7.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10592, 116, NULL, 2648, '61024738', 'COLGATE FOR KIDS', NULL, '5.4000', '6.5000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '0.0000', '2021-05-28', 'received', '5.4000', '5.4000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '5.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10593, 116, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '14.6000', '20.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.6000', '0.0000', '2021-05-28', 'received', '14.6000', '14.6000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '14.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10594, NULL, 68, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '0.0000', '36.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '540.0000', '3.0000', '2021-05-29', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10595, NULL, 68, 2437, '44857984', 'APTAMIL BABY MILK', NULL, '80.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '160.0000', '0.0000', '2021-05-29', 'received', '80.0000', '80.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10596, NULL, 68, 2644, '46646498', 'COMFORT SOFTNER B/S', NULL, '50.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '100.0000', '0.0000', '2021-05-29', 'received', '50.0000', '50.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10597, NULL, 68, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.2500', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '8.0000', '2021-05-29', 'received', '1.2500', '1.2500', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10598, NULL, 68, 2433, '5060033370049', 'PRE MUM BREAST PAD', NULL, '0.7500', '0.0000', '80.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '0.0000', '2021-05-29', 'received', '0.7500', '0.7500', NULL, NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10599, NULL, 68, 2645, '04241482', 'COMFORT SOFTNER M/S', NULL, '21.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.0000', '1.0000', '2021-05-29', 'received', '21.0000', '21.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10600, NULL, 68, 2646, '15816669', 'GLADE PAPER AIR FRESHNER', NULL, '6.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.0000', '8.0000', '2021-05-29', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10601, NULL, 68, 2647, '65619135', 'SOFTCARE  DIAPER BIG', NULL, '30.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '2.0000', '2021-05-29', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10602, NULL, 68, 2445, '08969985', 'ADULT DIAPER', NULL, '4.3000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '86.0000', '0.0000', '2021-05-29', 'received', '4.3000', '4.3000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10603, NULL, 68, 2430, '6926597271255', 'JOZZY KIDS TOOTHPASTE&BRUSH', NULL, '7.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.0000', '0.0000', '2021-05-29', 'received', '7.0000', '7.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10604, NULL, 68, 2430, '6926597271255', 'JOZZY KIDS TOOTHPASTE&BRUSH', NULL, '7.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.0000', '0.0000', '2021-05-29', 'received', '7.0000', '7.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10605, NULL, 68, 2430, '6926597271255', 'JOZZY KIDS TOOTHPASTE&BRUSH', NULL, '7.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.0000', '0.0000', '2021-05-29', 'received', '7.0000', '7.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10606, NULL, 68, 2430, '6926597271255', 'JOZZY KIDS TOOTHPASTE&BRUSH', NULL, '7.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.0000', '2.0000', '2021-05-29', 'received', '7.0000', '7.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10607, NULL, 68, 2648, '61024738', 'COLGATE FOR KIDS', NULL, '5.4000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '64.8000', '7.0000', '2021-05-29', 'received', '5.4000', '5.4000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10608, NULL, 68, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '14.6000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '87.6000', '4.0000', '2021-05-29', 'received', '14.6000', '14.6000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10737, NULL, NULL, 2169, '97038500', 'GEBEDOL', NULL, '0.9800', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '19.6000', '13.0000', '2021-05-29', 'received', '0.9800', '0.9800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10808, NULL, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.2200', '0.0000', '25.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.5000', '9.0000', '2021-05-29', 'received', '1.2200', '1.2200', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10809, NULL, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '10.0000', '0.0000', '2021-05-29', 'received', '2.0000', '2.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10810, NULL, NULL, 2641, '92213060', 'CONGESTYL SUSP', NULL, '9.3600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '28.0800', '0.0000', '2021-05-29', 'received', '9.3600', '9.3600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10811, NULL, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '6.6500', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.3000', '-1.0000', '2021-05-29', 'received', '6.6500', '6.6500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10812, NULL, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '7.8400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '23.5200', '-3.0000', '2021-05-29', 'received', '7.8400', '7.8400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10813, NULL, NULL, 1694, 'PR-407', 'LEENASYR', NULL, '7.1900', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '14.3800', '-2.0000', '2021-05-29', 'received', '7.1900', '7.1900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10814, NULL, NULL, 1520, 'PR-233', 'DICLOLEX 100MG', NULL, '1.4700', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '29.4000', '0.0000', '2021-05-29', 'received', '1.4700', '1.4700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10888, NULL, NULL, 1513, '6221032233103', 'DEXATROL EYE DROP', NULL, '11.9600', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '11.9600', '0.0000', '2021-05-29', 'received', '11.9600', '11.9600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10958, 115, NULL, 2341, '67208590', 'NEXCOFER CAPS', NULL, '6.8000', '7.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.6000', '2.0000', '2021-05-25', 'received', '6.8000', '6.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10959, 115, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.2000', '6.0000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6000', '0.0000', '2021-05-25', 'received', '4.2000', '4.2000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '4.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10960, 115, NULL, 1513, '6221032233103', 'DEXATROL EYE DROP', NULL, '11.9600', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.9600', '0.0000', '2021-05-25', 'received', '11.9600', '11.9600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '11.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10961, 115, NULL, 2169, '97038500', 'GEBEDOL', NULL, '0.9800', '1.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6000', '0.0000', '2021-05-25', 'received', '0.9800', '0.9800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10962, 115, NULL, 2614, '96562826', 'WELLMAN CAPS', NULL, '52.5100', '70.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5100', '0.0000', '2021-05-25', 'received', '52.5100', '52.5100', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '52.5100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10963, 115, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '16.8000', '23.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '0.0000', '2021-05-25', 'received', '16.8000', '16.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10964, 115, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '13.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-05-25', 'received', '9.0000', '9.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10965, 115, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-05-25', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10966, 115, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '17.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-05-25', 'received', '13.0000', '13.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10967, 115, NULL, 1544, '4031571036033', 'CLOTRI DENK 100 PESS', NULL, '17.9400', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.9400', '0.0000', '2021-05-25', 'received', '17.9400', '17.9400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '17.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10968, 115, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.2200', '2.0000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.5000', '0.0000', '2021-05-25', 'received', '1.2200', '1.2200', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '1.2200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10969, 115, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '13.2900', '18.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.5800', '0.0000', '2021-05-25', 'received', '13.2900', '13.2900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10970, 115, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '7.2000', '10.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.4000', '0.0000', '2021-05-25', 'received', '7.2000', '7.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10971, 115, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '3.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2021-05-25', 'received', '2.0000', '2.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10972, 115, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.6700', '0.0000', '2021-05-25', 'received', '6.8900', '6.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10973, 115, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '7.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-05-25', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10974, 115, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '14.0500', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.1500', '0.0000', '2021-05-25', 'received', '14.0500', '14.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10975, 115, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '6.6500', '9.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.3000', '0.0000', '2021-05-25', 'received', '6.6500', '6.6500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10976, 115, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '7.8400', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5200', '0.0000', '2021-05-25', 'received', '7.8400', '7.8400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.8400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10977, 115, NULL, 1694, 'PR-407', 'LEENASYR', NULL, '7.1900', '10.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.3800', '0.0000', '2021-05-25', 'received', '7.1900', '7.1900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.1900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10978, 115, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '5.7900', '8.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5800', '0.0000', '2021-05-25', 'received', '5.7900', '5.7900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.7900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10979, 115, NULL, 1520, 'PR-233', 'DICLOLEX 100MG', NULL, '1.4700', '2.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '0.0000', '2021-05-25', 'received', '1.4700', '1.4700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.4700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10980, 115, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '48.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.6000', '0.0000', '2021-05-25', 'received', '35.8000', '35.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10981, 115, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '19.0000', '27.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2021-05-25', 'received', '19.0000', '19.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10982, 115, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '17.7300', '26.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4600', '0.0000', '2021-05-25', 'received', '17.7300', '17.7300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.7300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10983, 115, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.6000', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.2000', '0.0000', '2021-05-25', 'received', '8.6000', '8.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10984, 115, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '7.8500', '11.0000', '15.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.7500', '0.0000', '2021-05-25', 'received', '7.8500', '7.8500', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '7.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10985, 115, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.9800', '15.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.9000', '0.0000', '2021-05-25', 'received', '10.9800', '10.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10986, 115, NULL, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', NULL, '4.9000', '6.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2021-05-25', 'received', '4.9000', '4.9000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10987, 115, NULL, 2465, '13163480', 'CORORANGE SYR', NULL, '7.8200', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4600', '0.0000', '2021-05-25', 'received', '7.8200', '7.8200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10988, 115, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.6700', '0.0000', '2021-05-25', 'received', '6.8900', '6.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10989, 115, NULL, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '18.5000', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '0.0000', '2021-05-25', 'received', '18.5000', '18.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10990, 115, NULL, 1693, 'PR-406', 'CITY BLOOD TONIC 200ML', NULL, '7.8600', '10.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7200', '0.0000', '2021-05-25', 'received', '7.8600', '7.8600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10991, 115, NULL, 2092, '69091614', 'GLUCOSE C L/P', NULL, '4.1500', '5.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.4500', '0.0000', '2021-05-25', 'received', '4.1500', '4.1500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10992, 115, NULL, 2457, '33345179', 'PILIEF TABS', NULL, '23.0000', '30.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-05-25', 'received', '23.0000', '23.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '23.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10993, 115, NULL, 2294, '44448916', 'PENICILLIN OINTMENT', NULL, '3.5000', '6.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2021-05-25', 'received', '3.5000', '3.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10994, 115, NULL, 2641, '92213060', 'CONGESTYL SUSP', NULL, '9.3600', '12.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0800', '0.0000', '2021-05-25', 'received', '9.3600', '9.3600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.3600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10995, 115, NULL, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', NULL, '5.3300', '7.1000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '213.2000', '0.0000', '2021-05-25', 'received', '5.3300', '5.3300', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '5.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10996, 115, NULL, 2544, '85585070', 'NEXCOFER SYR L/S', NULL, '6.8800', '9.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.7600', '0.0000', '2021-05-25', 'received', '6.8800', '6.8800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10997, 115, NULL, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '8.1700', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.5100', '0.0000', '2021-05-25', 'received', '8.1700', '8.1700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.1700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10998, 115, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '5.8800', '8.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.7600', '0.0000', '2021-05-25', 'received', '5.8800', '5.8800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10999, 115, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '48.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.6000', '0.0000', '2021-05-25', 'received', '35.8000', '35.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11000, 115, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '2.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '0.0000', '2021-05-25', 'received', '1.8600', '1.8600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11001, 115, NULL, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', NULL, '4.9000', '6.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '20.0000', '2021-05-25', 'received', '4.9000', '4.9000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11002, 115, NULL, 2640, '08457216', 'GLUCO NAF D (DANNEX)', NULL, '7.0400', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.1200', '0.0000', '2021-05-25', 'received', '7.0400', '7.0400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.0400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11003, NULL, NULL, 2465, '13163480', 'CORORANGE SYR', NULL, '7.8200', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '23.4600', '0.0000', '2021-05-29', 'received', '7.8200', '7.8200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11004, NULL, NULL, 1693, 'PR-406', 'CITY BLOOD TONIC 200ML', NULL, '7.8600', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.7200', '0.0000', '2021-05-29', 'received', '7.8600', '7.8600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11005, NULL, 69, 2457, '33345179', 'PILIEF TABS', NULL, '23.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.0000', '0.0000', '2021-05-29', 'received', '23.0000', '23.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11006, NULL, 69, 1693, 'PR-406', 'CITY BLOOD TONIC 200ML', NULL, '7.8600', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.7200', '1.0000', '2021-05-29', 'received', '7.8600', '7.8600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11007, NULL, 69, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '18.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.5000', '0.0000', '2021-05-29', 'received', '18.5000', '18.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11008, NULL, 69, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.6700', '0.0000', '2021-05-29', 'received', '6.8900', '6.8900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11009, NULL, 69, 2465, '13163480', 'CORORANGE SYR', NULL, '7.8200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.4600', '0.0000', '2021-05-29', 'received', '7.8200', '7.8200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11010, NULL, 69, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.9800', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.9000', '2.0000', '2021-05-29', 'received', '10.9800', '10.9800', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11011, NULL, 69, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '8.1000', '0.0000', '15.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '121.5000', '0.0000', '2021-05-29', 'received', '8.1000', '8.1000', NULL, NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11012, NULL, 69, 1513, '6221032233103', 'DEXATROL EYE DROP', NULL, '11.9600', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.9600', '0.0000', '2021-05-29', 'received', '11.9600', '11.9600', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11013, NULL, 69, 2545, '82780299', 'DREZ POWDER 10G', NULL, '5.8800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.7600', '0.0000', '2021-05-29', 'received', '5.8800', '5.8800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11014, NULL, 69, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '71.6000', '1.0000', '2021-05-29', 'received', '35.8000', '35.8000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11015, NULL, 69, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '1.0000', '2021-05-29', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11016, NULL, 69, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.0000', '0.0000', '2021-05-29', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11017, NULL, 69, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.0000', '0.0000', '2021-05-29', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11018, NULL, 69, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '16.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.4000', '1.0000', '2021-05-29', 'received', '16.8000', '16.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11019, NULL, 69, 2614, '96562826', 'WELLMAN CAPS', NULL, '52.5100', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.5100', '1.0000', '2021-05-29', 'received', '52.5100', '52.5100', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11020, NULL, 69, 2544, '85585070', 'NEXCOFER SYR L/S', NULL, '6.8800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.7600', '1.0000', '2021-05-29', 'received', '6.8800', '6.8800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11021, NULL, 69, 2260, '29581054', 'DRAGON TABS', NULL, '4.2000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.2000', '0.0000', '2021-05-29', 'received', '4.2000', '4.2000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11022, NULL, 69, 2260, '29581054', 'DRAGON TABS', NULL, '4.2000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.4000', '0.0000', '2021-05-29', 'received', '4.2000', '4.2000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11023, NULL, 69, 2169, '97038500', 'GEBEDOL', NULL, '0.9800', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.8000', '1.0000', '2021-05-29', 'received', '0.9800', '0.9800', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11024, NULL, 69, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '8.1700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.5100', '0.0000', '2021-05-29', 'received', '8.1700', '8.1700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11025, NULL, 69, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '1.0000', '2021-05-29', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11026, NULL, 69, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.2200', '0.0000', '25.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.5000', '22.0000', '2021-05-29', 'received', '1.2200', '1.2200', NULL, NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11027, NULL, 69, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '13.2900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.5800', '0.0000', '2021-05-29', 'received', '13.2900', '13.2900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11028, NULL, 69, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '7.2000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.4000', '2.0000', '2021-05-29', 'received', '7.2000', '7.2000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11029, NULL, 69, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.0000', '0.0000', '2021-05-29', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11030, NULL, 69, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.6700', '0.0000', '2021-05-29', 'received', '6.8900', '6.8900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11031, NULL, 69, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.5000', '2.0000', '2021-05-29', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11032, NULL, 69, 2641, '92213060', 'CONGESTYL SUSP', NULL, '9.3600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.0800', '0.0000', '2021-05-29', 'received', '9.3600', '9.3600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11033, NULL, 69, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '14.0500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.1500', '1.0000', '2021-05-29', 'received', '14.0500', '14.0500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11034, NULL, 69, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '6.6500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.3000', '0.0000', '2021-05-29', 'received', '6.6500', '6.6500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11035, NULL, 69, 2592, '42909881', 'Zentel Suspension ', NULL, '7.8400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.5200', '0.0000', '2021-05-29', 'received', '7.8400', '7.8400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11036, NULL, 69, 1694, 'PR-407', 'LEENASYR', NULL, '7.1900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.3800', '0.0000', '2021-05-29', 'received', '7.1900', '7.1900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11037, NULL, 69, 1628, 'PR-341', 'GUDAPET SYR', NULL, '6.4000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.8000', '2.0000', '2021-05-29', 'received', '6.4000', '6.4000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11038, NULL, 69, 1520, 'PR-233', 'DICLOLEX 100MG', NULL, '1.4700', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.4000', '18.0000', '2021-05-29', 'received', '1.4700', '1.4700', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11039, NULL, 69, 2259, '72759006', 'DRAGON SPRAY', NULL, '19.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.0000', '0.0000', '2021-05-29', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11040, NULL, 69, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '19.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.0000', '0.0000', '2021-05-29', 'received', '19.5000', '19.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11041, NULL, 69, 2511, '81055477', 'DUROL 300ML', NULL, '8.6000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.2000', '0.0000', '2021-05-29', 'received', '8.6000', '8.6000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11042, NULL, 69, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.2000', '5.0000', '2021-05-29', 'received', '1.8600', '1.8600', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11043, NULL, 69, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', NULL, '4.9000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '98.0000', '0.0000', '2021-05-29', 'received', '4.9000', '4.9000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11044, NULL, 69, 2640, '08457216', 'GLUCO NAF D (DANNEX)', NULL, '7.0400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.1200', '0.0000', '2021-05-29', 'received', '7.0400', '7.0400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11045, NULL, 69, 2294, '44448916', 'PENICILLIN OINTMENT', NULL, '4.5000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '1.0000', '2021-05-29', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11091, 118, NULL, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', NULL, '20.2400', '27.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.7200', '0.0000', '2021-05-29', 'received', '20.2400', '20.2400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11092, 118, NULL, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.9300', '1.2000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8000', '0.0000', '2021-05-29', 'received', '0.9300', '0.9300', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.9300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11093, 118, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.8300', '10.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.3000', '0.0000', '2021-05-29', 'received', '6.8300', '6.8300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11094, 118, NULL, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', NULL, '27.9400', '39.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.8200', '0.0000', '2021-05-29', 'received', '27.9400', '27.9400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11095, 118, NULL, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '39.0000', '51.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.0000', '0.0000', '2021-05-29', 'received', '39.0000', '39.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '39.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11096, 118, NULL, 2650, '58359784', 'DICNAC 75 SR', NULL, '7.3200', '10.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.6400', '0.0000', '2021-05-29', 'received', '7.3200', '7.3200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11097, 118, NULL, 2651, '50684287', 'KETAZOL SHAMPOO', NULL, '10.7500', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5000', '0.0000', '2021-05-29', 'received', '10.7500', '10.7500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11098, NULL, 71, 2650, '58359784', 'DICNAC 75 SR', NULL, '7.3200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.6400', '1.0000', '2021-05-29', 'received', '7.3200', '7.3200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11099, NULL, 71, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', NULL, '20.2400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.7200', '0.0000', '2021-05-29', 'received', '20.2400', '20.2400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11100, NULL, 71, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.9300', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.8000', '0.0000', '2021-05-29', 'received', '0.9300', '0.9300', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11101, NULL, 71, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.8300', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '68.3000', '0.0000', '2021-05-29', 'received', '6.8300', '6.8300', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11102, NULL, 71, 2651, '50684287', 'KETAZOL SHAMPOO', NULL, '10.7500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.5000', '1.0000', '2021-05-29', 'received', '10.7500', '10.7500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11103, NULL, 71, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', NULL, '27.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '81.0000', '0.0000', '2021-05-29', 'received', '27.0000', '27.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11104, NULL, 71, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '39.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '156.0000', '0.0000', '2021-05-29', 'received', '39.0000', '39.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11121, NULL, NULL, 2452, '56056492', 'FINE FINE SOAP', NULL, '2.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '7.5000', '0.0000', '2021-05-29', 'received', '2.5000', '2.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11135, NULL, NULL, 2652, '49336316', 'ADOM TONIC', NULL, '12.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.0000', '-3.0000', '2021-05-29', 'received', '12.5000', '12.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11136, NULL, 72, 2652, '49336316', 'ADOM TONIC', NULL, '12.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.0000', '2.0000', '2021-05-29', 'received', '12.5000', '12.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11137, NULL, 72, 2452, '56056492', 'FINE FINE SOAP', NULL, '2.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.5000', '1.0000', '2021-05-29', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11138, NULL, 72, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '2.2000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.0000', '2.0000', '2021-05-29', 'received', '2.2000', '2.2000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11139, NULL, 72, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '2.2000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.0000', '5.0000', '2021-05-29', 'received', '2.2000', '2.2000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11140, NULL, 72, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '0.0000', '2021-05-29', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11141, NULL, 72, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '0.0000', '2021-05-29', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11142, NULL, 72, 1433, 'PR-146', 'TIME HERBAL MIX(25)', NULL, '10.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '0.0000', '2021-05-29', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11143, NULL, 72, 2653, '35881608', 'MONA KRIM', NULL, '2.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.1000', '3.0000', '2021-05-29', 'received', '2.7000', '2.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11144, NULL, NULL, 1799, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11145, NULL, NULL, 1358, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11146, NULL, NULL, 2056, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11147, 117, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '13.6300', '18.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.2600', '0.0000', '2021-05-29', 'received', '13.6300', '13.6300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.6300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11148, 117, NULL, 1714, '5024874016771', 'VALPAK VITAMIN C500MG CHEWABLE', NULL, '16.8400', '22.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.6800', '0.0000', '2021-05-29', 'received', '16.8400', '16.8400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.8400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11149, 117, NULL, 1543, '4031571066740', 'CLOTRI DENK CREAM', NULL, '17.9400', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8800', '0.0000', '2021-05-29', 'received', '17.9400', '17.9400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11150, 117, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '20.7800', '27.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5600', '0.0000', '2021-05-29', 'received', '20.7800', '20.7800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11151, 117, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '20.0000', '26.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-05-29', 'received', '20.0000', '20.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11152, 117, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.4000', '3.0000', '80.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '192.0000', '0.0000', '2021-05-29', 'received', '2.4000', '2.4000', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '2.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11153, 117, NULL, 1626, '306420072116', 'VITAFOL CAP', NULL, '7.5900', '10.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.1800', '0.0000', '2021-05-29', 'received', '7.5900', '7.5900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11154, 117, NULL, 2497, '26571538', 'CALPOl 6+', NULL, '34.0000', '48.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2021-05-29', 'received', '34.0000', '34.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '34.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11155, 117, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.2200', '2.0000', '125.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '152.5000', '0.0000', '2021-05-29', 'received', '1.2200', '1.2200', '125.0000', NULL, NULL, 1, 'pc', '125.0000', NULL, NULL, NULL, NULL, '1.2200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11156, 117, NULL, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', NULL, '0.9300', '3.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9000', '0.0000', '2021-05-29', 'received', '0.9300', '0.9300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.9300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11157, 117, NULL, 1669, '5000456024778', 'NEXIUM 40MG TAB', NULL, '6.7000', '8.8000', '28.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.6000', '0.0000', '2021-05-29', 'received', '6.7000', '6.7000', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '6.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11158, 117, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.3500', '5.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '0.0000', '2021-05-29', 'received', '3.3500', '3.3500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11159, 117, NULL, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '71.0000', '94.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.0000', '0.0000', '2021-05-29', 'received', '71.0000', '71.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '71.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11160, 117, NULL, 2576, '59885419', 'DIAMICRON MR 60 MG TAB', NULL, '54.0000', '71.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2021-05-29', 'received', '54.0000', '54.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '54.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11161, NULL, NULL, 1714, '5024874016771', 'VALPAK VITAMIN C500MG CHEWABLE', NULL, '16.8400', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '33.6800', '-2.0000', '2021-05-31', 'received', '16.8400', '16.8400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11162, NULL, NULL, 1543, '4031571066740', 'CLOTRI DENK CREAM', NULL, '17.9400', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '35.8800', '3.0000', '2021-05-31', 'received', '17.9400', '17.9400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11163, NULL, NULL, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '71.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '142.0000', '-1.0000', '2021-05-31', 'received', '71.0000', '71.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11164, NULL, NULL, 2497, '26571538', 'CALPOl 6+', NULL, '36.6800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '110.0400', '0.0000', '2021-05-31', 'received', '36.6800', '36.6800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11165, NULL, NULL, 1669, '5000456024778', 'NEXIUM 40MG TAB', NULL, '6.7000', '0.0000', '28.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '187.6000', '0.0000', '2021-05-31', 'received', '6.7000', '6.7000', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11166, NULL, 70, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.3500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.5000', '0.0000', '2021-05-31', 'received', '3.3500', '3.3500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11167, NULL, 70, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.3500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.5000', '0.0000', '2021-05-31', 'received', '3.3500', '3.3500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11168, NULL, 70, 1669, '5000456024778', 'NEXIUM 40MG TAB', NULL, '6.7000', '0.0000', '28.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '187.6000', '26.0000', '2021-05-31', 'received', '6.7000', '6.7000', NULL, NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11169, NULL, 70, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', NULL, '0.9300', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.3000', '0.0000', '2021-05-31', 'received', '0.9300', '0.9300', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11170, NULL, 70, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', NULL, '0.9300', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.6000', '1.0000', '2021-05-31', 'received', '0.9300', '0.9300', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11171, NULL, 70, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.2200', '0.0000', '125.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '152.5000', '23.0000', '2021-05-31', 'received', '1.2200', '1.2200', NULL, NULL, NULL, 1, 'pc', '125.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11172, NULL, 70, 2497, '26571538', 'CALPOl 6+', NULL, '36.6800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '110.0400', '0.0000', '2021-05-31', 'received', '36.6800', '36.6800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11173, NULL, 70, 1626, '306420072116', 'VITAFOL CAP', NULL, '7.5900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.1800', '0.0000', '2021-05-31', 'received', '7.5900', '7.5900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11174, NULL, 70, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.4000', '0.0000', '80.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '192.0000', '27.0000', '2021-05-31', 'received', '2.4000', '2.4000', NULL, NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11175, NULL, 70, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '20.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '0.0000', '2021-05-31', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11176, NULL, 70, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '20.7800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '41.5600', '0.0000', '2021-05-31', 'received', '20.7800', '20.7800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11177, NULL, 70, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '71.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '142.0000', '0.0000', '2021-05-31', 'received', '71.0000', '71.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11178, NULL, 70, 1543, '4031571066740', 'CLOTRI DENK CREAM', NULL, '17.9400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.8800', '0.0000', '2021-05-31', 'received', '17.9400', '17.9400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11179, NULL, 70, 1714, '5024874016771', 'VALPAK VITAMIN C500MG CHEWABLE', NULL, '16.8400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.6800', '2.0000', '2021-05-31', 'received', '16.8400', '16.8400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11180, NULL, 70, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '13.6300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.2600', '0.0000', '2021-05-31', 'received', '13.6300', '13.6300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11181, NULL, 70, 2576, '59885419', 'DIAMICRON MR 60 MG TAB', NULL, '54.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '108.0000', '0.0000', '2021-05-31', 'received', '54.0000', '54.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11182, NULL, NULL, 2653, '35881608', 'MONA KRIM', NULL, '2.7000', '0.0000', '-3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '-8.1000', '0.0000', '2021-05-31', 'received', '2.7000', '2.7000', '-3.0000', NULL, NULL, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11183, NULL, NULL, 2159, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11184, 120, NULL, 1989, '6181100321821', 'SULFUR 18', NULL, '6.0000', '8.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-05-31', 'received', '6.0000', '6.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11185, 120, NULL, 2417, '89073800', 'DOVE SOAP', NULL, '3.7800', '6.0000', '16.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.4800', '0.0000', '2021-05-31', 'received', '3.7800', '3.7800', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, '3.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11186, 120, NULL, 2654, '4000388563803', 'DOVE LOTION', NULL, '18.0000', '23.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-05-31', 'received', '18.0000', '18.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11187, 120, NULL, 1991, '6181100234244', 'PARADISE POWDER', NULL, '7.0000', '9.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2021-05-31', 'received', '7.0000', '7.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11188, 120, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '8.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-05-31', 'received', '6.5000', '6.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11189, 120, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.5000', '2.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-05-31', 'received', '1.5000', '1.5000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11190, NULL, 73, 1989, '6181100321821', 'SULFUR 18', NULL, '6.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '6.0000', '2021-05-31', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11191, NULL, 73, 2654, '4000388563803', 'DOVE LOTION', NULL, '18.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '0.0000', '2021-05-31', 'received', '18.0000', '18.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11192, NULL, 73, 1991, '6181100234244', 'PARADISE POWDER', NULL, '7.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.0000', '2.0000', '2021-05-31', 'received', '7.0000', '7.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11193, NULL, 73, 2417, '89073800', 'DOVE SOAP', NULL, '3.7800', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.3600', '8.0000', '2021-05-31', 'received', '3.7800', '3.7800', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11194, NULL, 73, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '65.0000', '0.0000', '2021-05-31', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11195, NULL, 73, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.5000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '9.0000', '2021-05-31', 'received', '1.5000', '1.5000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11196, NULL, 73, 2417, '89073800', 'DOVE SOAP', NULL, '3.7800', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.1200', '4.0000', '2021-05-31', 'received', '3.7800', '3.7800', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11197, 121, NULL, 2400, '91513969', 'BRIGHTFOD STRONG', NULL, '12.5000', '16.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-05-31', 'received', '12.5000', '12.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11198, 121, NULL, 1422, 'PR-135', 'PROSTACURE TEA (32)', NULL, '21.0000', '28.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-05-31', 'received', '21.0000', '21.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11262, NULL, NULL, 1354, '5024874700106', 'HEALTH LINK WOMAN', NULL, '39.7500', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '39.7500', '0.0000', '2021-05-31', 'received', '39.7500', '39.7500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11263, NULL, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '10.8700', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '32.6100', '0.0000', '2021-05-31', 'received', '10.8700', '10.8700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11264, NULL, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.5300', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '55.3000', '0.0000', '2021-05-31', 'received', '5.5300', '5.5300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11265, NULL, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '4.8000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '-2.0000', '2021-05-31', 'received', '4.8000', '4.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11266, NULL, NULL, 1701, 'PR-414', 'HEPTOPEP SYR', NULL, '14.7800', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '29.5600', '-1.0000', '2021-05-31', 'received', '14.7800', '14.7800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11267, NULL, NULL, 2657, '29274667', 'LOPERON CAPS', NULL, '5.4200', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '5.4200', '-2.0000', '2021-05-31', 'received', '5.4200', '5.4200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11285, NULL, 76, 1354, '5024874700106', 'HEALTH LINK WOMAN', NULL, '39.7500', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.7500', '1.0000', '2021-05-31', 'received', '39.7500', '39.7500', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11286, NULL, 76, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '5.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.5000', '4.0000', '2021-05-31', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11304, NULL, 74, 1422, 'PR-135', 'PROSTACURE TEA (32)', NULL, '21.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.0000', '2.0000', '2021-05-31', 'received', '21.0000', '21.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11305, NULL, 74, 2400, '91513969', 'BRIGHTFOD STRONG', NULL, '12.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.5000', '3.0000', '2021-05-31', 'received', '12.5000', '12.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11349, NULL, NULL, 2057, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11350, NULL, NULL, 1428, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11374, 122, NULL, 1354, '5024874700106', 'HEALTH LINK WOMAN', NULL, '39.7500', '53.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7500', '0.0000', '2021-05-31', 'received', '39.7500', '39.7500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '39.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11375, 122, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '10.8700', '14.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.6100', '0.0000', '2021-05-31', 'received', '10.8700', '10.8700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11376, 122, NULL, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '5.5000', '7.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2021-05-31', 'received', '5.5000', '5.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11377, 122, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.1500', '8.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.7500', '0.0000', '2021-05-31', 'received', '6.1500', '6.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11378, 122, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '2.5000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8000', '0.0000', '2021-05-31', 'received', '1.8600', '1.8600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11379, 122, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '1.5900', '2.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.9000', '0.0000', '2021-05-31', 'received', '1.5900', '1.5900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11380, 122, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.5300', '7.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.3000', '0.0000', '2021-05-31', 'received', '5.5300', '5.5300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11381, 122, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '4.8000', '6.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-05-31', 'received', '4.8000', '4.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11382, 122, NULL, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', NULL, '5.9300', '8.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7900', '0.0000', '2021-05-31', 'received', '5.9300', '5.9300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.9300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11383, 122, NULL, 1701, 'PR-414', 'HEPTOPEP SYR', NULL, '14.7800', '19.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5600', '0.0000', '2021-05-31', 'received', '14.7800', '14.7800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11384, 122, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '19.5000', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2021-05-31', 'received', '19.5000', '19.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11385, 122, NULL, 1645, 'PR-358', 'AMCOF ADULT SYRUP', NULL, '4.7200', '7.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '0.0000', '2021-05-31', 'received', '4.7200', '4.7200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11386, 122, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '4.5300', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.6500', '0.0000', '2021-05-31', 'received', '4.5300', '4.5300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11387, 122, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '4.7200', '6.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '0.0000', '2021-05-31', 'received', '4.7200', '4.7200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11388, 122, NULL, 2657, '29274667', 'LOPERON CAPS', NULL, '5.4200', '1.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.2000', '0.0000', '2021-05-31', 'received', '5.4200', '5.4200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.4200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11389, 122, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '34.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.8000', '0.0000', '2021-05-31', 'received', '25.9000', '25.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11390, NULL, 75, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '4.7200', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.6000', '0.0000', '2021-06-01', 'received', '4.7200', '4.7200', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11391, NULL, 75, 1646, 'PR-359', 'AMCOF BABY', NULL, '4.5300', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.6500', '0.0000', '2021-06-01', 'received', '4.5300', '4.5300', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11392, NULL, 75, 1645, 'PR-358', 'AMCOF ADULT SYRUP', NULL, '4.7200', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.6000', '0.0000', '2021-06-01', 'received', '4.7200', '4.7200', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11393, NULL, 75, 2657, '29274667', 'LOPERON CAPS', NULL, '5.4200', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '5.4200', '0.0000', '2021-06-01', 'received', '5.4200', '5.4200', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11394, NULL, 75, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '19.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '58.5000', '0.0000', '2021-06-01', 'received', '19.5000', '19.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11395, NULL, 75, 1701, 'PR-414', 'HEPTOPEP SYR', NULL, '14.7800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.5600', '0.0000', '2021-06-01', 'received', '14.7800', '14.7800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11396, NULL, 75, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', NULL, '5.9300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.7900', '0.0000', '2021-06-01', 'received', '5.9300', '5.9300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11397, NULL, 75, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '4.8000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '3.0000', '2021-06-01', 'received', '4.8000', '4.8000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11398, NULL, 75, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.5300', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.3000', '0.0000', '2021-06-01', 'received', '5.5300', '5.5300', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11399, NULL, 75, 2379, '98167111', 'COLODIUM CAPS', NULL, '1.5900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.9500', '0.0000', '2021-06-01', 'received', '1.5900', '1.5900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11400, NULL, 75, 2379, '98167111', 'COLODIUM CAPS', NULL, '1.5900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.9500', '0.0000', '2021-06-01', 'received', '1.5900', '1.5900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11401, NULL, 75, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.8000', '16.0000', '2021-06-01', 'received', '1.8600', '1.8600', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11402, NULL, 75, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.1500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.7500', '0.0000', '2021-06-01', 'received', '6.1500', '6.1500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11403, NULL, 75, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '5.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.5000', '0.0000', '2021-06-01', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11404, NULL, 75, 2381, '72472860', 'ENACEF SUSP', NULL, '10.8700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.6100', '0.0000', '2021-06-01', 'received', '10.8700', '10.8700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11405, NULL, 75, 1354, '5024874700106', 'HEALTH LINK WOMAN', NULL, '39.7500', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.7500', '1.0000', '2021-06-01', 'received', '39.7500', '39.7500', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11406, NULL, 75, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '51.8000', '0.0000', '2021-06-01', 'received', '25.9000', '25.9000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11407, NULL, 75, 2657, '29274667', 'LOPERON CAPS', NULL, '0.5400', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '2.7000', '3.0000', '2021-06-01', 'received', '0.5400', '0.5400', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11408, NULL, 75, 2657, '29274667', 'LOPERON CAPS', NULL, '0.5400', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '2.7000', '5.0000', '2021-06-01', 'received', '0.5400', '0.5400', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11433, NULL, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '56.2500', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '112.5000', '0.0000', '2021-06-02', 'received', '56.2500', '56.2500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11437, NULL, NULL, 1810, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11467, NULL, NULL, 2244, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11468, NULL, NULL, 2661, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11469, NULL, NULL, 1349, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11470, NULL, NULL, 2059, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11471, NULL, NULL, 1599, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11498, NULL, NULL, 2663, '58928731', 'QUINNE MALERIA SYRUP', NULL, '4.6000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.4000', '0.0000', '2021-06-02', 'received', '4.6000', '4.6000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11504, NULL, NULL, 2047, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11505, NULL, NULL, 1720, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11649, NULL, NULL, 1528, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11650, NULL, NULL, 1501, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11651, NULL, NULL, 2660, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-30.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11652, NULL, NULL, 2602, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11653, NULL, NULL, 2656, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11654, NULL, NULL, 2643, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11655, NULL, NULL, 1912, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11656, NULL, NULL, 1331, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11657, NULL, NULL, 1968, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11658, NULL, NULL, 1300, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11659, NULL, NULL, 1799, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11660, NULL, NULL, 1712, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11661, NULL, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '71.7300', '0.0000', '2021-06-04', 'received', '23.9100', '23.9100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11662, NULL, NULL, 2673, '52626423', 'LISINOPRIL 10MG', NULL, '11.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '55.0000', '0.0000', '2021-06-04', 'received', '11.0000', '11.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11663, NULL, NULL, 2665, '94928957', 'FLEMING 625MG', NULL, '23.7600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '71.2800', '0.0000', '2021-06-04', 'received', '23.7600', '23.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11664, NULL, NULL, 2666, '98057255', 'FLEMING SUSP 228', NULL, '18.7400', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '37.4800', '0.0000', '2021-06-04', 'received', '18.7400', '18.7400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11665, NULL, NULL, 2667, '02987046', 'AXACEF TAB 250MG', NULL, '25.1700', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '75.5100', '0.0000', '2021-06-04', 'received', '25.1700', '25.1700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11755, NULL, NULL, 2668, '50803356', 'GRISON   FULCIN SYR', NULL, '7.9800', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.9600', '0.0000', '2021-06-04', 'received', '7.9800', '7.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11756, NULL, NULL, 2159, '88244641', 'TREMENDOUS CAPS', NULL, '15.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.0000', '2.0000', '2021-06-04', 'received', '15.0000', '15.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11757, NULL, NULL, 2669, '24220016', 'POLYGYNAX PESS', NULL, '49.0000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '49.0000', '1.0000', '2021-06-04', 'received', '49.0000', '49.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11758, NULL, NULL, 1316, 'PR-29', 'FAMACOLD SYR', NULL, '6.3000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.9000', '-1.0000', '2021-06-04', 'received', '6.3000', '6.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11759, NULL, NULL, 2672, '46856001', 'ALDOMENT 250MGTAB 60\'S', NULL, '7.6200', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '152.4000', '0.0000', '2021-06-04', 'received', '7.6200', '7.6200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11760, NULL, NULL, 2670, '18984546', 'ASPIRIN TABS GEO', NULL, '0.3200', '0.0000', '100.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '32.0000', '0.0000', '2021-06-04', 'received', '0.3200', '0.3200', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11761, NULL, NULL, 2671, '29819837', 'MINADEX MULTIVITAMIN SYRUP 100ML', NULL, '28.8900', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '57.7800', '-1.0000', '2021-06-04', 'received', '28.8900', '28.8900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11808, 124, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '14.7700', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.3100', '0.0000', '2021-06-03', 'received', '14.7700', '14.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.7700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11809, 124, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.5000', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-06-03', 'received', '7.5000', '7.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11810, 124, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '32.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.7300', '0.0000', '2021-06-03', 'received', '23.9100', '23.9100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11811, 124, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7100', '3.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.1000', '0.0000', '2021-06-03', 'received', '2.7100', '2.7100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.7100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11812, 124, NULL, 2625, '18152598', 'Olfen Gel', NULL, '17.0000', '23.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-06-03', 'received', '17.0000', '17.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11813, 124, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '22.6600', '30.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.3200', '0.0000', '2021-06-03', 'received', '22.6600', '22.6600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11814, 124, NULL, 1483, '5011501040131', 'DEEP HEAT RUB 67G', NULL, '17.3400', '23.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.6800', '0.0000', '2021-06-03', 'received', '17.3400', '17.3400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.3400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11815, 124, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '18.2000', '24.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.4000', '0.0000', '2021-06-03', 'received', '18.2000', '18.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11816, 124, NULL, 2665, '94928957', 'FLEMING 625MG', NULL, '23.7600', '32.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.2800', '0.0000', '2021-06-03', 'received', '23.7600', '23.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.7600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11817, 124, NULL, 2667, '02987046', 'AXACEF TAB 250MG', NULL, '25.1700', '34.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.5100', '0.0000', '2021-06-03', 'received', '25.1700', '25.1700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.1700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11818, 124, NULL, 2666, '98057255', 'FLEMING SUSP 228', NULL, '18.7400', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.4800', '0.0000', '2021-06-03', 'received', '18.7400', '18.7400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11819, 124, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.6000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.8000', '0.0000', '2021-06-03', 'received', '8.6000', '8.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11820, 124, NULL, 2247, '29226629', 'TRISILICATE SYR', NULL, '2.5000', '3.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '0.0000', '2021-06-03', 'received', '2.5000', '2.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11821, 124, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '27.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.1000', '0.0000', '2021-06-03', 'received', '19.0200', '19.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '19.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11822, 124, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.2000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '0.0000', '2021-06-03', 'received', '9.2000', '9.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11823, 124, NULL, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '35.3500', '51.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.4000', '0.0000', '2021-06-03', 'received', '35.3500', '35.3500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '35.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11824, 124, NULL, 2668, '50803356', 'GRISON   FULCIN SYR', NULL, '7.9800', '10.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.9600', '0.0000', '2021-06-03', 'received', '7.9800', '7.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11825, 124, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '3.3500', '5.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '0.0000', '2021-06-03', 'received', '3.3500', '3.3500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11826, 124, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '21.5000', '30.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.5000', '0.0000', '2021-06-03', 'received', '21.5000', '21.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11827, 124, NULL, 2392, '10965636', 'CHOCHO SAOP', NULL, '3.7000', '5.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.1000', '0.0000', '2021-06-03', 'received', '3.7000', '3.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11828, 124, NULL, 2159, '88244641', 'TREMENDOUS CAPS', NULL, '15.0000', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-06-03', 'received', '15.0000', '15.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11829, 124, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '47.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2021-06-03', 'received', '36.0000', '36.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '36.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11830, 124, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-06-03', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11831, 124, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '10.0000', '13.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-06-03', 'received', '10.0000', '10.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11832, 124, NULL, 2669, '24220016', 'POLYGYNAX PESS', NULL, '49.0000', '65.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '0.0000', '2021-06-03', 'received', '49.0000', '49.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '49.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11833, 124, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.6400', '16.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.2000', '0.0000', '2021-06-03', 'received', '11.6400', '11.6400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11834, 124, NULL, 1316, 'PR-29', 'FAMACOLD SYR', NULL, '6.3000', '9.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.9000', '0.0000', '2021-06-03', 'received', '6.3000', '6.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11835, 124, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.2100', '12.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '164.2000', '0.0000', '2021-06-03', 'received', '8.2100', '8.2100', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '8.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11836, 124, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '13.9000', '18.3500', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.8000', '0.0000', '2021-06-03', 'received', '13.9000', '13.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11837, 124, NULL, 2348, '70645774', 'LYNUX OINT', NULL, '22.0300', '29.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0600', '0.0000', '2021-06-03', 'received', '22.0300', '22.0300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.0300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11838, 124, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '24.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8800', '0.0000', '2021-06-03', 'received', '17.9400', '17.9400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11839, 124, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.0900', '35.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.1800', '0.0000', '2021-06-03', 'received', '27.0900', '27.0900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.0900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11840, 124, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9900', '9.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '139.8000', '0.0000', '2021-06-03', 'received', '6.9900', '6.9900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11841, 124, NULL, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', NULL, '4.4500', '6.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.3500', '0.0000', '2021-06-03', 'received', '4.4500', '4.4500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.4500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11842, 124, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '6.0500', '8.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.2500', '0.0000', '2021-06-03', 'received', '6.0500', '6.0500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11843, 124, NULL, 1485, '008', 'NIZORAL CREAM', NULL, '23.1300', '30.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.3900', '0.0000', '2021-06-03', 'received', '23.1300', '23.1300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.1300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11844, 124, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.4900', '24.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9800', '0.0000', '2021-06-03', 'received', '17.4900', '17.4900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11845, 124, NULL, 2670, '18984546', 'ASPIRIN TABS GEO', NULL, '0.3200', '1.0000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2021-06-03', 'received', '0.3200', '0.3200', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11846, 124, NULL, 2671, '29819837', 'MINADEX MULTIVITAMIN SYRUP 100ML', NULL, '28.8900', '38.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.7800', '0.0000', '2021-06-03', 'received', '28.8900', '28.8900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11847, 124, NULL, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '14.3000', '19.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.9000', '0.0000', '2021-06-03', 'received', '14.3000', '14.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11848, 124, NULL, 2169, '97038500', 'GEBEDOL', NULL, '0.9800', '1.5000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '0.0000', '2021-06-03', 'received', '0.9800', '0.9800', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11849, 124, NULL, 2672, '46856001', 'ALDOMENT 250MGTAB 60\'S', NULL, '7.6200', '10.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '152.4000', '0.0000', '2021-06-03', 'received', '7.6200', '7.6200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '7.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11850, 124, NULL, 2674, '7470263', 'LEMSIP COLD & FLU 5\'S', NULL, '18.0000', '4.8000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-06-03', 'received', '18.0000', '18.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11851, 124, NULL, 2673, '52626423', 'LISINOPRIL 10MG', NULL, '11.0000', '15.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '0.0000', '2021-06-03', 'received', '11.0000', '11.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11852, 124, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '10.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.8000', '0.0000', '2021-06-03', 'received', '7.8900', '7.8900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '7.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11853, 124, NULL, 2022, '69436145', 'CHOCHO CREAM', NULL, '3.5000', '4.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '0.0000', '2021-06-03', 'received', '3.5000', '3.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11854, 124, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '13.9000', '18.3500', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.8000', '0.0000', '2021-06-03', 'received', '13.9000', '13.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11855, NULL, 78, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '13.9000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.8000', '0.0000', '2021-06-04', 'received', '13.9000', '13.9000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11856, NULL, 78, 2022, '69436145', 'CHOCHO CREAM', NULL, '3.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.5000', '0.0000', '2021-06-04', 'received', '3.5000', '3.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11857, NULL, 78, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.9000', '0.0000', '2021-06-04', 'received', '7.8900', '7.8900', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11858, NULL, 78, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.9000', '0.0000', '2021-06-04', 'received', '7.8900', '7.8900', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11859, NULL, 78, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '38.6500', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '154.6000', '0.0000', '2021-06-04', 'received', '38.6500', '38.6500', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11860, NULL, 78, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.2000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.6000', '2.0000', '2021-06-04', 'received', '9.2000', '9.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11861, NULL, 78, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '95.1000', '1.0000', '2021-06-04', 'received', '19.0200', '19.0200', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11862, NULL, 78, 2247, '29226629', 'TRISILICATE SYR', NULL, '2.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.5000', '1.0000', '2021-06-04', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11863, NULL, 78, 2511, '81055477', 'DUROL 300ML', NULL, '8.6000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.8000', '0.0000', '2021-06-04', 'received', '8.6000', '8.6000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11864, NULL, 78, 2667, '02987046', 'AXACEF TAB 250MG', NULL, '25.1700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '75.5100', '2.0000', '2021-06-04', 'received', '25.1700', '25.1700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11865, NULL, 78, 2666, '98057255', 'FLEMING SUSP 228', NULL, '18.7400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.4800', '2.0000', '2021-06-04', 'received', '18.7400', '18.7400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11866, NULL, 78, 2665, '94928957', 'FLEMING 625MG', NULL, '23.7600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '71.2800', '0.0000', '2021-06-04', 'received', '23.7600', '23.7600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11867, NULL, 78, 2344, '08199601', 'FOLIGROW TONIC', NULL, '20.0200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0400', '0.0000', '2021-06-04', 'received', '20.0200', '20.0200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11868, NULL, 78, 2673, '52626423', 'LISINOPRIL 10MG', NULL, '11.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.0000', '3.0000', '2021-06-04', 'received', '11.0000', '11.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11869, NULL, 78, 1859, '8901138502942', 'PILEX TAB', NULL, '24.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '48.0000', '2.0000', '2021-06-04', 'received', '24.0000', '24.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11870, NULL, 78, 2625, '18152598', 'Olfen Gel', NULL, '17.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.0000', '0.0000', '2021-06-04', 'received', '17.0000', '17.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11871, NULL, 78, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7100', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.1000', '1.0000', '2021-06-04', 'received', '2.7100', '2.7100', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11872, NULL, 78, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '71.7300', '1.0000', '2021-06-04', 'received', '23.9100', '23.9100', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11873, NULL, 78, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.0000', '2.0000', '2021-06-04', 'received', '7.0000', '7.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11874, NULL, 78, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '15.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '0.0000', '2021-06-04', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11875, NULL, 78, 2668, '50803356', 'GRISON   FULCIN SYR', NULL, '7.9800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.9600', '2.0000', '2021-06-04', 'received', '7.9800', '7.9800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11876, NULL, 78, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '3.9000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.5000', '0.0000', '2021-06-04', 'received', '3.9000', '3.9000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11877, NULL, 78, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '3.9000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.5000', '4.0000', '2021-06-04', 'received', '3.9000', '3.9000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11878, NULL, 78, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '22.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '67.5000', '2.0000', '2021-06-04', 'received', '22.5000', '22.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11879, NULL, 78, 2392, '10965636', 'CHOCHO SAOP', NULL, '3.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.1000', '2.0000', '2021-06-04', 'received', '3.7000', '3.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11880, NULL, 78, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '180.0000', '0.0000', '2021-06-04', 'received', '36.0000', '36.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11881, NULL, 78, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '0.0000', '2021-06-04', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11882, NULL, 78, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '10.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '0.0000', '2021-06-04', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11883, NULL, 78, 2669, '24220016', 'POLYGYNAX PESS', NULL, '49.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.0000', '1.0000', '2021-06-04', 'received', '49.0000', '49.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11884, NULL, 78, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.6400', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '58.2000', '3.0000', '2021-06-04', 'received', '11.6400', '11.6400', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11885, NULL, 78, 1316, 'PR-29', 'FAMACOLD SYR', NULL, '6.3000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.9000', '1.0000', '2021-06-04', 'received', '6.3000', '6.3000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11886, NULL, 78, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.8300', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '176.6000', '0.0000', '2021-06-04', 'received', '8.8300', '8.8300', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11887, NULL, 78, 2348, '70645774', 'LYNUX OINT', NULL, '22.0300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.0600', '0.0000', '2021-06-04', 'received', '22.0300', '22.0300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11888, NULL, 78, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.8800', '0.0000', '2021-06-04', 'received', '17.9400', '17.9400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11889, NULL, 78, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.0900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.1800', '0.0000', '2021-06-04', 'received', '27.0900', '27.0900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11890, NULL, 78, 2672, '46856001', 'ALDOMENT 250MGTAB 60\'S', NULL, '7.6200', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '152.4000', '14.0000', '2021-06-04', 'received', '7.6200', '7.6200', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11891, NULL, 78, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9900', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '139.8000', '4.0000', '2021-06-04', 'received', '6.9900', '6.9900', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11892, NULL, 78, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', NULL, '4.4500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.3500', '0.0000', '2021-06-04', 'received', '4.4500', '4.4500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11893, NULL, 78, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '6.0500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.2500', '0.0000', '2021-06-04', 'received', '6.0500', '6.0500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11894, NULL, 78, 1485, '008', 'NIZORAL CREAM', NULL, '23.1300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '69.3900', '3.0000', '2021-06-04', 'received', '23.1300', '23.1300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11895, NULL, 78, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.4900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.9800', '2.0000', '2021-06-04', 'received', '17.4900', '17.4900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11896, NULL, 78, 2670, '18984546', 'ASPIRIN TABS GEO', NULL, '0.3200', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.0000', '92.0000', '2021-06-04', 'received', '0.3200', '0.3200', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11897, NULL, 78, 2671, '29819837', 'MINADEX MULTIVITAMIN SYRUP 100ML', NULL, '28.8900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.7800', '2.0000', '2021-06-04', 'received', '28.8900', '28.8900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11898, NULL, 78, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '14.3000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.9000', '1.0000', '2021-06-04', 'received', '14.3000', '14.3000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11899, NULL, 78, 2169, '97038500', 'GEBEDOL', NULL, '1.1000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '2.0000', '2021-06-04', 'received', '1.1000', '1.1000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11900, NULL, 78, 2674, '7470263', 'LEMSIP COLD & FLU 5\'S', NULL, '3.6000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '0.0000', '2021-06-04', 'received', '3.6000', '3.6000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11931, NULL, NULL, 2655, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-8.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11932, NULL, NULL, 1529, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11948, NULL, NULL, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '21.1800', '0.0000', '-1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '-21.1800', '1.0000', '2021-06-04', 'received', '21.1800', '21.1800', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11955, NULL, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.3700', '0.0000', '-50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '-18.5000', '-9.0000', '2021-06-04', 'received', '0.3700', '0.3700', '-50.0000', NULL, NULL, 1, 'pc', '-50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12000, 123, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '56.2500', '74.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.5000', '0.0000', '2021-05-31', 'received', '56.2500', '56.2500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '56.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12001, 123, NULL, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', NULL, '29.4000', '39.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '0.0000', '2021-05-31', 'received', '29.4000', '29.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12002, 123, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '48.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '179.0000', '0.0000', '2021-05-31', 'received', '35.8000', '35.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '35.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12003, 123, NULL, 2350, '58123990', 'COARTEM 6\'S', NULL, '10.3800', '13.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.7600', '0.0000', '2021-05-31', 'received', '10.3800', '10.3800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.3800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12004, 123, NULL, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '0.8500', '2.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2000', '0.0000', '2021-05-31', 'received', '0.8500', '0.8500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '0.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12005, 123, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '9.3000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9000', '0.0000', '2021-05-31', 'received', '9.3000', '9.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12006, 123, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '7.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-05-31', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12007, 123, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '11.5000', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '0.0000', '2021-05-31', 'received', '11.5000', '11.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12008, 123, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '24.9800', '34.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.9600', '0.0000', '2021-05-31', 'received', '24.9800', '24.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12009, 123, NULL, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '20.2800', '28.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.2800', '0.0000', '2021-05-31', 'received', '20.2800', '20.2800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '20.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12010, 123, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '27.0000', '36.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '0.0000', '2021-05-31', 'received', '27.0000', '27.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12011, 123, NULL, 2169, '97038500', 'GEBEDOL', NULL, '0.9800', '1.5000', '18.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6400', '0.0000', '2021-05-31', 'received', '0.9800', '0.9800', '18.0000', NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, '0.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12012, 123, NULL, 2085, '35811477', 'PARA DENK 125MG', NULL, '1.4000', '1.8000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-05-31', 'received', '1.4000', '1.4000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12013, 123, NULL, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.3700', '0.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2021-05-31', 'received', '0.3700', '0.3700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.3700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12014, 123, NULL, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.4000', '0.5000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '91.0000', '2021-05-31', 'received', '0.4000', '0.4000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12015, 123, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.3000', '4.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '0.0000', '2021-05-31', 'received', '2.3000', '2.3000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12016, 123, NULL, 2650, '58359784', 'DICNAC 75 SR', NULL, '7.3200', '10.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.6400', '0.0000', '2021-05-31', 'received', '7.3200', '7.3200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12017, 123, NULL, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', NULL, '0.4200', '3.0000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '0.0000', '2021-05-31', 'received', '0.4200', '0.4200', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.4200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12018, 123, NULL, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', NULL, '0.7200', '1.5000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-05-31', 'received', '0.7200', '0.7200', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12019, 123, NULL, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', NULL, '0.9800', '1.3000', '36.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.2800', '0.0000', '2021-05-31', 'received', '0.9800', '0.9800', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '0.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12020, 123, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '3.9200', '5.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.7600', '0.0000', '2021-05-31', 'received', '3.9200', '3.9200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.9200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12021, 123, NULL, 2492, '51417644', 'NIZORAL SHAMPOO', NULL, '21.9900', '30.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.9800', '0.0000', '2021-05-31', 'received', '21.9900', '21.9900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12022, 123, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '14.0500', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.1000', '0.0000', '2021-05-31', 'received', '14.0500', '14.0500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12023, 123, NULL, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.3200', '1.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.6000', '0.0000', '2021-05-31', 'received', '0.3200', '0.3200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12024, 123, NULL, 2663, '58928731', 'QUINNE MALERIA SYRUP', NULL, '4.6000', '6.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4000', '0.0000', '2021-05-31', 'received', '4.6000', '4.6000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '4.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12025, 123, NULL, 1599, 'PR-312', 'RONZOLE 20MG CAPS', NULL, '1.2800', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.8000', '0.0000', '2021-05-31', 'received', '1.2800', '1.2800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12026, 123, NULL, 2658, '46663167', 'CANNULA G20 PINK', NULL, '0.9000', '1.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.0000', '0.0000', '2021-05-31', 'received', '0.9000', '0.9000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '0.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12027, 123, NULL, 2659, '48350053', 'LACTULOSE SOLUTION 300ML', NULL, '25.4800', '33.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.9600', '0.0000', '2021-05-31', 'received', '25.4800', '25.4800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.4800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12028, 123, NULL, 2660, '84556664', 'ANDREWS LIVER SALT', NULL, '0.7000', '1.0000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2021-05-31', 'received', '0.7000', '0.7000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12029, 123, NULL, 2662, '78880294', 'LORNAT TAB', NULL, '4.5000', '6.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-05-31', 'received', '4.5000', '4.5000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12030, 123, NULL, 2661, '52395020', 'GACET 1G', NULL, '9.0000', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-05-31', 'received', '9.0000', '9.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12031, NULL, NULL, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '0.8500', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '10.2000', '0.0000', '2021-06-04', 'received', '0.8500', '0.8500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12032, NULL, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.0000', '-1.0000', '2021-06-04', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12033, NULL, NULL, 2650, '58359784', 'DICNAC 75 SR', NULL, '7.3200', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '14.6400', '-2.0000', '2021-06-04', 'received', '7.3200', '7.3200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12034, NULL, NULL, 2658, '46663167', 'CANNULA G20 PINK', NULL, '0.9000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '9.0000', '0.0000', '2021-06-04', 'received', '0.9000', '0.9000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12035, NULL, NULL, 2659, '48350053', 'LACTULOSE SOLUTION 300ML', NULL, '25.4800', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '50.9600', '0.0000', '2021-06-04', 'received', '25.4800', '25.4800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12036, NULL, NULL, 2662, '78880294', 'LORNAT TAB', NULL, '4.5000', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '90.0000', '-5.0000', '2021-06-04', 'received', '4.5000', '4.5000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12037, NULL, 77, 2662, '78880294', 'LORNAT TAB', NULL, '4.5000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.0000', '10.0000', '2021-06-04', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12038, NULL, 77, 2660, '84556664', 'ANDREWS LIVER SALT', NULL, '0.7000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.0000', '0.0000', '2021-06-04', 'received', '0.7000', '0.7000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12039, NULL, 77, 2660, '84556664', 'ANDREWS LIVER SALT', NULL, '0.7000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.0000', '35.0000', '2021-06-04', 'received', '0.7000', '0.7000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12040, NULL, 77, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '14.0500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.1000', '0.0000', '2021-06-04', 'received', '14.0500', '14.0500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12041, NULL, 77, 2492, '51417644', 'NIZORAL SHAMPOO', NULL, '21.9900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.9800', '2.0000', '2021-06-04', 'received', '21.9900', '21.9900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12042, NULL, 77, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '3.9200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.7600', '1.0000', '2021-06-04', 'received', '3.9200', '3.9200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12043, NULL, 77, 2659, '48350053', 'LACTULOSE SOLUTION 300ML', NULL, '25.4800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.9600', '1.0000', '2021-06-04', 'received', '25.4800', '25.4800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12044, NULL, 77, 2658, '46663167', 'CANNULA G20 PINK', NULL, '0.9000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.0000', '10.0000', '2021-06-04', 'received', '0.9000', '0.9000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12045, NULL, 77, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', NULL, '0.7200', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '3.6000', '0.0000', '2021-06-04', 'received', '0.7200', '0.7200', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12046, NULL, 77, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', NULL, '0.7200', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.4000', '4.0000', '2021-06-04', 'received', '0.7200', '0.7200', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12047, NULL, 77, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', NULL, '0.9800', '0.0000', '36.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.2800', '21.0000', '2021-06-04', 'received', '0.9800', '0.9800', NULL, NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12048, NULL, 77, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', NULL, '0.4200', '0.0000', '25.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.5000', '16.0000', '2021-06-04', 'received', '0.4200', '0.4200', NULL, NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12049, NULL, 77, 2650, '58359784', 'DICNAC 75 SR', NULL, '7.3200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.6400', '0.0000', '2021-06-04', 'received', '7.3200', '7.3200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12050, NULL, 77, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.3000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.0000', '0.0000', '2021-06-04', 'received', '2.3000', '2.3000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12051, NULL, 77, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.3700', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.5000', '0.0000', '2021-06-04', 'received', '0.3700', '0.3700', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12052, NULL, 77, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', NULL, '0.3700', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.5000', '0.0000', '2021-06-04', 'received', '0.3700', '0.3700', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12053, NULL, 77, 2085, '35811477', 'PARA DENK 125MG', NULL, '1.4000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.0000', '0.0000', '2021-06-04', 'received', '1.4000', '1.4000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12054, NULL, 77, 2169, '97038500', 'GEBEDOL', NULL, '1.1000', '0.0000', '18.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.8000', '18.0000', '2021-06-04', 'received', '1.1000', '1.1000', NULL, NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12055, NULL, 77, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '27.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '0.0000', '2021-06-04', 'received', '27.0000', '27.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12056, NULL, 77, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '27.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.0000', '1.0000', '2021-06-04', 'received', '27.0000', '27.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12057, NULL, 77, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '21.1800', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.1800', '0.0000', '2021-06-04', 'received', '21.1800', '21.1800', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12058, NULL, 77, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '21.1800', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.1800', '0.0000', '2021-06-04', 'received', '21.1800', '21.1800', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12059, NULL, 77, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '26.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.0000', '0.0000', '2021-06-04', 'received', '26.0000', '26.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12060, NULL, 77, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '0.0000', '2021-06-04', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12061, NULL, 77, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '5.5000', '0.0000', '2021-06-04', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12062, NULL, 77, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.0000', '2.0000', '2021-06-04', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12063, NULL, 77, 2252, '08741188', 'FLUREST TABS', NULL, '9.3000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.9000', '3.0000', '2021-06-04', 'received', '9.3000', '9.3000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12064, NULL, 77, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', NULL, '0.8500', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.2000', '6.0000', '2021-06-04', 'received', '0.8500', '0.8500', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12065, NULL, 77, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '71.6000', '0.0000', '2021-06-04', 'received', '35.8000', '35.8000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12066, NULL, 77, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '107.4000', '0.0000', '2021-06-04', 'received', '35.8000', '35.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12067, NULL, 77, 2663, '58928731', 'QUINNE MALERIA SYRUP', NULL, '4.6000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.4000', '3.0000', '2021-06-04', 'received', '4.6000', '4.6000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12068, NULL, 77, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', NULL, '29.4000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '58.8000', '0.0000', '2021-06-04', 'received', '29.4000', '29.4000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12069, NULL, 77, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '56.2500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '112.5000', '1.0000', '2021-06-04', 'received', '56.2500', '56.2500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12070, NULL, 77, 1904, 'PR-617', 'RhIZIN Tablet', NULL, '0.3200', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.6000', '0.0000', '2021-06-04', 'received', '0.3200', '0.3200', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12071, NULL, 77, 1599, 'PR-312', 'RONZOLE 20MG CAPS', NULL, '1.2800', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.8000', '1.0000', '2021-06-04', 'received', '1.2800', '1.2800', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12072, NULL, 77, 2661, '52395020', 'GACET 1G', NULL, '9.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '1.0000', '2021-06-04', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12073, NULL, NULL, 1504, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12161, NULL, NULL, 2678, '32692312', 'NAPROSYN EC 500MG UK', NULL, '37.0000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '370.0000', '-1.0000', '2021-06-05', 'received', '37.0000', '37.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12162, NULL, NULL, 2679, '42097030', 'PEVISONE CREAM', NULL, '32.3500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '97.0500', '-2.0000', '2021-06-05', 'received', '32.3500', '32.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12163, NULL, NULL, 2680, '27326576', 'OLFEN GEL 20GM S/S', NULL, '11.8600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '35.5800', '0.0000', '2021-06-05', 'received', '11.8600', '11.8600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12164, NULL, NULL, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '12.4000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '124.0000', '0.0000', '2021-06-05', 'received', '12.4000', '12.4000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12165, NULL, NULL, 2682, '40258519', 'FOLIGROW CAPS', NULL, '19.3000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '57.9000', '0.0000', '2021-06-05', 'received', '19.3000', '19.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12166, NULL, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '8.0500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.1500', '-2.0000', '2021-06-05', 'received', '8.0500', '8.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12167, NULL, NULL, 2622, '79117239', 'COMBANTRIN', NULL, '19.0000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '190.0000', '-2.0000', '2021-06-05', 'received', '19.0000', '19.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12168, NULL, NULL, 2539, '39255568', 'THERMOMETER DIGITAL', NULL, '10.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.0000', '-1.0000', '2021-06-05', 'received', '10.0000', '10.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12169, NULL, NULL, 2676, '39826217', 'ONE TOUCH SELECT PLUS STRIP', NULL, '2.4000', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '120.0000', '0.0000', '2021-06-05', 'received', '2.4000', '2.4000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12170, NULL, NULL, 2677, '55662189', 'ONE TOUCH SELECT PLUS METER', NULL, '250.0000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '250.0000', '0.0000', '2021-06-05', 'received', '250.0000', '250.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12171, NULL, NULL, 2675, '86806784', 'ON CALL PLUS STRIPS', NULL, '2.0000', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '100.0000', '0.0000', '2021-06-05', 'received', '2.0000', '2.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12197, NULL, NULL, 1966, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12198, 125, NULL, 2539, '39255568', 'THERMOMETER DIGITAL', NULL, '10.0000', '15.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-06-05', 'received', '10.0000', '10.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12199, 125, NULL, 2677, '55662189', 'ONE TOUCH SELECT PLUS METER', NULL, '250.0000', '300.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '250.0000', '0.0000', '2021-06-05', 'received', '250.0000', '250.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12200, 125, NULL, 2676, '39826217', 'ONE TOUCH SELECT PLUS STRIP', NULL, '2.4000', '3.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-06-05', 'received', '2.4000', '2.4000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12201, 125, NULL, 2675, '86806784', 'ON CALL PLUS STRIPS', NULL, '2.0000', '2.6000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-06-05', 'received', '2.0000', '2.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12202, 125, NULL, 2678, '32692312', 'NAPROSYN EC 500MG UK', NULL, '37.0000', '48.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '370.0000', '0.0000', '2021-06-05', 'received', '37.0000', '37.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '37.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12203, 125, NULL, 2334, '99769153', 'CROMAX-2 EYE DROP', NULL, '16.0000', '21.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-06-05', 'received', '16.0000', '16.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12204, 125, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2000', '3.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-06-05', 'received', '2.2000', '2.2000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12205, 125, NULL, 1731, 'PR-444', 'DAKTARIN CREAM 15G', NULL, '19.9600', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8800', '0.0000', '2021-06-05', 'received', '19.9600', '19.9600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12206, 125, NULL, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', NULL, '5.3300', '7.1000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.6000', '0.0000', '2021-06-05', 'received', '5.3300', '5.3300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '5.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12207, 125, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '8.0500', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.1500', '0.0000', '2021-06-05', 'received', '8.0500', '8.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12208, 125, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '2.0000', '24.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2021-06-05', 'received', '1.3000', '1.3000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12209, 125, NULL, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '71.0000', '94.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.0000', '0.0000', '2021-06-05', 'received', '71.0000', '71.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '71.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12210, 125, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '22.6600', '30.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.3200', '0.0000', '2021-06-05', 'received', '22.6600', '22.6600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12211, 125, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.2000', '6.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '0.0000', '2021-06-05', 'received', '4.2000', '4.2000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12212, 125, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '12.2000', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6000', '0.0000', '2021-06-05', 'received', '12.2000', '12.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12213, 125, NULL, 2335, '90387267', 'EPICROM EYE DROP 2%', NULL, '13.9000', '18.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.8000', '0.0000', '2021-06-05', 'received', '13.9000', '13.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12214, 125, NULL, 2327, '66319646', 'MR Q', NULL, '4.5000', '6.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '225.0000', '0.0000', '2021-06-05', 'received', '4.5000', '4.5000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12215, 125, NULL, 2622, '79117239', 'COMBANTRIN', NULL, '19.0000', '25.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '190.0000', '0.0000', '2021-06-05', 'received', '19.0000', '19.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12216, 125, NULL, 2679, '42097030', 'PEVISONE CREAM', NULL, '32.3500', '43.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.0500', '0.0000', '2021-06-05', 'received', '32.3500', '32.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '32.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12217, 125, NULL, 2680, '27326576', 'OLFEN GEL 20GM S/S', NULL, '11.8600', '15.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5800', '0.0000', '2021-06-05', 'received', '11.8600', '11.8600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12218, 125, NULL, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '12.4000', '16.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.0000', '0.0000', '2021-06-05', 'received', '12.4000', '12.4000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '12.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12219, 125, NULL, 2682, '40258519', 'FOLIGROW CAPS', NULL, '19.3000', '25.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.9000', '0.0000', '2021-06-05', 'received', '19.3000', '19.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12220, 125, NULL, 2683, '54509632', 'ZINNAT 250 MG', NULL, '49.0000', '64.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.0000', '0.0000', '2021-06-05', 'received', '49.0000', '49.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '49.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12221, 125, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '28.1300', '37.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.7800', '0.0000', '2021-06-05', 'received', '28.1300', '28.1300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '28.1300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12222, NULL, NULL, 2683, '54509632', 'ZINNAT 250 MG', NULL, '49.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '147.0000', '-1.0000', '2021-06-06', 'received', '49.0000', '49.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12223, NULL, 79, 2683, '54509632', 'ZINNAT 250 MG', NULL, '49.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '147.0000', '2.0000', '2021-06-06', 'received', '49.0000', '49.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12224, NULL, 79, 2678, '32692312', 'NAPROSYN EC 500MG UK', NULL, '37.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '370.0000', '6.0000', '2021-06-06', 'received', '37.0000', '37.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12225, NULL, 79, 2334, '99769153', 'CROMAX-2 EYE DROP', NULL, '16.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '48.0000', '1.0000', '2021-06-06', 'received', '16.0000', '16.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12226, NULL, 79, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.1000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.0000', '0.0000', '2021-06-06', 'received', '2.1000', '2.1000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12227, NULL, 79, 1731, 'PR-444', 'DAKTARIN CREAM 15G', NULL, '19.9600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '59.8800', '0.0000', '2021-06-06', 'received', '19.9600', '19.9600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12228, NULL, 79, 2679, '42097030', 'PEVISONE CREAM', NULL, '32.3500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '97.0500', '1.0000', '2021-06-06', 'received', '32.3500', '32.3500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12229, NULL, 79, 2680, '27326576', 'OLFEN GEL 20GM S/S', NULL, '11.8600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.5800', '0.0000', '2021-06-06', 'received', '11.8600', '11.8600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12230, NULL, 79, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', NULL, '5.3300', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '106.6000', '0.0000', '2021-06-06', 'received', '5.3300', '5.3300', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12231, NULL, 79, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '12.4000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '124.0000', '3.0000', '2021-06-06', 'received', '12.4000', '12.4000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12232, NULL, 79, 2682, '40258519', 'FOLIGROW CAPS', NULL, '19.3000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.9000', '3.0000', '2021-06-06', 'received', '19.3000', '19.3000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12233, NULL, 79, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '8.0500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.1500', '1.0000', '2021-06-06', 'received', '8.0500', '8.0500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12234, NULL, 79, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '0.0000', '24.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.2000', '0.0000', '2021-06-06', 'received', '1.3000', '1.3000', NULL, NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12235, NULL, 79, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '71.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '71.0000', '0.0000', '2021-06-06', 'received', '71.0000', '71.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12236, NULL, 79, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '71.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '71.0000', '0.0000', '2021-06-06', 'received', '71.0000', '71.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12237, NULL, 79, 1859, '8901138502942', 'PILEX TAB', NULL, '22.6600', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.3200', '1.0000', '2021-06-06', 'received', '22.6600', '22.6600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12238, NULL, 79, 2260, '29581054', 'DRAGON TABS', NULL, '4.2000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.4000', '0.0000', '2021-06-06', 'received', '4.2000', '4.2000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12239, NULL, 79, 2491, '57627875', 'BELLS VITAMIN C', NULL, '12.2000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.6000', '0.0000', '2021-06-06', 'received', '12.2000', '12.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12240, NULL, 79, 2335, '90387267', 'EPICROM EYE DROP 2%', NULL, '13.9000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.8000', '1.0000', '2021-06-06', 'received', '13.9000', '13.9000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12241, NULL, 79, 2327, '66319646', 'MR Q', NULL, '4.5000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.0000', '0.0000', '2021-06-06', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12242, NULL, 79, 2327, '66319646', 'MR Q', NULL, '4.5000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '135.0000', '5.0000', '2021-06-06', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12243, NULL, 79, 2622, '79117239', 'COMBANTRIN', NULL, '19.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '190.0000', '2.0000', '2021-06-06', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12244, NULL, 79, 2539, '39255568', 'THERMOMETER DIGITAL', NULL, '10.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '3.0000', '2021-06-06', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12245, NULL, 79, 2676, '39826217', 'ONE TOUCH SELECT PLUS STRIP', NULL, '2.4000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '0.0000', '2021-06-06', 'received', '2.4000', '2.4000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12246, NULL, 79, 2677, '55662189', 'ONE TOUCH SELECT PLUS METER', NULL, '250.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '250.0000', '0.0000', '2021-06-06', 'received', '250.0000', '250.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12247, NULL, 79, 2675, '86806784', 'ON CALL PLUS STRIPS', NULL, '2.0000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '100.0000', '50.0000', '2021-06-06', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12248, NULL, 79, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '28.1300', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '168.7800', '6.0000', '2021-06-06', 'received', '28.1300', '28.1300', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12277, 127, NULL, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', NULL, '45.0000', '60.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-06-08', 'received', '45.0000', '45.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12278, 127, NULL, 2509, '01336804', 'VENTOLIN SYRUP 100ML', NULL, '24.5800', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.1600', '0.0000', '2021-06-08', 'received', '24.5800', '24.5800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.5800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12279, 127, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '25.0100', '33.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0200', '0.0000', '2021-06-08', 'received', '25.0100', '25.0100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.0100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12280, 127, NULL, 1773, '7640153082091', 'XYLO ACINO MEPHA 0.10ML', NULL, '42.0000', '59.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2021-06-08', 'received', '42.0000', '42.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '42.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12281, 127, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '17.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2021-06-08', 'received', '13.0000', '13.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12282, 127, NULL, 2694, '59710964', 'ZINC OXIDE PLASTER 1\'\'', NULL, '3.5000', '5.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-06-08', 'received', '3.5000', '3.5000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12283, NULL, NULL, 2694, '59710964', 'ZINC OXIDE PLASTER 1\'\'', NULL, '3.5000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '42.0000', '0.0000', '2021-06-08', 'received', '3.5000', '3.5000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12284, NULL, NULL, 2509, '01336804', 'VENTOLIN SYRUP 100ML', NULL, '13.7600', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '27.5200', '0.0000', '2021-06-08', 'received', '13.7600', '13.7600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12285, NULL, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '25.0100', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '50.0200', '-1.0000', '2021-06-08', 'received', '25.0100', '25.0100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12286, NULL, 80, 1773, '7640153082091', 'XYLO ACINO MEPHA 0.10ML', NULL, '42.0500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '84.1000', '2.0000', '2021-06-08', 'received', '42.0500', '42.0500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12287, NULL, 80, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '25.0100', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.0200', '1.0000', '2021-06-08', 'received', '25.0100', '25.0100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12288, NULL, 80, 2509, '01336804', 'VENTOLIN SYRUP 100ML', NULL, '24.5800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.1600', '2.0000', '2021-06-08', 'received', '24.5800', '24.5800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12289, NULL, 80, 2694, '59710964', 'ZINC OXIDE PLASTER 1\'\'', NULL, '3.5000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.0000', '9.0000', '2021-06-08', 'received', '3.5000', '3.5000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12290, NULL, 80, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', NULL, '42.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '84.0000', '0.0000', '2021-06-08', 'received', '42.0000', '42.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12291, NULL, 80, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '0.0000', '2021-06-08', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12292, NULL, 80, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '2.0000', '2021-06-08', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12336, NULL, NULL, 2695, '26196799', 'ANAFRANIL TAB', NULL, '2.0000', '0.0000', '60.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '120.0000', '0.0000', '2021-06-08', 'received', '2.0000', '2.0000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12350, NULL, NULL, 2696, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12370, 129, NULL, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '8.9900', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.9700', '0.0000', '2021-06-09', 'received', '8.9900', '8.9900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12371, 129, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '19.0000', '27.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '0.0000', '2021-06-09', 'received', '19.0000', '19.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12372, 129, NULL, 1955, '4014852751801', 'PROCOMIL TABLET', NULL, '11.7000', '15.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.2000', '0.0000', '2021-06-09', 'received', '11.7000', '11.7000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '11.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12373, 129, NULL, 2541, '39996904', 'DEMACOT CREAM', NULL, '9.7500', '13.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2500', '0.0000', '2021-06-09', 'received', '9.7500', '9.7500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12374, 129, NULL, 2331, '22131552', 'IMODIYM CAPS 2MG 6\'S', NULL, '12.0700', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.2100', '0.0000', '2021-06-09', 'received', '12.0700', '12.0700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12375, 129, NULL, 2661, '52395020', 'GACET 1G', NULL, '9.0000', '12.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-06-09', 'received', '9.0000', '9.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12376, 129, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '13.3000', '17.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9000', '0.0000', '2021-06-09', 'received', '13.3000', '13.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12377, 129, NULL, 1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', NULL, '24.5300', '34.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0600', '0.0000', '2021-06-09', 'received', '24.5300', '24.5300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12378, 129, NULL, 2552, '17018789', 'ORELOX SUSP', NULL, '87.0000', '127.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '0.0000', '2021-06-09', 'received', '87.0000', '87.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '87.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12379, 129, NULL, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', NULL, '13.5000', '18.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '0.0000', '2021-06-09', 'received', '13.5000', '13.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12380, 129, NULL, 2698, '01508425', 'NIGHT NURSE CAPS', NULL, '36.8600', '49.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.7200', '0.0000', '2021-06-09', 'received', '36.8600', '36.8600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12381, NULL, 83, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '13.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.0000', '0.0000', '2021-06-09', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12382, NULL, 83, 2259, '72759006', 'DRAGON SPRAY', NULL, '19.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '76.0000', '0.0000', '2021-06-09', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12383, NULL, 83, 1955, '4014852751801', 'PROCOMIL TABLET', NULL, '11.7000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '70.2000', '6.0000', '2021-06-09', 'received', '11.7000', '11.7000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12384, NULL, 83, 2541, '39996904', 'DEMACOT CREAM', NULL, '9.7500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.2500', '1.0000', '2021-06-09', 'received', '9.7500', '9.7500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12385, NULL, 83, 2331, '22131552', 'IMODIYM CAPS 2MG 6\'S', NULL, '12.0700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.2100', '1.0000', '2021-06-09', 'received', '12.0700', '12.0700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12386, NULL, 83, 2661, '52395020', 'GACET 1G', NULL, '12.1000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.5000', '4.0000', '2021-06-09', 'received', '12.1000', '12.1000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12387, NULL, 83, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '13.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.5000', '0.0000', '2021-06-09', 'received', '13.5000', '13.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12388, NULL, 83, 2698, '01508425', 'NIGHT NURSE CAPS', NULL, '36.8600', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '73.7200', '2.0000', '2021-06-09', 'received', '36.8600', '36.8600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12389, NULL, 83, 1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', NULL, '25.7000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '51.4000', '0.0000', '2021-06-09', 'received', '25.7000', '25.7000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12390, NULL, 83, 2552, '17018789', 'ORELOX SUSP', NULL, '95.8900', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '95.8900', '0.0000', '2021-06-09', 'received', '95.8900', '95.8900', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12391, NULL, 83, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', NULL, '13.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.5000', '2.0000', '2021-06-09', 'received', '13.5000', '13.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12392, NULL, NULL, 2468, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12407, NULL, NULL, 1814, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12516, NULL, NULL, 2700, '11271279', 'GAVISCON PEPPERMINT 200ML LIQ', NULL, '27.9700', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '55.9400', '0.0000', '2021-06-10', 'received', '27.9700', '27.9700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12517, NULL, NULL, 2701, '89135402', 'GAVISCON DOUBLE ACTION LIQ', NULL, '31.9800', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '63.9600', '0.0000', '2021-06-10', 'received', '31.9800', '31.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12518, NULL, NULL, 2702, '69900073', 'EXCLEAR NASAL DROPS', NULL, '4.6000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '23.0000', '-1.0000', '2021-06-10', 'received', '4.6000', '4.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12519, NULL, NULL, 2703, '05760199', 'ASCOVIT CEE SYR', NULL, '4.3600', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '21.8000', '0.0000', '2021-06-10', 'received', '4.3600', '4.3600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12520, NULL, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.0500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '27.1500', '1.0000', '2021-06-10', 'received', '9.0500', '9.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12521, NULL, NULL, 1464, '9502930974921', 'SENSONDYN ORIGINAL 75ML', NULL, '10.8900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '32.6700', '0.0000', '2021-06-10', 'received', '10.8900', '10.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12522, NULL, NULL, 1465, '9502930974976', 'SENSOOYNE EXTRA FRESH PASTE 75ML', NULL, '18.2900', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.5800', '0.0000', '2021-06-10', 'received', '18.2900', '18.2900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12523, NULL, NULL, 2704, '24774325', 'SENSODYNE DEEP CLEAN GEL', NULL, '14.9700', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '29.9400', '0.0000', '2021-06-10', 'received', '14.9700', '14.9700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12524, NULL, NULL, 2705, '98893188', 'SENSODYNE FLOURIDE', NULL, '10.9600', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '21.9200', '0.0000', '2021-06-10', 'received', '10.9600', '10.9600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12525, NULL, NULL, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '6.5900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '19.7700', '0.0000', '2021-06-10', 'received', '6.5900', '6.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12526, NULL, NULL, 2707, '54201128', 'HYDROLYTE LEMON', NULL, '0.5400', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '27.0000', '-4.0000', '2021-06-10', 'received', '0.5400', '0.5400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12527, NULL, NULL, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '28.2400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '84.7200', '0.0000', '2021-06-10', 'received', '28.2400', '28.2400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12528, NULL, NULL, 1733, 'PR-446', 'ENAFIX TABS 200MG 10\'', NULL, '8.8900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.6700', '0.0000', '2021-06-10', 'received', '8.8900', '8.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12529, NULL, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '60.0000', '-3.0000', '2021-06-10', 'received', '3.0000', '3.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12637, NULL, NULL, 2691, '57477708', 'STICK ROLL ON S/S', NULL, '6.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.0000', '-1.0000', '2021-06-10', 'received', '6.0000', '6.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12638, NULL, NULL, 2692, '05619425', 'STICK ROLL ON B/S', NULL, '12.0000', '0.0000', '18.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '216.0000', '0.0000', '2021-06-10', 'received', '12.0000', '12.0000', '18.0000', NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12639, NULL, NULL, 2690, '834576006223', 'DERMASIL BODY WASH SHOWER GEL', NULL, '17.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '51.0000', '-1.0000', '2021-06-10', 'received', '17.0000', '17.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12640, NULL, NULL, 2688, '870223002637', 'DAILY DEFENSE  BODY WASH SHOWER GEL', NULL, '17.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '34.0000', '0.0000', '2021-06-10', 'received', '17.0000', '17.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12641, NULL, NULL, 2689, '852474360018', 'OLIVE OIL BODY WASH SHOWER GEL', NULL, '17.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '34.0000', '0.0000', '2021-06-10', 'received', '17.0000', '17.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12642, NULL, NULL, 2686, '011111051249', 'DOVE MEN CARE BODY CARE', NULL, '35.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '105.0000', '0.0000', '2021-06-10', 'received', '35.0000', '35.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12643, NULL, NULL, 2687, '815195014509', 'ULTRA MAX BOBY WASH SHOWER GEL', NULL, '15.0000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-06-10', 'received', '15.0000', '15.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12644, NULL, NULL, 2684, '037000685685', 'OLAY BODY WASH SHOWER GEL', NULL, '35.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '105.0000', '0.0000', '2021-06-10', 'received', '35.0000', '35.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12645, NULL, NULL, 2685, '011111014237', 'DOVE BODY WASH SHOWER GEL', NULL, '35.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '210.0000', '-1.0000', '2021-06-10', 'received', '35.0000', '35.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12656, NULL, NULL, 2149, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12657, NULL, NULL, 2484, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12658, NULL, NULL, 1499, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12659, 128, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3100', '3.0000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.6000', '0.0000', '2021-06-08', 'received', '2.3100', '2.3100', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.3100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12660, 128, NULL, 2574, '24484092', 'DULCOLAX TABS 5MG 20\'S', NULL, '0.7800', '1.5000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.8000', '0.0000', '2021-06-08', 'received', '0.7800', '0.7800', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12661, 128, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '7.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-06-08', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12662, 128, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.4400', '11.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.2000', '0.0000', '2021-06-08', 'received', '8.4400', '8.4400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.4400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12663, 128, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '18.0000', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-06-08', 'received', '18.0000', '18.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12664, 128, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '14.9700', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9400', '0.0000', '2021-06-08', 'received', '14.9700', '14.9700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.9700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12665, 128, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.2300', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.3000', '0.0000', '2021-06-08', 'received', '2.2300', '2.2300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.2300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12666, 128, NULL, 2695, '26196799', 'ANAFRANIL TAB', NULL, '2.0000', '2.7000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-06-08', 'received', '2.0000', '2.0000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12667, 128, NULL, 1886, 'PR-599', 'NORVASC 10MG 30?S', NULL, '76.0000', '100.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '456.0000', '0.0000', '2021-06-08', 'received', '76.0000', '76.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '76.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12668, 128, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '17.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-06-08', 'received', '13.0000', '13.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12669, 128, NULL, 2316, '59549986', 'SMA BABY FOOD', NULL, '44.0000', '46.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2021-06-08', 'received', '44.0000', '44.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '44.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12670, NULL, 81, 1886, 'PR-599', 'NORVASC 10MG 30?S', NULL, '76.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '456.0000', '5.0000', '2021-06-11', 'received', '76.0000', '76.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12671, NULL, 81, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.4000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.0000', '0.0000', '2021-06-11', 'received', '2.4000', '2.4000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12672, NULL, 81, 2574, '24484092', 'DULCOLAX TABS 5MG 20\'S', NULL, '0.7800', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.4000', '20.0000', '2021-06-11', 'received', '0.7800', '0.7800', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12673, NULL, 81, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.5000', '1.0000', '2021-06-11', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12674, NULL, 81, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '7.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.4000', '0.0000', '2021-06-11', 'received', '7.8000', '7.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12675, NULL, 81, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '7.8000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.6000', '0.0000', '2021-06-11', 'received', '7.8000', '7.8000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12676, NULL, 81, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.4900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.4700', '0.0000', '2021-06-11', 'received', '17.4900', '17.4900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12677, NULL, 81, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '14.9700', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.9700', '0.0000', '2021-06-11', 'received', '14.9700', '14.9700', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12678, NULL, 81, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '14.9700', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.9700', '1.0000', '2021-06-11', 'received', '14.9700', '14.9700', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12679, NULL, 81, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.0500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.2500', '0.0000', '2021-06-11', 'received', '2.0500', '2.0500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12680, NULL, 81, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.0500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.2500', '3.0000', '2021-06-11', 'received', '2.0500', '2.0500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12681, NULL, 81, 2695, '26196799', 'ANAFRANIL TAB', NULL, '2.0000', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '58.0000', '2021-06-11', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12682, NULL, 81, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.4000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.0000', '0.0000', '2021-06-11', 'received', '2.4000', '2.4000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12683, NULL, 81, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.0000', '0.0000', '2021-06-11', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12684, NULL, 81, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.0000', '0.0000', '2021-06-11', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12685, NULL, 81, 2316, '59549986', 'SMA BABY FOOD', NULL, '44.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '88.0000', '1.0000', '2021-06-11', 'received', '44.0000', '44.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12686, NULL, NULL, 2697, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12687, 130, NULL, 1669, '5000456024778', 'NEXIUM 40MG TAB', NULL, '6.7000', '9.0000', '28.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '187.6000', '0.0000', '2021-06-09', 'received', '6.7000', '6.7000', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '6.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12688, 130, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.6900', '7.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4500', '0.0000', '2021-06-09', 'received', '4.6900', '4.6900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12689, 130, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.3000', '4.0000', '24.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.2000', '0.0000', '2021-06-09', 'received', '2.3000', '2.3000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '2.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12690, 130, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '6.0000', '8.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-06-09', 'received', '6.0000', '6.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12691, 130, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '5.8800', '8.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6400', '0.0000', '2021-06-09', 'received', '5.8800', '5.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12692, 130, NULL, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '27.9300', '37.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8600', '0.0000', '2021-06-09', 'received', '27.9300', '27.9300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.9300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12693, 130, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '32.5000', '39.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-06-09', 'received', '32.5000', '32.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12694, 130, NULL, 2544, '85585070', 'NEXCOFER SYR L/S', NULL, '6.8800', '9.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.6400', '0.0000', '2021-06-09', 'received', '6.8800', '6.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12695, 130, NULL, 2466, '574992', 'ZINCOFER CAPS', NULL, '13.5900', '18.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.7700', '3.0000', '2021-06-09', 'received', '13.5900', '13.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12696, 130, NULL, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '21.4500', '38.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.3500', '0.0000', '2021-06-09', 'received', '21.4500', '21.4500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.4500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12697, 130, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '20.0000', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-06-09', 'received', '20.0000', '20.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12698, 130, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '29.0000', '38.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '348.0000', '0.0000', '2021-06-09', 'received', '29.0000', '29.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '29.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12699, 130, NULL, 1733, 'PR-446', 'ENAFIX TABS 200MG 10\'', NULL, '8.8900', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.6700', '0.0000', '2021-06-09', 'received', '8.8900', '8.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12700, 130, NULL, 2505, '28562016', 'ORELOX 100MG TABLETS', NULL, '68.5900', '130.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.5900', '0.0000', '2021-06-09', 'received', '68.5900', '68.5900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '68.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12701, 130, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '4.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-06-09', 'received', '3.0000', '3.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12702, 130, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '20.7800', '27.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.5600', '0.0000', '2021-06-09', 'received', '20.7800', '20.7800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12703, 130, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '17.8000', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.4000', '0.0000', '2021-06-09', 'received', '17.8000', '17.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12704, 130, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.0500', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.1500', '0.0000', '2021-06-09', 'received', '9.0500', '9.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12705, 130, NULL, 1464, '9502930974921', 'SENSONDYN ORIGINAL 75ML', NULL, '10.8900', '17.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.6700', '0.0000', '2021-06-09', 'received', '10.8900', '10.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12706, 130, NULL, 1465, '9502930974976', 'SENSOOYNE EXTRA FRESH PASTE 75ML', NULL, '18.2900', '24.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5800', '0.0000', '2021-06-09', 'received', '18.2900', '18.2900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12707, 130, NULL, 2557, '86393917', 'METOCLOPRAMIDE', NULL, '1.0000', '1.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-06-09', 'received', '1.0000', '1.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12708, 130, NULL, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '6.5900', '9.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7700', '0.0000', '2021-06-09', 'received', '6.5900', '6.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12709, 130, NULL, 2707, '54201128', 'HYDROLYTE LEMON', NULL, '0.5400', '1.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-06-09', 'received', '0.5400', '0.5400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.5400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12710, 130, NULL, 2700, '11271279', 'GAVISCON PEPPERMINT 200ML LIQ', NULL, '27.9700', '37.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.9400', '0.0000', '2021-06-09', 'received', '27.9700', '27.9700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.9700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12711, 130, NULL, 2701, '89135402', 'GAVISCON DOUBLE ACTION LIQ', NULL, '31.9800', '42.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.9600', '0.0000', '2021-06-09', 'received', '31.9800', '31.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '31.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12712, 130, NULL, 2702, '69900073', 'EXCLEAR NASAL DROPS', NULL, '4.6000', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-06-09', 'received', '4.6000', '4.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12713, 130, NULL, 2703, '05760199', 'ASCOVIT CEE SYR', NULL, '4.3600', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.8000', '0.0000', '2021-06-09', 'received', '4.3600', '4.3600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.3600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12714, 130, NULL, 2704, '24774325', 'SENSODYNE DEEP CLEAN GEL', NULL, '14.9700', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9400', '0.0000', '2021-06-09', 'received', '14.9700', '14.9700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.9700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12715, 130, NULL, 2705, '98893188', 'SENSODYNE FLOURIDE', NULL, '10.9600', '17.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9200', '0.0000', '2021-06-09', 'received', '10.9600', '10.9600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12716, 130, NULL, 2708, '5012616291791', 'PHILIPS MILK OF MAGNESIA', NULL, '33.9600', '45.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.9200', '0.0000', '2021-06-09', 'received', '33.9600', '33.9600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12717, 130, NULL, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '8.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-06-09', 'received', '6.5000', '6.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12718, 130, NULL, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.5000', '2.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-06-09', 'received', '1.5000', '1.5000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12719, 130, NULL, 2710, '09217360', 'AUGMENTIN SUSP 457MG', NULL, '40.3000', '53.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.6000', '0.0000', '2021-06-09', 'received', '40.3000', '40.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '40.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12720, NULL, NULL, 2708, '5012616291791', 'PHILIPS MILK OF MAGNESIA', NULL, '33.9600', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '67.9200', '0.0000', '2021-06-14', 'received', '33.9600', '33.9600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12721, NULL, 84, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.5000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '0.0000', '2021-06-14', 'received', '1.5000', '1.5000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12722, NULL, 84, 2656, '88370131', 'CHOCOLATE S/S', NULL, '1.5000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '3.0000', '2021-06-14', 'received', '1.5000', '1.5000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12723, NULL, 84, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.5000', '0.0000', '2021-06-14', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12724, NULL, 84, 2655, '06401154', 'CHOCOLATE B/S', NULL, '6.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.5000', '0.0000', '2021-06-14', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12725, NULL, 84, 2708, '5012616291791', 'PHILIPS MILK OF MAGNESIA', NULL, '33.9600', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '67.9200', '0.0000', '2021-06-14', 'received', '33.9600', '33.9600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12726, NULL, 84, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '2.0000', '2021-06-14', 'received', '3.0000', '3.0000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12727, NULL, 84, 1733, 'PR-446', 'ENAFIX TABS 200MG 10\'', NULL, '8.8900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.6700', '0.0000', '2021-06-14', 'received', '8.8900', '8.8900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12728, NULL, 84, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '20.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '0.0000', '2021-06-14', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12729, NULL, 84, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '28.2400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '84.7200', '2.0000', '2021-06-14', 'received', '28.2400', '28.2400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12730, NULL, 84, 2544, '85585070', 'NEXCOFER SYR L/S', NULL, '6.8800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.6400', '0.0000', '2021-06-14', 'received', '6.8800', '6.8800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12731, NULL, 84, 2707, '54201128', 'HYDROLYTE LEMON', NULL, '0.5400', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '50.0000', '2021-06-14', 'received', '0.5400', '0.5400', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12732, NULL, 84, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '29.6200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '59.2400', '0.0000', '2021-06-14', 'received', '29.6200', '29.6200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12733, NULL, 84, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '6.5900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.7700', '2.0000', '2021-06-14', 'received', '6.5900', '6.5900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12734, NULL, 84, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '27.9300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.8600', '0.0000', '2021-06-14', 'received', '27.9300', '27.9300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12735, NULL, 84, 2545, '82780299', 'DREZ POWDER 10G', NULL, '5.8800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.6400', '0.0000', '2021-06-14', 'received', '5.8800', '5.8800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12736, NULL, 84, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '6.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '1.0000', '2021-06-14', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12737, NULL, 84, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.3000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '4.6000', '0.0000', '2021-06-14', 'received', '2.3000', '2.3000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12738, NULL, 84, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.6900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.4500', '0.0000', '2021-06-14', 'received', '4.6900', '4.6900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12739, NULL, 84, 1669, '5000456024778', 'NEXIUM 40MG TAB', NULL, '6.7000', '0.0000', '28.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '187.6000', '28.0000', '2021-06-14', 'received', '6.7000', '6.7000', NULL, NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12740, NULL, 84, 2557, '86393917', 'METOCLOPRAMIDE', NULL, '0.5700', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.4000', '6.0000', '2021-06-14', 'received', '0.5700', '0.5700', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12741, NULL, 84, 2557, '86393917', 'METOCLOPRAMIDE', NULL, '0.5700', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.1000', '27.0000', '2021-06-14', 'received', '0.5700', '0.5700', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12742, NULL, 84, 2705, '98893188', 'SENSODYNE FLOURIDE', NULL, '10.9600', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.9200', '2.0000', '2021-06-14', 'received', '10.9600', '10.9600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12743, NULL, 84, 2704, '24774325', 'SENSODYNE DEEP CLEAN GEL', NULL, '14.9700', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.9400', '0.0000', '2021-06-14', 'received', '14.9700', '14.9700', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12744, NULL, 84, 1465, '9502930974976', 'SENSOOYNE EXTRA FRESH PASTE 75ML', NULL, '18.2900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.5800', '1.0000', '2021-06-14', 'received', '18.2900', '18.2900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12745, NULL, 84, 1464, '9502930974921', 'SENSONDYN ORIGINAL 75ML', NULL, '10.8900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.6700', '0.0000', '2021-06-14', 'received', '10.8900', '10.8900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12746, NULL, 84, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.0500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.1500', '1.0000', '2021-06-14', 'received', '9.0500', '9.0500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12747, NULL, 84, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '17.8000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.8000', '0.0000', '2021-06-14', 'received', '17.8000', '17.8000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12748, NULL, 84, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '17.8000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.6000', '1.0000', '2021-06-14', 'received', '17.8000', '17.8000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12749, NULL, 84, 2703, '05760199', 'ASCOVIT CEE SYR', NULL, '4.3600', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.8000', '0.0000', '2021-06-14', 'received', '4.3600', '4.3600', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12750, NULL, 84, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '20.7800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '41.5600', '0.0000', '2021-06-14', 'received', '20.7800', '20.7800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12751, NULL, 84, 2505, '28562016', 'ORELOX 100MG TABLETS', NULL, '98.5600', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '98.5600', '0.0000', '2021-06-14', 'received', '98.5600', '98.5600', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12752, NULL, 84, 2702, '69900073', 'EXCLEAR NASAL DROPS', NULL, '4.6000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.0000', '4.0000', '2021-06-14', 'received', '4.6000', '4.6000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12753, NULL, 84, 2701, '89135402', 'GAVISCON DOUBLE ACTION LIQ', NULL, '31.9800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '63.9600', '1.0000', '2021-06-14', 'received', '31.9800', '31.9800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12754, NULL, 84, 2700, '11271279', 'GAVISCON PEPPERMINT 200ML LIQ', NULL, '27.9700', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.9400', '0.0000', '2021-06-14', 'received', '27.9700', '27.9700', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12755, NULL, 84, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '29.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '348.0000', '0.0000', '2021-06-14', 'received', '29.0000', '29.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12756, NULL, 84, 2710, '09217360', 'AUGMENTIN SUSP 457MG', NULL, '40.3000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '80.6000', '1.0000', '2021-06-14', 'received', '40.3000', '40.3000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12757, 126, NULL, 2688, '870223002637', 'DAILY DEFENSE  BODY WASH SHOWER GEL', NULL, '17.0000', '22.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-06-07', 'received', '17.0000', '17.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12758, 126, NULL, 2690, '834576006223', 'DERMASIL BODY WASH SHOWER GEL', NULL, '17.0000', '22.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2021-06-07', 'received', '17.0000', '17.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12759, 126, NULL, 2689, '852474360018', 'OLIVE OIL BODY WASH SHOWER GEL', NULL, '17.0000', '22.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-06-07', 'received', '17.0000', '17.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12760, 126, NULL, 2686, '011111051249', 'DOVE MEN CARE BODY CARE', NULL, '35.0000', '45.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '0.0000', '2021-06-07', 'received', '35.0000', '35.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12761, 126, NULL, 2687, '815195014509', 'ULTRA MAX BOBY WASH SHOWER GEL', NULL, '15.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-06-07', 'received', '15.0000', '15.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12762, 126, NULL, 2684, '037000685685', 'OLAY BODY WASH SHOWER GEL', NULL, '37.0000', '45.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '111.0000', '0.0000', '2021-06-07', 'received', '37.0000', '37.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '37.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12763, 126, NULL, 2691, '57477708', 'STICK ROLL ON S/S', NULL, '6.0000', '8.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-06-07', 'received', '6.0000', '6.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12764, 126, NULL, 2692, '05619425', 'STICK ROLL ON B/S', NULL, '12.0000', '15.0000', '18.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '216.0000', '0.0000', '2021-06-07', 'received', '12.0000', '12.0000', '18.0000', NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12765, 126, NULL, 2685, '011111014237', 'DOVE BODY WASH SHOWER GEL', NULL, '36.0000', '45.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '216.0000', '0.0000', '2021-06-07', 'received', '36.0000', '36.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '36.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12766, 126, NULL, 2709, '60764156', 'BABYMED LOTION', NULL, '12.0000', '18.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-06-07', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12767, 126, NULL, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', NULL, '0.2600', '0.5000', '80.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8000', '0.0000', '2021-06-07', 'received', '0.2600', '0.2600', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '0.2600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12768, 126, NULL, 2713, '06467625', 'MENTOS ICE GUM', NULL, '1.5000', '2.0000', '22.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '1.0000', '2021-06-07', 'received', '1.5000', '1.5000', '22.0000', NULL, NULL, 1, 'pc', '22.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12769, 126, NULL, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', NULL, '0.9000', '1.5000', '48.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.2000', '15.0000', '2021-06-07', 'received', '0.9000', '0.9000', '48.0000', NULL, NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, '0.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12770, NULL, NULL, 2709, '60764156', 'BABYMED LOTION', NULL, '12.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '0.0000', '2021-06-14', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12771, NULL, 82, 2709, '60764156', 'BABYMED LOTION', NULL, '12.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '2.0000', '2021-06-14', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12772, NULL, 82, 2691, '57477708', 'STICK ROLL ON S/S', NULL, '6.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '5.0000', '2021-06-14', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12773, NULL, 82, 2692, '05619425', 'STICK ROLL ON B/S', NULL, '12.0000', '0.0000', '18.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '216.0000', '17.0000', '2021-06-14', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12774, NULL, 82, 2690, '834576006223', 'DERMASIL BODY WASH SHOWER GEL', NULL, '17.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '51.0000', '3.0000', '2021-06-14', 'received', '17.0000', '17.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12775, NULL, 82, 2688, '870223002637', 'DAILY DEFENSE  BODY WASH SHOWER GEL', NULL, '17.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.0000', '2.0000', '2021-06-14', 'received', '17.0000', '17.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12776, NULL, 82, 2689, '852474360018', 'OLIVE OIL BODY WASH SHOWER GEL', NULL, '17.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.0000', '1.0000', '2021-06-14', 'received', '17.0000', '17.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12777, NULL, 82, 2686, '011111051249', 'DOVE MEN CARE BODY CARE', NULL, '35.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '105.0000', '2.0000', '2021-06-14', 'received', '35.0000', '35.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12778, NULL, 82, 2687, '815195014509', 'ULTRA MAX BOBY WASH SHOWER GEL', NULL, '15.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '0.0000', '2021-06-14', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12779, NULL, 82, 2684, '037000685685', 'OLAY BODY WASH SHOWER GEL', NULL, '35.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '105.0000', '3.0000', '2021-06-14', 'received', '35.0000', '35.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12780, NULL, 82, 2685, '011111014237', 'DOVE BODY WASH SHOWER GEL', NULL, '35.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '210.0000', '6.0000', '2021-06-14', 'received', '35.0000', '35.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12781, NULL, 82, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', NULL, '0.2600', '0.0000', '80.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.8000', '49.0000', '2021-06-14', 'received', '0.2600', '0.2600', NULL, NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12782, NULL, 82, 2713, '06467625', 'MENTOS ICE GUM', NULL, '1.5000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '3.0000', '2021-06-14', 'received', '1.5000', '1.5000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12783, NULL, 82, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', NULL, '0.9000', '0.0000', '24.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.6000', '0.0000', '2021-06-14', 'received', '0.9000', '0.9000', NULL, NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12921, NULL, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '32.7700', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '98.3100', '-1.0000', '2021-06-15', 'received', '32.7700', '32.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12922, NULL, NULL, 2451, '56986898', 'GIVERS MIX', NULL, '10.3500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '31.0500', '0.0000', '2021-06-15', 'received', '10.3500', '10.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12923, NULL, NULL, 1537, 'PR-250', 'VITANE SYR', NULL, '40.2700', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.2700', '0.0000', '2021-06-15', 'received', '40.2700', '40.2700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12924, NULL, NULL, 2716, '65751241', 'FUROSEMIDE 40MG 28\' UK', NULL, '9.8500', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '49.2500', '0.0000', '2021-06-15', 'received', '9.8500', '9.8500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12925, NULL, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '15.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '46.5000', '3.0000', '2021-06-15', 'received', '15.5000', '15.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13003, NULL, NULL, 2715, '61261096', 'CASTOR OIL 70ML BELLS', NULL, '9.2600', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '46.3000', '0.0000', '2021-06-15', 'received', '9.2600', '9.2600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13004, NULL, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '1.6000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '16.0000', '0.0000', '2021-06-15', 'received', '1.6000', '1.6000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13005, NULL, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '2.7000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '27.0000', '0.0000', '2021-06-15', 'received', '2.7000', '2.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13128, 131, NULL, 2715, '61261096', 'CASTOR OIL 70ML BELLS', NULL, '9.2600', '12.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.3000', '0.0000', '2021-06-15', 'received', '9.2600', '9.2600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.2600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13129, 131, NULL, 1759, '5017848251049', 'OLIVE  OIL 70ML', NULL, '11.5000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5000', '0.0000', '2021-06-15', 'received', '11.5000', '11.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '11.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13130, 131, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '32.7700', '43.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.3100', '0.0000', '2021-06-15', 'received', '32.7700', '32.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '32.7700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13131, 131, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '1.6300', '3.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.7800', '0.0000', '2021-06-15', 'received', '1.6300', '1.6300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '1.6300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13132, 131, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '5.9400', '8.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '0.0000', '2021-06-15', 'received', '5.9400', '5.9400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13133, 131, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '3.9200', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6000', '0.0000', '2021-06-15', 'received', '3.9200', '3.9200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.9200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13134, 131, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '8.4000', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-06-15', 'received', '8.4000', '8.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13135, 131, NULL, 2541, '39996904', 'DEMACOT CREAM', NULL, '9.7500', '14.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.7500', '0.0000', '2021-06-15', 'received', '9.7500', '9.7500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13136, 131, NULL, 2072, '41512770', 'ZINVITE CAPS', NULL, '7.3800', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.9000', '0.0000', '2021-06-15', 'received', '7.3800', '7.3800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.3800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13137, 131, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '26.0000', '34.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-06-15', 'received', '26.0000', '26.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13138, 131, NULL, 2451, '56986898', 'GIVERS MIX', NULL, '10.3500', '14.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0500', '0.0000', '2021-06-15', 'received', '10.3500', '10.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13139, 131, NULL, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '22.7100', '32.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.1300', '0.0000', '2021-06-15', 'received', '22.7100', '22.7100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.7100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13140, 131, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '47.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.7000', '0.0000', '2021-06-15', 'received', '35.9000', '35.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '35.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13141, 131, NULL, 1537, 'PR-250', 'VITANE SYR', NULL, '40.2700', '53.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.2700', '0.0000', '2021-06-15', 'received', '40.2700', '40.2700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '40.2700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13142, 131, NULL, 2599, '29486139', 'ABIDEC MULTIVITAMIN SYR', NULL, '45.0000', '60.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-06-15', 'received', '45.0000', '45.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13143, 131, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.6700', '0.0000', '2021-06-15', 'received', '6.8900', '6.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13144, 131, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '4.8000', '6.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.4000', '0.0000', '2021-06-15', 'received', '4.8000', '4.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13145, 131, NULL, 2403, '84832683', 'LIMZER CAPS 30\'', NULL, '17.8000', '24.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.8000', '0.0000', '2021-06-15', 'received', '17.8000', '17.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '17.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13146, 131, NULL, 2358, '32893309', 'LOSAR-DENK 100MG', NULL, '27.2100', '36.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.4200', '0.0000', '2021-06-15', 'received', '27.2100', '27.2100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13147, 131, NULL, 2582, '81054441', 'AZILEX SUSP', NULL, '11.5000', '30.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '0.0000', '2021-06-15', 'received', '11.5000', '11.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13148, 131, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '8.4000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2000', '0.0000', '2021-06-15', 'received', '8.4000', '8.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13149, 131, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '7.6800', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0400', '0.0000', '2021-06-15', 'received', '7.6800', '7.6800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.6800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13150, 131, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '8.5000', '8.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '3.0000', '2021-06-15', 'received', '8.5000', '8.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13151, 131, NULL, 1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', NULL, '13.1000', '17.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '393.0000', '0.0000', '2021-06-15', 'received', '13.1000', '13.1000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '13.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13152, 131, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '9.3000', '12.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9000', '0.0000', '2021-06-15', 'received', '9.3000', '9.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13153, 131, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '13.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-06-15', 'received', '9.0000', '9.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13154, 131, NULL, 1433, 'PR-146', 'TIME HERBAL MIX(25)', NULL, '10.0000', '13.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-06-15', 'received', '10.0000', '10.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13155, 131, NULL, 1631, '8850769012651', 'ENAT 4001U CAPS', NULL, '36.9400', '50.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.8800', '0.0000', '2021-06-15', 'received', '36.9400', '36.9400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13156, 131, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '15.5000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2021-06-15', 'received', '15.5000', '15.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13157, 131, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '29.6200', '46.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.8600', '0.0000', '2021-06-15', 'received', '29.6200', '29.6200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '29.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13158, 131, NULL, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '37.9000', '50.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '151.6000', '0.0000', '2021-06-15', 'received', '37.9000', '37.9000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '37.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13159, 131, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.6400', '16.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.2800', '0.0000', '2021-06-15', 'received', '11.6400', '11.6400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '11.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13160, 131, NULL, 2716, '65751241', 'FUROSEMIDE 40MG 28\' UK', NULL, '9.8500', '13.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.2500', '0.0000', '2021-06-15', 'received', '9.8500', '9.8500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13161, 131, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '1.6000', '2.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '0.0000', '2021-06-15', 'received', '1.6000', '1.6000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13162, 131, NULL, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '2.7000', '3.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-06-15', 'received', '2.7000', '2.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13163, 131, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '10.5000', '14.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2021-06-15', 'received', '10.5000', '10.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13164, 131, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '47.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-06-15', 'received', '36.0000', '36.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '36.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13165, 131, NULL, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', NULL, '13.0000', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-06-15', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13166, 131, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '13.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-06-15', 'received', '9.0000', '9.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13167, 131, NULL, 2717, '31018284', 'ZIIPMAN', NULL, '14.0000', '18.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2021-06-15', 'received', '14.0000', '14.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13168, 131, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9900', '9.5000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '279.6000', '0.0000', '2021-06-15', 'received', '6.9900', '6.9900', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '6.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13217, NULL, NULL, 2021, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13465, 132, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '11.9500', '15.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8500', '0.0000', '2021-06-15', 'received', '11.9500', '11.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13466, 132, NULL, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '10.2000', '13.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '5.0000', '2021-06-15', 'received', '10.2000', '10.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13467, 132, NULL, 2719, '58758743', 'WELLKID SOFT JELLY PASTILLES', NULL, '55.0400', '73.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0400', '0.0000', '2021-06-15', 'received', '55.0400', '55.0400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '55.0400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13468, 132, NULL, 2542, '5021265223800', 'WELLKID CHEWABLE TAB', NULL, '59.4600', '78.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4600', '0.0000', '2021-06-15', 'received', '59.4600', '59.4600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '59.4600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13469, 132, NULL, 2720, '95353854', 'KETOCONAZOLE', NULL, '2.7900', '4.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.9500', '0.0000', '2021-06-15', 'received', '2.7900', '2.7900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.7900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13470, 132, NULL, 2348, '70645774', 'LYNUX OINT', NULL, '22.0300', '29.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0900', '0.0000', '2021-06-15', 'received', '22.0300', '22.0300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.0300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13471, 132, NULL, 2721, '55783597', 'SILVER SULFADIAZINE CREAM', NULL, '8.9800', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.9600', '0.0000', '2021-06-15', 'received', '8.9800', '8.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13472, 132, NULL, 2596, '04414143', 'FEMISTAR CAPS', NULL, '19.7000', '26.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.4000', '0.0000', '2021-06-15', 'received', '19.7000', '19.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13473, 132, NULL, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '6.5900', '9.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7700', '0.0000', '2021-06-15', 'received', '6.5900', '6.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13474, 132, NULL, 1378, '5011417569627', 'BONJELA BABY', NULL, '34.5000', '45.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2021-06-15', 'received', '34.5000', '34.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13475, 132, NULL, 2707, '54201128', 'HYDROLYTE LEMON', NULL, '0.5400', '1.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-06-15', 'received', '0.5400', '0.5400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.5400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13476, 132, NULL, 1642, '6001135507628', 'BENYLIN DRY  COUGH SYR 100ML', NULL, '31.5000', '41.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '0.0000', '2021-06-15', 'received', '31.5000', '31.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '31.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13477, 132, NULL, 1755, 'PR-468', 'STOPKOF EXPT( CARBOCISTEINE)5?ULT 100ML', NULL, '5.5900', '7.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.3600', '0.0000', '2021-06-15', 'received', '5.5900', '5.5900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '5.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13478, 132, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '8.7600', '11.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.2800', '0.0000', '2021-06-15', 'received', '8.7600', '8.7600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.7600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13479, 132, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.2000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '0.0000', '2021-06-15', 'received', '9.2000', '9.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13480, 132, NULL, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '3.3900', '5.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.8000', '0.0000', '2021-06-15', 'received', '3.3900', '3.3900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.3900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13481, 132, NULL, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '4.6000', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-06-15', 'received', '4.6000', '4.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13482, 132, NULL, 2266, '8906046070682', 'KIDIVITE SYR L/S', NULL, '6.4900', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.4700', '0.0000', '2021-06-15', 'received', '6.4900', '6.4900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13483, 132, NULL, 2343, '67107435', 'INFACOL DROPS 50ML', NULL, '36.2500', '51.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '0.0000', '2021-06-15', 'received', '36.2500', '36.2500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13484, 132, NULL, 2409, '86934998', 'PROMETHAZINE SYR 60ML', NULL, '2.3100', '4.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.9300', '0.0000', '2021-06-15', 'received', '2.3100', '2.3100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '2.3100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13485, 132, NULL, 2240, '5000198522501', 'PIRITON SYR', NULL, '36.9100', '49.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.8200', '0.0000', '2021-06-15', 'received', '36.9100', '36.9100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13486, 132, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '12.2000', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6000', '0.0000', '2021-06-15', 'received', '12.2000', '12.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13487, 132, NULL, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', NULL, '2.2500', '5.0000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-06-15', 'received', '2.2500', '2.2500', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13488, 132, NULL, 1511, '5413895053528', 'TEARS NATURAL 11', NULL, '19.0000', '25.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '0.0000', '2021-06-15', 'received', '19.0000', '19.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13489, 132, NULL, 1508, '7612797504857', 'FLAREX 0.1% EYE DROP', NULL, '20.6800', '27.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0400', '0.0000', '2021-06-15', 'received', '20.6800', '20.6800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.6800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13490, 132, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '5.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6000', '0.0000', '2021-06-15', 'received', '3.5500', '3.5500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13491, 132, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '18.1900', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.5700', '0.0000', '2021-06-15', 'received', '18.1900', '18.1900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.1900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13492, 132, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.2300', '0.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.5000', '0.0000', '2021-06-15', 'received', '0.2300', '0.2300', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.2300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13493, 132, NULL, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '28.2400', '38.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.7200', '0.0000', '2021-06-15', 'received', '28.2400', '28.2400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13494, 132, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '12.3500', '16.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.7500', '0.0000', '2021-06-15', 'received', '12.3500', '12.3500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13495, 132, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '34.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.5000', '0.0000', '2021-06-15', 'received', '25.9000', '25.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '25.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13496, 132, NULL, 2062, '01665566', 'ZYMAX SUSP', NULL, '8.5900', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.7700', '0.0000', '2021-06-15', 'received', '8.5900', '8.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13497, 132, NULL, 1721, 'PR-434', 'AZITEX(AZITHROMYCIN) SUSP. 200MG /5ML 15ML', NULL, '8.6900', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0700', '0.0000', '2021-06-15', 'received', '8.6900', '8.6900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13498, 132, NULL, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '5.8900', '8.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6700', '0.0000', '2021-06-15', 'received', '5.8900', '5.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13499, 132, NULL, 2086, '06489706', 'METAGYL SUSP', NULL, '4.3200', '6.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.9600', '0.0000', '2021-06-15', 'received', '4.3200', '4.3200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13500, 132, NULL, 1757, 'PR-470', 'PERMOXYL (AMOX\'LIN ) SUSP 100ML', NULL, '4.4000', '6.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6000', '0.0000', '2021-06-15', 'received', '4.4000', '4.4000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '4.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13501, 132, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.9800', '15.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.9400', '0.0000', '2021-06-15', 'received', '10.9800', '10.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13502, 132, NULL, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '38.6500', '51.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.3000', '0.0000', '2021-06-15', 'received', '38.6500', '38.6500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '38.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13503, 132, NULL, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '59.4600', '78.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.9200', '0.0000', '2021-06-15', 'received', '59.4600', '59.4600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '59.4600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13504, 132, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '29.0000', '38.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '0.0000', '2021-06-15', 'received', '29.0000', '29.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '29.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13505, 132, NULL, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', NULL, '5.3000', '7.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '159.0000', '0.0000', '2021-06-15', 'received', '5.3000', '5.3000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '5.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13506, 132, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '3.8700', '5.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.1000', '0.0000', '2021-06-15', 'received', '3.8700', '3.8700', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '3.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13507, 132, NULL, 1799, 'PR-512', 'PROXIMEXA TABS 250[10\'S]', NULL, '29.1500', '38.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.4500', '0.0000', '2021-06-15', 'received', '29.1500', '29.1500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '29.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13508, 132, NULL, 1735, 'PR-448', 'EXFORGE TABS (10/160)MG 28', NULL, '4.6000', '6.0000', '56.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '257.6000', '0.0000', '2021-06-15', 'received', '4.6000', '4.6000', '56.0000', NULL, NULL, 1, 'pc', '56.0000', NULL, NULL, NULL, NULL, '4.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13509, 132, NULL, 2328, '59058180', 'EXFORGE 5MG/160MG 28\'', NULL, '64.2000', '85.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '256.8000', '0.0000', '2021-06-15', 'received', '64.2000', '64.2000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '64.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13510, 132, NULL, 2414, '85111706', 'AMLODIPINE 5MG', NULL, '3.4000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.4000', '0.0000', '2021-06-15', 'received', '3.4000', '3.4000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '3.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13511, 132, NULL, 2723, '28145209', 'AMLODIPINE BESILATE 5MG TABS', NULL, '6.0000', '8.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-06-15', 'received', '6.0000', '6.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13512, 132, NULL, 1724, '7321839722165', 'ATACAND PLUS TABLETS 16/12.5 28\'', NULL, '142.9000', '197.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '142.9000', '0.0000', '2021-06-15', 'received', '142.9000', '142.9000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '142.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13513, 132, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '7.8500', '11.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2500', '0.0000', '2021-06-15', 'received', '7.8500', '7.8500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13514, 132, NULL, 2142, '5021265223855', 'WELLBABY ', NULL, '57.0000', '76.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '0.0000', '2021-06-15', 'received', '57.0000', '57.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '57.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13515, 132, NULL, 2462, '03669885', 'WELLBABY DROP', NULL, '46.8500', '62.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.7000', '0.0000', '2021-06-15', 'received', '46.8500', '46.8500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '46.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13516, 132, NULL, 2599, '29486139', 'ABIDEC MULTIVITAMIN SYR', NULL, '45.0000', '65.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '1.0000', '2021-06-15', 'received', '45.0000', '45.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13517, 132, NULL, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '27.9300', '37.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.7900', '0.0000', '2021-06-15', 'received', '27.9300', '27.9300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.9300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13518, 132, NULL, 2548, '54581009', 'ZINCOVIT DROP', NULL, '6.7200', '9.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1600', '0.0000', '2021-06-15', 'received', '6.7200', '6.7200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13519, 132, NULL, 2725, '24360338', 'AMLODIPINE BESILATE 10MG', NULL, '7.1100', '9.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6600', '0.0000', '2021-06-15', 'received', '7.1100', '7.1100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '7.1100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13520, NULL, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '11.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '22.0000', '1.0000', '2021-06-16', 'received', '11.0000', '11.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13521, NULL, NULL, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', NULL, '13.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '39.0000', '0.0000', '2021-06-16', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13522, NULL, NULL, 2717, '31018284', 'ZIIPMAN', NULL, '14.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '28.0000', '0.0000', '2021-06-16', 'received', '14.0000', '14.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13523, NULL, 85, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.9900', '0.0000', '40.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '279.6000', '9.0000', '2021-06-16', 'received', '6.9900', '6.9900', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13524, NULL, 85, 2717, '31018284', 'ZIIPMAN', NULL, '14.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.0000', '2.0000', '2021-06-16', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13525, NULL, 85, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', NULL, '13.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.0000', '0.0000', '2021-06-16', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13526, NULL, 85, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '0.0000', '2021-06-16', 'received', '36.0000', '36.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13527, NULL, 85, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '1.0000', '2021-06-16', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13528, NULL, 85, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '37.9000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '75.8000', '0.0000', '2021-06-16', 'received', '37.9000', '37.9000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13529, NULL, 85, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.6400', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.6400', '0.0000', '2021-06-16', 'received', '11.6400', '11.6400', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13530, NULL, 85, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.6400', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.6400', '1.0000', '2021-06-16', 'received', '11.6400', '11.6400', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13531, NULL, 85, 1433, 'PR-146', 'TIME HERBAL MIX(25)', NULL, '10.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.0000', '0.0000', '2021-06-16', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13532, NULL, 85, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '34.9000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '104.7000', '0.0000', '2021-06-16', 'received', '34.9000', '34.9000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13533, NULL, 85, 1695, '8908002671971', 'APETAMIN SYR', NULL, '15.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.5000', '0.0000', '2021-06-16', 'received', '15.5000', '15.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13534, NULL, 85, 1631, '8850769012651', 'ENAT 4001U CAPS', NULL, '37.8000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.8000', '1.0000', '2021-06-16', 'received', '37.8000', '37.8000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13535, NULL, 85, 1631, '8850769012651', 'ENAT 4001U CAPS', NULL, '37.8000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.8000', '1.0000', '2021-06-16', 'received', '37.8000', '37.8000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13536, NULL, 85, 1433, 'PR-146', 'TIME HERBAL MIX(25)', NULL, '10.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '0.0000', '2021-06-16', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13537, NULL, 85, 2252, '08741188', 'FLUREST TABS', NULL, '9.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.5000', '0.0000', '2021-06-16', 'received', '9.5000', '9.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13538, NULL, 85, 2252, '08741188', 'FLUREST TABS', NULL, '9.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.0000', '1.0000', '2021-06-16', 'received', '9.5000', '9.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13539, NULL, 85, 2252, '08741188', 'FLUREST TABS', NULL, '9.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.0000', '2.0000', '2021-06-16', 'received', '9.5000', '9.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13540, NULL, 85, 1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', NULL, '11.0000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '330.0000', '20.0000', '2021-06-16', 'received', '11.0000', '11.0000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13541, NULL, 85, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '8.0500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.1500', '0.0000', '2021-06-16', 'received', '8.0500', '8.0500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13542, NULL, 85, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.2000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.2000', '0.0000', '2021-06-16', 'received', '9.2000', '9.2000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13543, NULL, 85, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.2000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.4000', '0.0000', '2021-06-16', 'received', '9.2000', '9.2000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13544, NULL, 85, 2582, '81054441', 'AZILEX SUSP', NULL, '11.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.5000', '0.0000', '2021-06-16', 'received', '11.5000', '11.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13545, NULL, 85, 2716, '65751241', 'FUROSEMIDE 40MG 28\' UK', NULL, '9.8500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.2500', '5.0000', '2021-06-16', 'received', '9.8500', '9.8500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13546, NULL, 85, 2358, '32893309', 'LOSAR-DENK 100MG', NULL, '27.2100', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.4200', '0.0000', '2021-06-16', 'received', '27.2100', '27.2100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13547, NULL, 85, 2403, '84832683', 'LIMZER CAPS 30\'', NULL, '17.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '53.4000', '0.0000', '2021-06-16', 'received', '17.8000', '17.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13548, NULL, 85, 2403, '84832683', 'LIMZER CAPS 30\'', NULL, '17.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '53.4000', '3.0000', '2021-06-16', 'received', '17.8000', '17.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13549, NULL, 85, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '4.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.4000', '1.0000', '2021-06-16', 'received', '4.8000', '4.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13550, NULL, 85, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.6700', '0.0000', '2021-06-16', 'received', '6.8900', '6.8900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13551, NULL, 85, 2599, '29486139', 'ABIDEC MULTIVITAMIN SYR', NULL, '45.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '1.0000', '2021-06-16', 'received', '45.0000', '45.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13552, NULL, 85, 1537, 'PR-250', 'VITANE SYR', NULL, '40.2700', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.2700', '0.0000', '2021-06-16', 'received', '40.2700', '40.2700', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13553, NULL, 85, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '107.7000', '0.0000', '2021-06-16', 'received', '35.9000', '35.9000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13554, NULL, 85, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '24.6200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '73.8600', '0.0000', '2021-06-16', 'received', '24.6200', '24.6200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13555, NULL, 85, 2451, '56986898', 'GIVERS MIX', NULL, '10.3500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.0500', '3.0000', '2021-06-16', 'received', '10.3500', '10.3500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13556, NULL, 85, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '26.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.0000', '0.0000', '2021-06-16', 'received', '26.0000', '26.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13557, NULL, 85, 2072, '41512770', 'ZINVITE CAPS', NULL, '7.3800', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.9000', '2.0000', '2021-06-16', 'received', '7.3800', '7.3800', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13558, NULL, 85, 2541, '39996904', 'DEMACOT CREAM', NULL, '10.8000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.8000', '0.0000', '2021-06-16', 'received', '10.8000', '10.8000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13559, NULL, 85, 2541, '39996904', 'DEMACOT CREAM', NULL, '10.8000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.2000', '0.0000', '2021-06-16', 'received', '10.8000', '10.8000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13560, NULL, 85, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.5000', '1.0000', '2021-06-16', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13561, NULL, 85, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '3.9200', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.6000', '3.0000', '2021-06-16', 'received', '3.9200', '3.9200', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13562, NULL, 85, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '5.9400', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '59.4000', '6.0000', '2021-06-16', 'received', '5.9400', '5.9400', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13563, NULL, 85, 1493, 'PR-206', 'GV PAINT', NULL, '1.6300', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.7800', '0.0000', '2021-06-16', 'received', '1.6300', '1.6300', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13564, NULL, 85, 2460, '07910647', 'EVECARE TAB', NULL, '32.7700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '98.3100', '1.0000', '2021-06-16', 'received', '32.7700', '32.7700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13565, NULL, 85, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '37.9000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '75.8000', '0.0000', '2021-06-16', 'received', '37.9000', '37.9000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13566, NULL, 85, 2715, '61261096', 'CASTOR OIL 70ML BELLS', NULL, '9.2600', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.3000', '3.0000', '2021-06-16', 'received', '9.2600', '9.2600', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13567, NULL, 85, 1759, '5017848251049', 'OLIVE  OIL 70ML', NULL, '11.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.5000', '0.0000', '2021-06-16', 'received', '11.5000', '11.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13568, NULL, 85, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '1.6000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.0000', '3.0000', '2021-06-16', 'received', '1.6000', '1.6000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13569, NULL, 85, 1340, 'PR-53', 'COTTON WOOL 50G', NULL, '2.7000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '0.0000', '2021-06-16', 'received', '2.7000', '2.7000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13570, NULL, 85, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '129.5000', '0.0000', '2021-06-16', 'received', '25.9000', '25.9000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13592, 133, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '5.4000', '7.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '0.0000', '2021-06-16', 'received', '5.4000', '5.4000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '5.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13593, 133, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '25.0100', '33.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0300', '0.0000', '2021-06-16', 'received', '25.0100', '25.0100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.0100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13594, 133, NULL, 2679, '42097030', 'PEVISONE CREAM', NULL, '32.3500', '43.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.7000', '0.0000', '2021-06-16', 'received', '32.3500', '32.3500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13595, 133, NULL, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', NULL, '5.9300', '8.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.6500', '0.0000', '2021-06-16', 'received', '5.9300', '5.9300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.9300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13596, 133, NULL, 1517, 'PR-230', 'NEOCORT EYE DROP', NULL, '24.2100', '31.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.4200', '0.0000', '2021-06-16', 'received', '24.2100', '24.2100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13597, 133, NULL, 1511, '5413895053528', 'TEARS NATURAL 11', NULL, '19.0000', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2021-06-16', 'received', '19.0000', '19.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13598, 133, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.2000', '3.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-06-16', 'received', '2.2000', '2.2000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13599, 133, NULL, 2263, '6036000090417', 'LEVON 2', NULL, '4.9800', '8.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '0.0000', '2021-06-16', 'received', '4.9800', '4.9800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13600, 133, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '2.5000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.8000', '0.0000', '2021-06-16', 'received', '1.8600', '1.8600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13601, 133, NULL, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '11.1900', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5700', '0.0000', '2021-06-16', 'received', '11.1900', '11.1900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.1900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13602, 133, NULL, 2455, '07137762', 'AMITRIPTYLINE 25MG', NULL, '7.5300', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.6500', '0.0000', '2021-06-16', 'received', '7.5300', '7.5300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13603, 133, NULL, 2710, '09217360', 'AUGMENTIN SUSP 457MG', NULL, '40.3000', '53.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.9000', '0.0000', '2021-06-16', 'received', '40.3000', '40.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '40.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13604, 133, NULL, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.9800', '1.2000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '0.0000', '2021-06-16', 'received', '0.9800', '0.9800', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13605, 133, NULL, 1380, '4008500060070', 'PRIMOLUT N TABS 5MG- ORIGINAL', NULL, '7.7000', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.1000', '0.0000', '2021-06-16', 'received', '7.7000', '7.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13606, 133, NULL, 1659, '5021265228027', 'OMEGA H3 CAP', NULL, '40.6500', '55.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.9500', '0.0000', '2021-06-16', 'received', '40.6500', '40.6500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '40.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13607, 133, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.8700', '3.8000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.4000', '0.0000', '2021-06-16', 'received', '2.8700', '2.8700', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13608, 133, NULL, 1591, '5017123328022', 'FUROSEMIDE 20MG TAB (CRESCENT)', NULL, '10.0000', '14.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-06-16', 'received', '10.0000', '10.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13609, 133, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '29.0000', '38.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '87.0000', '0.0000', '2021-06-16', 'received', '29.0000', '29.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '29.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13610, 133, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '4.0400', '6.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.8000', '0.0000', '2021-06-16', 'received', '4.0400', '4.0400', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.0400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13611, 133, NULL, 2359, '66115662', 'LOSAR-DENK 50MG TAB', NULL, '16.2200', '21.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4400', '0.0000', '2021-06-16', 'received', '16.2200', '16.2200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.2200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13612, 133, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '11.0000', '14.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.0000', '0.0000', '2021-06-16', 'received', '11.0000', '11.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13613, 133, NULL, 2726, '79072570', 'SANA NASAL DROP 10ML', NULL, '4.0000', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-06-16', 'received', '4.0000', '4.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13614, NULL, 86, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '5.4000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '64.8000', '2.0000', '2021-06-16', 'received', '5.4000', '5.4000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13615, NULL, 86, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '25.0100', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.0200', '0.0000', '2021-06-16', 'received', '25.0100', '25.0100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13616, NULL, 86, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '25.0100', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.0100', '0.0000', '2021-06-16', 'received', '25.0100', '25.0100', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13617, NULL, 86, 2679, '42097030', 'PEVISONE CREAM', NULL, '32.3500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '64.7000', '1.0000', '2021-06-16', 'received', '32.3500', '32.3500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13618, NULL, 86, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', NULL, '5.9300', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.6500', '2.0000', '2021-06-16', 'received', '5.9300', '5.9300', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13619, NULL, 86, 1517, 'PR-230', 'NEOCORT EYE DROP', NULL, '23.6400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '47.2800', '1.0000', '2021-06-16', 'received', '23.6400', '23.6400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13620, NULL, 86, 1511, '5413895053528', 'TEARS NATURAL 11', NULL, '19.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.0000', '0.0000', '2021-06-16', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13621, NULL, 86, 2726, '79072570', 'SANA NASAL DROP 10ML', NULL, '4.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '0.0000', '2021-06-16', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13622, NULL, 86, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.2000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.0000', '0.0000', '2021-06-16', 'received', '2.2000', '2.2000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13623, NULL, 86, 2263, '6036000090417', 'LEVON 2', NULL, '4.9800', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.9000', '0.0000', '2021-06-16', 'received', '4.9800', '4.9800', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13624, NULL, 86, 2263, '6036000090417', 'LEVON 2', NULL, '4.9800', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.9000', '4.0000', '2021-06-16', 'received', '4.9800', '4.9800', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13625, NULL, 86, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.2000', '0.0000', '2021-06-16', 'received', '1.8600', '1.8600', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13626, NULL, 86, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.6000', '0.0000', '2021-06-16', 'received', '1.8600', '1.8600', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13627, NULL, 86, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '11.1900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.5700', '0.0000', '2021-06-16', 'received', '11.1900', '11.1900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13628, NULL, 86, 2455, '07137762', 'AMITRIPTYLINE 25MG', NULL, '7.5300', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.6500', '2.0000', '2021-06-16', 'received', '7.5300', '7.5300', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13629, NULL, 86, 2710, '09217360', 'AUGMENTIN SUSP 457MG', NULL, '40.3000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.9000', '0.0000', '2021-06-16', 'received', '40.3000', '40.3000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13630, NULL, 86, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.9300', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.8000', '0.0000', '2021-06-16', 'received', '0.9300', '0.9300', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13631, NULL, 86, 1380, '4008500060070', 'PRIMOLUT N TABS 5MG- ORIGINAL', NULL, '7.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.1000', '3.0000', '2021-06-16', 'received', '7.7000', '7.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13632, NULL, 86, 1659, '5021265228027', 'OMEGA H3 CAP', NULL, '40.6500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '121.9500', '2.0000', '2021-06-16', 'received', '40.6500', '40.6500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13633, NULL, 86, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.8700', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.4000', '0.0000', '2021-06-16', 'received', '2.8700', '2.8700', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13634, NULL, 86, 1591, '5017123328022', 'FUROSEMIDE 20MG TAB (CRESCENT)', NULL, '10.7500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.2500', '1.0000', '2021-06-16', 'received', '10.7500', '10.7500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13635, NULL, 86, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '29.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '87.0000', '1.0000', '2021-06-16', 'received', '29.0000', '29.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13636, NULL, 86, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.7500', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '75.0000', '10.0000', '2021-06-16', 'received', '3.7500', '3.7500', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13637, NULL, 86, 2359, '66115662', 'LOSAR-DENK 50MG TAB', NULL, '16.2200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.4400', '1.0000', '2021-06-16', 'received', '16.2200', '16.2200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13638, NULL, 86, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '11.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '110.0000', '0.0000', '2021-06-16', 'received', '11.0000', '11.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13656, NULL, NULL, 2050, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13657, NULL, NULL, 2719, '58758743', 'WELLKID SOFT JELLY PASTILLES', NULL, '55.0400', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '55.0400', '0.0000', '2021-06-16', 'received', '55.0400', '55.0400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13658, NULL, NULL, 2720, '95353854', 'KETOCONAZOLE', NULL, '2.7900', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.9500', '0.0000', '2021-06-16', 'received', '2.7900', '2.7900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13659, NULL, NULL, 2721, '55783597', 'SILVER SULFADIAZINE CREAM', NULL, '8.9800', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.9600', '0.0000', '2021-06-16', 'received', '8.9800', '8.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13660, NULL, NULL, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '3.3900', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '67.8000', '0.0000', '2021-06-16', 'received', '3.3900', '3.3900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13712, NULL, NULL, 2240, '5000198522501', 'PIRITON SYR', NULL, '36.9100', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '73.8200', '0.0000', '2021-06-17', 'received', '36.9100', '36.9100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13713, NULL, NULL, 1511, '5413895053528', 'TEARS NATURAL 11', NULL, '19.0000', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '76.0000', '0.0000', '2021-06-17', 'received', '19.0000', '19.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13714, NULL, NULL, 1508, '7612797504857', 'FLAREX 0.1% EYE DROP', NULL, '20.6800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '62.0400', '0.0000', '2021-06-17', 'received', '20.6800', '20.6800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13715, NULL, NULL, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', NULL, '5.3000', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '159.0000', '0.0000', '2021-06-17', 'received', '5.3000', '5.3000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13716, NULL, NULL, 2723, '28145209', 'AMLODIPINE BESILATE 5MG TABS', NULL, '6.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.0000', '0.0000', '2021-06-17', 'received', '6.0000', '6.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13717, NULL, NULL, 2725, '24360338', 'AMLODIPINE BESILATE 10MG', NULL, '7.1100', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '42.6600', '0.0000', '2021-06-17', 'received', '7.1100', '7.1100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13718, NULL, NULL, 2142, '5021265223855', 'WELLBABY ', NULL, '57.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '114.0000', '3.0000', '2021-06-17', 'received', '57.0000', '57.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13719, NULL, 87, 2548, '54581009', 'ZINCOVIT DROP', NULL, '6.7200', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '6.7200', '1.0000', '2021-06-17', 'received', '6.7200', '6.7200', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13720, NULL, 87, 2548, '54581009', 'ZINCOVIT DROP', NULL, '6.7200', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '13.4400', '2.0000', '2021-06-17', 'received', '6.7200', '6.7200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13721, NULL, 87, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', NULL, '27.9300', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '83.7900', '2.0000', '2021-06-17', 'received', '27.9300', '27.9300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13722, NULL, 87, 1586, '5012616173004', 'ABIDEC DROP', NULL, '48.7600', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '97.5200', '1.0000', '2021-06-17', 'received', '48.7600', '48.7600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13723, NULL, 87, 2462, '03669885', 'WELLBABY DROP', NULL, '31.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '62.0000', '2.0000', '2021-06-17', 'received', '31.0000', '31.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13724, NULL, 87, 2142, '5021265223855', 'WELLBABY ', NULL, '57.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '114.0000', '2.0000', '2021-06-17', 'received', '57.0000', '57.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13725, NULL, 87, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '7.8500', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '39.2500', '0.0000', '2021-06-17', 'received', '7.8500', '7.8500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13726, NULL, 87, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '7.8500', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '39.2500', '4.0000', '2021-06-17', 'received', '7.8500', '7.8500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13727, NULL, 87, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '7.8500', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '39.2500', '5.0000', '2021-06-17', 'received', '7.8500', '7.8500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13728, NULL, 87, 1724, '7321839722165', 'ATACAND PLUS TABLETS 16/12.5 28\'', NULL, '148.9000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '148.9000', '1.0000', '2021-06-17', 'received', '148.9000', '148.9000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13729, NULL, 87, 2725, '24360338', 'AMLODIPINE BESILATE 10MG', NULL, '7.1100', '0.0000', '6.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '42.6600', '6.0000', '2021-06-17', 'received', '7.1100', '7.1100', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13730, NULL, 87, 2723, '28145209', 'AMLODIPINE BESILATE 5MG TABS', NULL, '6.0000', '0.0000', '6.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '6.0000', '2021-06-17', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13731, NULL, 87, 1735, 'PR-448', 'EXFORGE TABS (10/160)MG 28', NULL, '4.6000', '0.0000', '56.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '257.6000', '56.0000', '2021-06-17', 'received', '4.6000', '4.6000', NULL, NULL, NULL, 1, 'pc', '56.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13732, NULL, 87, 2328, '59058180', 'EXFORGE 5MG/160MG 28\'', NULL, '64.2000', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '256.8000', '4.0000', '2021-06-17', 'received', '64.2000', '64.2000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13733, NULL, 87, 1799, 'PR-512', 'PROXIMEXA TABS 250[10\'S]', NULL, '29.1500', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '29.1500', '1.0000', '2021-06-17', 'received', '29.1500', '29.1500', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13734, NULL, 87, 1799, 'PR-512', 'PROXIMEXA TABS 250[10\'S]', NULL, '29.1500', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '58.3000', '2.0000', '2021-06-17', 'received', '29.1500', '29.1500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13735, NULL, 87, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '3.8700', '0.0000', '30.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '116.1000', '2.0000', '2021-06-17', 'received', '3.8700', '3.8700', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13736, NULL, 87, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', NULL, '5.3000', '0.0000', '30.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '159.0000', '30.0000', '2021-06-17', 'received', '5.3000', '5.3000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13737, NULL, 87, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '29.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '87.0000', '1.0000', '2021-06-17', 'received', '29.0000', '29.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13738, NULL, 87, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '59.4600', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '118.9200', '2.0000', '2021-06-17', 'received', '59.4600', '59.4600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13739, NULL, 87, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', NULL, '5.8900', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '17.6700', '3.0000', '2021-06-17', 'received', '5.8900', '5.8900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13740, NULL, 87, 1721, 'PR-434', 'AZITEX(AZITHROMYCIN) SUSP. 200MG /5ML 15ML', NULL, '8.6900', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '26.0700', '1.0000', '2021-06-17', 'received', '8.6900', '8.6900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13741, NULL, 87, 2062, '01665566', 'ZYMAX SUSP', NULL, '8.5900', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '25.7700', '3.0000', '2021-06-17', 'received', '8.5900', '8.5900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13742, NULL, 87, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '12.3500', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '61.7500', '3.0000', '2021-06-17', 'received', '12.3500', '12.3500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13743, NULL, 87, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '28.2400', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '84.7200', '3.0000', '2021-06-17', 'received', '28.2400', '28.2400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13744, NULL, 87, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.2300', '0.0000', '50.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '11.5000', '44.0000', '2021-06-17', 'received', '0.2300', '0.2300', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13745, NULL, 87, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '18.1900', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '54.5700', '3.0000', '2021-06-17', 'received', '18.1900', '18.1900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13746, NULL, 87, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '7.1000', '0.0000', '2021-06-17', 'received', '3.5500', '3.5500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13747, NULL, 87, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '35.5000', '6.0000', '2021-06-17', 'received', '3.5500', '3.5500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13748, NULL, 87, 1508, '7612797504857', 'FLAREX 0.1% EYE DROP', NULL, '20.6800', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '62.0400', '3.0000', '2021-06-17', 'received', '20.6800', '20.6800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13749, NULL, 87, 1511, '5413895053528', 'TEARS NATURAL 11', NULL, '19.0000', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '76.0000', '4.0000', '2021-06-17', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13750, NULL, 87, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', NULL, '0.9300', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '4.6500', '0.0000', '2021-06-17', 'received', '0.9300', '0.9300', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13751, NULL, 87, 2240, '5000198522501', 'PIRITON SYR', NULL, '36.9100', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '73.8200', '2.0000', '2021-06-17', 'received', '36.9100', '36.9100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13752, NULL, 87, 2409, '86934998', 'PROMETHAZINE SYR 60ML', NULL, '2.3100', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '6.9300', '2.0000', '2021-06-17', 'received', '2.3100', '2.3100', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13753, NULL, 87, 2719, '58758743', 'WELLKID SOFT JELLY PASTILLES', NULL, '55.0400', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '55.0400', '1.0000', '2021-06-17', 'received', '55.0400', '55.0400', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13754, NULL, 87, 2542, '5021265223800', 'WELLKID CHEWABLE TAB', NULL, '59.4600', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '59.4600', '1.0000', '2021-06-17', 'received', '59.4600', '59.4600', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13755, NULL, 87, 2720, '95353854', 'KETOCONAZOLE', NULL, '2.7900', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '13.9500', '5.0000', '2021-06-17', 'received', '2.7900', '2.7900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13756, NULL, 87, 2348, '70645774', 'LYNUX OINT', NULL, '22.0300', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '66.0900', '3.0000', '2021-06-17', 'received', '22.0300', '22.0300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13757, NULL, 87, 2721, '55783597', 'SILVER SULFADIAZINE CREAM', NULL, '8.9800', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '17.9600', '2.0000', '2021-06-17', 'received', '8.9800', '8.9800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13758, NULL, 87, 2596, '04414143', 'FEMISTAR CAPS', NULL, '19.7000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '39.4000', '2.0000', '2021-06-17', 'received', '19.7000', '19.7000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13759, NULL, 87, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '6.5900', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '19.7700', '1.0000', '2021-06-17', 'received', '6.5900', '6.5900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13760, NULL, 87, 1378, '5011417569627', 'BONJELA BABY', NULL, '34.5000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '69.0000', '2.0000', '2021-06-17', 'received', '34.5000', '34.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13761, NULL, 87, 2707, '54201128', 'HYDROLYTE LEMON', NULL, '0.5400', '0.0000', '50.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '50.0000', '2021-06-17', 'received', '0.5400', '0.5400', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13762, NULL, 87, 1642, '6001135507628', 'BENYLIN DRY  COUGH SYR 100ML', NULL, '31.5000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '94.5000', '2.0000', '2021-06-17', 'received', '31.5000', '31.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13763, NULL, 87, 1755, 'PR-468', 'STOPKOF EXPT( CARBOCISTEINE)5?ULT 100ML', NULL, '5.5900', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '22.3600', '4.0000', '2021-06-17', 'received', '5.5900', '5.5900', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13764, NULL, 87, 2547, '30290939', 'VISCOF S SYR', NULL, '8.7600', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '26.2800', '2.0000', '2021-06-17', 'received', '8.7600', '8.7600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13765, NULL, 87, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.2000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '27.6000', '3.0000', '2021-06-17', 'received', '9.2000', '9.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13766, NULL, 87, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '3.3900', '0.0000', '20.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '67.8000', '16.0000', '2021-06-17', 'received', '3.3900', '3.3900', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13767, NULL, 87, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '4.6000', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '23.0000', '3.0000', '2021-06-17', 'received', '4.6000', '4.6000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13768, NULL, 87, 2266, '8906046070682', 'KIDIVITE SYR L/S', NULL, '6.4900', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '19.4700', '3.0000', '2021-06-17', 'received', '6.4900', '6.4900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13769, NULL, 87, 2343, '67107435', 'INFACOL DROPS 50ML', NULL, '38.9900', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '77.9800', '2.0000', '2021-06-17', 'received', '38.9900', '38.9900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13770, NULL, 87, 2086, '06489706', 'METAGYL SUSP', NULL, '4.3200', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '8.6400', '0.0000', '2021-06-17', 'received', '4.3200', '4.3200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13771, NULL, 87, 2086, '06489706', 'METAGYL SUSP', NULL, '4.3200', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '4.3200', '1.0000', '2021-06-17', 'received', '4.3200', '4.3200', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13772, NULL, 87, 1757, 'PR-470', 'PERMOXYL (AMOX\'LIN ) SUSP 100ML', NULL, '4.4000', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '17.6000', '2.0000', '2021-06-17', 'received', '4.4000', '4.4000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13773, NULL, 87, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.9800', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '32.9400', '0.0000', '2021-06-17', 'received', '10.9800', '10.9800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13774, NULL, 87, 2491, '57627875', 'BELLS VITAMIN C', NULL, '12.2000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '36.6000', '3.0000', '2021-06-17', 'received', '12.2000', '12.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13902, NULL, NULL, 2519, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14027, NULL, NULL, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '26.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '52.0000', '0.0000', '2021-06-17', 'received', '26.0000', '26.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14028, NULL, NULL, 1711, 'PR-424', 'CIROTAMIN SYR', NULL, '8.0700', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.2100', '0.0000', '2021-06-17', 'received', '8.0700', '8.0700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14029, NULL, NULL, 1351, '4084500846579', 'PEPTO BISMOL 240ML', NULL, '35.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '71.0000', '0.0000', '2021-06-17', 'received', '35.5000', '35.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14030, NULL, NULL, 2748, '92354318', 'DEEP FREEZE ONIT 35G', NULL, '35.5000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '71.0000', '0.0000', '2021-06-17', 'received', '35.5000', '35.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14082, NULL, NULL, 1341, 'PR-54', 'COTTON WOOL 500G', NULL, '18.7900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '56.3700', '0.0000', '2021-06-18', 'received', '18.7900', '18.7900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14083, NULL, NULL, 2733, '55537393', 'COTTON WOOL 200G', NULL, '7.5000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '75.0000', '0.0000', '2021-06-18', 'received', '7.5000', '7.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14084, NULL, NULL, 2732, '47378626', 'KY JELLY 50ML', NULL, '29.8900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '89.6700', '0.0000', '2021-06-18', 'received', '29.8900', '29.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14085, NULL, NULL, 2731, '73085575', 'LAVINAC (DICLOFENAC) GEL 30G', NULL, '2.8500', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '5.7000', '0.0000', '2021-06-18', 'received', '2.8500', '2.8500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14086, NULL, NULL, 1848, 'PR-561', 'DICLO INJ TROGE', NULL, '0.4200', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '21.0000', '0.0000', '2021-06-18', 'received', '0.4200', '0.4200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14087, NULL, NULL, 2729, '08313778', 'KEFEN EXTRA 10MG TABS', NULL, '3.2900', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '32.9000', '-2.0000', '2021-06-18', 'received', '3.2900', '3.2900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14088, NULL, NULL, 2728, '93373985', 'DICLOFEN TABS 50G', NULL, '0.8000', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.0000', '0.0000', '2021-06-18', 'received', '0.8000', '0.8000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14089, NULL, NULL, 2727, '76580073', 'PARA TAB 30\' EXETER', NULL, '4.6800', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '23.4000', '-1.0000', '2021-06-18', 'received', '4.6800', '4.6800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14170, NULL, NULL, 1833, 'PR-546', 'STUGERON TABS 50?S', NULL, '20.8000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '20.8000', '0.0000', '2021-06-18', 'received', '20.8000', '20.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14256, NULL, NULL, 2736, '34329770', 'THYROXINE TAB 100MG 28\' ECL', NULL, '8.9800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.9400', '0.0000', '2021-06-18', 'received', '8.9800', '8.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14257, NULL, NULL, 2738, '79121231', 'ENACIN -C (CLINDAMYCIN) 300MG CAPS', NULL, '7.6000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '76.0000', '0.0000', '2021-06-18', 'received', '7.6000', '7.6000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14258, NULL, NULL, 2739, '67011430', 'MYCOVIN TABLETS 125MG', NULL, '6.7000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '67.0000', '-6.0000', '2021-06-18', 'received', '6.7000', '6.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14259, NULL, NULL, 2740, '63100500', 'OMEXET (OMEPRAZOLE) CAPS 20MG', NULL, '9.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.0000', '0.0000', '2021-06-18', 'received', '9.0000', '9.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14288, NULL, NULL, 2737, '65473411', 'FUROSEMIDE 20MG TABS 28\'', NULL, '6.1300', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.3900', '0.0000', '2021-06-18', 'received', '6.1300', '6.1300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14390, NULL, NULL, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', NULL, '4.3900', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '21.9500', '0.0000', '2021-06-18', 'received', '4.3900', '4.3900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14391, NULL, NULL, 1336, 'PR-49', 'RUBBING ALCOHOL -MUL TITI', NULL, '15.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.0000', '0.0000', '2021-06-18', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14392, NULL, NULL, 1332, 'PR-45', 'ZINC OXIDE PLATER ROLL 31CH', NULL, '7.5000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.0000', '0.0000', '2021-06-18', 'received', '7.5000', '7.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14393, NULL, NULL, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', NULL, '3.7000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '44.4000', '-4.0000', '2021-06-18', 'received', '3.7000', '3.7000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14437, NULL, NULL, 2741, '91738635', 'NEUROBION TAB', NULL, '40.6400', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.6400', '0.0000', '2021-06-18', 'received', '40.6400', '40.6400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14490, NULL, NULL, 2749, '09707467', 'COARTEM 18\'S TAB', NULL, '20.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '61.5000', '-1.0000', '2021-06-18', 'received', '20.5000', '20.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14491, NULL, NULL, 2604, '43079266', 'COA MIXTURE', NULL, '90.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '270.0000', '-1.0000', '2021-06-18', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14529, 135, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '33.8200', '45.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.4600', '0.0000', '2021-06-17', 'received', '33.8200', '33.8200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14530, 135, NULL, 2351, '81129325', 'COARTEM 12\'S', NULL, '17.7000', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.1000', '0.0000', '2021-06-17', 'received', '17.7000', '17.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14531, 135, NULL, 2492, '51417644', 'NIZORAL SHAMPOO', NULL, '21.9900', '30.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.9800', '0.0000', '2021-06-17', 'received', '21.9900', '21.9900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14532, 135, NULL, 1630, 'PR-343', 'GEN-M TAB 80/480', NULL, '16.7400', '22.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.2200', '0.0000', '2021-06-17', 'received', '16.7400', '16.7400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14533, 135, NULL, 1629, 'PR-342', 'GEN-M SUSP', NULL, '13.7900', '18.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.3700', '0.0000', '2021-06-17', 'received', '13.7900', '13.7900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.7900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14534, 135, NULL, 2588, '20381609', 'NORMAL SALINE INFUSSION', NULL, '4.0000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-06-17', 'received', '4.0000', '4.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14535, 135, NULL, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '26.0000', '35.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2021-06-17', 'received', '26.0000', '26.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14536, 135, NULL, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '3.8400', '7.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '0.0000', '2021-06-17', 'received', '3.8400', '3.8400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.8400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14537, 135, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '14.0500', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.1500', '0.0000', '2021-06-17', 'received', '14.0500', '14.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14538, 135, NULL, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '6.5900', '9.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7700', '0.0000', '2021-06-17', 'received', '6.5900', '6.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14539, 135, NULL, 2271, '9556100104342', 'FLUCOR DAY', NULL, '12.0000', '16.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-06-17', 'received', '12.0000', '12.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14540, 135, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '11.5600', '16.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.1200', '0.0000', '2021-06-17', 'received', '11.5600', '11.5600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '11.5600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14541, 135, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '7.8800', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6400', '0.0000', '2021-06-17', 'received', '7.8800', '7.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14542, 135, NULL, 1711, 'PR-424', 'CIROTAMIN SYR', NULL, '7.4900', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.4700', '0.0000', '2021-06-17', 'received', '7.4900', '7.4900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14543, 135, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '14.9700', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9400', '0.0000', '2021-06-17', 'received', '14.9700', '14.9700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.9700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14544, 135, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.5000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2021-06-17', 'received', '8.5000', '8.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14545, 135, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '24.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8800', '0.0000', '2021-06-17', 'received', '17.9400', '17.9400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14546, 135, NULL, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '18.7000', '25.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.1000', '0.0000', '2021-06-17', 'received', '18.7000', '18.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14547, 135, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '17.8000', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.6000', '0.0000', '2021-06-17', 'received', '17.8000', '17.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14548, 135, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.7500', '6.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-06-17', 'received', '3.7500', '3.7500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14549, 135, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '7.8500', '11.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.2000', '0.0000', '2021-06-17', 'received', '7.8500', '7.8500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '7.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14550, 135, NULL, 2659, '48350053', 'LACTULOSE SOLUTION 300ML', NULL, '25.4800', '34.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.9600', '0.0000', '2021-06-17', 'received', '25.4800', '25.4800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.4800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14551, 135, NULL, 1351, '4084500846579', 'PEPTO BISMOL 240ML', NULL, '35.0000', '47.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2021-06-17', 'received', '35.0000', '35.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14552, 135, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '32.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.8200', '0.0000', '2021-06-17', 'received', '23.9100', '23.9100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14553, 135, NULL, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '39.0000', '51.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.0000', '0.0000', '2021-06-17', 'received', '39.0000', '39.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '39.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14554, 135, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '7.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-06-17', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14555, 135, NULL, 2615, '04025050', 'COOL EYES DROP', NULL, '12.5000', '16.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-06-17', 'received', '12.5000', '12.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14556, 135, NULL, 2748, '92354318', 'DEEP FREEZE ONIT 35G', NULL, '35.5000', '47.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0000', '0.0000', '2021-06-17', 'received', '35.5000', '35.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14557, 135, NULL, 1654, '8904091117703', 'RELCER GEL', NULL, '8.7400', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.2200', '0.0000', '2021-06-17', 'received', '8.7400', '8.7400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14558, 135, NULL, 2351, '81129325', 'COARTEM 12\'S', NULL, '17.7000', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.1000', '0.0000', '2021-06-17', 'received', '17.7000', '17.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14559, 135, NULL, 2749, '09707467', 'COARTEM 18\'S TAB', NULL, '20.5000', '27.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.5000', '0.0000', '2021-06-17', 'received', '20.5000', '20.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14560, 135, NULL, 2604, '43079266', 'COA MIXTURE', NULL, '90.0000', '120.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '0.0000', '2021-06-17', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14561, 135, NULL, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS', NULL, '32.9800', '43.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.9600', '0.0000', '2021-06-17', 'received', '32.9800', '32.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14562, NULL, 88, 2615, '04025050', 'COOL EYES DROP', NULL, '12.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.5000', '2.0000', '2021-06-18', 'received', '12.5000', '12.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14563, NULL, 88, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.5000', '2.0000', '2021-06-18', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14564, NULL, 88, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '39.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.0000', '0.0000', '2021-06-18', 'received', '39.0000', '39.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14565, NULL, 88, 2238, '5021265223350', 'PERFECTIL PLATINUM', NULL, '39.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '117.0000', '0.0000', '2021-06-18', 'received', '39.0000', '39.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14566, NULL, 88, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '47.8200', '0.0000', '2021-06-18', 'received', '23.9100', '23.9100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14567, NULL, 88, 2748, '92354318', 'DEEP FREEZE ONIT 35G', NULL, '35.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '71.0000', '2.0000', '2021-06-18', 'received', '35.5000', '35.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14568, NULL, 88, 1351, '4084500846579', 'PEPTO BISMOL 240ML', NULL, '35.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '71.0000', '1.0000', '2021-06-18', 'received', '35.5000', '35.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14569, NULL, 88, 2659, '48350053', 'LACTULOSE SOLUTION 300ML', NULL, '25.4800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.9600', '0.0000', '2021-06-18', 'received', '25.4800', '25.4800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14570, NULL, 88, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '7.8500', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '94.2000', '0.0000', '2021-06-18', 'received', '7.8500', '7.8500', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14571, NULL, 88, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '3.7500', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '0.0000', '2021-06-18', 'received', '3.7500', '3.7500', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14572, NULL, 88, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '17.8000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.6000', '0.0000', '2021-06-18', 'received', '17.8000', '17.8000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14573, NULL, 88, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '18.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '56.1000', '1.0000', '2021-06-18', 'received', '18.7000', '18.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14574, NULL, 88, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.8800', '0.0000', '2021-06-18', 'received', '17.9400', '17.9400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14575, NULL, 88, 2511, '81055477', 'DUROL 300ML', NULL, '8.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.5000', '0.0000', '2021-06-18', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14576, NULL, 88, 2511, '81055477', 'DUROL 300ML', NULL, '8.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.5000', '0.0000', '2021-06-18', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14577, NULL, 88, 2511, '81055477', 'DUROL 300ML', NULL, '8.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.5000', '0.0000', '2021-06-18', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14578, NULL, 88, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '14.9700', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.9400', '0.0000', '2021-06-18', 'received', '14.9700', '14.9700', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14579, NULL, 88, 1711, 'PR-424', 'CIROTAMIN SYR', NULL, '8.0700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.2100', '0.0000', '2021-06-18', 'received', '8.0700', '8.0700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14580, NULL, 88, 1700, '8904008410187', 'BECOATIN SYR', NULL, '8.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '0.0000', '2021-06-18', 'received', '8.0000', '8.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14581, NULL, 88, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '11.5600', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.1200', '0.0000', '2021-06-18', 'received', '11.5600', '11.5600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14582, NULL, 88, 2271, '9556100104342', 'FLUCOR DAY', NULL, '12.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '1.0000', '2021-06-18', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14583, NULL, 88, 1654, '8904091117703', 'RELCER GEL', NULL, '8.8700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.6100', '0.0000', '2021-06-18', 'received', '8.8700', '8.8700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14584, NULL, 88, 2706, '44071026', 'GASTRONE SYRUP 200ML', NULL, '6.5900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.7700', '0.0000', '2021-06-18', 'received', '6.5900', '6.5900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14585, NULL, 88, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '14.0500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.1500', '1.0000', '2021-06-18', 'received', '14.0500', '14.0500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14586, NULL, 88, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '3.8400', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.4000', '10.0000', '2021-06-18', 'received', '3.8400', '3.8400', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14587, NULL, 88, 1375, '5021265243457', 'OSTEOCARE TABS - UK', NULL, '26.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.0000', '0.0000', '2021-06-18', 'received', '26.0000', '26.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14588, NULL, 88, 2588, '20381609', 'NORMAL SALINE INFUSSION', NULL, '4.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '4.0000', '2021-06-18', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14589, NULL, 88, 1629, 'PR-342', 'GEN-M SUSP', NULL, '14.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.0000', '0.0000', '2021-06-18', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14590, NULL, 88, 1629, 'PR-342', 'GEN-M SUSP', NULL, '14.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.0000', '0.0000', '2021-06-18', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14591, NULL, 88, 1629, 'PR-342', 'GEN-M SUSP', NULL, '14.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.0000', '0.0000', '2021-06-18', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14592, NULL, 88, 1630, 'PR-343', 'GEN-M TAB 80/480', NULL, '16.7400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.2200', '0.0000', '2021-06-18', 'received', '16.7400', '16.7400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14593, NULL, 88, 2492, '51417644', 'NIZORAL SHAMPOO', NULL, '21.9900', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.9900', '1.0000', '2021-06-18', 'received', '21.9900', '21.9900', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14594, NULL, 88, 2351, '81129325', 'COARTEM 12\'S', NULL, '17.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '53.1000', '1.0000', '2021-06-18', 'received', '17.7000', '17.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14595, NULL, 88, 2492, '51417644', 'NIZORAL SHAMPOO', NULL, '21.9900', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.9900', '1.0000', '2021-06-18', 'received', '21.9900', '21.9900', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14596, NULL, 88, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '33.8900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '101.6700', '1.0000', '2021-06-18', 'received', '33.8900', '33.8900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14597, NULL, 88, 2749, '09707467', 'COARTEM 18\'S TAB', NULL, '20.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '61.5000', '3.0000', '2021-06-18', 'received', '20.5000', '20.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14598, NULL, 88, 2604, '43079266', 'COA MIXTURE', NULL, '90.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '270.0000', '0.0000', '2021-06-18', 'received', '90.0000', '90.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14599, NULL, 88, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS', NULL, '32.9800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '65.9600', '2.0000', '2021-06-18', 'received', '32.9800', '32.9800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14662, NULL, NULL, 1852, 'PR-565', 'EYECOPEN ACPS 30?S', NULL, '5.0000', '0.0000', '9.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.0000', '0.0000', '2021-06-18', 'received', '5.0000', '5.0000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14663, NULL, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '14.8000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '44.4000', '0.0000', '2021-06-18', 'received', '14.8000', '14.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14664, NULL, NULL, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', NULL, '14.8000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '29.6000', '0.0000', '2021-06-18', 'received', '14.8000', '14.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14782, NULL, NULL, 2742, '00544605', 'WL HERBAL LAXATIVE CAPS', NULL, '14.7400', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '29.4800', '0.0000', '2021-06-18', 'received', '14.7400', '14.7400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14783, NULL, NULL, 2743, '85592195', 'ANTACID MIXTURE 200ML', NULL, '5.5900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '16.7700', '0.0000', '2021-06-18', 'received', '5.5900', '5.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14904, NULL, NULL, 1674, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14905, NULL, NULL, 2487, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14906, NULL, NULL, 2485, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14907, NULL, NULL, 2744, '48964254', 'LAVESTEN VAG PESS', NULL, '9.9800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '29.9400', '-1.0000', '2021-06-18', 'received', '9.9800', '9.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15038, NULL, NULL, 2734, '24454054', 'SECNIDAZOLE TAB IG (LAVINA)', NULL, '3.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '10.5000', '0.0000', '2021-06-18', 'received', '3.5000', '3.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15039, NULL, NULL, 1826, 'PR-539', 'SYRINGES & NEES (KOREA) 5ML', NULL, '0.2100', '0.0000', '100.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '21.0000', '0.0000', '2021-06-18', 'received', '0.2100', '0.2100', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15040, NULL, NULL, 2735, '67749877', 'SWEETEX TABS 300\'S', NULL, '13.7800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '41.3400', '0.0000', '2021-06-18', 'received', '13.7800', '13.7800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15781, 93, NULL, 2317, '74536436', 'HEMANI HERBAL TEA', NULL, '15.0000', '18.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '750.0000', '0.0000', '2021-04-29', 'received', '15.0000', '15.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15782, 93, NULL, 2214, '8961102060823', 'PROSTATE OIL 60ML', NULL, '15.0000', '22.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-04-29', 'received', '15.0000', '15.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15783, 93, NULL, 2524, '8858854602732', 'XTREME TUMERIC SOAP', NULL, '10.0000', '15.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-04-29', 'received', '10.0000', '10.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15784, 93, NULL, 2525, '8850722212760', 'GOATMILK SOAP', NULL, '10.0000', '15.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-04-29', 'received', '10.0000', '10.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15785, 93, NULL, 2526, '8858854600110', 'VIRGINITY SOAP (SKIN DOCTOR0', NULL, '10.0000', '15.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-04-29', 'received', '10.0000', '10.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15786, 93, NULL, 2527, '655295237350', 'MACA POWDER (DR HERBALIST)', NULL, '40.0000', '48.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '400.0000', '0.0000', '2021-04-29', 'received', '40.0000', '40.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '40.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15787, 93, NULL, 2528, '50186830', 'BLACK SOAP BIG', NULL, '8.5000', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '0.0000', '2021-04-29', 'received', '8.5000', '8.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15788, 93, NULL, 2529, '83499560', 'BLACK SOAP SMALL', NULL, '7.5000', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-04-29', 'received', '7.5000', '7.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15789, 93, NULL, 2601, '14487985', 'ULTRA SLIM HERBAL TEA', NULL, '16.0000', '25.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2021-04-29', 'received', '16.0000', '16.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '16.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15790, 93, NULL, 2602, '86780065', 'CLOVES ', NULL, '4.0000', '5.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2021-04-29', 'received', '4.0000', '4.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15791, 93, NULL, 2603, '17379642', 'VITAGO', NULL, '1.0000', '1.3000', '24.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-04-29', 'received', '1.0000', '1.0000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15792, 93, NULL, 2763, '91369587', 'FLAXSEED', NULL, '7.5000', '10.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '0.0000', '2021-04-29', 'received', '7.5000', '7.5000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15793, NULL, NULL, 2603, '17379642', 'VITAGO', NULL, '1.0000', '0.0000', '24.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '0.0000', '2021-06-19', 'received', '1.0000', '1.0000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15794, NULL, 41, 2603, '17379642', 'VITAGO', NULL, '1.0000', '0.0000', '24.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '19.0000', '2021-06-19', 'received', '1.0000', '1.0000', NULL, NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15795, NULL, 41, 2602, '86780065', 'CLOVES ', NULL, '4.0000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '80.0000', '4.0000', '2021-06-19', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15796, NULL, 41, 2529, '83499560', 'BLACK SOAP SMALL', NULL, '7.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.5000', '3.0000', '2021-06-19', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15797, NULL, 41, 2528, '50186830', 'BLACK SOAP BIG', NULL, '8.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.0000', '2.0000', '2021-06-19', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15798, NULL, 41, 2214, '8961102060823', 'PROSTATE OIL 60ML', NULL, '15.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.0000', '6.0000', '2021-06-19', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15799, NULL, 41, 2317, '74536436', 'HEMANI HERBAL TEA', NULL, '15.0000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '750.0000', '10.0000', '2021-06-19', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15800, NULL, 41, 2524, '8858854602732', 'XTREME TUMERIC SOAP', NULL, '10.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '1.0000', '2021-06-19', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15801, NULL, 41, 2525, '8850722212760', 'GOATMILK SOAP', NULL, '10.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '8.0000', '2021-06-19', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15802, NULL, 41, 2526, '8858854600110', 'VIRGINITY SOAP (SKIN DOCTOR0', NULL, '10.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '11.0000', '2021-06-19', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15803, NULL, 41, 2527, '655295237350', 'MACA POWDER (DR HERBALIST)', NULL, '40.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '400.0000', '4.0000', '2021-06-19', 'received', '40.0000', '40.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15804, NULL, 41, 2601, '14487985', 'ULTRA SLIM HERBAL TEA', NULL, '16.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '80.0000', '1.0000', '2021-06-19', 'received', '16.0000', '16.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15805, NULL, 41, 2763, '91369587', 'FLAXSEED', NULL, '7.5000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '150.0000', '18.0000', '2021-06-19', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15930, NULL, NULL, 2135, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15931, NULL, NULL, 2732, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16080, NULL, NULL, 2138, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16081, NULL, NULL, 2049, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16131, NULL, NULL, 2778, '035046004323', 'COQ10 100MG CAPS (WINDML)', NULL, '89.4000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '268.2000', '2.0000', '2021-06-22', 'received', '89.4000', '89.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16132, NULL, NULL, 2779, '087701408182', 'FISH OIL (GOOD NIEGHOUR PHAR)', NULL, '26.2800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '78.8400', '2.0000', '2021-06-22', 'received', '26.2800', '26.2800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16133, NULL, NULL, 2781, '087701407253', 'VITAMIN A (GOOD NEIGHBOUR PHARM)', NULL, '31.3200', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '93.9600', '2.0000', '2021-06-22', 'received', '31.3200', '31.3200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16134, NULL, NULL, 2780, '016500586975', 'ONE A DAY WOMEN TABLET 60', NULL, '52.0200', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '156.0600', '2.0000', '2021-06-22', 'received', '52.0200', '52.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16135, NULL, NULL, 2782, '740985253441', 'PUREMARK VEGAN PROTEIN POWER 160Z', NULL, '91.8000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '183.6000', '1.0000', '2021-06-22', 'received', '91.8000', '91.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16136, NULL, NULL, 2783, '309042085601', 'VITAMIN A (MAJOR)', NULL, '17.9400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '53.8200', '2.0000', '2021-06-22', 'received', '17.9400', '17.9400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16137, NULL, NULL, 2784, '074312304217', 'ADULT  MULTIVITAMIN GUMMIES', NULL, '53.4600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '160.3800', '1.0000', '2021-06-22', 'received', '53.4600', '53.4600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16138, NULL, NULL, 2785, '074312028717', 'B COMPLEX SUBLINGUAL (NATURES BOUNTY)', NULL, '41.0400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '123.1200', '2.0000', '2021-06-22', 'received', '41.0400', '41.0400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16139, NULL, NULL, 2786, '030768037208', 'FISH OIL (SUNDOWN)', NULL, '40.4400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '121.3200', '2.0000', '2021-06-22', 'received', '40.4400', '40.4400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16140, NULL, NULL, 2787, '030768006761', 'FOLATE FOLIC ACID (SUNDOWN)', NULL, '16.0200', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '80.1000', '5.0000', '2021-06-22', 'received', '16.0200', '16.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16141, NULL, NULL, 2788, '087701408304', 'ECHINACEA COMPLEX (GOOD NEIGHOR PHARM)', NULL, '33.6600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '100.9800', '2.0000', '2021-06-22', 'received', '33.6600', '33.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16142, NULL, NULL, 2789, '016500586951', 'ONE A DAY MEN TABLET 60', NULL, '52.0200', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '156.0600', '2.0000', '2021-06-22', 'received', '52.0200', '52.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16143, NULL, NULL, 2790, '074312333903', 'VALERIAN ROOT (NATURE BOUNTY)', NULL, '39.9000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '119.7000', '2.0000', '2021-06-22', 'received', '39.9000', '39.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16144, NULL, NULL, 2791, '074312035951', 'VIT B12 (NATURE BOUNTY)', NULL, '41.2200', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '123.6600', '2.0000', '2021-06-22', 'received', '41.2200', '41.2200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16145, NULL, NULL, 2792, '311845162618', 'VITAMIN K2 (MASON)', NULL, '38.2800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '114.8400', '2.0000', '2021-06-22', 'received', '38.2800', '38.2800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16146, NULL, NULL, 2793, '369618042018', 'VITAMIN D3 (RELIABLE)', NULL, '31.6200', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '63.2400', '0.0000', '2021-06-22', 'received', '31.6200', '31.6200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16147, NULL, NULL, 2794, '740985275290', 'CALCIUM 600+D3 CAP (21 CENTURY)', NULL, '17.8200', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '89.1000', '5.0000', '2021-06-22', 'received', '17.8200', '17.8200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16148, NULL, NULL, 2795, '311845136312', 'COD LIVER OIL (MASONS)', NULL, '35.5800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '106.7400', '2.0000', '2021-06-22', 'received', '35.5800', '35.5800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16149, NULL, NULL, 2796, '087701407864', 'HEALTY EYES (GOOD NEIGHBOR PHARM)', NULL, '30.7800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '92.3400', '3.0000', '2021-06-22', 'received', '30.7800', '30.7800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16150, NULL, NULL, 2798, '310742011197', 'MENTHOLATUM NIGHTVAPOUR RUB', NULL, '28.3800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '85.1400', '2.0000', '2021-06-22', 'received', '28.3800', '28.3800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16151, NULL, NULL, 2800, '740985212288', 'SAW PALMETTO (21 CENTURY)', NULL, '45.3600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '136.0800', '2.0000', '2021-06-22', 'received', '45.3600', '45.3600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16152, NULL, NULL, 2801, '358914800446', 'SCANDISHAKE POWER  VANILLA', NULL, '65.8800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '197.6400', '2.0000', '2021-06-22', 'received', '65.8800', '65.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16153, NULL, NULL, 2802, '074312008108', 'VIT E OIL (NATURE BOUNTY)', NULL, '52.2000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '156.6000', '2.0000', '2021-06-22', 'received', '52.2000', '52.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16243, NULL, NULL, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', NULL, '1.8000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '3.6000', '10.0000', '2021-06-22', 'received', '1.8000', '1.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16244, NULL, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.4500', '0.0000', '2021-06-22', 'received', '3.4900', '3.4900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16245, NULL, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '11.9500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '35.8500', '-3.0000', '2021-06-22', 'received', '11.9500', '11.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16246, NULL, NULL, 1866, 'PR-579', 'CETAPOL PM 120/12.5MG/5ML', NULL, '5.2000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.6000', '0.0000', '2021-06-22', 'received', '5.2000', '5.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16247, NULL, NULL, 1542, '8902502108920', 'INFAV OINT', NULL, '14.7800', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '29.5600', '-1.0000', '2021-06-22', 'received', '14.7800', '14.7800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16248, NULL, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '20.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '40.0000', '1.0000', '2021-06-22', 'received', '20.0000', '20.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16249, NULL, NULL, 1843, '5000456024754', 'NEXIUM TABS 20MG 14S', NULL, '4.4200', '0.0000', '28.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '123.7600', '0.0000', '2021-06-22', 'received', '4.4200', '4.4200', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16272, 141, NULL, 1416, 'PR-129', 'LUCKY MIXTURE', NULL, '10.0000', '13.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-06-22', 'received', '10.0000', '10.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16273, 141, NULL, 1430, 'PR-143', 'SOLAK MIXTURE(25)', NULL, '13.0000', '18.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-06-22', 'received', '13.0000', '13.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16274, NULL, 93, 1416, 'PR-129', 'LUCKY MIXTURE', NULL, '10.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '2.0000', '2021-06-22', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16275, NULL, 93, 1416, 'PR-129', 'LUCKY MIXTURE', NULL, '10.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.0000', '1.0000', '2021-06-22', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16276, NULL, 93, 1430, 'PR-143', 'SOLAK MIXTURE(25)', NULL, '13.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '65.0000', '2.0000', '2021-06-22', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16302, NULL, NULL, 2228, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16332, NULL, NULL, 2803, '83576846', 'LORATADINE 10MG 30\'', NULL, '8.0200', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '16.0400', '0.0000', '2021-06-23', 'received', '8.0200', '8.0200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16371, 142, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '7.5000', '11.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-06-23', 'received', '7.5000', '7.5000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16372, 142, NULL, 2449, '73407261', 'DETTOL SOAP SMALL', NULL, '5.5000', '7.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-06-23', 'received', '5.5000', '5.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16373, 142, NULL, 2806, '51671546', 'DETTOL SOAP BIG', NULL, '5.7500', '8.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-06-23', 'received', '5.7500', '5.7500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '5.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16374, 142, NULL, 2807, '80774399', 'FAMI CARE KID BRUSH', NULL, '1.0000', '2.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-06-23', 'received', '1.0000', '1.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '1.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16375, 142, NULL, 2444, '73221630', 'SOFTCARE BABY WIPES', NULL, '6.0000', '9.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-06-23', 'received', '6.0000', '6.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16376, 142, NULL, 2809, '57353674', 'LONGRICH TOOTHPASTE', NULL, '28.0000', '35.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.0000', '0.0000', '2021-06-23', 'received', '28.0000', '28.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '28.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16377, NULL, NULL, 2806, '51671546', 'DETTOL SOAP BIG', NULL, '5.7500', '0.0000', '4.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '23.0000', '0.0000', '2021-06-23', 'received', '5.7500', '5.7500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16378, NULL, NULL, 2807, '80774399', 'FAMI CARE KID BRUSH', NULL, '1.0000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '12.0000', '0.0000', '2021-06-23', 'received', '1.0000', '1.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16387, NULL, NULL, 2593, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16388, NULL, NULL, 2589, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16389, NULL, NULL, 2554, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16390, NULL, NULL, 2481, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16391, NULL, NULL, 2712, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-17.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16416, NULL, NULL, 2808, '5017007012498', 'LEVOFLOXACIN 500MG TEVA', NULL, '39.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '234.0000', '0.0000', '2021-06-25', 'received', '39.0000', '39.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16439, 140, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '34.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.8000', '0.0000', '2021-06-22', 'received', '25.9000', '25.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16440, 140, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '13.2900', '17.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.8700', '0.0000', '2021-06-22', 'received', '13.2900', '13.2900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16441, 140, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7500', '0.0000', '2021-06-22', 'received', '3.5500', '3.5500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16442, 140, NULL, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', NULL, '1.8000', '2.5000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '12.0000', '2021-06-22', 'received', '1.8000', '1.8000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '1.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16443, 140, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '27.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.1000', '0.0000', '2021-06-22', 'received', '19.0200', '19.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '19.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16444, 140, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4500', '0.0000', '2021-06-22', 'received', '3.4900', '3.4900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16445, 140, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.1500', '8.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.7500', '0.0000', '2021-06-22', 'received', '6.1500', '6.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16446, 140, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '5.8300', '8.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4900', '0.0000', '2021-06-22', 'received', '5.8300', '5.8300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16447, 140, NULL, 2408, '5011501009398', 'DEEP HEAT OINT 15G', NULL, '9.3500', '12.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0500', '0.0000', '2021-06-22', 'received', '9.3500', '9.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16448, 140, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '4.7200', '7.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '0.0000', '2021-06-22', 'received', '4.7200', '4.7200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16449, 140, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '11.9500', '15.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8500', '0.0000', '2021-06-22', 'received', '11.9500', '11.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16450, 140, NULL, 1866, 'PR-579', 'CETAPOL PM 120/12.5MG/5ML', NULL, '5.2000', '7.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '0.0000', '2021-06-22', 'received', '5.2000', '5.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16451, 140, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4500', '0.0000', '2021-06-22', 'received', '6.8900', '6.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16452, 140, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '13.2900', '18.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.8700', '0.0000', '2021-06-22', 'received', '13.2900', '13.2900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16453, 140, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '10.8700', '14.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.6100', '0.0000', '2021-06-22', 'received', '10.8700', '10.8700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16454, 140, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', NULL, '12.0000', '15.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-06-22', 'received', '12.0000', '12.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16455, 140, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '34.9000', '46.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.7000', '0.0000', '2021-06-22', 'received', '34.9000', '34.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '34.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16456, 140, NULL, 1542, '8902502108920', 'INFAV OINT', NULL, '14.7800', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5600', '0.0000', '2021-06-22', 'received', '14.7800', '14.7800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16457, 140, NULL, 2142, '5021265223855', 'WELLBABY ', NULL, '57.0000', '76.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '0.0000', '2021-06-22', 'received', '57.0000', '57.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '57.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16458, 140, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '20.0000', '26.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-06-22', 'received', '20.0000', '20.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16459, 140, NULL, 1843, '5000456024754', 'NEXIUM TABS 20MG 14S', NULL, '4.3000', '5.8000', '28.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.4000', '0.0000', '2021-06-22', 'received', '4.3000', '4.3000', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '4.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16460, 140, NULL, 2803, '83576846', 'LORATADINE 10MG 30\'', NULL, '8.0200', '10.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0400', '0.0000', '2021-06-22', 'received', '8.0200', '8.0200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16461, 140, NULL, 2808, '5017007012498', 'LEVOFLOXACIN 500MG TEVA', NULL, '39.0000', '51.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '0.0000', '2021-06-22', 'received', '39.0000', '39.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '39.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16462, 140, NULL, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '59.4600', '78.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '297.3000', '0.0000', '2021-06-22', 'received', '59.4600', '59.4600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '59.4600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16463, 140, NULL, 2135, '42431074', 'POSTINOR LOCAL', NULL, '2.0000', '5.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-06-22', 'received', '2.0000', '2.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16488, 136, NULL, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '28.2400', '38.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '282.4000', '0.0000', '2021-06-18', 'received', '28.2400', '28.2400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '28.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16489, 136, NULL, 2750, '42386324', 'PARAMOL SUPP 500MG', NULL, '0.5500', '2.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.5000', '0.0000', '2021-06-18', 'received', '0.5500', '0.5500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '0.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16490, 136, NULL, 2751, '12649302', 'PARAMOL SUPP 250MG', NULL, '0.3600', '1.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.6000', '0.0000', '2021-06-18', 'received', '0.3600', '0.3600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '0.3600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16491, 136, NULL, 2752, '26752801', 'PARAMOL SUPP 125MG', NULL, '0.3000', '1.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.0000', '0.0000', '2021-06-18', 'received', '0.3000', '0.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '0.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16492, 136, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '4.0000', '7.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-06-18', 'received', '4.0000', '4.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16493, 136, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.8300', '12.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '441.5000', '0.0000', '2021-06-18', 'received', '8.8300', '8.8300', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '8.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16494, 136, NULL, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', NULL, '3.7000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '0.0000', '2021-06-18', 'received', '3.7000', '3.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16495, 136, NULL, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', NULL, '5.3000', '7.0000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '530.0000', '0.0000', '2021-06-18', 'received', '5.3000', '5.3000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '5.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16496, 136, NULL, 2753, '76555932', 'CREPE BANDAGE 6\'', NULL, '4.8000', '7.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-06-18', 'received', '4.8000', '4.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16497, 136, NULL, 2754, '10737671', 'PLASTER STRIPS 100\'S', NULL, '0.0800', '0.5000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '0.0000', '2021-06-18', 'received', '0.0800', '0.0800', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.0800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16498, 136, NULL, 2135, '42431074', 'POSTINOR LOCAL', NULL, '2.5000', '5.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '0.0000', '2021-06-18', 'received', '2.5000', '2.5000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16499, NULL, NULL, 2750, '42386324', 'PARAMOL SUPP 500MG', NULL, '0.5500', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '5.5000', '0.0000', '2021-06-25', 'received', '0.5500', '0.5500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16500, NULL, NULL, 2751, '12649302', 'PARAMOL SUPP 250MG', NULL, '0.3600', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '3.6000', '0.0000', '2021-06-25', 'received', '0.3600', '0.3600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16501, NULL, NULL, 2752, '26752801', 'PARAMOL SUPP 125MG', NULL, '0.3000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '3.0000', '0.0000', '2021-06-25', 'received', '0.3000', '0.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16502, NULL, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '5.5000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '55.0000', '0.0000', '2021-06-25', 'received', '5.5000', '5.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16503, NULL, NULL, 2753, '76555932', 'CREPE BANDAGE 6\'', NULL, '4.8000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '0.0000', '2021-06-25', 'received', '4.8000', '4.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16504, NULL, NULL, 2754, '10737671', 'PLASTER STRIPS 100\'S', NULL, '0.0800', '0.0000', '100.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '8.0000', '-4.0000', '2021-06-25', 'received', '0.0800', '0.0800', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16543, NULL, NULL, 2810, '44204486', 'L MONTUS', NULL, '2.2000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '22.0000', '-5.0000', '2021-06-25', 'received', '2.2000', '2.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16597, NULL, NULL, 2776, '30424583', 'LEXSPORIN POWDER', NULL, '14.6000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '29.2000', '0.0000', '2021-06-25', 'received', '14.6000', '14.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16598, NULL, NULL, 2772, '70208100', 'CAFEGOT TAB', NULL, '16.7000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '33.4000', '4.0000', '2021-06-25', 'received', '16.7000', '16.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16599, NULL, NULL, 1363, '5000456022774', 'CRESTOR 5MG TABS', NULL, '84.8000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '84.8000', '0.0000', '2021-06-25', 'received', '84.8000', '84.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16600, NULL, NULL, 2572, '17160763', 'SWEDISH BITTERS', NULL, '22.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '44.0000', '0.0000', '2021-06-25', 'received', '22.0000', '22.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16601, NULL, NULL, 2571, '89677505', 'YAAKSON MIXTURE', NULL, '9.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.0000', '0.0000', '2021-06-25', 'received', '9.0000', '9.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16630, 143, NULL, 2810, '44204486', 'L MONTUS', NULL, '2.2000', '2.9000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-06-25', 'received', '2.2000', '2.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16631, 143, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2021-06-25', 'received', '5.2000', '5.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16632, 143, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '8.2400', '11.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.2000', '0.0000', '2021-06-25', 'received', '8.2400', '8.2400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16633, 143, NULL, 2776, '30424583', 'LEXSPORIN POWDER', NULL, '14.6000', '19.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2000', '0.0000', '2021-06-25', 'received', '14.6000', '14.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16634, 143, NULL, 2168, '8901082004356', 'APTIZOOOM', NULL, '26.0000', '39.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-06-25', 'received', '26.0000', '26.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16635, 143, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.8200', '0.0000', '2021-06-25', 'received', '17.9400', '17.9400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16636, 143, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.5000', '12.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.5000', '0.0000', '2021-06-25', 'received', '8.5000', '8.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16637, 143, NULL, 1593, 'PR-306', 'LYRICA 75MG', NULL, '5.9000', '8.7000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '177.0000', '0.0000', '2021-06-25', 'received', '5.9000', '5.9000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '5.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16638, 143, NULL, 2636, '86196755', 'KIDIMIN SYR', NULL, '7.8800', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6400', '0.0000', '2021-06-25', 'received', '7.8800', '7.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16639, 143, NULL, 2614, '96562826', 'WELLMAN CAPS', NULL, '52.5100', '71.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0200', '0.0000', '2021-06-25', 'received', '52.5100', '52.5100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '52.5100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16640, 143, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '35.6000', '47.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.2000', '0.0000', '2021-06-25', 'received', '35.6000', '35.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16641, 143, NULL, 2683, '54509632', 'ZINNAT 250 MG', NULL, '49.0000', '65.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2021-06-25', 'received', '49.0000', '49.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '49.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16642, 143, NULL, 2637, '30755055', 'KIDICARE SYR', NULL, '10.0000', '13.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-06-25', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16643, 143, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7200', '2.0000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-06-25', 'received', '0.7200', '0.7200', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16644, 143, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.5000', '2.0000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-06-25', 'received', '1.5000', '1.5000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16645, 143, NULL, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '24.9000', '36.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.8000', '0.0000', '2021-06-25', 'received', '24.9000', '24.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16646, 143, NULL, 1694, 'PR-407', 'LEENASYR', NULL, '7.1900', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5700', '0.0000', '2021-06-25', 'received', '7.1900', '7.1900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.1900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16647, 143, NULL, 1662, '3400970000913', 'IDEOS ~', NULL, '52.5300', '69.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0600', '0.0000', '2021-06-25', 'received', '52.5300', '52.5300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '52.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16648, 143, NULL, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '13.9000', '18.3500', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.8000', '0.0000', '2021-06-25', 'received', '13.9000', '13.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16649, 143, NULL, 2772, '70208100', 'CAFEGOT TAB', NULL, '16.7000', '22.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.2000', '0.0000', '2021-06-25', 'received', '16.7000', '16.7000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '16.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16650, 143, NULL, 1363, '5000456022774', 'CRESTOR 5MG TABS', NULL, '81.4000', '112.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.4000', '0.0000', '2021-06-25', 'received', '81.4000', '81.4000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '81.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16651, 143, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.5000', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-06-25', 'received', '7.5000', '7.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16652, 143, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '9.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-06-25', 'received', '6.5000', '6.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16653, 143, NULL, 2572, '17160763', 'SWEDISH BITTERS', NULL, '22.0000', '29.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-06-25', 'received', '22.0000', '22.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16654, 143, NULL, 2571, '89677505', 'YAAKSON MIXTURE', NULL, '9.0000', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-06-25', 'received', '9.0000', '9.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16655, 143, NULL, 2811, '02080207', 'MERCY CREAM', NULL, '3.4000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '0.0000', '2021-06-25', 'received', '3.4000', '3.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16656, 143, NULL, 1416, 'PR-129', 'LUCKY MIXTURE', NULL, '10.0000', '13.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-06-25', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16657, NULL, NULL, 2811, '02080207', 'MERCY CREAM', NULL, '3.4000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.0000', '0.0000', '2021-06-25', 'received', '3.4000', '3.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16686, NULL, 95, 2571, '89677505', 'YAAKSON MIXTURE', NULL, '9.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '2.0000', '2021-06-25', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16687, NULL, 95, 2572, '17160763', 'SWEDISH BITTERS', NULL, '22.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.0000', '2.0000', '2021-06-25', 'received', '22.0000', '22.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16688, NULL, 95, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.0000', '3.0000', '2021-06-25', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16689, NULL, 95, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.5000', '0.0000', '2021-06-25', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16690, NULL, 95, 1363, '5000456022774', 'CRESTOR 5MG TABS', NULL, '81.4000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '81.4000', '0.0000', '2021-06-25', 'received', '81.4000', '81.4000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16691, NULL, 95, 2772, '70208100', 'CAFEGOT TAB', NULL, '16.7000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.4000', '0.0000', '2021-06-25', 'received', '16.7000', '16.7000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16692, NULL, 95, 1550, '18904083810480', 'GYNOMYCOLEX PESS', NULL, '13.9000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.8000', '0.0000', '2021-06-25', 'received', '13.9000', '13.9000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16693, NULL, 95, 1662, '3400970000913', 'IDEOS ~', NULL, '52.5300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '105.0600', '0.0000', '2021-06-25', 'received', '52.5300', '52.5300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16694, NULL, 95, 1694, 'PR-407', 'LEENASYR', NULL, '7.1900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.5700', '3.0000', '2021-06-25', 'received', '7.1900', '7.1900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16695, NULL, 95, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '24.9000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.8000', '2.0000', '2021-06-25', 'received', '24.9000', '24.9000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16696, NULL, 95, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '3.0000', '0.0000', '2021-06-25', 'received', '1.5000', '1.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16697, NULL, 95, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7200', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '3.6000', '0.0000', '2021-06-25', 'received', '0.7200', '0.7200', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16698, NULL, 95, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7200', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.4000', '0.0000', '2021-06-25', 'received', '0.7200', '0.7200', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16699, NULL, 95, 2637, '30755055', 'KIDICARE SYR', NULL, '10.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '2.0000', '2021-06-25', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16700, NULL, 95, 2683, '54509632', 'ZINNAT 250 MG', NULL, '49.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.0000', '1.0000', '2021-06-25', 'received', '49.0000', '49.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16701, NULL, 95, 2683, '54509632', 'ZINNAT 250 MG', NULL, '49.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.0000', '1.0000', '2021-06-25', 'received', '49.0000', '49.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16702, NULL, 95, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '35.6000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '71.2000', '0.0000', '2021-06-25', 'received', '35.6000', '35.6000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16703, NULL, 95, 2614, '96562826', 'WELLMAN CAPS', NULL, '52.5100', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '105.0200', '0.0000', '2021-06-25', 'received', '52.5100', '52.5100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16704, NULL, 95, 2636, '86196755', 'KIDIMIN SYR', NULL, '7.8800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.6400', '2.0000', '2021-06-25', 'received', '7.8800', '7.8800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16705, NULL, 95, 1593, 'PR-306', 'LYRICA 75MG', NULL, '5.9000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '177.0000', '16.0000', '2021-06-25', 'received', '5.9000', '5.9000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16706, NULL, 95, 2511, '81055477', 'DUROL 300ML', NULL, '8.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.5000', '2.0000', '2021-06-25', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16707, NULL, 95, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '53.8200', '0.0000', '2021-06-25', 'received', '17.9400', '17.9400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16708, NULL, 95, 2168, '8901082004356', 'APTIZOOOM', NULL, '26.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.0000', '3.0000', '2021-06-25', 'received', '26.0000', '26.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16709, NULL, 95, 2776, '30424583', 'LEXSPORIN POWDER', NULL, '14.6000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.2000', '2.0000', '2021-06-25', 'received', '14.6000', '14.6000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16710, NULL, 95, 2592, '42909881', 'Zentel Suspension ', NULL, '8.2400', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '41.2000', '4.0000', '2021-06-25', 'received', '8.2400', '8.2400', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16711, NULL, 95, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.0000', '5.0000', '2021-06-25', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16712, NULL, 95, 2810, '44204486', 'L MONTUS', NULL, '2.2000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.0000', '0.0000', '2021-06-25', 'received', '2.2000', '2.2000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16713, NULL, 95, 2811, '02080207', 'MERCY CREAM', NULL, '3.4000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.0000', '1.0000', '2021-06-25', 'received', '3.4000', '3.4000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16714, NULL, 95, 1416, 'PR-129', 'LUCKY MIXTURE', NULL, '10.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.0000', '1.0000', '2021-06-25', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16715, NULL, 95, 1416, 'PR-129', 'LUCKY MIXTURE', NULL, '10.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.0000', '1.0000', '2021-06-25', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16716, NULL, NULL, 2161, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16717, NULL, NULL, 2810, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16718, NULL, NULL, 2655, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-13.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16779, NULL, 97, 2819, '59575380', 'ZURION', NULL, '90.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.0000', '1.0000', '2021-06-27', 'received', '90.0000', '90.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16780, NULL, 97, 2818, '79267101', 'VALUPAK EVINING PRIMROSE', NULL, '14.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.0000', '0.0000', '2021-06-27', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16781, NULL, 97, 2820, '47378191', 'VIREST CREAM', NULL, '10.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.0000', '1.0000', '2021-06-27', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16782, NULL, 97, 1660, '5034593050901', 'NEOVITA CAP', NULL, '53.0800', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '318.4800', '5.0000', '2021-06-27', 'received', '53.0800', '53.0800', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16783, NULL, 97, 2741, '91738635', 'NEUROBION TAB', NULL, '40.6400', '0.0000', '8.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '325.1200', '4.0000', '2021-06-27', 'received', '40.6400', '40.6400', NULL, NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16784, NULL, 97, 1514, '6221032340177', 'DEXATROL EYE OINT', NULL, '11.9600', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.9600', '0.0000', '2021-06-27', 'received', '11.9600', '11.9600', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16785, NULL, 97, 2816, '72412730', 'MOTILUM TAB', NULL, '0.8000', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '48.0000', '30.0000', '2021-06-27', 'received', '0.8000', '0.8000', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16786, NULL, 97, 1567, 'PR-280', 'BRENEX SYRUP', NULL, '13.3000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.6000', '2.0000', '2021-06-27', 'received', '13.3000', '13.3000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16787, NULL, 97, 2817, '45511010', 'ROBAXIN TAB', NULL, '1.8000', '0.0000', '35.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '63.0000', '1.0000', '2021-06-27', 'received', '1.8000', '1.8000', NULL, NULL, NULL, 1, 'pc', '35.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16788, NULL, NULL, 2013, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16844, NULL, NULL, 2461, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16855, NULL, NULL, 2809, '57353674', 'LONGRICH TOOTHPASTE', NULL, '28.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '140.0000', '2.0000', '2021-06-29', 'received', '28.0000', '28.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16893, NULL, 92, 2135, '42431074', 'POSTINOR LOCAL', NULL, '2.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '0.0000', '2021-06-29', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16894, NULL, 92, 2135, '42431074', 'POSTINOR LOCAL', NULL, '2.0000', '0.0000', '40.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '80.0000', '21.0000', '2021-06-29', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16895, NULL, 92, 2808, '5017007012498', 'LEVOFLOXACIN 500MG TEVA', NULL, '39.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '234.0000', '1.0000', '2021-06-29', 'received', '39.0000', '39.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16896, NULL, 92, 1843, '5000456024754', 'NEXIUM TABS 20MG 14S', NULL, '4.3000', '0.0000', '28.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.4000', '28.0000', '2021-06-29', 'received', '4.3000', '4.3000', NULL, NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16897, NULL, 92, 1542, '8902502108920', 'INFAV OINT', NULL, '14.7800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.5600', '1.0000', '2021-06-29', 'received', '14.7800', '14.7800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16898, NULL, 92, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '34.9000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '104.7000', '0.0000', '2021-06-29', 'received', '34.9000', '34.9000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16899, NULL, 92, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', NULL, '12.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '1.0000', '2021-06-29', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16900, NULL, 92, 2381, '72472860', 'ENACEF SUSP', NULL, '10.8700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.6100', '0.0000', '2021-06-29', 'received', '10.8700', '10.8700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16901, NULL, 92, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '13.2900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.8700', '1.0000', '2021-06-29', 'received', '13.2900', '13.2900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16902, NULL, 92, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.4500', '3.0000', '2021-06-29', 'received', '6.8900', '6.8900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16903, NULL, 92, 1866, 'PR-579', 'CETAPOL PM 120/12.5MG/5ML', NULL, '5.2000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.6000', '2.0000', '2021-06-29', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16904, NULL, 92, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '11.9500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.8500', '0.0000', '2021-06-29', 'received', '11.9500', '11.9500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16905, NULL, 92, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '4.7200', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.6000', '0.0000', '2021-06-29', 'received', '4.7200', '4.7200', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16906, NULL, 92, 2408, '5011501009398', 'DEEP HEAT OINT 15G', NULL, '9.3500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.0500', '1.0000', '2021-06-29', 'received', '9.3500', '9.3500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16907, NULL, 92, 2236, '6033000270108', 'EFPAC JNR', NULL, '5.8300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.4900', '0.0000', '2021-06-29', 'received', '5.8300', '5.8300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16908, NULL, 92, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.1500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.7500', '2.0000', '2021-06-29', 'received', '6.1500', '6.1500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16909, NULL, 92, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.4500', '0.0000', '2021-06-29', 'received', '3.4900', '3.4900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16910, NULL, 92, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '95.1000', '1.0000', '2021-06-29', 'received', '19.0200', '19.0200', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16911, NULL, 92, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', NULL, '1.8000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '3.6000', '0.0000', '2021-06-29', 'received', '1.8000', '1.8000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16912, NULL, 92, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.7500', '0.0000', '2021-06-29', 'received', '3.5500', '3.5500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16913, NULL, 92, 1668, '8906016831572', 'Acidom Caps', NULL, '13.2900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.8700', '1.0000', '2021-06-29', 'received', '13.2900', '13.2900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16914, NULL, 92, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '77.7000', '0.0000', '2021-06-29', 'received', '25.9000', '25.9000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16915, NULL, 92, 2803, '83576846', 'LORATADINE 10MG 30\'', NULL, '8.0200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.0400', '2.0000', '2021-06-29', 'received', '8.0200', '8.0200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16916, NULL, 92, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '59.4600', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '297.3000', '3.0000', '2021-06-29', 'received', '59.4600', '59.4600', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16917, NULL, 92, 1365, '8906116211496', 'PROWOMAN', NULL, '19.4900', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.4900', '0.0000', '2021-06-29', 'received', '19.4900', '19.4900', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16918, 145, NULL, 1660, '5034593050901', 'NEOVITA CAP', NULL, '53.0800', '70.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '318.4800', '0.0000', '2021-06-27', 'received', '53.0800', '53.0800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '53.0800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16919, 145, NULL, 2741, '91738635', 'NEUROBION TAB', NULL, '40.6400', '54.0000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '325.1200', '0.0000', '2021-06-27', 'received', '40.6400', '40.6400', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '40.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16920, 145, NULL, 1514, '6221032340177', 'DEXATROL EYE OINT', NULL, '11.9600', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.9600', '0.0000', '2021-06-27', 'received', '11.9600', '11.9600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '11.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16921, 145, NULL, 2816, '72412730', 'MOTILUM TAB', NULL, '0.8000', '1.0000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-06-27', 'received', '0.8000', '0.8000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16922, 145, NULL, 1567, 'PR-280', 'BRENEX SYRUP', NULL, '13.3000', '17.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.6000', '0.0000', '2021-06-27', 'received', '13.3000', '13.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16923, 145, NULL, 2817, '45511010', 'ROBAXIN TAB', NULL, '1.8000', '2.2000', '35.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '0.0000', '2021-06-27', 'received', '1.8000', '1.8000', '35.0000', NULL, NULL, 1, 'pc', '35.0000', NULL, NULL, NULL, NULL, '1.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16924, 145, NULL, 2819, '59575380', 'ZURION', NULL, '90.0000', '117.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-06-27', 'received', '90.0000', '90.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16925, 145, NULL, 2818, '79267101', 'VALUPAK EVINING PRIMROSE', NULL, '14.0000', '19.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2021-06-27', 'received', '14.0000', '14.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16926, 145, NULL, 2820, '47378191', 'VIREST CREAM', NULL, '10.0000', '13.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2021-06-27', 'received', '10.0000', '10.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16927, 145, NULL, 2824, '55755568', 'BINGO SOFTNER', NULL, '13.0000', '18.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-06-27', 'received', '13.0000', '13.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16928, 145, NULL, 2825, '09140818', 'FACE MASK PACK', NULL, '12.0000', '25.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '240.0000', '0.0000', '2021-06-27', 'received', '12.0000', '12.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16929, NULL, NULL, 2824, '55755568', 'BINGO SOFTNER', NULL, '13.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '26.0000', '0.0000', '2021-06-29', 'received', '13.0000', '13.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16930, NULL, 94, 2824, '55755568', 'BINGO SOFTNER', NULL, '13.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '0.0000', '2021-06-29', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16931, NULL, 94, 2807, '80774399', 'FAMI CARE KID BRUSH', NULL, '1.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.0000', '7.0000', '2021-06-29', 'received', '1.0000', '1.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16932, NULL, 94, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '7.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '0.0000', '2021-06-29', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16933, NULL, 94, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '7.5000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '75.0000', '10.0000', '2021-06-29', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16934, NULL, 94, 2444, '73221630', 'SOFTCARE BABY WIPES', NULL, '6.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.0000', '0.0000', '2021-06-29', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16935, NULL, 94, 2444, '73221630', 'SOFTCARE BABY WIPES', NULL, '6.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '3.0000', '2021-06-29', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16936, NULL, 94, 2806, '51671546', 'DETTOL SOAP BIG', NULL, '5.7500', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.0000', '3.0000', '2021-06-29', 'received', '5.7500', '5.7500', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16937, NULL, 94, 2449, '73407261', 'DETTOL SOAP SMALL', NULL, '5.5000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.0000', '4.0000', '2021-06-29', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16938, NULL, 94, 2809, '57353674', 'LONGRICH TOOTHPASTE', NULL, '28.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '140.0000', '4.0000', '2021-06-29', 'received', '28.0000', '28.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16939, NULL, 94, 2825, '09140818', 'FACE MASK PACK', NULL, '12.0000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '240.0000', '0.0000', '2021-06-29', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16951, NULL, NULL, 2316, '59549986', 'SMA 1 BABY FOOD', NULL, '45.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '225.0000', '-2.0000', '2021-06-29', 'received', '45.0000', '45.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16952, NULL, NULL, 2826, '83660824', 'SMA 2 BABY FOOD', NULL, '45.0000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.0000', '0.0000', '2021-06-29', 'received', '45.0000', '45.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16963, NULL, 99, 2828, '81305537', 'D Artepp Tap 60/480mg', NULL, '17.6500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '176.5000', '9.0000', '2021-06-29', 'received', '17.6500', '17.6500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16964, NULL, 99, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', NULL, '27.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '135.0000', '1.0000', '2021-06-29', 'received', '27.0000', '27.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16965, NULL, 99, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', NULL, '23.8700', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '238.7000', '1.0000', '2021-06-29', 'received', '23.8700', '23.8700', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16967, 149, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.3300', '0.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '0.3300', '0.0000', '2021-06-29', 'received', '0.3300', '0.3300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '0.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16968, 149, NULL, 2830, '95865835', 'AMERICAN APPLE CIDER 946ML', NULL, '20.5000', '30.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '0.0000', '2021-06-29', 'received', '20.5000', '20.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '20.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16969, 149, NULL, 2831, '38662005', 'ARM SLING', NULL, '10.5000', '14.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '0.0000', '2021-06-29', 'received', '10.5000', '10.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '10.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16970, 149, NULL, 2832, '00814977', 'PALM SUPPORT', NULL, '13.5000', '18.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '0.0000', '2021-06-29', 'received', '13.5000', '13.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '13.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16971, 149, NULL, 2833, '59236374', 'ELBOW WRAP', NULL, '8.5000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.5000', '0.0000', '2021-06-29', 'received', '8.5000', '8.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16972, 149, NULL, 2834, '84549117', 'ELBOW SUPPORT', NULL, '12.5000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '0.0000', '2021-06-29', 'received', '12.5000', '12.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '12.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16973, 149, NULL, 2835, '7298464', 'SHOULDER SUPPORT', NULL, '23.0000', '32.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-06-29', 'received', '23.0000', '23.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '23.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16974, 149, NULL, 2836, '18640990', 'WRIST SUPPORT', NULL, '6.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2021-06-29', 'received', '6.0000', '6.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16975, 149, NULL, 2837, '48609272', 'ANKLE SUPPORT', NULL, '6.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2021-06-29', 'received', '6.0000', '6.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16976, 149, NULL, 2838, '83432545', 'HAND LEATHER GLOVES', NULL, '30.0000', '40.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-06-29', 'received', '30.0000', '30.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16977, 149, NULL, 2839, '82016078', 'WHITE VINEGAR  473ML', NULL, '4.5000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.5000', '0.0000', '2021-06-29', 'received', '4.5000', '4.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16978, 149, NULL, 2840, '04241133', 'GALAXY BROWN SUGAR', NULL, '11.2000', '14.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.2000', '0.0000', '2021-06-29', 'received', '11.2000', '11.2000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '11.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16979, 149, NULL, 2841, '48020241', 'AMERICAN APPLE CIDER VINEGAR 473ML', NULL, '11.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '0.0000', '2021-06-29', 'received', '11.0000', '11.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16980, 149, NULL, 2843, '36223146', 'WHITE VINEGAR  946ML', NULL, '8.0000', '14.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '0.0000', '2021-06-29', 'received', '8.0000', '8.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16981, 149, NULL, 2844, '91551468', 'BLUMAX BROWN SUGAR 500G', NULL, '4.8000', '6.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.8000', '0.0000', '2021-06-29', 'received', '4.8000', '4.8000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '4.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16982, 149, NULL, 2845, '21808608', 'MR SUCCESS BROWN SUGAR', NULL, '5.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.0000', '0.0000', '2021-06-29', 'received', '5.0000', '5.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16983, NULL, 100, 2830, '95865835', 'AMERICAN APPLE CIDER 946ML', NULL, '20.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.5000', '0.0000', '2021-06-29', 'received', '20.5000', '20.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16984, NULL, 100, 2831, '38662005', 'ARM SLING', NULL, '10.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.5000', '1.0000', '2021-06-29', 'received', '10.5000', '10.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16985, NULL, 100, 2832, '00814977', 'PALM SUPPORT', NULL, '13.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.5000', '1.0000', '2021-06-29', 'received', '13.5000', '13.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16986, NULL, 100, 2833, '59236374', 'ELBOW WRAP', NULL, '8.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.5000', '1.0000', '2021-06-29', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16987, NULL, 100, 2834, '84549117', 'ELBOW SUPPORT', NULL, '12.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.5000', '1.0000', '2021-06-29', 'received', '12.5000', '12.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16988, NULL, 100, 2835, '7298464', 'SHOULDER SUPPORT', NULL, '23.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.0000', '1.0000', '2021-06-29', 'received', '23.0000', '23.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16989, NULL, 100, 2836, '18640990', 'WRIST SUPPORT', NULL, '6.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.0000', '0.0000', '2021-06-29', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16990, NULL, 100, 2837, '48609272', 'ANKLE SUPPORT', NULL, '6.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.0000', '1.0000', '2021-06-29', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16991, NULL, 100, 2838, '83432545', 'HAND LEATHER GLOVES', NULL, '30.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '1.0000', '2021-06-29', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16992, NULL, 100, 2839, '82016078', 'WHITE VINEGAR  473ML', NULL, '4.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '4.5000', '1.0000', '2021-06-29', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16993, NULL, 100, 2840, '04241133', 'GALAXY BROWN SUGAR', NULL, '11.2000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.2000', '1.0000', '2021-06-29', 'received', '11.2000', '11.2000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16994, NULL, 100, 2841, '48020241', 'AMERICAN APPLE CIDER VINEGAR 473ML', NULL, '11.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.0000', '1.0000', '2021-06-29', 'received', '11.0000', '11.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16995, NULL, 100, 2843, '36223146', 'WHITE VINEGAR  946ML', NULL, '8.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.0000', '1.0000', '2021-06-29', 'received', '8.0000', '8.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16996, NULL, 100, 2844, '91551468', 'BLUMAX BROWN SUGAR 500G', NULL, '4.8000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '4.8000', '1.0000', '2021-06-29', 'received', '4.8000', '4.8000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16997, NULL, 100, 2845, '21808608', 'MR SUCCESS BROWN SUGAR', NULL, '5.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '5.0000', '1.0000', '2021-06-29', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17013, 150, NULL, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.9600', '2.5000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8000', '0.0000', '2021-06-29', 'received', '1.9600', '1.9600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17014, 150, NULL, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '28.2400', '38.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.7200', '0.0000', '2021-06-29', 'received', '28.2400', '28.2400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17015, 150, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7100', '3.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.1000', '0.0000', '2021-06-29', 'received', '2.7100', '2.7100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.7100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17016, 150, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '2.0000', '24.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2021-06-29', 'received', '1.3000', '1.3000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '1.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17017, 150, NULL, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', NULL, '6.9000', '9.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '0.0000', '2021-06-29', 'received', '6.9000', '6.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17018, 150, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '7.1600', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.4800', '0.0000', '2021-06-29', 'received', '7.1600', '7.1600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.1600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17019, 150, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-06-29', 'received', '2.0000', '2.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17020, 150, NULL, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '11.8200', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4600', '0.0000', '2021-06-29', 'received', '11.8200', '11.8200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17021, 150, NULL, 1353, '5060085540254', 'SELEVITE TABS', NULL, '20.5000', '27.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.5000', '0.0000', '2021-06-29', 'received', '20.5000', '20.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17022, 150, NULL, 2360, '04076969', 'ASMADRIN TABS', NULL, '0.5200', '0.6900', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-06-29', 'received', '0.5200', '0.5200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17023, 150, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.5100', '5.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.2000', '0.0000', '2021-06-29', 'received', '3.5100', '3.5100', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.5100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17024, 150, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.8700', '3.8000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.7500', '0.0000', '2021-06-29', 'received', '2.8700', '2.8700', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '2.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17025, 150, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '10.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.9000', '0.0000', '2021-06-29', 'received', '7.8900', '7.8900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17026, 150, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.4800', '1.0000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '0.0000', '2021-06-29', 'received', '0.4800', '0.4800', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.4800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17027, 150, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '18.7200', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.1600', '0.0000', '2021-06-29', 'received', '18.7200', '18.7200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17028, 150, NULL, 2846, '89375851', 'FELEDENE CAP 20MG', NULL, '39.6200', '53.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6200', '0.0000', '2021-06-29', 'received', '39.6200', '39.6200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '39.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17029, NULL, NULL, 2004, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17030, NULL, 101, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.9600', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.2000', '0.0000', '2021-06-29', 'received', '1.9600', '1.9600', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17031, NULL, 101, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.9600', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.6000', '0.0000', '2021-06-29', 'received', '1.9600', '1.9600', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17032, NULL, 101, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '28.2400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '84.7200', '2.0000', '2021-06-29', 'received', '28.2400', '28.2400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17033, NULL, 101, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7100', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.2600', '0.0000', '2021-06-29', 'received', '2.7100', '2.7100', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17034, NULL, 101, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7100', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.8400', '2.0000', '2021-06-29', 'received', '2.7100', '2.7100', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17035, NULL, 101, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.0000', '0.0000', '2021-06-29', 'received', '1.3000', '1.3000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17036, NULL, 101, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', NULL, '6.9000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.5000', '1.0000', '2021-06-29', 'received', '6.9000', '6.9000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17037, NULL, 101, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '7.1600', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.3200', '0.0000', '2021-06-29', 'received', '7.1600', '7.1600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17038, NULL, 101, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '7.1600', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.1600', '0.0000', '2021-06-29', 'received', '7.1600', '7.1600', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17039, NULL, 101, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '2.0000', '2021-06-29', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17040, NULL, 101, 1618, '8901645060997', 'AZILEX 250MG CAPS', NULL, '11.8200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.4600', '1.0000', '2021-06-29', 'received', '11.8200', '11.8200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17041, NULL, 101, 1353, '5060085540254', 'SELEVITE TABS', NULL, '20.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '61.5000', '2.0000', '2021-06-29', 'received', '20.5000', '20.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17042, NULL, 101, 2360, '04076969', 'ASMADRIN TABS', NULL, '0.5200', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.2000', '46.0000', '2021-06-29', 'received', '0.5200', '0.5200', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17043, NULL, 101, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.5100', '0.0000', '40.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '140.4000', '27.0000', '2021-06-29', 'received', '3.5100', '3.5100', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17044, NULL, 101, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.8700', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.4000', '0.0000', '2021-06-29', 'received', '2.8700', '2.8700', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17045, NULL, 101, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.8700', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.4000', '16.0000', '2021-06-29', 'received', '2.8700', '2.8700', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17046, NULL, 101, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.8700', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.7000', '10.0000', '2021-06-29', 'received', '2.8700', '2.8700', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17047, NULL, 101, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.9000', '0.0000', '2021-06-29', 'received', '7.8900', '7.8900', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17048, NULL, 101, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.4800', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.8000', '60.0000', '2021-06-29', 'received', '0.4800', '0.4800', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17049, NULL, 101, 2846, '89375851', 'FELEDENE CAP 20MG', NULL, '39.6200', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.6200', '1.0000', '2021-06-29', 'received', '39.6200', '39.6200', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17050, NULL, 101, 1541, '8902502106421', 'INFA V PESS', NULL, '18.7200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '56.1600', '0.0000', '2021-06-29', 'received', '18.7200', '18.7200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17068, NULL, 102, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '5.8200', '0.0000', '16.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '93.1200', '0.0000', '2021-06-29', 'received', '5.8200', '5.8200', NULL, NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17069, NULL, 102, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.9600', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.6000', '8.0000', '2021-06-29', 'received', '1.9600', '1.9600', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17070, NULL, 102, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.9600', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.6000', '10.0000', '2021-06-29', 'received', '1.9600', '1.9600', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17071, NULL, 102, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.9600', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.6000', '10.0000', '2021-06-29', 'received', '1.9600', '1.9600', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17072, NULL, 102, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '5.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.5000', '1.0000', '2021-06-29', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17073, NULL, 102, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.2000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.0000', '7.0000', '2021-06-29', 'received', '2.2000', '2.2000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17074, NULL, 102, 2169, '97038500', 'GEBEDOL', NULL, '1.1000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '30.0000', '2021-06-29', 'received', '1.1000', '1.1000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17075, NULL, 102, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.1500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.7500', '5.0000', '2021-06-29', 'received', '6.1500', '6.1500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17076, NULL, 102, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.2200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '3.6600', '0.0000', '2021-06-29', 'received', '1.2200', '1.2200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17077, NULL, 102, 2847, '13076232', 'SILVER BIRD', NULL, '13.8800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '41.6400', '0.0000', '2021-06-29', 'received', '13.8800', '13.8800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17078, NULL, 102, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.4000', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '144.0000', '60.0000', '2021-06-29', 'received', '2.4000', '2.4000', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17079, NULL, 102, 2822, '17958616', 'TYLENOL COMBO', NULL, '2.7200', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '136.0000', '50.0000', '2021-06-29', 'received', '2.7200', '2.7200', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17080, NULL, 102, 1549, '610074245209', 'LAVET', NULL, '21.1300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.2600', '2.0000', '2021-06-29', 'received', '21.1300', '21.1300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17081, NULL, 102, 2848, '03279291', 'HI LADY VIRGIN WASH', NULL, '16.2000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.4000', '2.0000', '2021-06-29', 'received', '16.2000', '16.2000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17082, NULL, 102, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '20.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '4.0000', '2021-06-29', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17083, NULL, 102, 2849, '81057936', 'DIPROSON LOTION', NULL, '5.8500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.5500', '3.0000', '2021-06-29', 'received', '5.8500', '5.8500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17084, NULL, 102, 2488, '57207509', 'DAONIL TAB (SANOFI) ', NULL, '9.8000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '98.0000', '10.0000', '2021-06-29', 'received', '9.8000', '9.8000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17085, NULL, 102, 2279, '6161105661986', 'PANADOL EXTRA', NULL, '2.6000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '4.0000', '2021-06-29', 'received', '2.6000', '2.6000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17086, NULL, 102, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', NULL, '13.4800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.9600', '2.0000', '2021-06-29', 'received', '13.4800', '13.4800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17164, NULL, NULL, 2850, '74664071', 'TRAMADOL 50MG', NULL, '10.0000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '100.0000', '0.0000', '2021-06-29', 'received', '10.0000', '10.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17165, NULL, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.2000', '0.0000', '20.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '44.0000', '0.0000', '2021-06-29', 'received', '2.2000', '2.2000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17166, NULL, NULL, 2822, '17958616', 'TYLENOL COMBO', NULL, '2.7200', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '136.0000', '-4.0000', '2021-06-29', 'received', '2.7200', '2.7200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17167, NULL, NULL, 1549, '610074245209', 'LAVET', NULL, '21.1300', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '42.2600', '0.0000', '2021-06-29', 'received', '21.1300', '21.1300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17168, NULL, NULL, 2488, '57207509', 'DAONIL TAB (SANOFI) ', NULL, '9.8000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '98.0000', '0.0000', '2021-06-29', 'received', '9.8000', '9.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17212, NULL, NULL, 2849, '81057936', 'DIPROSON LOTION', NULL, '5.8500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.5500', '0.0000', '2021-06-30', 'received', '5.8500', '5.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17213, NULL, NULL, 2848, '03279291', 'HI LADY VIRGIN WASH', NULL, '16.2000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '32.4000', '0.0000', '2021-06-30', 'received', '16.2000', '16.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17260, NULL, NULL, 2155, '5000347045219', 'PANADOL EXTRA ADVANCE', NULL, '21.7000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '108.5000', '0.0000', '2021-06-30', 'received', '21.7000', '21.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17281, 151, NULL, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '5.8200', '8.0000', '16.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.1200', '0.0000', '2021-06-29', 'received', '5.8200', '5.8200', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, '5.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17282, 151, NULL, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.9600', '2.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2000', '0.0000', '2021-06-29', 'received', '1.9600', '1.9600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17283, 151, NULL, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '5.5000', '7.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2021-06-29', 'received', '5.5000', '5.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17284, 151, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.2000', '3.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-06-29', 'received', '2.2000', '2.2000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17285, 151, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1000', '1.5000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-06-29', 'received', '1.1000', '1.1000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17286, 151, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.1500', '8.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.7500', '0.0000', '2021-06-29', 'received', '6.1500', '6.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17287, 151, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.2200', '2.0000', '75.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.5000', '0.0000', '2021-06-29', 'received', '1.2200', '1.2200', '75.0000', NULL, NULL, 1, 'pc', '75.0000', NULL, NULL, NULL, NULL, '1.2200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17288, 151, NULL, 2847, '13076232', 'SILVER BIRD', NULL, '13.8800', '18.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.6400', '0.0000', '2021-06-29', 'received', '13.8800', '13.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17289, 151, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.4000', '3.6000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '0.0000', '2021-06-29', 'received', '2.4000', '2.4000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17290, 151, NULL, 2822, '17958616', 'TYLENOL COMBO', NULL, '2.7200', '4.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.0000', '0.0000', '2021-06-29', 'received', '2.7200', '2.7200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17291, 151, NULL, 1549, '610074245209', 'LAVET', NULL, '21.1300', '28.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.2600', '0.0000', '2021-06-29', 'received', '21.1300', '21.1300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.1300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17292, 151, NULL, 2848, '03279291', 'HI LADY VIRGIN WASH', NULL, '16.2000', '21.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '0.0000', '2021-06-29', 'received', '16.2000', '16.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17293, 151, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '20.0000', '26.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-06-29', 'received', '20.0000', '20.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17294, 151, NULL, 2849, '81057936', 'DIPROSON LOTION', NULL, '5.8500', '8.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5500', '0.0000', '2021-06-29', 'received', '5.8500', '5.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17295, 151, NULL, 2488, '57207509', 'DAONIL TAB (SANOFI) ', NULL, '9.8000', '13.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2021-06-29', 'received', '9.8000', '9.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17296, 151, NULL, 2279, '6161105661986', 'PANADOL EXTRA', NULL, '2.6000', '4.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-06-29', 'received', '2.6000', '2.6000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17297, 151, NULL, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', NULL, '13.4800', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.9600', '0.0000', '2021-06-29', 'received', '13.4800', '13.4800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.4800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17298, 151, NULL, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS', NULL, '32.9800', '43.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.9600', '0.0000', '2021-06-29', 'received', '32.9800', '32.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17299, 151, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.1000', '3.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '0.0000', '2021-06-29', 'received', '2.1000', '2.1000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17300, 151, NULL, 2850, '74664071', 'TRAMADOL 50MG', NULL, '10.0000', '13.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-06-29', 'received', '10.0000', '10.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17301, 151, NULL, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '5.5000', '7.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2021-06-29', 'received', '5.5000', '5.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17302, 151, NULL, 2848, '03279291', 'HI LADY VIRGIN WASH', NULL, '16.2000', '21.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4000', '0.0000', '2021-06-29', 'received', '16.2000', '16.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17303, 151, NULL, 2849, '81057936', 'DIPROSON LOTION', NULL, '5.8500', '8.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5500', '0.0000', '2021-06-29', 'received', '5.8500', '5.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17304, 151, NULL, 2279, '6161105661986', 'PANADOL EXTRA', NULL, '2.7000', '4.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-06-29', 'received', '2.7000', '2.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17305, 151, NULL, 2155, '5000347045219', 'PANADOL EXTRA ADVANCE', NULL, '21.7000', '29.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.7000', '-4.0000', '2021-06-29', 'received', '21.7000', '21.7000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '21.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17306, 151, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2021-06-29', 'received', '5.2000', '5.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17307, 151, NULL, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', NULL, '13.4800', '20.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.4000', '0.0000', '2021-06-29', 'received', '13.4800', '13.4800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.4800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17308, 151, NULL, 2851, '5021265246298', 'WELLWOMAN MAX', NULL, '44.0000', '58.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '0.0000', '2021-06-29', 'received', '44.0000', '44.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '44.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17309, NULL, 103, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', NULL, '13.4800', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '67.4000', '1.0000', '2021-06-30', 'received', '13.4800', '13.4800', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17310, NULL, 103, 2848, '03279291', 'HI LADY VIRGIN WASH', NULL, '16.2000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.4000', '2.0000', '2021-06-30', 'received', '16.2000', '16.2000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17311, NULL, 103, 2849, '81057936', 'DIPROSON LOTION', NULL, '5.8500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.5500', '3.0000', '2021-06-30', 'received', '5.8500', '5.8500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17312, NULL, 103, 2279, '6161105661986', 'PANADOL EXTRA', NULL, '2.7000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '0.0000', '2021-06-30', 'received', '2.7000', '2.7000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17313, NULL, 103, 2850, '74664071', 'TRAMADOL 50MG', NULL, '10.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '100.0000', '6.0000', '2021-06-30', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17314, NULL, 103, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '5.8200', '0.0000', '16.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '93.1200', '0.0000', '2021-06-30', 'received', '5.8200', '5.8200', NULL, NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17315, NULL, 103, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.2000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.0000', '0.0000', '2021-06-30', 'received', '2.2000', '2.2000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17316, NULL, 103, 2169, '97038500', 'GEBEDOL', NULL, '1.1000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.0000', '37.0000', '2021-06-30', 'received', '1.1000', '1.1000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17317, NULL, 103, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.1500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.4500', '0.0000', '2021-06-30', 'received', '6.1500', '6.1500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17318, NULL, 103, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.1500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.3000', '0.0000', '2021-06-30', 'received', '6.1500', '6.1500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17319, NULL, 103, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.2200', '0.0000', '75.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '91.5000', '0.0000', '2021-06-30', 'received', '1.2200', '1.2200', NULL, NULL, NULL, 1, 'pc', '75.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17320, NULL, 103, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.6000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.0000', '0.0000', '2021-06-30', 'received', '2.6000', '2.6000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17321, NULL, 103, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.6000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.0000', '20.0000', '2021-06-30', 'received', '2.6000', '2.6000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17322, NULL, 103, 2822, '17958616', 'TYLENOL COMBO', NULL, '2.7200', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '136.0000', '41.0000', '2021-06-30', 'received', '2.7200', '2.7200', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17323, NULL, 103, 1549, '610074245209', 'LAVET', NULL, '21.1300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.2600', '2.0000', '2021-06-30', 'received', '21.1300', '21.1300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17324, NULL, 103, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '20.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '0.0000', '2021-06-30', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17325, NULL, 103, 2488, '57207509', 'DAONIL TAB (SANOFI) ', NULL, '9.8000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '98.0000', '10.0000', '2021-06-30', 'received', '9.8000', '9.8000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17326, NULL, 103, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', NULL, '13.4800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.9600', '2.0000', '2021-06-30', 'received', '13.4800', '13.4800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17327, NULL, 103, 2155, '5000347045219', 'PANADOL EXTRA ADVANCE', NULL, '21.7000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '108.5000', '2.0000', '2021-06-30', 'received', '21.7000', '21.7000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17328, NULL, 103, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.0000', '0.0000', '2021-06-30', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17329, NULL, 103, 2851, '5021265246298', 'WELLWOMAN MAX', NULL, '44.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '88.0000', '0.0000', '2021-06-30', 'received', '44.0000', '44.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17330, 148, NULL, 2828, '81305537', 'D Artepp Tap 60/480mg', NULL, '17.6500', '24.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '176.5000', '0.0000', '2021-06-29', 'received', '17.6500', '17.6500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '17.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17331, 148, NULL, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', NULL, '27.0000', '39.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '-2.0000', '2021-06-29', 'received', '27.0000', '27.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17332, 148, NULL, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', NULL, '23.8700', '32.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.3500', '0.0000', '2021-06-29', 'received', '23.8700', '23.8700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '23.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17333, NULL, NULL, 1473, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17334, 152, NULL, 2263, '6036000090417', 'LEVON 2', NULL, '5.9800', '8.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8000', '8.0000', '2021-06-30', 'received', '5.9800', '5.9800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17335, 152, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '19.0000', '27.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2021-06-30', 'received', '19.0000', '19.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17336, 152, NULL, 2343, '67107435', 'INFACOL DROPS 50ML', NULL, '38.9900', '51.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.9900', '1.0000', '2021-06-30', 'received', '38.9900', '38.9900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '38.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17337, 152, NULL, 1365, '8906116211496', 'PROWOMAN', NULL, '19.4900', '26.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.9600', '0.0000', '2021-06-30', 'received', '19.4900', '19.4900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '19.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17338, 152, NULL, 1623, '5021265223398', 'PERFECTIL PLUS SKIN', NULL, '140.8400', '186.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '140.8400', '1.0000', '2021-06-30', 'received', '140.8400', '140.8400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '140.8400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17339, NULL, NULL, 1504, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17340, 144, NULL, 2505, '28562016', 'ORELOX 100MG TABLETS', NULL, '68.5900', '90.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.5900', '0.0000', '2021-06-27', 'received', '68.5900', '68.5900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '68.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17341, 144, NULL, 2813, '48335635', 'JOINTACE', NULL, '51.5300', '68.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.0600', '0.0000', '2021-06-27', 'received', '51.5300', '51.5300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '51.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17342, 144, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.8300', '10.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.3000', '0.0000', '2021-06-27', 'received', '6.8300', '6.8300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17343, 144, NULL, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', NULL, '1.9000', '2.5000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '0.0000', '2021-06-27', 'received', '1.9000', '1.9000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17344, 144, NULL, 2548, '54581009', 'ZINCOVIT DROP', NULL, '6.7200', '9.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.8800', '0.0000', '2021-06-27', 'received', '6.7200', '6.7200', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17345, 144, NULL, 2803, '83576846', 'LORATADINE 10MG 30\' ALMUS', NULL, '8.0200', '10.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.1000', '0.0000', '2021-06-27', 'received', '8.0200', '8.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17346, 144, NULL, 2814, '5060623371074', 'CLOPIDOGREL 75MG  TORRENT PHARMA', NULL, '14.0400', '18.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.1200', '0.0000', '2021-06-27', 'received', '14.0400', '14.0400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17347, 144, NULL, 2812, '76039966', 'ORELOX TABLET 200MG', NULL, '98.5600', '130.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.5600', '0.0000', '2021-06-27', 'received', '98.5600', '98.5600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '98.5600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17348, 144, NULL, 2142, '5021265223855', 'WELLBABY ', NULL, '57.0000', '76.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2021-06-27', 'received', '57.0000', '57.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '57.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17349, 144, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.0000', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-06-27', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17350, 144, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '48.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '179.0000', '0.0000', '2021-06-27', 'received', '35.8000', '35.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '35.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17351, 144, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '12.7400', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.2200', '0.0000', '2021-06-27', 'received', '12.7400', '12.7400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17352, 144, NULL, 2815, '5017007024262', 'OMEPRAZOLE 20MG  TEVA', NULL, '10.0000', '13.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-06-27', 'received', '10.0000', '10.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17353, 144, NULL, 2854, '44570580', 'LORATADINE 10MG  TEVA', NULL, '8.9500', '12.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.7500', '0.0000', '2021-06-27', 'received', '8.9500', '8.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17354, NULL, NULL, 2813, '48335635', 'JOINTACE', NULL, '51.5300', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '103.0600', '0.0000', '2021-07-01', 'received', '51.5300', '51.5300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17355, NULL, NULL, 2814, '5060623371074', 'CLOPIDOGREL 75MG  TORRENT PHARMA', NULL, '14.0400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '42.1200', '0.0000', '2021-07-01', 'received', '14.0400', '14.0400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17356, NULL, NULL, 2812, '76039966', 'ORELOX TABLET 200MG', NULL, '98.5600', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '98.5600', '0.0000', '2021-07-01', 'received', '98.5600', '98.5600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17357, NULL, NULL, 2815, '5017007024262', 'OMEPRAZOLE 20MG  TEVA', NULL, '10.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.0000', '0.0000', '2021-07-01', 'received', '10.0000', '10.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17358, NULL, 96, 2815, '5017007024262', 'OMEPRAZOLE 20MG  TEVA', NULL, '10.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '0.0000', '2021-07-01', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17359, NULL, 96, 2256, '41965129', 'ZINCOFER SYR', NULL, '12.7400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.2200', '1.0000', '2021-07-01', 'received', '12.7400', '12.7400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17360, NULL, 96, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '179.0000', '0.0000', '2021-07-01', 'received', '35.8000', '35.8000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17361, NULL, 96, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '0.0000', '2021-07-01', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17362, NULL, 96, 2812, '76039966', 'ORELOX TABLET 200MG', NULL, '98.5600', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '98.5600', '1.0000', '2021-07-01', 'received', '98.5600', '98.5600', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17363, NULL, 96, 2814, '5060623371074', 'CLOPIDOGREL 75MG  TORRENT PHARMA', NULL, '14.0400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.1200', '2.0000', '2021-07-01', 'received', '14.0400', '14.0400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17364, NULL, 96, 2803, '83576846', 'LORATADINE 10MG 30\' ALMUS', NULL, '8.0200', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.1000', '3.0000', '2021-07-01', 'received', '8.0200', '8.0200', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17365, NULL, 96, 2548, '54581009', 'ZINCOVIT DROP', NULL, '6.7200', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.8800', '0.0000', '2021-07-01', 'received', '6.7200', '6.7200', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17366, NULL, 96, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', NULL, '1.9000', '0.0000', '40.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '76.0000', '15.0000', '2021-07-01', 'received', '1.9000', '1.9000', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17367, NULL, 96, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.8300', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '68.3000', '4.0000', '2021-07-01', 'received', '6.8300', '6.8300', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17368, NULL, 96, 2813, '48335635', 'JOINTACE', NULL, '51.5300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '103.0600', '0.0000', '2021-07-01', 'received', '51.5300', '51.5300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17369, NULL, 96, 2505, '28562016', 'ORELOX 100MG TABLETS', NULL, '68.5900', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '68.5900', '1.0000', '2021-07-01', 'received', '68.5900', '68.5900', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17370, NULL, 96, 2854, '44570580', 'LORATADINE 10MG  TEVA', NULL, '8.9500', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.7500', '1.0000', '2021-07-01', 'received', '8.9500', '8.9500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17371, NULL, NULL, 2545, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17372, NULL, NULL, 2759, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17373, NULL, NULL, 1368, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17374, 147, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '24.5000', '33.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '0.0000', '2021-06-29', 'received', '24.5000', '24.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '24.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17375, 147, NULL, 2316, '59549986', 'SMA 1 BABY FOOD', NULL, '45.0000', '58.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '225.0000', '0.0000', '2021-06-29', 'received', '45.0000', '45.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17376, 147, NULL, 2826, '83660824', 'SMA 2 BABY FOOD', NULL, '45.0000', '58.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-06-29', 'received', '45.0000', '45.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17377, 147, NULL, 2827, '4103040122452', 'BABY SEBAMED  BODY LOTION', NULL, '37.0000', '48.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.0000', '0.0000', '2021-06-29', 'received', '37.0000', '37.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '37.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17378, 147, NULL, 2855, '71871067', 'ESURO WISA', NULL, '4.0000', '5.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-06-29', 'received', '4.0000', '4.0000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17379, NULL, NULL, 2827, '4103040122452', 'BABY SEBAMED  BODY LOTION', NULL, '37.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '74.0000', '0.0000', '2021-07-02', 'received', '37.0000', '37.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17380, NULL, 98, 2827, '4103040122452', 'BABY SEBAMED  BODY LOTION', NULL, '37.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '74.0000', '1.0000', '2021-07-02', 'received', '37.0000', '37.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17381, NULL, 98, 2316, '59549986', 'SMA 1 BABY FOOD', NULL, '45.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '225.0000', '0.0000', '2021-07-02', 'received', '45.0000', '45.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17382, NULL, 98, 2228, '7501058625915', 'LACTOGEN  1', NULL, '24.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '73.5000', '1.0000', '2021-07-02', 'received', '24.5000', '24.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17383, NULL, 98, 2826, '83660824', 'SMA 2 BABY FOOD', NULL, '45.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '1.0000', '2021-07-02', 'received', '45.0000', '45.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17384, NULL, 98, 2228, '7501058625915', 'LACTOGEN  1', NULL, '24.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.5000', '1.0000', '2021-07-02', 'received', '24.5000', '24.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17385, NULL, 98, 2855, '71871067', 'ESURO WISA', NULL, '4.0000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '27.0000', '2021-07-02', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17386, NULL, NULL, 2777, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17387, NULL, NULL, 2816, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-16.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17426, 154, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.8000', '19.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4000', '0.0000', '2021-07-03', 'received', '14.8000', '14.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17427, 154, NULL, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '11.1900', '16.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.3800', '0.0000', '2021-07-03', 'received', '11.1900', '11.1900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '11.1900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17428, 154, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '13.5000', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-07-03', 'received', '13.5000', '13.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17429, 154, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '15.5000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2021-07-03', 'received', '15.5000', '15.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17430, 154, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '19.5000', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2021-07-03', 'received', '19.5000', '19.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17431, 154, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '140.0000', '180.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.0000', '0.0000', '2021-07-03', 'received', '140.0000', '140.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17432, 154, NULL, 2291, '8904091112401', 'CANDIBIOTICS EAR DROPS 5ML', NULL, '19.0000', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2021-07-03', 'received', '19.0000', '19.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17433, 154, NULL, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '19.5000', '26.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.0000', '0.0000', '2021-07-03', 'received', '19.5000', '19.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '19.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17434, 154, NULL, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', NULL, '0.9800', '1.3000', '72.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.5600', '0.0000', '2021-07-03', 'received', '0.9800', '0.9800', '72.0000', NULL, NULL, 1, 'pc', '72.0000', NULL, NULL, NULL, NULL, '0.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17435, 154, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.4400', '11.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3200', '0.0000', '2021-07-03', 'received', '8.4400', '8.4400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.4400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17436, 154, NULL, 2240, '5000198522501', 'PIRITON SYR', NULL, '36.9100', '49.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.8200', '0.0000', '2021-07-03', 'received', '36.9100', '36.9100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17437, 154, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '20.0000', '26.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '600.0000', '7.0000', '2021-07-03', 'received', '20.0000', '20.0000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17438, 154, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.1000', '3.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.6000', '0.0000', '2021-07-03', 'received', '2.1000', '2.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17439, 154, NULL, 2261, '2112345602905', 'TIGER SPRAY', NULL, '18.9900', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.9800', '0.0000', '2021-07-03', 'received', '18.9900', '18.9900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17440, 154, NULL, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', NULL, '45.0000', '60.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-07-03', 'received', '45.0000', '45.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17441, 154, NULL, 1701, 'PR-414', 'HEPTOPEP SYR', NULL, '14.7800', '19.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.3400', '0.0000', '2021-07-03', 'received', '14.7800', '14.7800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17442, 154, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '2.5000', '4.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '0.0000', '2021-07-03', 'received', '2.5000', '2.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17443, 154, NULL, 1790, '8904107900824', 'LEXSPORIN OINTMENT 20GMS', NULL, '16.9500', '22.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.9000', '0.0000', '2021-07-03', 'received', '16.9500', '16.9500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17444, 154, NULL, 2859, '57412085', 'PELODIUM', NULL, '0.6700', '2.0000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.7500', '13.0000', '2021-07-03', 'received', '0.6700', '0.6700', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.6700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17445, NULL, 105, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.8000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.6000', '0.0000', '2021-07-03', 'received', '14.8000', '14.8000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17446, NULL, 105, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.8000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.8000', '1.0000', '2021-07-03', 'received', '14.8000', '14.8000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17447, NULL, 105, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '11.1900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.3800', '0.0000', '2021-07-03', 'received', '11.1900', '11.1900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17448, NULL, 105, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '13.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '1.0000', '2021-07-03', 'received', '13.5000', '13.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17449, NULL, 105, 1695, '8908002671971', 'APETAMIN SYR', NULL, '15.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.5000', '1.0000', '2021-07-03', 'received', '15.5000', '15.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17450, NULL, 105, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '19.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '58.5000', '1.0000', '2021-07-03', 'received', '19.5000', '19.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17451, NULL, 105, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '140.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '280.0000', '0.0000', '2021-07-03', 'received', '140.0000', '140.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17452, NULL, 105, 2291, '8904091112401', 'CANDIBIOTICS EAR DROPS 5ML', NULL, '19.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.0000', '0.0000', '2021-07-03', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17453, NULL, 105, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '19.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '117.0000', '4.0000', '2021-07-03', 'received', '19.5000', '19.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17454, NULL, 105, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', NULL, '0.9800', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.0000', '28.0000', '2021-07-03', 'received', '0.9800', '0.9800', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17455, NULL, 105, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', NULL, '0.9800', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.0000', '50.0000', '2021-07-03', 'received', '0.9800', '0.9800', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17456, NULL, 105, 2859, '57412085', 'PELODIUM', NULL, '0.6700', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.7000', '5.0000', '2021-07-03', 'received', '0.6700', '0.6700', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17457, NULL, 105, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.4400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.3200', '0.0000', '2021-07-03', 'received', '8.4400', '8.4400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17458, NULL, 105, 2240, '5000198522501', 'PIRITON SYR', NULL, '36.9100', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '73.8200', '1.0000', '2021-07-03', 'received', '36.9100', '36.9100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17459, NULL, 105, 1790, '8904107900824', 'LEXSPORIN OINTMENT 20GMS', NULL, '16.9500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.9000', '2.0000', '2021-07-03', 'received', '16.9500', '16.9500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17460, NULL, 105, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '20.0000', '0.0000', '14.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '280.0000', '11.0000', '2021-07-03', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '14.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17461, NULL, 105, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.1000', '0.0000', '9.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.9000', '0.0000', '2021-07-03', 'received', '2.1000', '2.1000', NULL, NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17462, NULL, 105, 2261, '2112345602905', 'TIGER SPRAY', NULL, '18.9900', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.9900', '1.0000', '2021-07-03', 'received', '18.9900', '18.9900', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17463, NULL, 105, 1701, 'PR-414', 'HEPTOPEP SYR', NULL, '14.7800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.3400', '3.0000', '2021-07-03', 'received', '14.7800', '14.7800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17464, NULL, 105, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '2.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.5000', '0.0000', '2021-07-03', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17465, NULL, NULL, 2766, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17466, NULL, NULL, 2568, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-87.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17467, NULL, NULL, 2825, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17468, NULL, NULL, 2768, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-9.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17469, NULL, NULL, 2486, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17470, 155, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '48.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.4000', '0.0000', '2021-07-05', 'received', '35.8000', '35.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '35.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17471, 155, NULL, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '3.8700', '5.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.7000', '0.0000', '2021-07-05', 'received', '3.8700', '3.8700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17472, 155, NULL, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '19.5000', '26.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-07-05', 'received', '19.5000', '19.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17473, 155, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '10.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5600', '0.0000', '2021-07-05', 'received', '6.8900', '6.8900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17474, 155, NULL, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '7.5900', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.7700', '0.0000', '2021-07-05', 'received', '7.5900', '7.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17475, 155, NULL, 2723, '28145209', 'AMLODIPINE BESILATE 5MG TABS', NULL, '6.0000', '8.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-07-05', 'received', '6.0000', '6.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17476, 155, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '2.5000', '3.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.5000', '0.0000', '2021-07-05', 'received', '2.5000', '2.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17477, 155, NULL, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '10.2000', '13.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2021-07-05', 'received', '10.2000', '10.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17478, 155, NULL, 2862, '97602687', 'TYPHOID TEST', NULL, '5.0000', '10.0000', '15.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-07-05', 'received', '5.0000', '5.0000', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17479, 155, NULL, 2861, '22042714', 'TYHOID STRIPS', NULL, '5.0000', '7.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-07-05', 'received', '5.0000', '5.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17480, 155, NULL, 2863, '84914687', 'LANCET', NULL, '0.2000', '0.3000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-07-05', 'received', '0.2000', '0.2000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17481, NULL, 106, 2862, '97602687', 'TYPHOID TEST', NULL, '5.0000', '0.0000', '15.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '75.0000', '11.0000', '2021-07-05', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17482, NULL, 106, 2861, '22042714', 'TYHOID STRIPS', NULL, '5.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.0000', '10.0000', '2021-07-05', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17483, NULL, 106, 2863, '84914687', 'LANCET', NULL, '0.2000', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '100.0000', '2021-07-05', 'received', '0.2000', '0.2000', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17484, NULL, 106, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '107.4000', '0.0000', '2021-07-05', 'received', '35.8000', '35.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17485, NULL, 106, 1536, '8901040245197', 'AXACEF S00MG 10\'S', NULL, '3.8700', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.7000', '0.0000', '2021-07-05', 'received', '3.8700', '3.8700', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17486, NULL, 106, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', NULL, '19.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.0000', '0.0000', '2021-07-05', 'received', '19.5000', '19.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17487, NULL, 106, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.5600', '1.0000', '2021-07-05', 'received', '6.8900', '6.8900', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17488, NULL, 106, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '7.5900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.7700', '1.0000', '2021-07-05', 'received', '7.5900', '7.5900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17489, NULL, 106, 2723, '28145209', 'AMLODIPINE BESILATE 5MG TABS', NULL, '6.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '3.0000', '2021-07-05', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17490, NULL, 106, 2270, '64645876', 'MIST POT CIT', NULL, '2.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.5000', '0.0000', '2021-07-05', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17491, NULL, 106, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '10.2000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '102.0000', '2.0000', '2021-07-05', 'received', '10.2000', '10.2000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17587, NULL, NULL, 2864, '58170295', 'PARA DENK 250MG SUPP', NULL, '1.5000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '10.0000', '2021-07-05', 'received', '1.5000', '1.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17588, NULL, NULL, 2775, '40792038', 'LEXSPORIN OINTMENT', NULL, '18.9000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '56.7000', '0.0000', '2021-07-05', 'received', '18.9000', '18.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17589, NULL, NULL, 2633, '36871243', 'GANA BALM', NULL, '3.5000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '17.5000', '0.0000', '2021-07-05', 'received', '3.5000', '3.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17623, 156, NULL, 2864, '58170295', 'PARA DENK 250MG SUPP', NULL, '1.5000', '2.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-07-05', 'received', '1.5000', '1.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17624, 156, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.5000', '2.0000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '0.0000', '2021-07-05', 'received', '1.5000', '1.5000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17625, 156, NULL, 2240, '5000198522501', 'PIRITON SYR', NULL, '36.9100', '49.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.8200', '0.0000', '2021-07-05', 'received', '36.9100', '36.9100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17626, 156, NULL, 2775, '40792038', 'LEXSPORIN OINTMENT', NULL, '18.9000', '25.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '0.0000', '2021-07-05', 'received', '18.9000', '18.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17627, 156, NULL, 2261, '2112345602905', 'TIGER SPRAY', NULL, '18.9900', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.9800', '0.0000', '2021-07-05', 'received', '18.9900', '18.9900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17628, 156, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.8700', '3.9000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.3500', '0.0000', '2021-07-05', 'received', '2.8700', '2.8700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17629, 156, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '8.0000', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-07-05', 'received', '8.0000', '8.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17630, 156, NULL, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '13.0000', '17.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-07-05', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17631, 156, NULL, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '20.6900', '28.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.0700', '0.0000', '2021-07-05', 'received', '20.6900', '20.6900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17632, 156, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.5000', '10.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2021-07-05', 'received', '6.5000', '6.5000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17633, 156, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '13.6300', '18.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8900', '0.0000', '2021-07-05', 'received', '13.6300', '13.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.6300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17634, 156, NULL, 2810, '44204486', 'L MONTUS', NULL, '2.2000', '2.9000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-07-05', 'received', '2.2000', '2.2000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17635, 156, NULL, 1629, 'PR-342', 'GEN-M SUSP', NULL, '14.0000', '18.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-07-05', 'received', '14.0000', '14.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17636, 156, NULL, 1630, 'PR-343', 'GEN-M TAB 80/480', NULL, '16.7400', '22.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.2200', '0.0000', '2021-07-05', 'received', '16.7400', '16.7400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17637, 156, NULL, 2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', NULL, '5.9200', '8.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.6000', '0.0000', '2021-07-05', 'received', '5.9200', '5.9200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.9200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17638, 156, NULL, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '3.6000', '5.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '0.0000', '2021-07-05', 'received', '3.6000', '3.6000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17639, 156, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '47.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.7000', '0.0000', '2021-07-05', 'received', '35.9000', '35.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '35.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17640, 156, NULL, 1483, '5011501040131', 'DEEP HEAT RUB 67G', NULL, '21.9900', '23.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.9700', '0.0000', '2021-07-05', 'received', '21.9900', '21.9900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17641, 156, NULL, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '7.5900', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.7700', '0.0000', '2021-07-05', 'received', '7.5900', '7.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17642, 156, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '2.5000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.4000', '0.0000', '2021-07-05', 'received', '1.8600', '1.8600', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17643, 156, NULL, 1415, '6034000157055', 'LIVING BITTERS SYP S s', NULL, '14.5000', '19.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '0.0000', '2021-07-05', 'received', '14.5000', '14.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17644, 156, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-07-05', 'received', '4.5000', '4.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17645, 156, NULL, 1396, 'PR-109', 'ANGEL CREAM(200)', NULL, '2.7000', '3.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.2000', '0.0000', '2021-07-05', 'received', '2.7000', '2.7000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17646, 156, NULL, 2393, '25300648', 'BOAFO OINT', NULL, '3.8000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '0.0000', '2021-07-05', 'received', '3.8000', '3.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17647, 156, NULL, 2633, '36871243', 'GANA BALM', NULL, '3.5000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '0.0000', '2021-07-05', 'received', '3.5000', '3.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17648, 156, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '34.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.5000', '0.0000', '2021-07-05', 'received', '25.9000', '25.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '25.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17649, 156, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '9.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2021-07-05', 'received', '6.5000', '6.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17650, 156, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '47.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-07-05', 'received', '36.0000', '36.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17651, 156, NULL, 2452, '56056492', 'FINE FINE SOAP', NULL, '2.5000', '4.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.5000', '0.0000', '2021-07-05', 'received', '2.5000', '2.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17652, 156, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '17.3000', '23.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.6000', '0.0000', '2021-07-05', 'received', '17.3000', '17.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17653, 156, NULL, 2864, '58170295', 'PARA DENK 250MG SUPP', NULL, '1.5000', '2.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-07-05', 'received', '1.5000', '1.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17654, 156, NULL, 2452, '56056492', 'FINE FINE SOAP', NULL, '2.5000', '4.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '5.0000', '2021-07-05', 'received', '2.5000', '2.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17655, 156, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.8700', '3.9000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '143.5000', '0.0000', '2021-07-05', 'received', '2.8700', '2.8700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17656, 156, NULL, 2865, '90832999', 'FINE FINE CREAM', NULL, '2.8000', '4.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2021-07-05', 'received', '2.8000', '2.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17691, 157, NULL, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', NULL, '27.0000', '39.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '540.0000', '11.0000', '2021-07-06', 'received', '27.0000', '27.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '27.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17692, NULL, NULL, 2865, '90832999', 'FINE FINE CREAM', NULL, '2.8000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '14.0000', '0.0000', '2021-07-06', 'received', '2.8000', '2.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17740, NULL, NULL, 2657, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17741, NULL, NULL, 1992, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17742, NULL, NULL, 1871, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-20.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17743, NULL, NULL, 2741, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17744, NULL, NULL, 2135, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17745, NULL, NULL, 1689, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17746, NULL, NULL, 2828, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17747, NULL, NULL, 2816, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17748, NULL, NULL, 2281, '', '', NULL, '0.0000', '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17749, NULL, NULL, 2269, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17750, NULL, NULL, 2658, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-8.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17751, NULL, NULL, 1519, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17752, NULL, NULL, 1411, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17753, NULL, NULL, 1867, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-50.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17754, NULL, NULL, 2771, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17755, NULL, NULL, 2825, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17756, NULL, NULL, 2821, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-11.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17764, 153, NULL, 2558, '12419923', 'OVULATION TEST KIT', NULL, '5.0000', '7.0000', '7.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '0.0000', '2021-07-02', 'received', '5.0000', '5.0000', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17765, 153, NULL, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', NULL, '0.9300', '5.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.6000', '0.0000', '2021-07-02', 'received', '0.9300', '0.9300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.9300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17766, 153, NULL, 2856, '42113882', 'KAMAGRA 100MG', NULL, '26.0000', '35.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2021-07-02', 'received', '26.0000', '26.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17767, 153, NULL, 2857, '12087740', 'KAMAGRA 50', NULL, '17.0000', '23.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '0.0000', '2021-07-02', 'received', '17.0000', '17.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17768, 153, NULL, 2858, '54574718', 'PREG TEST CASSETTE', NULL, '1.0000', '5.0000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '0.0000', '2021-07-02', 'received', '1.0000', '1.0000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '1.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17769, 153, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.8300', '12.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.3000', '0.0000', '2021-07-02', 'received', '8.8300', '8.8300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17770, 153, NULL, 2809, '57353674', 'LONGRICH TOOTHPASTE', NULL, '28.0000', '35.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.0000', '0.0000', '2021-07-02', 'received', '28.0000', '28.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '28.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17771, 153, NULL, 2866, '6922049789736', 'CALCIUM/IRON/ZINC CHEWABLE TABLETS', NULL, '0.8800', '1.5000', '300.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '264.0000', '0.0000', '2021-07-02', 'received', '0.8800', '0.8800', '300.0000', NULL, NULL, 1, 'pc', '300.0000', NULL, NULL, NULL, NULL, '0.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17772, NULL, NULL, 2858, '54574718', 'PREG TEST CASSETTE', NULL, '1.0000', '0.0000', '25.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.0000', '-1.0000', '2021-07-07', 'received', '1.0000', '1.0000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17773, NULL, NULL, 2558, '12419923', 'OVULATION TEST KIT', NULL, '5.0000', '0.0000', '7.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '35.0000', '0.0000', '2021-07-07', 'received', '5.0000', '5.0000', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17774, NULL, NULL, 2856, '42113882', 'KAMAGRA 100MG', NULL, '26.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '52.0000', '0.0000', '2021-07-07', 'received', '26.0000', '26.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17775, NULL, NULL, 2857, '12087740', 'KAMAGRA 50', NULL, '17.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '34.0000', '0.0000', '2021-07-07', 'received', '17.0000', '17.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17776, NULL, 104, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.8300', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '88.3000', '10.0000', '2021-07-07', 'received', '8.8300', '8.8300', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17777, NULL, 104, 2857, '12087740', 'KAMAGRA 50', NULL, '17.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.0000', '1.0000', '2021-07-07', 'received', '17.0000', '17.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17778, NULL, 104, 2856, '42113882', 'KAMAGRA 100MG', NULL, '26.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.0000', '2.0000', '2021-07-07', 'received', '26.0000', '26.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17779, NULL, 104, 2558, '12419923', 'OVULATION TEST KIT', NULL, '5.0000', '0.0000', '7.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.0000', '5.0000', '2021-07-07', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17780, NULL, 104, 2858, '54574718', 'PREG TEST CASSETTE', NULL, '1.0000', '0.0000', '25.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.0000', '15.0000', '2021-07-07', 'received', '1.0000', '1.0000', NULL, NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17781, NULL, 104, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', NULL, '0.9300', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.6000', '0.0000', '2021-07-07', 'received', '0.9300', '0.9300', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17782, NULL, 104, 2809, '57353674', 'LONGRICH TOOTHPASTE', NULL, '28.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '84.0000', '3.0000', '2021-07-07', 'received', '28.0000', '28.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17783, NULL, 104, 2866, '6922049789736', 'CALCIUM/IRON/ZINC CHEWABLE TABLETS', NULL, '0.8800', '0.0000', '200.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '176.0000', '130.0000', '2021-07-07', 'received', '0.8800', '0.8800', NULL, NULL, NULL, 1, 'pc', '200.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17784, NULL, NULL, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', NULL, '27.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '135.0000', '0.0000', '2021-07-07', 'received', '27.0000', '27.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17800, NULL, NULL, 2866, '6922049789736', 'CALCIUM/IRON/ZINC CHEWABLE TABLETS', NULL, '0.8800', '0.0000', '-100.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '-88.0000', '-100.0000', '2021-07-07', 'received', '0.8800', '0.8800', '-100.0000', NULL, NULL, 1, 'pc', '-100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17801, NULL, NULL, 2867, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17830, NULL, NULL, 1954, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17831, NULL, NULL, 2829, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17832, 158, NULL, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.2500', '2.5000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '12.0000', '2021-07-10', 'received', '1.2500', '1.2500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '1.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17833, NULL, NULL, 2041, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17834, NULL, NULL, 2676, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17835, NULL, NULL, 1816, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17836, NULL, 107, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', NULL, '27.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '81.0000', '3.0000', '2021-07-10', 'received', '27.0000', '27.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17837, NULL, 107, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.8700', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.4000', '0.0000', '2021-07-10', 'received', '2.8700', '2.8700', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17838, NULL, 107, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.8700', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '86.1000', '0.0000', '2021-07-10', 'received', '2.8700', '2.8700', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17839, NULL, 107, 2864, '58170295', 'PARA DENK 250MG SUPP', NULL, '1.5000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '7.0000', '2021-07-10', 'received', '1.5000', '1.5000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17840, NULL, 107, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.5000', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '150.0000', '7.0000', '2021-07-10', 'received', '1.5000', '1.5000', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17841, NULL, 107, 2240, '5000198522501', 'PIRITON SYR', NULL, '36.9100', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '73.8200', '0.0000', '2021-07-10', 'received', '36.9100', '36.9100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17842, NULL, 107, 2775, '40792038', 'LEXSPORIN OINTMENT', NULL, '18.9000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '56.7000', '3.0000', '2021-07-10', 'received', '18.9000', '18.9000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17843, NULL, 107, 2261, '2112345602905', 'TIGER SPRAY', NULL, '18.9900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.9800', '1.0000', '2021-07-10', 'received', '18.9900', '18.9900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17844, NULL, 107, 1700, '8904008410187', 'BECOATIN SYR', NULL, '8.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '0.0000', '2021-07-10', 'received', '8.0000', '8.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17845, NULL, 107, 1585, 'PR-298', 'ZUBES CHILDREN', NULL, '13.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.0000', '0.0000', '2021-07-10', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17846, NULL, 107, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '20.6900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '41.3800', '2.0000', '2021-07-10', 'received', '20.6900', '20.6900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17847, NULL, 107, 1595, 'PR-308', 'BEEHIVE COUGH SYR', NULL, '20.6900', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.6900', '0.0000', '2021-07-10', 'received', '20.6900', '20.6900', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17848, NULL, 107, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0400', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '140.8000', '0.0000', '2021-07-10', 'received', '7.0400', '7.0400', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17849, NULL, 107, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '13.6300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.8900', '2.0000', '2021-07-10', 'received', '13.6300', '13.6300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17850, NULL, 107, 2810, '44204486', 'L MONTUS', NULL, '2.2000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.0000', '0.0000', '2021-07-10', 'received', '2.2000', '2.2000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17851, NULL, 107, 1629, 'PR-342', 'GEN-M SUSP', NULL, '14.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.0000', '0.0000', '2021-07-10', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17852, NULL, 107, 1629, 'PR-342', 'GEN-M SUSP', NULL, '14.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.0000', '0.0000', '2021-07-10', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17853, NULL, 107, 1630, 'PR-343', 'GEN-M TAB 80/480', NULL, '16.7400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.2200', '2.0000', '2021-07-10', 'received', '16.7400', '16.7400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17854, NULL, 107, 2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', NULL, '5.9200', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.6000', '3.0000', '2021-07-10', 'received', '5.9200', '5.9200', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17855, NULL, 107, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', NULL, '3.6000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.6000', '0.0000', '2021-07-10', 'received', '3.6000', '3.6000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17856, NULL, 107, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '107.7000', '0.0000', '2021-07-10', 'received', '35.9000', '35.9000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17857, NULL, 107, 1483, '5011501040131', 'DEEP HEAT RUB 67G', NULL, '17.3400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.6800', '2.0000', '2021-07-10', 'received', '17.3400', '17.3400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17858, NULL, 107, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '7.5900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.7700', '0.0000', '2021-07-10', 'received', '7.5900', '7.5900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17859, NULL, 107, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.2000', '0.0000', '2021-07-10', 'received', '1.8600', '1.8600', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17860, NULL, 107, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.2000', '16.0000', '2021-07-10', 'received', '1.8600', '1.8600', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17861, NULL, 107, 1415, '6034000157055', 'LIVING BITTERS SYP S s', NULL, '14.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.5000', '3.0000', '2021-07-10', 'received', '14.5000', '14.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17862, NULL, 107, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '4.0000', '2021-07-10', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17863, NULL, 107, 1396, 'PR-109', 'ANGEL CREAM(200)', NULL, '2.7000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.5000', '5.0000', '2021-07-10', 'received', '2.7000', '2.7000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17864, NULL, 107, 2393, '25300648', 'BOAFO OINT', NULL, '3.8000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.0000', '2.0000', '2021-07-10', 'received', '3.8000', '3.8000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17865, NULL, 107, 2633, '36871243', 'GANA BALM', NULL, '3.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.5000', '0.0000', '2021-07-10', 'received', '3.5000', '3.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17866, NULL, 107, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '129.5000', '0.0000', '2021-07-10', 'received', '25.9000', '25.9000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17867, NULL, 107, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.5000', '3.0000', '2021-07-10', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17868, NULL, 107, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.0000', '0.0000', '2021-07-10', 'received', '36.0000', '36.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17869, NULL, 107, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '17.3000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.6000', '0.0000', '2021-07-10', 'received', '17.3000', '17.3000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17870, NULL, 107, 2865, '90832999', 'FINE FINE CREAM', NULL, '2.8000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.0000', '4.0000', '2021-07-10', 'received', '2.8000', '2.8000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17871, NULL, 107, 2359, '66115662', 'LOSAR-DENK 50MG TAB', NULL, '8.1100', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.2200', '0.0000', '2021-07-10', 'received', '8.1100', '8.1100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17872, NULL, 107, 2359, '66115662', 'LOSAR-DENK 50MG TAB', NULL, '8.1100', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.1100', '0.0000', '2021-07-10', 'received', '8.1100', '8.1100', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17874, 159, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '6.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2021-07-11', 'received', '6.0000', '6.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17875, 160, NULL, 2871, '09818574', 'JULIVIT  OATMEAL', NULL, '35.0000', '46.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '0.0000', '2021-07-11', 'received', '35.0000', '35.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17876, 160, NULL, 2872, '32128165', 'TUMERIC POWDER 300GM', NULL, '25.0000', '33.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-07-11', 'received', '25.0000', '25.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17877, 160, NULL, 2873, '02514917', 'HASHEM ULCER', NULL, '30.0000', '40.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-07-11', 'received', '30.0000', '30.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17878, 160, NULL, 2874, '09782993', 'HASHEM FIBRIOD SHRINKER', NULL, '30.0000', '40.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-07-11', 'received', '30.0000', '30.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17879, 160, NULL, 2875, '16802761', 'ORGANIC TUMERIC SOAP', NULL, '15.0000', '18.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2021-07-11', 'received', '15.0000', '15.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17880, 160, NULL, 2876, '19595752', 'TUMERIC TRANSPARENT SOAP', NULL, '7.0000', '10.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2021-07-11', 'received', '7.0000', '7.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '7.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17881, 160, NULL, 2877, '63666165', 'TUMERIC TRANSPARENT SOAP 75G', NULL, '7.0000', '10.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2021-07-11', 'received', '7.0000', '7.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '7.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17882, 160, NULL, 2878, '62496613', 'BLACK STRIPE MOLASSES', NULL, '20.0000', '28.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-07-11', 'received', '20.0000', '20.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17883, 160, NULL, 2879, '84222807', 'TIGER NUT FLOUR', NULL, '30.0000', '40.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-07-11', 'received', '30.0000', '30.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17884, 160, NULL, 2880, '21973547', 'CINNAMON POWDER 400G', NULL, '35.0000', '46.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.0000', '0.0000', '2021-07-11', 'received', '35.0000', '35.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17885, 160, NULL, 2881, '15678231', 'OLIVE OIL IL', NULL, '40.0000', '55.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-07-11', 'received', '40.0000', '40.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '40.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17886, 160, NULL, 2882, '04381667', 'OLIVE OIL 500ML', NULL, '30.0000', '40.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-07-11', 'received', '30.0000', '30.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17887, 160, NULL, 2883, '28395309', 'OLIVE OIL 250ML', NULL, '15.0000', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-07-11', 'received', '15.0000', '15.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17888, 160, NULL, 2217, '8964000734650', 'BLACKSEED OIL 40ML', NULL, '12.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '1.0000', '2021-07-11', 'received', '12.0000', '12.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17889, 160, NULL, 2884, '72176503', 'BLACK SEED & TUMERIC CAPS', NULL, '30.0000', '40.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-07-11', 'received', '30.0000', '30.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17890, 160, NULL, 2885, '94190520', 'MIXTURE OF CAPSULES', NULL, '30.0000', '40.0000', '7.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '210.0000', '0.0000', '2021-07-11', 'received', '30.0000', '30.0000', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17891, 160, NULL, 2886, '94600524', 'EXTRA VIRGIN OIL HEANI', NULL, '25.0000', '35.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-07-11', 'received', '25.0000', '25.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17892, 160, NULL, 2869, '056100080640', 'CREST CHARCOAL TOOTHPASTE', NULL, '20.0000', '28.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '1.0000', '2021-07-11', 'received', '20.0000', '20.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17893, 160, NULL, 2870, '312547427555', 'LISTERINE MOUTH WASH 1.5L ', NULL, '45.0000', '60.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-07-11', 'received', '45.0000', '45.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17894, NULL, 108, 2869, '056100080640', 'CREST CHARCOAL TOOTHPASTE', NULL, '20.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '2.0000', '2021-07-11', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17895, NULL, 108, 2870, '312547427555', 'LISTERINE MOUTH WASH 1.5L ', NULL, '45.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.0000', '0.0000', '2021-07-11', 'received', '45.0000', '45.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17896, NULL, 108, 2871, '09818574', 'JULIVIT  OATMEAL', NULL, '35.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '105.0000', '2.0000', '2021-07-11', 'received', '35.0000', '35.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17897, NULL, 108, 2872, '32128165', 'TUMERIC POWDER 300GM', NULL, '25.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '75.0000', '2.0000', '2021-07-11', 'received', '25.0000', '25.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17898, NULL, 108, 2873, '02514917', 'HASHEM ULCER', NULL, '30.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.0000', '3.0000', '2021-07-11', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17899, NULL, 108, 2874, '09782993', 'HASHEM FIBRIOD SHRINKER', NULL, '30.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.0000', '3.0000', '2021-07-11', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17900, NULL, 108, 2875, '16802761', 'ORGANIC TUMERIC SOAP', NULL, '15.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '180.0000', '12.0000', '2021-07-11', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17901, NULL, 108, 2876, '19595752', 'TUMERIC TRANSPARENT SOAP', NULL, '7.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '84.0000', '3.0000', '2021-07-11', 'received', '7.0000', '7.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17902, NULL, 108, 2877, '63666165', 'TUMERIC TRANSPARENT SOAP 75G', NULL, '7.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '84.0000', '8.0000', '2021-07-11', 'received', '7.0000', '7.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17903, NULL, 108, 2878, '62496613', 'BLACK STRIPE MOLASSES', NULL, '20.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '3.0000', '2021-07-11', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17904, NULL, 108, 2879, '84222807', 'TIGER NUT FLOUR', NULL, '30.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.0000', '3.0000', '2021-07-11', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17905, NULL, 108, 2880, '21973547', 'CINNAMON POWDER 400G', NULL, '35.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '105.0000', '3.0000', '2021-07-11', 'received', '35.0000', '35.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17906, NULL, 108, 2881, '15678231', 'OLIVE OIL IL', NULL, '40.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '1.0000', '2021-07-11', 'received', '40.0000', '40.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17907, NULL, 108, 2882, '04381667', 'OLIVE OIL 500ML', NULL, '30.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '2.0000', '2021-07-11', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17908, NULL, 108, 2883, '28395309', 'OLIVE OIL 250ML', NULL, '15.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '2.0000', '2021-07-11', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17909, NULL, 108, 2884, '72176503', 'BLACK SEED & TUMERIC CAPS', NULL, '30.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '2.0000', '2021-07-11', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17910, NULL, 108, 2885, '94190520', 'MIXTURE OF CAPSULES', NULL, '30.0000', '0.0000', '7.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '210.0000', '7.0000', '2021-07-11', 'received', '30.0000', '30.0000', NULL, NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17911, NULL, 108, 2886, '94600524', 'EXTRA VIRGIN OIL HEANI', NULL, '25.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.0000', '1.0000', '2021-07-11', 'received', '25.0000', '25.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17912, 161, NULL, 1418, 'PR-131', 'MADAM CATERINE', NULL, '8.0000', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-07-11', 'received', '8.0000', '8.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17913, 161, NULL, 2887, '77192027', 'FADA MARTIN', NULL, '10.5000', '14.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2021-07-11', 'received', '10.5000', '10.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17914, 161, NULL, 2888, '06507635', 'NIBIMA', NULL, '8.0000', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-07-11', 'received', '8.0000', '8.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17915, 161, NULL, 2376, '77456423', 'PROSTAFIT', NULL, '19.0000', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2021-07-11', 'received', '19.0000', '19.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17916, 161, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.7000', '9.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.2000', '0.0000', '2021-07-11', 'received', '6.7000', '6.7000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17917, 161, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.5000', '13.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2021-07-11', 'received', '9.5000', '9.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17918, 161, NULL, 2398, '83807653', 'KINGDOM GINSENG CAPS', NULL, '15.0000', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-07-11', 'received', '15.0000', '15.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17919, NULL, 109, 1418, 'PR-131', 'MADAM CATERINE', NULL, '8.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '2.0000', '2021-07-11', 'received', '8.0000', '8.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17920, NULL, 109, 2887, '77192027', 'FADA MARTIN', NULL, '10.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.5000', '3.0000', '2021-07-11', 'received', '10.5000', '10.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17921, NULL, 109, 2888, '06507635', 'NIBIMA', NULL, '8.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '3.0000', '2021-07-11', 'received', '8.0000', '8.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17922, NULL, 109, 2376, '77456423', 'PROSTAFIT', NULL, '19.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.0000', '2.0000', '2021-07-11', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17923, NULL, 109, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.7000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.2000', '1.0000', '2021-07-11', 'received', '6.7000', '6.7000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17924, NULL, 109, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.0000', '2.0000', '2021-07-11', 'received', '9.5000', '9.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17925, NULL, 109, 2398, '83807653', 'KINGDOM GINSENG CAPS', NULL, '15.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '2.0000', '2021-07-11', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17945, NULL, NULL, 1796, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17946, NULL, NULL, 2554, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17995, 162, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.0000', '3.0000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-07-11', 'received', '2.0000', '2.0000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17996, 162, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '32.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.8200', '0.0000', '2021-07-11', 'received', '23.9100', '23.9100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17997, 162, NULL, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '6.6000', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '0.0000', '2021-07-11', 'received', '6.6000', '6.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17998, 162, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '19.0000', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2021-07-11', 'received', '19.0000', '19.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17999, 162, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '3.0000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.8400', '0.0000', '2021-07-11', 'received', '2.2300', '2.2300', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '2.2300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18000, 162, NULL, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '2.9000', '3.8300', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2021-07-11', 'received', '2.9000', '2.9000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18001, 162, NULL, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '12.5000', '16.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-07-11', 'received', '12.5000', '12.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '12.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18002, 162, NULL, 2552, '17018789', 'ORELOX SUSP', NULL, '95.8900', '127.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.8900', '0.0000', '2021-07-11', 'received', '95.8900', '95.8900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '95.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18003, 162, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '22.6400', '32.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.2800', '0.0000', '2021-07-11', 'received', '22.6400', '22.6400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18004, 162, NULL, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', NULL, '7.3000', '10.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2000', '0.0000', '2021-07-11', 'received', '7.3000', '7.3000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '7.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18005, 162, NULL, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', NULL, '6.8500', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5500', '0.0000', '2021-07-11', 'received', '6.8500', '6.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18006, 162, NULL, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', NULL, '13.2000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2021-07-11', 'received', '13.2000', '13.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18007, 162, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '25.3300', '33.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.6600', '0.0000', '2021-07-11', 'received', '25.3300', '25.3300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18008, 162, NULL, 1811, 'PR-524', 'VERMOX SUSP', NULL, '14.5300', '19.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5900', '0.0000', '2021-07-11', 'received', '14.5300', '14.5300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18009, 162, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '7.9800', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9400', '0.0000', '2021-07-11', 'received', '7.9800', '7.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18010, 162, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '9.5000', '12.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2021-07-11', 'received', '9.5000', '9.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18011, 162, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '34.9000', '46.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.8000', '0.0000', '2021-07-11', 'received', '34.9000', '34.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18012, 162, NULL, 2680, '27326576', 'OLFEN GEL 20GM S/S', NULL, '12.0000', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-07-11', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18013, 162, NULL, 2266, '8906046070682', 'KIDIVITE SYR L/S', NULL, '6.4900', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.4700', '0.0000', '2021-07-11', 'received', '6.4900', '6.4900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18014, 162, NULL, 2889, '59597897', 'ADAMS SECRET CAPS', NULL, '20.0000', '27.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '0.0000', '2021-07-11', 'received', '20.0000', '20.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18015, 162, NULL, 2890, '13204101', 'PROXIMEXA SUSP 125MG', NULL, '38.6900', '52.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0700', '0.0000', '2021-07-11', 'received', '38.6900', '38.6900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '38.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18016, 162, NULL, 2891, '27589033', 'FOLIC ACID TAB (CRESCENT)', NULL, '8.0000', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-07-11', 'received', '8.0000', '8.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18017, 162, NULL, 2892, '97440547', 'JET INHALER LOCAL', NULL, '4.0000', '5.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-07-11', 'received', '4.0000', '4.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18018, NULL, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '19.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '57.0000', '0.0000', '2021-07-11', 'received', '19.0000', '19.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18019, NULL, NULL, 2552, '17018789', 'ORELOX SUSP', NULL, '95.8900', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '95.8900', '0.0000', '2021-07-11', 'received', '95.8900', '95.8900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18020, NULL, NULL, 2891, '27589033', 'FOLIC ACID TAB (CRESCENT)', NULL, '8.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.0000', '0.0000', '2021-07-11', 'received', '8.0000', '8.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18021, NULL, NULL, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', NULL, '13.2000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '39.6000', '0.0000', '2021-07-11', 'received', '13.2000', '13.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18022, NULL, NULL, 2890, '13204101', 'PROXIMEXA SUSP 125MG', NULL, '38.6900', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '116.0700', '0.0000', '2021-07-11', 'received', '38.6900', '38.6900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18023, NULL, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '9.5000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '57.0000', '0.0000', '2021-07-11', 'received', '9.5000', '9.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18024, NULL, NULL, 2889, '59597897', 'ADAMS SECRET CAPS', NULL, '20.0000', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '20.0000', '0.0000', '2021-07-11', 'received', '20.0000', '20.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18050, NULL, NULL, 2892, '97440547', 'JET INHALER LOCAL', NULL, '4.0000', '0.0000', '12.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '48.0000', '-1.0000', '2021-07-11', 'received', '4.0000', '4.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18051, NULL, 110, 2892, '97440547', 'JET INHALER LOCAL', NULL, '4.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '48.0000', '8.0000', '2021-07-11', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18052, NULL, 110, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.0000', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '41.0000', '2021-07-11', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18053, NULL, 110, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '47.8200', '0.0000', '2021-07-11', 'received', '23.9100', '23.9100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18054, NULL, 110, 1541, '8902502106421', 'INFA V PESS', NULL, '19.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.0000', '0.0000', '2021-07-11', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18055, NULL, 110, 2297, '46332629', 'DREZ SOLUTION S/S', NULL, '6.6000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.8000', '0.0000', '2021-07-11', 'received', '6.6000', '6.6000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18056, NULL, 110, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '2.9000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.0000', '1.0000', '2021-07-11', 'received', '2.9000', '2.9000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18057, NULL, 110, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '12.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.5000', '1.0000', '2021-07-11', 'received', '12.5000', '12.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18058, NULL, 110, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '12.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.5000', '3.0000', '2021-07-11', 'received', '12.5000', '12.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18059, NULL, 110, 1859, '8901138502942', 'PILEX TAB', NULL, '22.6400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.2800', '0.0000', '2021-07-11', 'received', '22.6400', '22.6400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18060, NULL, 110, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', NULL, '7.3000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.2000', '0.0000', '2021-07-11', 'received', '7.3000', '7.3000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18061, NULL, 110, 2891, '27589033', 'FOLIC ACID TAB (CRESCENT)', NULL, '8.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '2.0000', '2021-07-11', 'received', '8.0000', '8.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18062, NULL, 110, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', NULL, '6.8500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.5500', '0.0000', '2021-07-11', 'received', '6.8500', '6.8500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18063, NULL, 110, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', NULL, '13.2000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.6000', '0.0000', '2021-07-11', 'received', '13.2000', '13.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18064, NULL, 110, 2890, '13204101', 'PROXIMEXA SUSP 125MG', NULL, '38.6900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '116.0700', '2.0000', '2021-07-11', 'received', '38.6900', '38.6900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18065, NULL, 110, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '25.3300', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.3300', '0.0000', '2021-07-11', 'received', '25.3300', '25.3300', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18066, NULL, 110, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '25.3300', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.3300', '0.0000', '2021-07-11', 'received', '25.3300', '25.3300', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18067, NULL, 110, 1811, 'PR-524', 'VERMOX SUSP', NULL, '14.5300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.5900', '2.0000', '2021-07-11', 'received', '14.5300', '14.5300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18068, NULL, 110, 2592, '42909881', 'Zentel Suspension ', NULL, '7.9800', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.9800', '0.0000', '2021-07-11', 'received', '7.9800', '7.9800', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18069, NULL, 110, 2592, '42909881', 'Zentel Suspension ', NULL, '7.9800', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.9800', '0.0000', '2021-07-11', 'received', '7.9800', '7.9800', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18070, NULL, 110, 2592, '42909881', 'Zentel Suspension ', NULL, '7.9800', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.9800', '0.0000', '2021-07-11', 'received', '7.9800', '7.9800', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18071, NULL, 110, 1945, 'PR-658', 'LUFART SUSP', NULL, '9.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.0000', '3.0000', '2021-07-11', 'received', '9.5000', '9.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18072, NULL, 110, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '34.9000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '69.8000', '0.0000', '2021-07-11', 'received', '34.9000', '34.9000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18073, NULL, 110, 2680, '27326576', 'OLFEN GEL 20GM S/S', NULL, '12.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '0.0000', '2021-07-11', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18074, NULL, 110, 2266, '8906046070682', 'KIDIVITE SYR L/S', NULL, '6.4900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.4700', '1.0000', '2021-07-11', 'received', '6.4900', '6.4900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18075, NULL, 110, 2889, '59597897', 'ADAMS SECRET CAPS', NULL, '20.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '1.0000', '2021-07-11', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18076, NULL, 110, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '0.0000', '8.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.8400', '0.0000', '2021-07-11', 'received', '2.2300', '2.2300', NULL, NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18077, NULL, 110, 2552, '17018789', 'ORELOX SUSP', NULL, '95.8900', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '95.8900', '0.0000', '2021-07-11', 'received', '95.8900', '95.8900', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18198, NULL, NULL, 2566, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18199, NULL, NULL, 1876, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18239, NULL, NULL, 2894, '72506315', 'OMEGA H3 LIQUID', NULL, '43.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '86.0000', '0.0000', '2021-07-13', 'received', '43.0000', '43.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18240, NULL, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '5.4300', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '16.2900', '0.0000', '2021-07-13', 'received', '5.4300', '5.4300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18241, NULL, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.5600', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '25.6000', '0.0000', '2021-07-13', 'received', '2.5600', '2.5600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18242, NULL, NULL, 2893, '66615924', 'FISHERMAN\'S FRIEND', NULL, '6.0000', '0.0000', '24.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '144.0000', '-1.0000', '2021-07-13', 'received', '6.0000', '6.0000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18330, 164, NULL, 2132, '4005900579614', 'NIVEA BODY LOTION 400ML', NULL, '21.0000', '24.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-07-13', 'received', '21.0000', '21.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18331, 164, NULL, 2039, '8710447482032', 'REXONA DEO SPRAY 200ML', NULL, '9.5000', '14.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '0.0000', '2021-07-13', 'received', '9.5000', '9.5000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18332, 164, NULL, 2037, '96125700', 'SURE  DEO SPRAY 250ML', NULL, '10.5000', '14.0000', '22.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '231.0000', '0.0000', '2021-07-13', 'received', '10.5000', '10.5000', '22.0000', NULL, NULL, 1, 'pc', '22.0000', NULL, NULL, NULL, NULL, '10.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18333, 164, NULL, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '10.5000', '14.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2021-07-13', 'received', '10.5000', '10.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18334, 164, NULL, 2896, '77311138', 'NIVEA LOTION 250ML S/S', NULL, '14.0000', '17.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2021-07-13', 'received', '14.0000', '14.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18335, 164, NULL, 2897, '26620183', 'GARLIC POWDER', NULL, '18.0000', '23.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2021-07-13', 'received', '18.0000', '18.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18336, 164, NULL, 2898, '85738812', 'GINGER POWDER', NULL, '10.0000', '15.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-07-13', 'received', '10.0000', '10.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18337, 164, NULL, 2899, '51017186', 'DAWADAWA POWDER', NULL, '12.0000', '17.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-07-13', 'received', '12.0000', '12.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18338, 164, NULL, 2900, '54088146', 'PREKESE POWDER', NULL, '20.0000', '25.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-07-13', 'received', '20.0000', '20.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18339, 164, NULL, 2901, '93195296', 'CHILLI PEPPER 200MG S/S', NULL, '10.0000', '12.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-07-13', 'received', '10.0000', '10.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18340, 164, NULL, 2902, '30157755', 'TIGER  NUTS POWDER 400G', NULL, '20.0000', '25.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-07-13', 'received', '20.0000', '20.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18341, 164, NULL, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '10.5000', '14.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2021-07-13', 'received', '10.5000', '10.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18342, NULL, NULL, 2896, '77311138', 'NIVEA LOTION 250ML S/S', NULL, '14.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '84.0000', '0.0000', '2021-07-13', 'received', '14.0000', '14.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18343, NULL, NULL, 2897, '26620183', 'GARLIC POWDER', NULL, '18.0000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '180.0000', '0.0000', '2021-07-13', 'received', '18.0000', '18.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18344, NULL, NULL, 2898, '85738812', 'GINGER POWDER', NULL, '10.0000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '100.0000', '0.0000', '2021-07-13', 'received', '10.0000', '10.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18345, NULL, NULL, 2899, '51017186', 'DAWADAWA POWDER', NULL, '12.0000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '120.0000', '0.0000', '2021-07-13', 'received', '12.0000', '12.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18346, NULL, NULL, 2900, '54088146', 'PREKESE POWDER', NULL, '20.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '100.0000', '0.0000', '2021-07-13', 'received', '20.0000', '20.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18347, NULL, NULL, 2901, '93195296', 'CHILLI PEPPER 200MG S/S', NULL, '10.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '50.0000', '0.0000', '2021-07-13', 'received', '10.0000', '10.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18348, NULL, NULL, 2902, '30157755', 'TIGER  NUTS POWDER 400G', NULL, '20.0000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '100.0000', '0.0000', '2021-07-13', 'received', '20.0000', '20.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18349, NULL, 112, 2902, '30157755', 'TIGER  NUTS POWDER 400G', NULL, '20.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '100.0000', '5.0000', '2021-07-13', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18350, NULL, 112, 2901, '93195296', 'CHILLI PEPPER 200MG S/S', NULL, '10.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.0000', '5.0000', '2021-07-13', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18351, NULL, 112, 2900, '54088146', 'PREKESE POWDER', NULL, '20.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '100.0000', '5.0000', '2021-07-13', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18352, NULL, 112, 2899, '51017186', 'DAWADAWA POWDER', NULL, '12.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '10.0000', '2021-07-13', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18353, NULL, 112, 2898, '85738812', 'GINGER POWDER', NULL, '10.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '100.0000', '10.0000', '2021-07-13', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18354, NULL, 112, 2897, '26620183', 'GARLIC POWDER', NULL, '18.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '180.0000', '10.0000', '2021-07-13', 'received', '18.0000', '18.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18355, NULL, 112, 2037, '96125700', 'SURE  DEO SPRAY 250ML', NULL, '10.5000', '0.0000', '22.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '231.0000', '13.0000', '2021-07-13', 'received', '10.5000', '10.5000', NULL, NULL, NULL, 1, 'pc', '22.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18356, NULL, 112, 2039, '8710447482032', 'REXONA DEO SPRAY 200ML', NULL, '9.5000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '114.0000', '12.0000', '2021-07-13', 'received', '9.5000', '9.5000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18357, NULL, 112, 2896, '77311138', 'NIVEA LOTION 250ML S/S', NULL, '14.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '84.0000', '6.0000', '2021-07-13', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18358, NULL, 112, 2132, '4005900579614', 'NIVEA BODY LOTION 400ML', NULL, '21.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.0000', '0.0000', '2021-07-13', 'received', '21.0000', '21.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18359, NULL, 112, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '10.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.5000', '1.0000', '2021-07-13', 'received', '10.5000', '10.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18360, 163, NULL, 2405, '40815002', 'GLOVES', NULL, '1.2000', '1.6000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-07-11', 'received', '1.2000', '1.2000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '1.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18361, 163, NULL, 2604, '43079266', 'COA MIXTURE', NULL, '90.0000', '120.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '450.0000', '0.0000', '2021-07-11', 'received', '90.0000', '90.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18362, 163, NULL, 1567, 'PR-280', 'BRENEX SYRUP', NULL, '13.3000', '17.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.6000', '0.0000', '2021-07-11', 'received', '13.3000', '13.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18363, 163, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '6.0000', '8.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-07-11', 'received', '6.0000', '6.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18364, 163, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '11.8200', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4600', '0.0000', '2021-07-11', 'received', '11.8200', '11.8200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18365, 163, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.1700', '16.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5100', '0.0000', '2021-07-11', 'received', '12.1700', '12.1700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.1700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18366, 163, NULL, 2168, '8901082004356', 'APTIZOOOM', NULL, '28.7000', '39.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.1000', '0.0000', '2021-07-11', 'received', '28.7000', '28.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18367, 163, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '15.5000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2021-07-11', 'received', '15.5000', '15.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18368, 163, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '19.5000', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '0.0000', '2021-07-11', 'received', '19.5000', '19.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18369, 163, NULL, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', NULL, '0.4400', '3.0000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '0.0000', '2021-07-11', 'received', '0.4400', '0.4400', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.4400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18370, 163, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '5.4300', '7.1700', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.2900', '0.0000', '2021-07-11', 'received', '5.4300', '5.4300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.4300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18371, 163, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '10.9700', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.9100', '0.0000', '2021-07-11', 'received', '10.9700', '10.9700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.9700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18372, 163, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '7.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2021-07-11', 'received', '5.5000', '5.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18373, 163, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.0200', '7.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.2000', '0.0000', '2021-07-11', 'received', '5.0200', '5.0200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18374, 163, NULL, 2068, '79519848', 'LUFART DS', NULL, '13.1000', '17.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '131.0000', '0.0000', '2021-07-11', 'received', '13.1000', '13.1000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '13.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18375, 163, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '10.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.8000', '0.0000', '2021-07-11', 'received', '7.8900', '7.8900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '7.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18376, 163, NULL, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '14.3000', '20.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.5000', '0.0000', '2021-07-11', 'received', '14.3000', '14.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18377, 163, NULL, 1479, '8906087940135', 'IMPRESSER OIL', NULL, '42.3600', '56.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.3600', '0.0000', '2021-07-11', 'received', '42.3600', '42.3600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '42.3600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18378, 163, NULL, 2085, '35811477', 'PARA DENK 125MG', NULL, '1.3300', '1.8000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9000', '0.0000', '2021-07-11', 'received', '1.3300', '1.3300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18379, 163, NULL, 2864, '58170295', 'PARA DENK 250MG SUPP', NULL, '1.5200', '2.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.6000', '0.0000', '2021-07-11', 'received', '1.5200', '1.5200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18380, 163, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.5600', '3.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6000', '0.0000', '2021-07-11', 'received', '2.5600', '2.5600', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.5600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18381, 163, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '14.0000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-07-11', 'received', '14.0000', '14.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18382, 163, NULL, 2511, '81055477', 'DUROL 300ML', NULL, '8.5000', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '0.0000', '2021-07-11', 'received', '8.5000', '8.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18383, 163, NULL, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', NULL, '20.0400', '27.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.1200', '0.0000', '2021-07-11', 'received', '20.0400', '20.0400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.0400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18384, 163, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '7.8400', '10.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.4000', '0.0000', '2021-07-11', 'received', '7.8400', '7.8400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.8400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18385, 163, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '2.1800', '4.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.5400', '0.0000', '2021-07-11', 'received', '2.1800', '2.1800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '2.1800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18386, 163, NULL, 1530, '4031571064159', 'METFORMIN DENK 1G', NULL, '28.6900', '38.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.3800', '0.0000', '2021-07-11', 'received', '28.6900', '28.6900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18387, 163, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '8.2400', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.7200', '0.0000', '2021-07-11', 'received', '8.2400', '8.2400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18388, 163, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '20.0000', '27.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-07-11', 'received', '20.0000', '20.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18389, 163, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '15.1300', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.3900', '0.0000', '2021-07-11', 'received', '15.1300', '15.1300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.1300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18390, 163, NULL, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', NULL, '7.3000', '10.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2000', '0.0000', '2021-07-11', 'received', '7.3000', '7.3000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '7.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18391, 163, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '15.5200', '20.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5600', '0.0000', '2021-07-11', 'received', '15.5200', '15.5200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18392, 163, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '11.8600', '16.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5800', '0.0000', '2021-07-11', 'received', '11.8600', '11.8600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18393, 163, NULL, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '8.1700', '10.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8500', '0.0000', '2021-07-11', 'received', '8.1700', '8.1700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.1700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18394, 163, NULL, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', NULL, '14.0000', '18.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-07-11', 'received', '14.0000', '14.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18395, 163, NULL, 1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', NULL, '17.4000', '23.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.8000', '0.0000', '2021-07-11', 'received', '17.4000', '17.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18396, 163, NULL, 2894, '72506315', 'OMEGA H3 LIQUID', NULL, '43.0000', '57.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.0000', '0.0000', '2021-07-11', 'received', '43.0000', '43.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '43.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18397, 163, NULL, 2893, '66615924', 'FISHERMAN\'S FRIEND', NULL, '6.0000', '8.0000', '24.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '0.0000', '2021-07-11', 'received', '6.0000', '6.0000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18398, 163, NULL, 2895, '02492089', 'ICHTHAMMOL OINTMENT', NULL, '11.6000', '15.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.6000', '0.0000', '2021-07-11', 'received', '11.6000', '11.6000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '11.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18399, 163, NULL, 2868, '34068126', 'ATENOLOL 100MG  TEVA', NULL, '5.0000', '7.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-07-11', 'received', '5.0000', '5.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18400, NULL, NULL, 2895, '02492089', 'ICHTHAMMOL OINTMENT', NULL, '11.6000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '69.6000', '0.0000', '2021-07-13', 'received', '11.6000', '11.6000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18401, NULL, 111, 2895, '02492089', 'ICHTHAMMOL OINTMENT', NULL, '11.6000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '69.6000', '6.0000', '2021-07-13', 'received', '11.6000', '11.6000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18402, NULL, 111, 2894, '72506315', 'OMEGA H3 LIQUID', NULL, '43.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '86.0000', '2.0000', '2021-07-13', 'received', '43.0000', '43.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18403, NULL, 111, 1567, 'PR-280', 'BRENEX SYRUP', NULL, '13.3000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.3000', '0.0000', '2021-07-13', 'received', '13.3000', '13.3000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18404, NULL, 111, 1567, 'PR-280', 'BRENEX SYRUP', NULL, '13.3000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.3000', '1.0000', '2021-07-13', 'received', '13.3000', '13.3000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18405, NULL, 111, 2604, '43079266', 'COA MIXTURE', NULL, '90.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '450.0000', '1.0000', '2021-07-13', 'received', '90.0000', '90.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18406, NULL, 111, 2405, '40815002', 'GLOVES', NULL, '1.2000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '0.0000', '2021-07-13', 'received', '1.2000', '1.2000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18407, NULL, 111, 2405, '40815002', 'GLOVES', NULL, '1.2000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '21.0000', '2021-07-13', 'received', '1.2000', '1.2000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18408, NULL, 111, 2545, '82780299', 'DREZ POWDER 10G', NULL, '6.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '1.0000', '2021-07-13', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18409, NULL, 111, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '11.8200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.4600', '0.0000', '2021-07-13', 'received', '11.8200', '11.8200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18410, NULL, 111, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.1700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.5100', '0.0000', '2021-07-13', 'received', '12.1700', '12.1700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18411, NULL, 111, 2168, '8901082004356', 'APTIZOOOM', NULL, '28.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '86.1000', '1.0000', '2021-07-13', 'received', '28.7000', '28.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18412, NULL, 111, 1695, '8908002671971', 'APETAMIN SYR', NULL, '15.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.5000', '2.0000', '2021-07-13', 'received', '15.5000', '15.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18413, NULL, 111, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '19.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '58.5000', '0.0000', '2021-07-13', 'received', '19.5000', '19.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18414, NULL, 111, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', NULL, '0.4400', '0.0000', '25.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.0000', '24.0000', '2021-07-13', 'received', '0.4400', '0.4400', NULL, NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18415, NULL, 111, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '5.4300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.2900', '2.0000', '2021-07-13', 'received', '5.4300', '5.4300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18416, NULL, 111, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '10.9700', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '21.9400', '0.0000', '2021-07-13', 'received', '10.9700', '10.9700', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18417, NULL, 111, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '10.9700', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.9700', '0.0000', '2021-07-13', 'received', '10.9700', '10.9700', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18418, NULL, 111, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.5000', '0.0000', '2021-07-13', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18419, NULL, 111, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '11.0000', '0.0000', '2021-07-13', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18420, NULL, 111, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.0200', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.2000', '0.0000', '2021-07-13', 'received', '5.0200', '5.0200', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18421, NULL, 111, 2068, '79519848', 'LUFART DS', NULL, '13.1000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '65.5000', '0.0000', '2021-07-13', 'received', '13.1000', '13.1000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18422, NULL, 111, 2068, '79519848', 'LUFART DS', NULL, '13.1000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '65.5000', '2.0000', '2021-07-13', 'received', '13.1000', '13.1000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18423, NULL, 111, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '157.8000', '10.0000', '2021-07-13', 'received', '7.8900', '7.8900', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18424, NULL, 111, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '14.3000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '71.5000', '3.0000', '2021-07-13', 'received', '14.3000', '14.3000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18425, NULL, 111, 2085, '35811477', 'PARA DENK 125MG', NULL, '1.3300', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.9000', '18.0000', '2021-07-13', 'received', '1.3300', '1.3300', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18426, NULL, 111, 2864, '58170295', 'PARA DENK 250MG SUPP', NULL, '1.5200', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.6000', '16.0000', '2021-07-13', 'received', '1.5200', '1.5200', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18427, NULL, 111, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.5600', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.6000', '1.0000', '2021-07-13', 'received', '2.5600', '2.5600', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18428, NULL, 111, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '14.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.0000', '0.0000', '2021-07-13', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18429, NULL, 111, 2511, '81055477', 'DUROL 300ML', NULL, '8.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.0000', '0.0000', '2021-07-13', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18430, NULL, 111, 2511, '81055477', 'DUROL 300ML', NULL, '8.5000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.5000', '0.0000', '2021-07-13', 'received', '8.5000', '8.5000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18431, NULL, 111, 2893, '66615924', 'FISHERMAN\'S FRIEND', NULL, '6.0000', '0.0000', '24.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '144.0000', '18.0000', '2021-07-13', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18432, NULL, 111, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', NULL, '20.0400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.1200', '0.0000', '2021-07-13', 'received', '20.0400', '20.0400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18433, NULL, 111, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '7.8400', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.4000', '0.0000', '2021-07-13', 'received', '7.8400', '7.8400', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18434, NULL, 111, 2270, '64645876', 'MIST POT CIT', NULL, '2.1800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.5400', '0.0000', '2021-07-13', 'received', '2.1800', '2.1800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18435, NULL, 111, 1530, '4031571064159', 'METFORMIN DENK 1G', NULL, '28.6900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.3800', '1.0000', '2021-07-13', 'received', '28.6900', '28.6900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18436, NULL, 111, 1809, 'PR-522', 'VISCOF D SY', NULL, '8.2400', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.2400', '1.0000', '2021-07-13', 'received', '8.2400', '8.2400', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18437, NULL, 111, 1809, 'PR-522', 'VISCOF D SY', NULL, '8.2400', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.2400', '1.0000', '2021-07-13', 'received', '8.2400', '8.2400', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18438, NULL, 111, 1809, 'PR-522', 'VISCOF D SY', NULL, '8.2400', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '8.2400', '1.0000', '2021-07-13', 'received', '8.2400', '8.2400', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18439, NULL, 111, 2259, '72759006', 'DRAGON SPRAY', NULL, '20.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '2.0000', '2021-07-13', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18440, NULL, 111, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '15.1300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.2600', '0.0000', '2021-07-13', 'received', '15.1300', '15.1300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18441, NULL, 111, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '15.1300', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.1300', '0.0000', '2021-07-13', 'received', '15.1300', '15.1300', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18442, NULL, 111, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', NULL, '7.3000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.6000', '0.0000', '2021-07-13', 'received', '7.3000', '7.3000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18443, NULL, 111, 1427, '003', 'ROOTER TYTONIC', NULL, '15.5200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.5600', '1.0000', '2021-07-13', 'received', '15.5200', '15.5200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18444, NULL, 111, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '11.8600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.5800', '3.0000', '2021-07-13', 'received', '11.8600', '11.8600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18445, NULL, 111, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '8.1700', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.8500', '3.0000', '2021-07-13', 'received', '8.1700', '8.1700', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18446, NULL, 111, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', NULL, '14.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.0000', '3.0000', '2021-07-13', 'received', '14.0000', '14.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18447, NULL, 111, 1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', NULL, '17.4000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '34.8000', '1.0000', '2021-07-13', 'received', '17.4000', '17.4000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18448, NULL, 111, 2868, '34068126', 'ATENOLOL 100MG  TEVA', NULL, '5.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '5.0000', '2021-07-13', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18491, NULL, NULL, 2333, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18594, 165, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '17.0000', '23.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2021-07-13', 'received', '17.0000', '17.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18595, 165, NULL, 2398, '83807653', 'KINGDOM GINSENG CAPS', NULL, '15.0000', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-07-13', 'received', '15.0000', '15.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18596, 165, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '17.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-07-13', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18597, 165, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '17.0000', '22.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2021-07-13', 'received', '17.0000', '17.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18598, 165, NULL, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '19.0000', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2021-07-13', 'received', '19.0000', '19.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18599, 165, NULL, 2331, '22131552', 'IMODIYM CAPS 2MG 6\'S', NULL, '12.0700', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.2100', '0.0000', '2021-07-13', 'received', '12.0700', '12.0700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18600, 165, NULL, 1544, '4031571036033', 'CLOTRI DENK 100 PESS', NULL, '18.2100', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.4200', '0.0000', '2021-07-13', 'received', '18.2100', '18.2100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18601, 165, NULL, 1543, '4031571066740', 'CLOTRI DENK CREAM', NULL, '18.2100', '25.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6300', '0.0000', '2021-07-13', 'received', '18.2100', '18.2100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18602, 165, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.2000', '8.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.6000', '0.0000', '2021-07-13', 'received', '6.2000', '6.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18603, 165, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '12.9000', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.7000', '0.0000', '2021-07-13', 'received', '12.9000', '12.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18604, 165, NULL, 1914, 'PR-627', 'Menthox Adult', NULL, '5.2300', '7.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6900', '0.0000', '2021-07-13', 'received', '5.2300', '5.2300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.2300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18605, 165, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.6000', '12.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '0.0000', '2021-07-13', 'received', '9.6000', '9.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18606, 165, NULL, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '6.0500', '8.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.5000', '0.0000', '2021-07-13', 'received', '6.0500', '6.0500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18607, 165, NULL, 1811, 'PR-524', 'VERMOX SUSP', NULL, '14.5300', '19.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5900', '0.0000', '2021-07-13', 'received', '14.5300', '14.5300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18608, 165, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '18.5000', '24.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.0000', '0.0000', '2021-07-13', 'received', '18.5000', '18.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18609, 165, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '1.5000', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-07-13', 'received', '1.5000', '1.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18610, 165, NULL, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '21.1800', '28.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.5400', '0.0000', '2021-07-13', 'received', '21.1800', '21.1800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.1800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18611, 165, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.8200', '0.0000', '2021-07-13', 'received', '17.9400', '17.9400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18612, 165, NULL, 2660, '84556664', 'ANDREWS LIVER SALT', NULL, '0.7000', '1.0000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2021-07-13', 'received', '0.7000', '0.7000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18613, 165, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1000', '1.5000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-07-13', 'received', '1.1000', '1.1000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18614, 165, NULL, 2262, '69085595', 'LENOR CONTRACEPTIVE', NULL, '4.5000', '6.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-07-13', 'received', '4.5000', '4.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18615, 165, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '20.0000', '25.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-07-13', 'received', '20.0000', '20.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18616, 165, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5500', '1.0000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.7500', '0.0000', '2021-07-13', 'received', '0.5500', '0.5500', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18617, 165, NULL, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', NULL, '4.4500', '6.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.3500', '0.0000', '2021-07-13', 'received', '4.4500', '4.4500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.4500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18618, 165, NULL, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', NULL, '5.5000', '7.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-07-13', 'received', '5.5000', '5.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18619, 165, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '13.0000', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-07-13', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18620, 165, NULL, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '25.0000', '33.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-07-13', 'received', '25.0000', '25.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18621, 165, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.0500', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.1000', '0.0000', '2021-07-13', 'received', '9.0500', '9.0500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18622, 165, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '27.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.1000', '0.0000', '2021-07-13', 'received', '19.0200', '19.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '19.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18623, 165, NULL, 1484, '8470007006244', 'SILVER DERMA CREAM 50G', NULL, '28.0000', '38.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '0.0000', '2021-07-13', 'received', '28.0000', '28.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '28.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18624, 165, NULL, 1345, '8901082005339', 'ADDYZOA CAPS', NULL, '49.0000', '65.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '0.0000', '2021-07-13', 'received', '49.0000', '49.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '49.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18625, 165, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '17.6100', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8300', '0.0000', '2021-07-13', 'received', '17.6100', '17.6100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.6100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18626, 165, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '11.9000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.9000', '0.0000', '2021-07-13', 'received', '11.9000', '11.9000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '11.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18627, 165, NULL, 2294, '44448916', 'PENICILLIN OINTMENT', NULL, '3.5000', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '0.0000', '2021-07-13', 'received', '3.5000', '3.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18628, 165, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.2000', '6.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '6.0000', '2021-07-13', 'received', '4.2000', '4.2000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18629, 165, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '20.0000', '27.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-07-13', 'received', '20.0000', '20.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18630, 165, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.0000', '7.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-07-13', 'received', '5.0000', '5.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18631, 165, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '5.9400', '8.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.7000', '0.0000', '2021-07-13', 'received', '5.9400', '5.9400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18632, 165, NULL, 2459, '26218313', 'ENAMYCIN SUS (ECL)', NULL, '5.2800', '7.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.8400', '0.0000', '2021-07-13', 'received', '5.2800', '5.2800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18633, 165, NULL, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '4.3000', '6.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.0000', '0.0000', '2021-07-13', 'received', '4.3000', '4.3000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18634, 165, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '7.8500', '11.0000', '9.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.6500', '0.0000', '2021-07-13', 'received', '7.8500', '7.8500', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '7.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18635, 165, NULL, 2345, '37407616', 'PONSTAN CAPS 250MG', NULL, '7.6400', '10.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.2000', '0.0000', '2021-07-13', 'received', '7.6400', '7.6400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18636, 165, NULL, 2909, '94340911', 'CLINDAMYCIN 300MG CAPS KAMA', NULL, '10.0000', '13.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-07-13', 'received', '10.0000', '10.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18637, 165, NULL, 2908, '78138195', 'MAGACID FASTMELT', NULL, '0.2700', '0.5000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-07-13', 'received', '0.2700', '0.2700', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.2700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18638, 165, NULL, 2907, '78214441', 'LUMATRONA SUSP 60ML', NULL, '6.0000', '8.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-07-13', 'received', '6.0000', '6.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18639, 165, NULL, 2906, '74619015', 'M&B 760 TAB', NULL, '2.6000', '3.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2021-07-13', 'received', '2.6000', '2.6000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18640, 165, NULL, 2905, '8222405', 'AMILODIPINE 10MG TEVA', NULL, '7.5000', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-07-13', 'received', '7.5000', '7.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18641, 165, NULL, 2903, '64476421', 'LIV 52 TABS', NULL, '32.0000', '42.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '0.0000', '2021-07-13', 'received', '32.0000', '32.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18642, 165, NULL, 2904, '85860104', 'LIV 52 SYRUP', NULL, '19.6100', '26.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2200', '0.0000', '2021-07-13', 'received', '19.6100', '19.6100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.6100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18643, 165, NULL, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5500', '1.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2021-07-13', 'received', '0.5500', '0.5500', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18644, NULL, NULL, 1544, '4031571036033', 'CLOTRI DENK 100 PESS', NULL, '18.2100', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.4200', '0.0000', '2021-07-14', 'received', '18.2100', '18.2100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18645, NULL, NULL, 1914, 'PR-627', 'Menthox Adult', NULL, '5.2300', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.6900', '0.0000', '2021-07-14', 'received', '5.2300', '5.2300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18646, NULL, NULL, 2907, '78214441', 'LUMATRONA SUSP 60ML', NULL, '6.0000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.0000', '0.0000', '2021-07-14', 'received', '6.0000', '6.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18647, NULL, NULL, 2908, '78138195', 'MAGACID FASTMELT', NULL, '0.2700', '0.0000', '100.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '27.0000', '-4.0000', '2021-07-14', 'received', '0.2700', '0.2700', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18648, NULL, NULL, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', NULL, '5.5000', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '33.0000', '0.0000', '2021-07-14', 'received', '5.5000', '5.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18649, NULL, NULL, 1345, '8901082005339', 'ADDYZOA CAPS', NULL, '49.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '98.0000', '0.0000', '2021-07-14', 'received', '49.0000', '49.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18650, NULL, NULL, 2909, '94340911', 'CLINDAMYCIN 300MG CAPS KAMA', NULL, '10.0000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '100.0000', '0.0000', '2021-07-14', 'received', '10.0000', '10.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18651, NULL, NULL, 2906, '74619015', 'M&B 760 TAB', NULL, '2.6000', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '130.0000', '0.0000', '2021-07-14', 'received', '2.6000', '2.6000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18652, NULL, NULL, 2905, '8222405', 'AMILODIPINE 10MG TEVA', NULL, '7.5000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '37.5000', '0.0000', '2021-07-14', 'received', '7.5000', '7.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18653, NULL, NULL, 2903, '64476421', 'LIV 52 TABS', NULL, '32.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '64.0000', '0.0000', '2021-07-14', 'received', '32.0000', '32.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18654, NULL, NULL, 2904, '85860104', 'LIV 52 SYRUP', NULL, '19.6100', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '39.2200', '0.0000', '2021-07-14', 'received', '19.6100', '19.6100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18655, NULL, NULL, 2459, '26218313', 'ENAMYCIN SUS (ECL)', NULL, '5.2800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.8400', '0.0000', '2021-07-14', 'received', '5.2800', '5.2800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18656, NULL, 113, 2345, '37407616', 'PONSTAN CAPS 250MG', NULL, '7.6400', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.2000', '1.0000', '2021-07-14', 'received', '7.6400', '7.6400', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18657, NULL, 113, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '7.8500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.5500', '0.0000', '2021-07-14', 'received', '7.8500', '7.8500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18658, NULL, 113, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '7.8500', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '47.1000', '3.0000', '2021-07-14', 'received', '7.8500', '7.8500', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18659, NULL, 113, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '4.3000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.0000', '8.0000', '2021-07-14', 'received', '4.3000', '4.3000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18660, NULL, 113, 2286, '91011834', 'FLUXAMOX CAPS 200', NULL, '4.3000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.0000', '10.0000', '2021-07-14', 'received', '4.3000', '4.3000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18661, NULL, 113, 2459, '26218313', 'ENAMYCIN SUS (ECL)', NULL, '5.2800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.8400', '0.0000', '2021-07-14', 'received', '5.2800', '5.2800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18662, NULL, 113, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '5.9400', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.7000', '2.0000', '2021-07-14', 'received', '5.9400', '5.9400', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18663, NULL, 113, 2904, '85860104', 'LIV 52 SYRUP', NULL, '19.6100', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.2200', '2.0000', '2021-07-14', 'received', '19.6100', '19.6100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18664, NULL, 113, 2903, '64476421', 'LIV 52 TABS', NULL, '32.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '64.0000', '2.0000', '2021-07-14', 'received', '32.0000', '32.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18665, NULL, 113, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '1.0000', '2021-07-14', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18666, NULL, 113, 2259, '72759006', 'DRAGON SPRAY', NULL, '20.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '1.0000', '2021-07-14', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18667, NULL, 113, 2294, '44448916', 'PENICILLIN OINTMENT', NULL, '3.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '17.5000', '3.0000', '2021-07-14', 'received', '3.5000', '3.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18668, NULL, 113, 2905, '8222405', 'AMILODIPINE 10MG TEVA', NULL, '7.5000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.5000', '5.0000', '2021-07-14', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18669, NULL, 113, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '11.9000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.7000', '0.0000', '2021-07-14', 'received', '11.9000', '11.9000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18670, NULL, 113, 2906, '74619015', 'M&B 760 TAB', NULL, '2.6000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '130.0000', '50.0000', '2021-07-14', 'received', '2.6000', '2.6000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18671, NULL, 113, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '17.6100', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.8300', '0.0000', '2021-07-14', 'received', '17.6100', '17.6100', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18672, NULL, 113, 2909, '94340911', 'CLINDAMYCIN 300MG CAPS KAMA', NULL, '10.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '100.0000', '10.0000', '2021-07-14', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18673, NULL, 113, 1345, '8901082005339', 'ADDYZOA CAPS', NULL, '49.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '98.0000', '2.0000', '2021-07-14', 'received', '49.0000', '49.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18674, NULL, 113, 1484, '8470007006244', 'SILVER DERMA CREAM 50G', NULL, '28.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.0000', '0.0000', '2021-07-14', 'received', '28.0000', '28.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18675, NULL, 113, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '95.1000', '0.0000', '2021-07-14', 'received', '19.0200', '19.0200', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18676, NULL, 113, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.0500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.1000', '1.0000', '2021-07-14', 'received', '9.0500', '9.0500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18677, NULL, 113, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '25.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '75.0000', '1.0000', '2021-07-14', 'received', '25.0000', '25.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18678, NULL, 113, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '13.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.0000', '0.0000', '2021-07-14', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18679, NULL, 113, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', NULL, '5.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '0.0000', '2021-07-14', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18680, NULL, 113, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', NULL, '4.4500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.3500', '0.0000', '2021-07-14', 'received', '4.4500', '4.4500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18681, NULL, 113, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '20.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '0.0000', '2021-07-14', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18682, NULL, 113, 2262, '69085595', 'LENOR CONTRACEPTIVE', NULL, '4.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.0000', '0.0000', '2021-07-14', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18683, NULL, 113, 2262, '69085595', 'LENOR CONTRACEPTIVE', NULL, '4.5000', '0.0000', '8.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '6.0000', '2021-07-14', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18684, NULL, 113, 2169, '97038500', 'GEBEDOL', NULL, '1.1000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '1.0000', '2021-07-14', 'received', '1.1000', '1.1000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18685, NULL, 113, 2908, '78138195', 'MAGACID FASTMELT', NULL, '0.2700', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '97.0000', '2021-07-14', 'received', '0.2700', '0.2700', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18686, NULL, 113, 2660, '84556664', 'ANDREWS LIVER SALT', NULL, '0.7000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.0000', '34.0000', '2021-07-14', 'received', '0.7000', '0.7000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18687, NULL, 113, 2660, '84556664', 'ANDREWS LIVER SALT', NULL, '0.7000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.0000', '50.0000', '2021-07-14', 'received', '0.7000', '0.7000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18688, NULL, 113, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '53.8200', '3.0000', '2021-07-14', 'received', '17.9400', '17.9400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18689, NULL, 113, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '21.1800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '63.5400', '0.0000', '2021-07-14', 'received', '21.1800', '21.1800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18690, NULL, 113, 2907, '78214441', 'LUMATRONA SUSP 60ML', NULL, '6.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '5.0000', '2021-07-14', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18691, NULL, 113, 1493, 'PR-206', 'GV PAINT', NULL, '1.5000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '6.0000', '2021-07-14', 'received', '1.5000', '1.5000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18692, NULL, 113, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '18.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.0000', '0.0000', '2021-07-14', 'received', '18.5000', '18.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18693, NULL, 113, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '18.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '55.5000', '2.0000', '2021-07-14', 'received', '18.5000', '18.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18694, NULL, 113, 1811, 'PR-524', 'VERMOX SUSP', NULL, '14.5300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '43.5900', '0.0000', '2021-07-14', 'received', '14.5300', '14.5300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18695, NULL, 113, 1772, 'PR-485', 'WORMPLEX SUSP.', NULL, '6.0500', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.5000', '1.0000', '2021-07-14', 'received', '6.0500', '6.0500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18696, NULL, 113, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.6000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '28.8000', '0.0000', '2021-07-14', 'received', '9.6000', '9.6000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18697, NULL, 113, 1914, 'PR-627', 'Menthox Adult', NULL, '5.2300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.6900', '3.0000', '2021-07-14', 'received', '5.2300', '5.2300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18698, NULL, 113, 1668, '8906016831572', 'Acidom Caps', NULL, '12.9000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.7000', '2.0000', '2021-07-14', 'received', '12.9000', '12.9000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18699, NULL, 113, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.2000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.2000', '0.0000', '2021-07-14', 'received', '6.2000', '6.2000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18700, NULL, 113, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.2000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.4000', '0.0000', '2021-07-14', 'received', '6.2000', '6.2000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18701, NULL, 113, 1543, '4031571066740', 'CLOTRI DENK CREAM', NULL, '18.2100', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.6300', '2.0000', '2021-07-14', 'received', '18.2100', '18.2100', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18702, NULL, 113, 1544, '4031571036033', 'CLOTRI DENK 100 PESS', NULL, '18.2100', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.4200', '2.0000', '2021-07-14', 'received', '18.2100', '18.2100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18703, NULL, 113, 2331, '22131552', 'IMODIYM CAPS 2MG 6\'S', NULL, '12.0700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.2100', '0.0000', '2021-07-14', 'received', '12.0700', '12.0700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18704, NULL, 113, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '19.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '57.0000', '0.0000', '2021-07-14', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18705, NULL, 113, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '17.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '51.0000', '0.0000', '2021-07-14', 'received', '17.0000', '17.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18706, NULL, 113, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.0000', '1.0000', '2021-07-14', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18707, NULL, 113, 2398, '83807653', 'KINGDOM GINSENG CAPS', NULL, '15.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '0.0000', '2021-07-14', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18708, NULL, 113, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '17.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '51.0000', '1.0000', '2021-07-14', 'received', '17.0000', '17.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18709, NULL, 113, 1837, 'PR-550', 'ORS PLAIN DANNEX', NULL, '0.5500', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.5000', '0.0000', '2021-07-14', 'received', '0.5500', '0.5500', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18710, NULL, NULL, 2635, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18711, 166, NULL, 2483, '90693662', 'THYME LEAVES', NULL, '4.0000', '6.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '6.0000', '2021-07-14', 'received', '4.0000', '4.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18712, 166, NULL, 2485, '40177526', 'GOLDEN RAISEN', NULL, '17.0000', '20.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '1.0000', '2021-07-14', 'received', '17.0000', '17.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18713, 166, NULL, 2697, '72051764', 'BAY LEAVES', NULL, '3.0000', '5.0000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '8.0000', '2021-07-14', 'received', '3.0000', '3.0000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18714, 166, NULL, 2487, '22129068', 'ALMOND SEED', NULL, '25.0000', '30.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '250.0000', '5.0000', '2021-07-14', 'received', '25.0000', '25.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18715, 166, NULL, 2602, '86780065', 'CLOVES ', NULL, '4.0000', '5.0000', '16.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '16.0000', '2021-07-14', 'received', '4.0000', '4.0000', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18716, 167, NULL, 2910, 'FOO', 'OLIVE LEAVES', NULL, '10.0000', '14.0000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '8.0000', '2021-07-14', 'received', '10.0000', '10.0000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18759, 168, NULL, 2915, '21109477', 'ASPIRIN CARDIO 100MG', NULL, '15.4500', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.3500', '0.0000', '2021-07-14', 'received', '15.4500', '15.4500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.4500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18760, 168, NULL, 2917, '02413027', 'FLEMEX ADULT SYRUP', NULL, '7.3500', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0500', '0.0000', '2021-07-14', 'received', '7.3500', '7.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18761, 168, NULL, 1662, '3400970000913', 'IDEOS ~', NULL, '52.5300', '69.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.5900', '0.0000', '2021-07-14', 'received', '52.5300', '52.5300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '52.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18762, 168, NULL, 2918, '12473513', 'CILOXAN 0.3%', NULL, '14.9400', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.8200', '0.0000', '2021-07-14', 'received', '14.9400', '14.9400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18763, 168, NULL, 2919, '71113918', 'PHLEBODIA 600MG', NULL, '2.9000', '5.0000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.0000', '0.0000', '2021-07-14', 'received', '2.9000', '2.9000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18764, 168, NULL, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '4.7400', '6.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.4800', '0.0000', '2021-07-14', 'received', '4.7400', '4.7400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '4.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18765, 168, NULL, 2920, '95187029', 'VIT BCO STRONG (KAKA)', NULL, '22.0000', '29.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-07-14', 'received', '22.0000', '22.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18766, 168, NULL, 2921, '91392147', 'CARBOZAP ADULT SYRUP', NULL, '4.9000', '7.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7000', '0.0000', '2021-07-14', 'received', '4.9000', '4.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18767, 168, NULL, 2922, '93007183', 'BISOPROLOL 5MG', NULL, '8.2000', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.6000', '0.0000', '2021-07-14', 'received', '8.2000', '8.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18768, 168, NULL, 2923, '67740529', 'BELLS CHN COUGH SYR', NULL, '11.1200', '14.6800', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.3600', '0.0000', '2021-07-14', 'received', '11.1200', '11.1200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.1200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18769, 168, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '140.0000', '190.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '700.0000', '0.0000', '2021-07-14', 'received', '140.0000', '140.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18770, 168, NULL, 2926, '21772628', 'OMEPRAZOLE (DR REDDY\'S)', NULL, '20.0000', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-07-14', 'received', '20.0000', '20.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18771, 168, NULL, 2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', NULL, '6.3000', '8.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2021-07-14', 'received', '6.3000', '6.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18772, 168, NULL, 2925, '77810587', 'WHITFIELD OINTMENT', NULL, '5.0000', '7.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-07-14', 'received', '5.0000', '5.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18773, 168, NULL, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '71.9800', '95.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '215.9400', '0.0000', '2021-07-14', 'received', '71.9800', '71.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '71.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18774, 168, NULL, 2916, '85432536', 'LORNAT DS TAB', NULL, '15.0000', '20.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '0.0000', '2021-07-14', 'received', '15.0000', '15.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18775, NULL, NULL, 2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', NULL, '6.3000', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '31.5000', '0.0000', '2021-07-14', 'received', '6.3000', '6.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18776, NULL, NULL, 2925, '77810587', 'WHITFIELD OINTMENT', NULL, '5.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.0000', '0.0000', '2021-07-14', 'received', '5.0000', '5.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18777, NULL, NULL, 2920, '95187029', 'VIT BCO STRONG (KAKA)', NULL, '22.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '66.0000', '0.0000', '2021-07-14', 'received', '22.0000', '22.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18778, NULL, NULL, 2921, '91392147', 'CARBOZAP ADULT SYRUP', NULL, '4.9000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '14.7000', '0.0000', '2021-07-14', 'received', '4.9000', '4.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18779, NULL, NULL, 2922, '93007183', 'BISOPROLOL 5MG', NULL, '8.2000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '24.6000', '0.0000', '2021-07-14', 'received', '8.2000', '8.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18780, NULL, NULL, 2923, '67740529', 'BELLS CHN COUGH SYR', NULL, '11.1200', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '33.3600', '0.0000', '2021-07-14', 'received', '11.1200', '11.1200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18781, NULL, NULL, 2917, '02413027', 'FLEMEX ADULT SYRUP', NULL, '7.3500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '22.0500', '-1.0000', '2021-07-14', 'received', '7.3500', '7.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18782, NULL, NULL, 2926, '21772628', 'OMEPRAZOLE (DR REDDY\'S)', NULL, '20.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '60.0000', '0.0000', '2021-07-14', 'received', '20.0000', '20.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18783, NULL, NULL, 2918, '12473513', 'CILOXAN 0.3%', NULL, '14.9400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '44.8200', '0.0000', '2021-07-14', 'received', '14.9400', '14.9400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18784, NULL, NULL, 2919, '71113918', 'PHLEBODIA 600MG', NULL, '2.9000', '0.0000', '40.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '116.0000', '0.0000', '2021-07-14', 'received', '2.9000', '2.9000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18785, NULL, NULL, 2915, '21109477', 'ASPIRIN CARDIO 100MG', NULL, '15.4500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '46.3500', '0.0000', '2021-07-14', 'received', '15.4500', '15.4500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18786, NULL, 114, 2915, '21109477', 'ASPIRIN CARDIO 100MG', NULL, '15.4500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.3500', '1.0000', '2021-07-14', 'received', '15.4500', '15.4500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18787, NULL, 114, 2919, '71113918', 'PHLEBODIA 600MG', NULL, '2.9000', '0.0000', '40.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '116.0000', '40.0000', '2021-07-14', 'received', '2.9000', '2.9000', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18788, NULL, 114, 2918, '12473513', 'CILOXAN 0.3%', NULL, '14.9400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.8200', '3.0000', '2021-07-14', 'received', '14.9400', '14.9400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18789, NULL, 114, 2926, '21772628', 'OMEPRAZOLE (DR REDDY\'S)', NULL, '20.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '0.0000', '2021-07-14', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18790, NULL, 114, 1662, '3400970000913', 'IDEOS ~', NULL, '52.5300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '157.5900', '2.0000', '2021-07-14', 'received', '52.5300', '52.5300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18791, NULL, 114, 2917, '02413027', 'FLEMEX ADULT SYRUP', NULL, '7.3500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.0500', '2.0000', '2021-07-14', 'received', '7.3500', '7.3500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18792, NULL, 114, 2923, '67740529', 'BELLS CHN COUGH SYR', NULL, '11.1200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.3600', '1.0000', '2021-07-14', 'received', '11.1200', '11.1200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18793, NULL, 114, 2922, '93007183', 'BISOPROLOL 5MG', NULL, '8.2000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.6000', '3.0000', '2021-07-14', 'received', '8.2000', '8.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18794, NULL, 114, 2921, '91392147', 'CARBOZAP ADULT SYRUP', NULL, '4.9000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.7000', '3.0000', '2021-07-14', 'received', '4.9000', '4.9000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18795, NULL, 114, 2920, '95187029', 'VIT BCO STRONG (KAKA)', NULL, '22.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '66.0000', '2.0000', '2021-07-14', 'received', '22.0000', '22.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18796, NULL, 114, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '4.7400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.4800', '1.0000', '2021-07-14', 'received', '4.7400', '4.7400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18797, NULL, 114, 2925, '77810587', 'WHITFIELD OINTMENT', NULL, '5.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0000', '3.0000', '2021-07-14', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18798, NULL, 114, 2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', NULL, '6.3000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.5000', '3.0000', '2021-07-14', 'received', '6.3000', '6.3000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18799, NULL, 114, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '71.9800', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '71.9800', '0.0000', '2021-07-14', 'received', '71.9800', '71.9800', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18800, NULL, 114, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '71.9800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '143.9600', '2.0000', '2021-07-14', 'received', '71.9800', '71.9800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18801, NULL, 114, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '127.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '635.0000', '0.0000', '2021-07-14', 'received', '127.0000', '127.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18802, NULL, 114, 2916, '85432536', 'LORNAT DS TAB', NULL, '15.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '150.0000', '2.0000', '2021-07-14', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18803, 138, NULL, 1731, 'PR-444', 'DAKTARIN CREAM 15G', NULL, '19.9600', '27.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8800', '3.0000', '2021-06-19', 'received', '19.9600', '19.9600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18804, 138, NULL, 2346, '68048014', 'CALAMINE OINT', NULL, '5.5000', '7.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '5.0000', '2021-06-19', 'received', '5.5000', '5.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18805, 138, NULL, 2607, '65744915', 'maalox sachets', NULL, '1.4000', '1.7000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '13.0000', '2021-06-19', 'received', '1.4000', '1.4000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18806, 138, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '12.7000', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.1000', '0.0000', '2021-06-19', 'received', '12.7000', '12.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18807, 138, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '48.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '179.0000', '0.0000', '2021-06-19', 'received', '35.8000', '35.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '35.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18808, 138, NULL, 2351, '81129325', 'COARTEM 12\'S', NULL, '17.7000', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.1000', '2.0000', '2021-06-19', 'received', '17.7000', '17.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18809, 138, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '28.1300', '39.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.7800', '6.0000', '2021-06-19', 'received', '28.1300', '28.1300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '28.1300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18810, 138, NULL, 1626, '306420072116', 'VITAFOL CAP', NULL, '7.5900', '10.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.9500', '5.0000', '2021-06-19', 'received', '7.5900', '7.5900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18811, 138, NULL, 1631, '8850769012651', 'ENAT 4001U CAPS', NULL, '37.8000', '52.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.4000', '2.0000', '2021-06-19', 'received', '37.8000', '37.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '37.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18812, 138, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '2.5000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.5000', '0.0000', '2021-06-19', 'received', '2.5000', '2.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18813, 138, NULL, 1559, 'PR-272', 'SIRDALUD 4MG', NULL, '22.1000', '30.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.6000', '6.0000', '2021-06-19', 'received', '22.1000', '22.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '22.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18814, 138, NULL, 1495, '8904107901401', 'MYCOLEX POWDER', NULL, '17.7300', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4600', '0.0000', '2021-06-19', 'received', '17.7300', '17.7300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.7300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18815, 138, NULL, 2296, '48633360', 'DREZ SOLUTION B/S', NULL, '13.2900', '18.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.8700', '0.0000', '2021-06-19', 'received', '13.2900', '13.2900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18816, 138, NULL, 2298, '11840983', 'DREZ OINTMENT 10G S/S', NULL, '6.0000', '8.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '1.0000', '2021-06-19', 'received', '6.0000', '6.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18817, 138, NULL, 1493, 'PR-206', 'GV PAINT', NULL, '1.6300', '3.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.7800', '0.0000', '2021-06-19', 'received', '1.6300', '1.6300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '1.6300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18818, 138, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.6900', '7.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4500', '0.0000', '2021-06-19', 'received', '4.6900', '4.6900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18819, 138, NULL, 1355, 'PR-68', 'LIVOPAT CAPS- INDUS', NULL, '17.6200', '23.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.8600', '3.0000', '2021-06-19', 'received', '17.6200', '17.6200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18820, 138, NULL, 1537, 'PR-250', 'VITANE SYR', NULL, '40.2700', '53.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.5400', '1.0000', '2021-06-19', 'received', '40.2700', '40.2700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '40.2700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18821, 138, NULL, 1545, '8904091105816', 'CANDID V6 PESS 6\'S', NULL, '7.3500', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0500', '3.0000', '2021-06-19', 'received', '7.3500', '7.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18822, 138, NULL, 1543, '4031571066740', 'CLOTRI DENK CREAM', NULL, '17.9400', '25.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.8200', '0.0000', '2021-06-19', 'received', '17.9400', '17.9400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18823, 138, NULL, 1662, '3400970000913', 'IDEOS ~', NULL, '50.2400', '69.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.4800', '0.0000', '2021-06-19', 'received', '50.2400', '50.2400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '50.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18824, 138, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.8300', '10.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.9800', '0.0000', '2021-06-19', 'received', '6.8300', '6.8300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18825, 138, NULL, 1811, 'PR-524', 'VERMOX SUSP', NULL, '14.5300', '19.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.1200', '0.0000', '2021-06-19', 'received', '14.5300', '14.5300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18826, 138, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '10.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.9000', '0.0000', '2021-06-19', 'received', '7.8900', '7.8900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18827, 138, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.2200', '2.0000', '75.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.5000', '0.0000', '2021-06-19', 'received', '1.2200', '1.2200', '75.0000', NULL, NULL, 1, 'pc', '75.0000', NULL, NULL, NULL, NULL, '1.2200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18828, 138, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0400', '10.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.4000', '0.0000', '2021-06-19', 'received', '7.0400', '7.0400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.0400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18829, 138, NULL, 1680, 'PR-393', 'BELLA COUGH MIXTURE', NULL, '4.9200', '7.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7600', '2.0000', '2021-06-19', 'received', '4.9200', '4.9200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.9200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18830, 138, NULL, 2271, '9556100104342', 'FLUCOR DAY', NULL, '12.0000', '16.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '1.0000', '2021-06-19', 'received', '12.0000', '12.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18831, 138, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '20.7800', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.3400', '0.0000', '2021-06-19', 'received', '20.7800', '20.7800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18832, 138, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '20.0000', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-06-19', 'received', '20.0000', '20.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18833, 138, NULL, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', NULL, '4.6000', '6.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '0.0000', '2021-06-19', 'received', '4.6000', '4.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18834, 138, NULL, 1738, 'PR-451', 'MENTHODEX LOZENGES 15\'(SACHET} 50G', NULL, '7.1000', '9.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.4000', '4.0000', '2021-06-19', 'received', '7.1000', '7.1000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '7.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18835, 138, NULL, 1677, '8902546578543', 'LUEX BABY COUGH', NULL, '7.8000', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '1.0000', '2021-06-19', 'received', '7.8000', '7.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18836, 138, NULL, 2354, '93872260', 'COLDRILIF SYR', NULL, '4.6000', '7.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '4.0000', '2021-06-19', 'received', '4.6000', '4.6000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18837, 138, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.1500', '8.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.7500', '0.0000', '2021-06-19', 'received', '6.1500', '6.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18838, 138, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '5.5000', '8.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-06-19', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18839, 138, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4500', '5.0000', '2021-06-19', 'received', '3.4900', '3.4900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18840, 138, NULL, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', NULL, '5.5000', '7.1700', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '1.0000', '2021-06-19', 'received', '5.5000', '5.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18841, 138, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '34.9000', '46.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.7000', '0.0000', '2021-06-19', 'received', '34.9000', '34.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '34.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18842, 138, NULL, 2636, '86196755', 'KIDIMIN SYR', NULL, '7.5000', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-06-19', 'received', '7.5000', '7.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18843, 138, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4500', '0.0000', '2021-06-19', 'received', '6.8900', '6.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18844, 138, NULL, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', NULL, '0.3200', '0.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '48.0000', '2021-06-19', 'received', '0.3200', '0.3200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18845, 138, NULL, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.4000', '0.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '44.0000', '2021-06-19', 'received', '0.4000', '0.4000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18846, 138, NULL, 1555, '3582910081043', 'RHINATHIOL ADULT SYR 125ML', NULL, '22.2400', '29.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.7200', '0.0000', '2021-06-19', 'received', '22.2400', '22.2400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18847, 138, NULL, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', NULL, '20.2400', '27.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.7200', '0.0000', '2021-06-19', 'received', '20.2400', '20.2400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18848, 138, NULL, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', NULL, '2.7500', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.7500', '5.0000', '2021-06-19', 'received', '2.7500', '2.7500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18849, 138, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.4900', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.4700', '1.0000', '2021-06-19', 'received', '17.4900', '17.4900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18850, 138, NULL, 1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', NULL, '11.0000', '17.0000', '15.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.0000', '15.0000', '2021-06-19', 'received', '11.0000', '11.0000', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18851, 138, NULL, 2337, '04743466', 'M2 TONE', NULL, '51.0000', '67.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '2.0000', '2021-06-19', 'received', '51.0000', '51.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '51.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18852, 138, NULL, 2357, '22168350', 'LADINAS PICT', NULL, '4.0000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '5.0000', '2021-06-19', 'received', '4.0000', '4.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18853, 138, NULL, 2345, '37407616', 'PONSTAN CAPS 250MG', NULL, '7.6400', '10.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.2000', '0.0000', '2021-06-19', 'received', '7.6400', '7.6400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18854, 138, NULL, 2303, '5024655004072', 'TRANEXAMIC ACID 500MG', NULL, '16.1000', '21.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.6000', '6.0000', '2021-06-19', 'received', '16.1000', '16.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '16.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18855, 138, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '15.5000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2021-06-19', 'received', '15.5000', '15.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18856, 138, NULL, 1628, 'PR-341', 'GUDAPET SYR', NULL, '6.4000', '8.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '3.0000', '2021-06-19', 'received', '6.4000', '6.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18857, 138, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '14.9700', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.9100', '0.0000', '2021-06-19', 'received', '14.9700', '14.9700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.9700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18858, 138, NULL, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '18.2300', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6900', '3.0000', '2021-06-19', 'received', '18.2300', '18.2300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.2300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18859, 138, NULL, 1321, 'PR-34', 'TRES ORIX FORTE 1 00ML(S/S)', NULL, '9.8000', '13.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4000', '3.0000', '2021-06-19', 'received', '9.8000', '9.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18860, 138, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '8.0000', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-06-19', 'received', '8.0000', '8.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18861, 138, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '26.0000', '34.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-06-19', 'received', '26.0000', '26.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18862, 138, NULL, 1612, 'PR-325', 'GYPRONE PLUS TABS', NULL, '1.6000', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '8.0000', '2021-06-19', 'received', '1.6000', '1.6000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18863, 138, NULL, 1670, '006', 'CIPROLEX TZ TAB 14\'5', NULL, '19.5000', '26.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.5000', '0.0000', '2021-06-19', 'received', '19.5000', '19.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '19.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18864, 138, NULL, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '5.2000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.2000', '0.0000', '2021-06-19', 'received', '5.2000', '5.2000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '5.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18865, 138, NULL, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '21.1800', '28.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.5400', '0.0000', '2021-06-19', 'received', '21.1800', '21.1800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.1800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18866, 138, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', NULL, '12.0000', '15.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-06-19', 'received', '12.0000', '12.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18867, 138, NULL, 1561, 'PR-274', 'SPORANOX CAPS', NULL, '27.0000', '35.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.0000', '0.0000', '2021-06-19', 'received', '27.0000', '27.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '27.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18868, 138, NULL, 1379, 'PR-92', 'DIFLUCAN CAPS', NULL, '82.8700', '109.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '165.7400', '2.0000', '2021-06-19', 'received', '82.8700', '82.8700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '82.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18869, 138, NULL, 2270, '64645876', 'MIST POT CIT', NULL, '2.5000', '4.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '0.0000', '2021-06-19', 'received', '2.5000', '2.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18870, 138, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.3700', '0.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '26.0000', '2021-06-19', 'received', '0.3700', '0.3700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.3700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18871, 138, NULL, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.8200', '0.0000', '2021-06-19', 'received', '17.9400', '17.9400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18872, 138, NULL, 2168, '8901082004356', 'APTIZOOOM', NULL, '26.0000', '39.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-06-19', 'received', '26.0000', '26.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18873, 138, NULL, 1690, '6001176457883', 'DUROL TONIC 200ML', NULL, '6.2600', '8.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0400', '4.0000', '2021-06-19', 'received', '6.2600', '6.2600', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.2600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18874, 138, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '18.2000', '24.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6000', '1.0000', '2021-06-19', 'received', '18.2000', '18.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18875, 138, NULL, 2544, '85585070', 'NEXCOFER SYR L/S', NULL, '6.8800', '9.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.6400', '2.0000', '2021-06-19', 'received', '6.8800', '6.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18876, 138, NULL, 2076, '24451420', 'ZINVITE SYR', NULL, '8.0000', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '3.0000', '2021-06-19', 'received', '8.0000', '8.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18877, 138, NULL, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '38.6500', '51.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.6000', '0.0000', '2021-06-19', 'received', '38.6500', '38.6500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '38.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18878, 138, NULL, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', NULL, '59.4600', '78.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.9200', '0.0000', '2021-06-19', 'received', '59.4600', '59.4600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '59.4600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18879, 138, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '27.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0600', '0.0000', '2021-06-19', 'received', '19.0200', '19.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18880, 138, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.0500', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.1500', '0.0000', '2021-06-19', 'received', '9.0500', '9.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18881, 138, NULL, 2329, '93880955', 'EXFORGE HCT 5/160/12.5MG', NULL, '30.1300', '40.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.5200', '4.0000', '2021-06-19', 'received', '30.1300', '30.1300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '30.1300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18882, 138, NULL, 1534, 'PR-247', 'PINEK 20MG TAB', NULL, '0.9800', '1.3000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.8000', '10.0000', '2021-06-19', 'received', '0.9800', '0.9800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '0.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18883, 138, NULL, 1535, 'PR-248', 'PINEK XL 30MG TAB', NULL, '7.4900', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.4700', '3.0000', '2021-06-19', 'received', '7.4900', '7.4900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18884, 138, NULL, 2623, '01976331', 'BENDROFLUZIDE 2.5MG UK CRESCENT', NULL, '4.3000', '5.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.5000', '5.0000', '2021-06-19', 'received', '4.3000', '4.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18885, 138, NULL, 1373, '1227808', 'TEGRETOL CR 200MG', NULL, '8.1000', '10.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '5.0000', '2021-06-19', 'received', '8.1000', '8.1000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18886, 138, NULL, 1774, 'PR-487', 'ZESTRIL 10MG LISINOPRIL', NULL, '3.3000', '4.3000', '28.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.4000', '28.0000', '2021-06-19', 'received', '3.3000', '3.3000', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '3.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18887, 138, NULL, 1776, '5000455005204', 'ZESTRIL TABS 20MG LISINOPRIL', NULL, '4.7000', '6.2000', '28.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '131.6000', '28.0000', '2021-06-19', 'received', '4.7000', '4.7000', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '4.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18888, 138, NULL, 2493, '5060057401095', 'FUROSEMIDE TAB 40MG UK ALMUS', NULL, '6.5000', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '5.0000', '2021-06-19', 'received', '6.5000', '6.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18889, 138, NULL, 1553, 'PR-266', 'LIPITOR 20MG', NULL, '191.9900', '253.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '191.9900', '1.0000', '2021-06-19', 'received', '191.9900', '191.9900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '191.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18890, 138, NULL, 1552, 'PR-265', 'LIPITOR 10MG', NULL, '116.1000', '153.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.1000', '1.0000', '2021-06-19', 'received', '116.1000', '116.1000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '116.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18891, 138, NULL, 1681, 'PR-394', 'GALVUS 50MG', NULL, '36.8000', '48.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.2000', '4.0000', '2021-06-19', 'received', '36.8000', '36.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '36.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18892, 138, NULL, 2356, '42767945', 'DIABETONE TABS UK', NULL, '38.9800', '51.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '155.9200', '4.0000', '2021-06-19', 'received', '38.9800', '38.9800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '38.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18893, 138, NULL, 2576, '59885419', 'DIAMICRON MR 60 MG TAB', NULL, '54.0000', '71.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '2.0000', '2021-06-19', 'received', '54.0000', '54.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '54.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18894, 138, NULL, 1530, '4031571064159', 'METFORMIN DENK 1G', NULL, '28.7000', '38.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.1000', '0.0000', '2021-06-19', 'received', '28.7000', '28.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18895, 138, NULL, 1528, '4031571020445', 'METFORMIN DENK S00MG', NULL, '4.4000', '6.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '14.0000', '2021-06-19', 'received', '4.4000', '4.4000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '4.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18896, 138, NULL, 1459, 'PR-172', 'ZINNAT SUSP 125MG/100ML', NULL, '78.7400', '104.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.7400', '1.0000', '2021-06-19', 'received', '78.7400', '78.7400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '78.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18897, 138, NULL, 2276, '52459644', 'DALACIN C SYR', NULL, '55.1000', '73.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.1000', '1.0000', '2021-06-19', 'received', '55.1000', '55.1000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '55.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18898, 138, NULL, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', NULL, '18.7000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.1000', '0.0000', '2021-06-19', 'received', '18.7000', '18.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18899, 138, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '17.8000', '25.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.4000', '3.0000', '2021-06-19', 'received', '17.8000', '17.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18900, 138, NULL, 2722, '88455380', 'AZITEX SUSP 200MG', NULL, '8.6900', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0700', '0.0000', '2021-06-19', 'received', '8.6900', '8.6900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18901, 138, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '10.8700', '14.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.4800', '0.0000', '2021-06-19', 'received', '10.8700', '10.8700', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '10.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18902, 138, NULL, 2552, '17018789', 'ORELOX SUSP', NULL, '95.8900', '127.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.8900', '1.0000', '2021-06-19', 'received', '95.8900', '95.8900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '95.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18903, 138, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '140.0000', '190.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '420.0000', '0.0000', '2021-06-19', 'received', '140.0000', '140.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18904, 138, NULL, 1510, '009', 'CIPROLEX EYE & EAR DROP', NULL, '8.8600', '12.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.3000', '5.0000', '2021-06-19', 'received', '8.8600', '8.8600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18905, 138, NULL, 2335, '90387267', 'EPICROM EYE DROP 2%', NULL, '13.9000', '18.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.7000', '3.0000', '2021-06-19', 'received', '13.9000', '13.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18906, 138, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '13.5000', '20.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2021-06-19', 'received', '13.5000', '13.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18907, 138, NULL, 1517, 'PR-230', 'NEOCORT EYE DROP', NULL, '23.6400', '31.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.9200', '3.0000', '2021-06-19', 'received', '23.6400', '23.6400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18908, 138, NULL, 1506, '7612797504765', 'MAXITROL EYE DROP', NULL, '16.2500', '21.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.7500', '3.0000', '2021-06-19', 'received', '16.2500', '16.2500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18909, 138, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '13.6300', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8900', '0.0000', '2021-06-19', 'received', '13.6300', '13.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.6300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18910, 138, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.5000', '2.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '8.0000', '2021-06-19', 'received', '1.5000', '1.5000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18911, 138, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.2000', '3.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '0.0000', '2021-06-19', 'received', '2.2000', '2.2000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18912, 138, NULL, 1616, 'PR-329', 'GACET SUPP 250MG', NULL, '6.8900', '7.5000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '689.0000', '98.0000', '2021-06-19', 'received', '6.8900', '6.8900', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '6.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18913, 138, NULL, 1455, 'PR-168', 'Gacet125MP KIACK006', NULL, '4.0000', '7.0000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '400.0000', '100.0000', '2021-06-19', 'received', '4.0000', '4.0000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18914, 138, NULL, 2085, '35811477', 'PARA DENK 125MG', NULL, '1.4000', '1.8000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '0.0000', '2021-06-19', 'received', '1.4000', '1.4000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18915, 138, NULL, 1450, 'PR-163', 'Lofnac 100 supp WABG035', NULL, '0.8900', '1.2000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.8000', '0.0000', '2021-06-19', 'received', '0.8900', '0.8900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18916, 138, NULL, 1527, '8904159609416', 'PREGASAFE 75MG TAB', NULL, '13.1000', '17.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.6000', '3.0000', '2021-06-19', 'received', '13.1000', '13.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '13.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18917, 138, NULL, 1793, '8850769017380', 'LIGABA 75MG(PREGABALIN)30\'S', NULL, '15.3000', '20.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '91.8000', '6.0000', '2021-06-19', 'received', '15.3000', '15.3000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '15.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18918, 138, NULL, 1593, 'PR-306', 'LYRICA 75MG', NULL, '5.9000', '8.7000', '56.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '330.4000', '0.0000', '2021-06-19', 'received', '5.9000', '5.9000', '56.0000', NULL, NULL, 1, 'pc', '56.0000', NULL, NULL, NULL, NULL, '5.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18919, 138, NULL, 1478, '8906087940128', 'IMPRESSER CAPS', NULL, '21.2000', '28.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.8000', '2.0000', '2021-06-19', 'received', '21.2000', '21.2000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '21.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18920, 138, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.0000', '3.0000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-06-19', 'received', '2.0000', '2.0000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18921, 138, NULL, 1564, '3838989544225', 'TADOL 100MG', NULL, '2.6000', '4.0000', '90.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '234.0000', '90.0000', '2021-06-19', 'received', '2.6000', '2.6000', '90.0000', NULL, NULL, 1, 'pc', '90.0000', NULL, NULL, NULL, NULL, '2.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18922, 138, NULL, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', NULL, '20.0000', '26.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-06-19', 'received', '20.0000', '20.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18923, 138, NULL, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', NULL, '2.4000', '3.6000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '0.0000', '2021-06-19', 'received', '2.4000', '2.4000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18924, 138, NULL, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', NULL, '1.8000', '2.5000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '30.0000', '2021-06-19', 'received', '1.8000', '1.8000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18925, 138, NULL, 1502, '8850769018998', 'GOFEX400MG', NULL, '7.8000', '10.5000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.6000', '9.0000', '2021-06-19', 'received', '7.8000', '7.8000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '7.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18926, 138, NULL, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', NULL, '24.9000', '33.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.7000', '0.0000', '2021-06-19', 'received', '24.9000', '24.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '24.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18927, NULL, 90, 2866, '6922049789736', 'CALCIUM/IRON/ZINC CHEWABLE TABLETS', NULL, '0.8800', '0.0000', '100.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '88.0000', '100.0000', '2021-07-15', 'received', '0.8800', '0.8800', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18928, NULL, 90, 2866, '6922049789736', 'CALCIUM/IRON/ZINC CHEWABLE TABLETS', NULL, '0.8800', '0.0000', '100.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '88.0000', '100.0000', '2021-07-15', 'received', '0.8800', '0.8800', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18929, NULL, 90, 2809, '57353674', 'LONGRICH TOOTHPASTE', NULL, '28.0000', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '140.0000', '5.0000', '2021-07-15', 'received', '28.0000', '28.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18930, NULL, 90, 2135, '42431074', 'POSTINOR LOCAL', NULL, '2.5000', '0.0000', '50.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '125.0000', '52.0000', '2021-07-15', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18931, NULL, 90, 2750, '42386324', 'PARAMOL SUPP 500MG', NULL, '0.5500', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.5000', '10.0000', '2021-07-15', 'received', '0.5500', '0.5500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18932, NULL, 90, 2751, '12649302', 'PARAMOL SUPP 250MG', NULL, '0.3600', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '3.6000', '10.0000', '2021-07-15', 'received', '0.3600', '0.3600', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18933, NULL, 90, 2752, '26752801', 'PARAMOL SUPP 125MG', NULL, '0.3000', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '3.0000', '10.0000', '2021-07-15', 'received', '0.3000', '0.3000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18934, NULL, 90, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '5.5000', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '55.0000', '9.0000', '2021-07-15', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18935, NULL, 90, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.8300', '0.0000', '50.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '441.5000', '50.0000', '2021-07-15', 'received', '8.8300', '8.8300', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18936, NULL, 90, 2753, '76555932', 'CREPE BANDAGE 6\'', NULL, '4.8000', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '4.0000', '2021-07-15', 'received', '4.8000', '4.8000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18937, NULL, 90, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', NULL, '3.7000', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '18.5000', '5.0000', '2021-07-15', 'received', '3.7000', '3.7000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18938, NULL, 90, 2754, '10737671', 'PLASTER STRIPS 100\'S', NULL, '0.0800', '0.0000', '100.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '8.0000', '99.0000', '2021-07-15', 'received', '0.0800', '0.0800', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18939, NULL, 90, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', NULL, '5.3000', '0.0000', '100.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '530.0000', '90.0000', '2021-07-15', 'received', '5.3000', '5.3000', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18940, NULL, 90, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', NULL, '28.2400', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '282.4000', '10.0000', '2021-07-15', 'received', '28.2400', '28.2400', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18941, NULL, 90, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', NULL, '27.0000', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '135.0000', '4.0000', '2021-07-15', 'received', '27.0000', '27.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18942, NULL, NULL, 1525, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18943, 139, NULL, 2778, '035046004323', 'COQ10 100MG CAPS (WINDML)', NULL, '89.4000', '120.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '447.0000', '0.0000', '2021-06-22', 'received', '89.4000', '89.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '89.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18944, 139, NULL, 2779, '087701408182', 'FISH OIL (GOOD NIEGHOUR PHAR)', NULL, '26.2800', '60.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '131.4000', '0.0000', '2021-06-22', 'received', '26.2800', '26.2800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '26.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18945, 139, NULL, 2781, '087701407253', 'VITAMIN A (GOOD NEIGHBOUR PHARM)', NULL, '31.3200', '65.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '156.6000', '0.0000', '2021-06-22', 'received', '31.3200', '31.3200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '31.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18946, 139, NULL, 2780, '016500586975', 'ONE A DAY WOMEN TABLET 60', NULL, '52.0200', '110.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.1000', '0.0000', '2021-06-22', 'received', '52.0200', '52.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '52.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18947, 139, NULL, 2782, '740985253441', 'PUREMARK VEGAN PROTEIN POWER 160Z', NULL, '91.8000', '200.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '275.4000', '0.0000', '2021-06-22', 'received', '91.8000', '91.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '91.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18948, 139, NULL, 2783, '309042085601', 'VITAMIN A (MAJOR)', NULL, '17.9400', '56.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.7000', '0.0000', '2021-06-22', 'received', '17.9400', '17.9400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '17.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18949, 139, NULL, 2784, '074312304217', 'ADULT  MULTIVITAMIN GUMMIES', NULL, '53.4600', '110.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '267.3000', '0.0000', '2021-06-22', 'received', '53.4600', '53.4600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '53.4600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18950, 139, NULL, 2785, '074312028717', 'B COMPLEX SUBLINGUAL (NATURES BOUNTY)', NULL, '41.0400', '80.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '205.2000', '0.0000', '2021-06-22', 'received', '41.0400', '41.0400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '41.0400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18951, 139, NULL, 2786, '030768037208', 'FISH OIL (SUNDOWN)', NULL, '40.4400', '80.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '202.2000', '0.0000', '2021-06-22', 'received', '40.4400', '40.4400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '40.4400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18952, 139, NULL, 2787, '030768006761', 'FOLATE FOLIC ACID (SUNDOWN)', NULL, '16.0200', '35.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.2000', '0.0000', '2021-06-22', 'received', '16.0200', '16.0200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '16.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18953, 139, NULL, 2788, '087701408304', 'ECHINACEA COMPLEX (GOOD NEIGHOR PHARM)', NULL, '33.6600', '65.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '168.3000', '0.0000', '2021-06-22', 'received', '33.6600', '33.6600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '33.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18954, 139, NULL, 2789, '016500586951', 'ONE A DAY MEN TABLET 60', NULL, '52.0200', '110.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.1000', '0.0000', '2021-06-22', 'received', '52.0200', '52.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '52.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18955, 139, NULL, 2790, '074312333903', 'VALERIAN ROOT (NATURE BOUNTY)', NULL, '39.9000', '80.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '199.5000', '0.0000', '2021-06-22', 'received', '39.9000', '39.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '39.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18956, 139, NULL, 2791, '074312035951', 'VIT B12 (NATURE BOUNTY)', NULL, '41.2200', '70.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '206.1000', '0.0000', '2021-06-22', 'received', '41.2200', '41.2200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '41.2200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18957, 139, NULL, 2792, '311845162618', 'VITAMIN K2 (MASON)', NULL, '38.2800', '70.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '191.4000', '0.0000', '2021-06-22', 'received', '38.2800', '38.2800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '38.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18958, 139, NULL, 2793, '369618042018', 'VITAMIN D3 (RELIABLE)', NULL, '31.6200', '60.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.2400', '0.0000', '2021-06-22', 'received', '31.6200', '31.6200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '31.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18959, 139, NULL, 2794, '740985275290', 'CALCIUM 600+D3 CAP (21 CENTURY)', NULL, '17.8200', '60.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '178.2000', '0.0000', '2021-06-22', 'received', '17.8200', '17.8200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '17.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18960, 139, NULL, 2795, '311845136312', 'COD LIVER OIL (MASONS)', NULL, '35.5800', '70.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '177.9000', '0.0000', '2021-06-22', 'received', '35.5800', '35.5800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '35.5800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18961, 139, NULL, 2796, '087701407864', 'HEALTHY EYES (GOOD NEIGHBOR PHARM)', NULL, '30.7800', '60.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '184.6800', '0.0000', '2021-06-22', 'received', '30.7800', '30.7800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '30.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18962, 139, NULL, 2798, '310742011197', 'MENTHOLATUM NIGHT VAPOUR RUB', NULL, '28.3800', '55.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '141.9000', '0.0000', '2021-06-22', 'received', '28.3800', '28.3800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '28.3800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18963, 139, NULL, 2799, '074312535451', 'OPTIMAL SOLUTIONS HAIR-SKIN-NAILS', NULL, '56.1600', '120.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.1600', '1.0000', '2021-06-22', 'received', '56.1600', '56.1600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '56.1600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18964, 139, NULL, 2800, '740985212288', 'SAW PALMETTO (21 CENTURY)', NULL, '45.3600', '90.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '226.8000', '0.0000', '2021-06-22', 'received', '45.3600', '45.3600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '45.3600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18965, 139, NULL, 2801, '358914800446', 'SCANDISHAKE POWER  VANILLA', NULL, '65.8800', '120.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '329.4000', '0.0000', '2021-06-22', 'received', '65.8800', '65.8800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '65.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18966, 139, NULL, 2802, '074312008108', 'VIT E OIL (NATURE BOUNTY)', NULL, '52.2000', '80.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '261.0000', '0.0000', '2021-06-22', 'received', '52.2000', '52.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '52.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18967, 139, NULL, 2797, '087701408144', 'MELATONIN (SUNDOWN)', NULL, '27.4800', '55.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '137.4000', '2.0000', '2021-06-22', 'received', '27.4800', '27.4800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '27.4800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18968, 139, NULL, 2804, '311845162458', 'ALPHA LIPOIC ACID 200MG CAPS (MASON)', NULL, '51.7800', '80.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '258.9000', '2.0000', '2021-06-22', 'received', '51.7800', '51.7800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '51.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18969, 139, NULL, 2805, '031604012861', 'CHOLESTOFF CAPS (NATURE MADE)', NULL, '70.7400', '120.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '353.7000', '2.0000', '2021-06-22', 'received', '70.7400', '70.7400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '70.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18970, 139, NULL, 2927, '61707442', 'FERROUS SULFATE (MAJOR)', NULL, '14.7000', '40.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '294.0000', '10.0000', '2021-06-22', 'received', '14.7000', '14.7000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '14.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18971, 139, NULL, 2928, '36920821', 'FISH OIL (MAJOR)', NULL, '42.3000', '100.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '211.5000', '2.0000', '2021-06-22', 'received', '42.3000', '42.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '42.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18972, 139, NULL, 2929, '740985212493', 'GINGKO BILOBA', NULL, '46.7300', '90.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.4600', '0.0000', '2021-06-22', 'received', '46.7300', '46.7300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '46.7300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18973, 139, NULL, 2930, '54193814', 'MELATONIN (GOOD NEIGHBOR PHARM)', NULL, '37.7400', '70.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '188.7000', '2.0000', '2021-06-22', 'received', '37.7400', '37.7400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '37.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18974, 139, NULL, 2931, '98473972', 'LUTEIN 6MG SOFTGEL (MASON0', NULL, '38.0400', '70.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '228.2400', '3.0000', '2021-06-22', 'received', '38.0400', '38.0400', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '38.0400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18975, 139, NULL, 2867, '035046003340', 'OMEGA 3 1000MG (WINDMILL)', NULL, '61.9200', '100.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '309.6000', '2.0000', '2021-06-22', 'received', '61.9200', '61.9200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '61.9200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18976, 139, NULL, 2932, '91140446', 'ONE A DAY ADV MEN 50+ TAB 65CT', NULL, '62.0200', '120.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '310.1000', '2.0000', '2021-06-22', 'received', '62.0200', '62.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '62.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18977, NULL, NULL, 2797, '087701408144', 'MELATONIN (SUNDOWN)', NULL, '27.4800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '82.4400', '0.0000', '2021-07-16', 'received', '27.4800', '27.4800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19012, NULL, NULL, 1525, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19013, NULL, NULL, 1686, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19014, NULL, NULL, 2105, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-9.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19015, NULL, NULL, 2804, '311845162458', 'ALPHA LIPOIC ACID 200MG CAPS (MASON)', NULL, '51.7800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '155.3400', '0.0000', '2021-07-16', 'received', '51.7800', '51.7800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19016, NULL, NULL, 2805, '031604012861', 'CHOLESTOFF CAPS (NATURE MADE)', NULL, '70.7400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '212.2200', '0.0000', '2021-07-16', 'received', '70.7400', '70.7400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19017, NULL, NULL, 2927, '61707442', 'FERROUS SULFATE (MAJOR)', NULL, '14.7000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '147.0000', '0.0000', '2021-07-16', 'received', '14.7000', '14.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19018, NULL, NULL, 2928, '36920821', 'FISH OIL (MAJOR)', NULL, '42.3000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '126.9000', '0.0000', '2021-07-16', 'received', '42.3000', '42.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19019, NULL, NULL, 2929, '740985212493', 'GINGKO BILOBA', NULL, '46.7300', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '93.4600', '0.0000', '2021-07-16', 'received', '46.7300', '46.7300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19020, NULL, NULL, 2930, '54193814', 'MELATONIN (GOOD NEIGHBOR PHARM)', NULL, '37.7400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '113.2200', '0.0000', '2021-07-16', 'received', '37.7400', '37.7400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19021, NULL, NULL, 2931, '98473972', 'LUTEIN 6MG SOFTGEL (MASON0', NULL, '38.0400', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '114.1200', '0.0000', '2021-07-16', 'received', '38.0400', '38.0400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19022, NULL, NULL, 2867, '035046003340', 'OMEGA 3 1000MG (WINDMILL)', NULL, '61.9200', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '185.7600', '0.0000', '2021-07-16', 'received', '61.9200', '61.9200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19023, NULL, NULL, 2932, '91140446', 'ONE A DAY ADV MEN 50+ TAB 65CT', NULL, '62.0200', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '186.0600', '0.0000', '2021-07-16', 'received', '62.0200', '62.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19024, NULL, 91, 2932, '91140446', 'ONE A DAY ADV MEN 50+ TAB 65CT', NULL, '62.0200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '186.0600', '3.0000', '2021-07-16', 'received', '62.0200', '62.0200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19025, NULL, 91, 2867, '035046003340', 'OMEGA 3 1000MG (WINDMILL)', NULL, '61.9200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '185.7600', '2.0000', '2021-07-16', 'received', '61.9200', '61.9200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19026, NULL, 91, 2931, '98473972', 'LUTEIN 6MG SOFTGEL (MASON0', NULL, '38.0400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '114.1200', '3.0000', '2021-07-16', 'received', '38.0400', '38.0400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19027, NULL, 91, 2930, '54193814', 'MELATONIN (GOOD NEIGHBOR PHARM)', NULL, '37.7400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '113.2200', '3.0000', '2021-07-16', 'received', '37.7400', '37.7400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19028, NULL, 91, 2929, '740985212493', 'GINGKO BILOBA', NULL, '46.7300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '93.4600', '1.0000', '2021-07-16', 'received', '46.7300', '46.7300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19029, NULL, 91, 2928, '36920821', 'FISH OIL (MAJOR)', NULL, '42.3000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '126.9000', '2.0000', '2021-07-16', 'received', '42.3000', '42.3000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19030, NULL, 91, 2927, '61707442', 'FERROUS SULFATE (MAJOR)', NULL, '14.7000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '147.0000', '10.0000', '2021-07-16', 'received', '14.7000', '14.7000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19031, NULL, 91, 2805, '031604012861', 'CHOLESTOFF CAPS (NATURE MADE)', NULL, '70.7400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '212.2200', '3.0000', '2021-07-16', 'received', '70.7400', '70.7400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19032, NULL, 91, 2804, '311845162458', 'ALPHA LIPOIC ACID 200MG CAPS (MASON)', NULL, '51.7800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '155.3400', '2.0000', '2021-07-16', 'received', '51.7800', '51.7800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19033, NULL, 91, 2802, '074312008108', 'VIT E OIL (NATURE BOUNTY)', NULL, '52.2000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '156.6000', '3.0000', '2021-07-16', 'received', '52.2000', '52.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19034, NULL, 91, 2801, '358914800446', 'SCANDISHAKE POWER  VANILLA', NULL, '65.8800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '197.6400', '3.0000', '2021-07-16', 'received', '65.8800', '65.8800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19035, NULL, 91, 2800, '740985212288', 'SAW PALMETTO (21 CENTURY)', NULL, '45.3600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '136.0800', '3.0000', '2021-07-16', 'received', '45.3600', '45.3600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19036, NULL, 91, 2784, '074312304217', 'ADULT  MULTIVITAMIN GUMMIES', NULL, '53.4600', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '53.4600', '1.0000', '2021-07-16', 'received', '53.4600', '53.4600', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19037, NULL, 91, 2798, '310742011197', 'MENTHOLATUM NIGHT VAPOUR RUB', NULL, '28.3800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '85.1400', '3.0000', '2021-07-16', 'received', '28.3800', '28.3800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19038, NULL, 91, 2796, '087701407864', 'HEALTHY EYES (GOOD NEIGHBOR PHARM)', NULL, '30.7800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '92.3400', '2.0000', '2021-07-16', 'received', '30.7800', '30.7800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19039, NULL, 91, 2795, '311845136312', 'COD LIVER OIL (MASONS)', NULL, '35.5800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '106.7400', '3.0000', '2021-07-16', 'received', '35.5800', '35.5800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19040, NULL, 91, 2794, '740985275290', 'CALCIUM 600+D3 CAP (21 CENTURY)', NULL, '17.8200', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '89.1000', '5.0000', '2021-07-16', 'received', '17.8200', '17.8200', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19041, NULL, 91, 2793, '369618042018', 'VITAMIN D3 (RELIABLE)', NULL, '31.6200', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '63.2400', '2.0000', '2021-07-16', 'received', '31.6200', '31.6200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19042, NULL, 91, 2792, '311845162618', 'VITAMIN K2 (MASON)', NULL, '38.2800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '114.8400', '3.0000', '2021-07-16', 'received', '38.2800', '38.2800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19043, NULL, 91, 2791, '074312035951', 'VIT B12 (NATURE BOUNTY)', NULL, '41.2200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '123.6600', '3.0000', '2021-07-16', 'received', '41.2200', '41.2200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19044, NULL, 91, 2790, '074312333903', 'VALERIAN ROOT (NATURE BOUNTY)', NULL, '39.9000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '119.7000', '3.0000', '2021-07-16', 'received', '39.9000', '39.9000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19045, NULL, 91, 2789, '016500586951', 'ONE A DAY MEN TABLET 60', NULL, '52.0200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '156.0600', '3.0000', '2021-07-16', 'received', '52.0200', '52.0200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19046, NULL, 91, 2788, '087701408304', 'ECHINACEA COMPLEX (GOOD NEIGHOR PHARM)', NULL, '33.6600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '100.9800', '3.0000', '2021-07-16', 'received', '33.6600', '33.6600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19047, NULL, 91, 2787, '030768006761', 'FOLATE FOLIC ACID (SUNDOWN)', NULL, '16.0200', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '80.1000', '4.0000', '2021-07-16', 'received', '16.0200', '16.0200', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19048, NULL, 91, 2786, '030768037208', 'FISH OIL (SUNDOWN)', NULL, '40.4400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '121.3200', '2.0000', '2021-07-16', 'received', '40.4400', '40.4400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19049, NULL, 91, 2785, '074312028717', 'B COMPLEX SUBLINGUAL (NATURES BOUNTY)', NULL, '41.0400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '123.1200', '3.0000', '2021-07-16', 'received', '41.0400', '41.0400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19050, NULL, 91, 2784, '074312304217', 'ADULT  MULTIVITAMIN GUMMIES', NULL, '53.4600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '160.3800', '3.0000', '2021-07-16', 'received', '53.4600', '53.4600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19051, NULL, 91, 2783, '309042085601', 'VITAMIN A (MAJOR)', NULL, '17.9400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '53.8200', '3.0000', '2021-07-16', 'received', '17.9400', '17.9400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19052, NULL, 91, 2782, '740985253441', 'PUREMARK VEGAN PROTEIN POWER 160Z', NULL, '91.8000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '183.6000', '2.0000', '2021-07-16', 'received', '91.8000', '91.8000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19053, NULL, 91, 2780, '016500586975', 'ONE A DAY WOMEN TABLET 60', NULL, '52.0200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '156.0600', '2.0000', '2021-07-16', 'received', '52.0200', '52.0200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19054, NULL, 91, 2781, '087701407253', 'VITAMIN A (GOOD NEIGHBOUR PHARM)', NULL, '31.3200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '93.9600', '3.0000', '2021-07-16', 'received', '31.3200', '31.3200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19055, NULL, 91, 2779, '087701408182', 'FISH OIL (GOOD NIEGHOUR PHAR)', NULL, '26.2800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '78.8400', '3.0000', '2021-07-16', 'received', '26.2800', '26.2800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19056, NULL, 91, 2778, '035046004323', 'COQ10 100MG CAPS (WINDML)', NULL, '89.4000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '268.2000', '2.0000', '2021-07-16', 'received', '89.4000', '89.4000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19057, NULL, 91, 2797, '087701408144', 'MELATONIN (SUNDOWN)', NULL, '27.4800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '82.4400', '3.0000', '2021-07-16', 'received', '27.4800', '27.4800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19058, NULL, 115, 1860, '8901138150891', 'PILEX OINTMENT', NULL, '21.5000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '64.5000', '3.0000', '2021-07-16', 'received', '21.5000', '21.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19059, NULL, NULL, 2245, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19060, NULL, NULL, 2777, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19061, NULL, NULL, 2273, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19062, NULL, NULL, 1649, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19063, NULL, NULL, 2410, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19178, NULL, NULL, 2166, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19248, 134, NULL, 2497, '26571538', 'CALPOl 6+', NULL, '36.6800', '48.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.3600', '0.0000', '2021-06-17', 'received', '36.6800', '36.6800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.6800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19249, 134, NULL, 1753, 'PR-466', 'LIVERTONE JUNIOR SYRUP 125ML', NULL, '4.6900', '6.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0700', '0.0000', '2021-06-17', 'received', '4.6900', '4.6900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19250, 134, NULL, 2274, '55192131', 'STOPKOFF EXP CHN', NULL, '3.9800', '6.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.9400', '1.0000', '2021-06-17', 'received', '3.9800', '3.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19251, 134, NULL, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', NULL, '3.9800', '6.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.9400', '0.0000', '2021-06-17', 'received', '3.9800', '3.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19252, 134, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '4.2000', '5.5000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '126.0000', '0.0000', '2021-06-17', 'received', '4.2000', '4.2000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '4.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19253, 134, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.6900', '7.0000', '9.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.2100', '0.0000', '2021-06-17', 'received', '4.6900', '4.6900', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '4.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19254, 134, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '32.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.7300', '0.0000', '2021-06-17', 'received', '23.9100', '23.9100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19255, 134, NULL, 1826, 'PR-539', 'SYRINGES & NEES (KOREA) 5ML', NULL, '0.2600', '0.5000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-06-17', 'received', '0.2600', '0.2600', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.2600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19256, 134, NULL, 1341, 'PR-54', 'COTTON WOOL 500G', NULL, '18.7900', '25.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.3700', '0.0000', '2021-06-17', 'received', '18.7900', '18.7900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.7900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19257, 134, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '5.9400', '8.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4000', '0.0000', '2021-06-17', 'received', '5.9400', '5.9400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19258, 134, NULL, 1492, '5017848249589', 'NERVE & BONE LINIMENT', NULL, '10.4400', '14.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.3200', '0.0000', '2021-06-17', 'received', '10.4400', '10.4400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.4400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19259, 134, NULL, 1848, 'PR-561', 'DICLO INJ TROGE', NULL, '0.4200', '1.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2021-06-17', 'received', '0.4200', '0.4200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.4200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19260, 134, NULL, 1369, 'PR-82', 'NAPROX EC TABS ECL', NULL, '6.0000', '8.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-06-17', 'received', '6.0000', '6.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19261, 134, NULL, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', NULL, '1.0900', '1.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.8000', '0.0000', '2021-06-17', 'received', '1.0900', '1.0900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.0900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19262, 134, NULL, 2734, '24454054', 'SECNIDAZOLE TAB IG (LAVINA)', NULL, '3.5000', '5.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '0.0000', '2021-06-17', 'received', '3.5000', '3.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19263, 134, NULL, 2735, '67749877', 'SWEETEX TABS 300\'S', NULL, '13.7800', '18.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.3400', '0.0000', '2021-06-17', 'received', '13.7800', '13.7800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19264, 134, NULL, 2733, '55537393', 'COTTON WOOL 200G', NULL, '7.5000', '10.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-06-17', 'received', '7.5000', '7.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19265, 134, NULL, 2732, '47378626', 'KY JELLY 50ML', NULL, '29.8900', '40.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '89.6700', '0.0000', '2021-06-17', 'received', '29.8900', '29.8900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '29.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19266, 134, NULL, 2731, '73085575', 'LAVINAC (DICLOFENAC) GEL 30G', NULL, '2.8500', '5.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.7000', '0.0000', '2021-06-17', 'received', '2.8500', '2.8500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '2.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19267, 134, NULL, 2730, '70096024', 'ENAFEN (IBUPROFEN TAB 400MG', NULL, '1.2000', '2.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '48.0000', '2021-06-17', 'received', '1.2000', '1.2000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19268, 134, NULL, 2729, '08313778', 'KEFEN EXTRA 10MG TABS', NULL, '3.2900', '5.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.9000', '0.0000', '2021-06-17', 'received', '3.2900', '3.2900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19269, 134, NULL, 2728, '93373985', 'DICLOFEN TABS 50G', NULL, '0.8000', '1.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-06-17', 'received', '0.8000', '0.8000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19270, 134, NULL, 2727, '76580073', 'PARA TAB 30\' EXETER', NULL, '4.6800', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '0.0000', '2021-06-17', 'received', '4.6800', '4.6800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.6800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19271, 134, NULL, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '5.5000', '7.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '0.0000', '2021-06-17', 'received', '5.5000', '5.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19272, 134, NULL, 2361, '93787462', 'ASMANOL TABS 200', NULL, '0.4700', '0.6000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.7500', '0.0000', '2021-06-17', 'received', '0.4700', '0.4700', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.4700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19273, 134, NULL, 1833, 'PR-546', 'STUGERON TABS 50?S', NULL, '23.5300', '31.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5300', '0.0000', '2021-06-17', 'received', '23.5300', '23.5300', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '23.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19274, 134, NULL, 1582, '5017007016991', 'WARFARIN TAB 5MG 28\'', NULL, '9.3600', '12.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.3600', '0.0000', '2021-06-17', 'received', '9.3600', '9.3600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '9.3600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19275, 134, NULL, 2716, '65751241', 'FUROSEMIDE 40MG 28\' UK', NULL, '9.8500', '13.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.5500', '0.0000', '2021-06-17', 'received', '9.8500', '9.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19276, 134, NULL, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', NULL, '6.5900', '9.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7700', '0.0000', '2021-06-17', 'received', '6.5900', '6.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19277, 134, NULL, 1751, 'PR-464', 'METRO-Z TABS 20', NULL, '3.6900', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4500', '0.0000', '2021-06-17', 'received', '3.6900', '3.6900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19278, 134, NULL, 1761, 'PR-474', 'OMECET CAPS 100', NULL, '1.8200', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.2000', '0.0000', '2021-06-17', 'received', '1.8200', '1.8200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19279, 134, NULL, 1657, '5013548102087', 'MEDICATED CHARCOAL', NULL, '0.3900', '0.6000', '300.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.0000', '0.0000', '2021-06-17', 'received', '0.3900', '0.3900', '300.0000', NULL, NULL, 1, 'pc', '300.0000', NULL, NULL, NULL, NULL, '0.3900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19280, 134, NULL, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '97.7700', '129.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '293.3100', '0.0000', '2021-06-17', 'received', '97.7700', '97.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '97.7700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19281, 134, NULL, 1758, 'PR-471', 'PREGNACARE (19) CAPS 30', NULL, '45.3800', '55.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.1400', '0.0000', '2021-06-17', 'received', '45.3800', '45.3800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '45.3800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19282, 134, NULL, 1737, '8901040310307', 'PREGNACIN PLUS CAPS 60\'', NULL, '46.9800', '62.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.9600', '0.0000', '2021-06-17', 'received', '46.9800', '46.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '46.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19283, 134, NULL, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS', NULL, '65.9500', '43.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '197.8500', '0.0000', '2021-06-17', 'received', '65.9500', '65.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '65.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19284, 134, NULL, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', NULL, '29.4000', '39.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.6000', '0.0000', '2021-06-17', 'received', '29.4000', '29.4000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '29.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19285, 134, NULL, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', NULL, '2.9900', '4.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9000', '0.0000', '2021-06-17', 'received', '2.9900', '2.9900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19286, 134, NULL, 2545, '82780299', 'DREZ POWDER 10G', NULL, '5.8800', '8.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.6400', '0.0000', '2021-06-17', 'received', '5.8800', '5.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19287, 134, NULL, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', NULL, '4.3900', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9500', '0.0000', '2021-06-17', 'received', '4.3900', '4.3900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.3900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19288, 134, NULL, 1336, 'PR-49', 'RUBBING ALCOHOL -MUL TITI', NULL, '15.0000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-06-17', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19289, 134, NULL, 1332, 'PR-45', 'ZINC OXIDE PLATER ROLL 31CH', NULL, '7.5000', '10.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-06-17', 'received', '7.5000', '7.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19290, 134, NULL, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', NULL, '3.7000', '5.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4000', '0.0000', '2021-06-17', 'received', '3.7000', '3.7000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19291, 134, NULL, 2239, '5021265226085', 'PERFECTIL SKIN HAIR NAIL', NULL, '32.0000', '42.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.0000', '0.0000', '2021-06-17', 'received', '32.0000', '32.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '32.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19292, 134, NULL, 1625, '8906116211458', 'PROMAN CAPS 30\' EXETER', NULL, '16.7000', '22.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.8000', '0.0000', '2021-06-17', 'received', '16.7000', '16.7000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '16.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19293, 134, NULL, 1852, 'PR-565', 'EYECOPEN ACPS 30?S', NULL, '5.0000', '7.0000', '9.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-06-17', 'received', '5.0000', '5.0000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19294, 134, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '14.8000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4000', '0.0000', '2021-06-17', 'received', '14.8000', '14.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19295, 134, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '14.0500', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.1500', '0.0000', '2021-06-17', 'received', '14.0500', '14.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19296, 134, NULL, 2707, '54201128', 'HYDROLYTE LEMON', NULL, '0.5400', '1.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-06-17', 'received', '0.5400', '0.5400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.5400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19297, 134, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.0000', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-06-17', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19298, 134, NULL, 1755, 'PR-468', 'STOPKOF EXPT( CARBOCISTEINE)5?ULT 100ML', NULL, '5.5900', '7.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.3600', '0.0000', '2021-06-17', 'received', '5.5900', '5.5900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '5.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19299, 134, NULL, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', NULL, '14.8000', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.6000', '0.0000', '2021-06-17', 'received', '14.8000', '14.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19300, 134, NULL, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', NULL, '1.9000', '2.5000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '0.0000', '2021-06-17', 'received', '1.9000', '1.9000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19301, 134, NULL, 2740, '63100500', 'OMEXET (OMEPRAZOLE) CAPS 20MG', NULL, '9.0000', '12.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-06-17', 'received', '9.0000', '9.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19302, 134, NULL, 2739, '67011430', 'MYCOVIN TABLETS 125MG', NULL, '6.7000', '9.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '0.0000', '2021-06-17', 'received', '6.7000', '6.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19303, 134, NULL, 2738, '79121231', 'ENACIN -C (CLINDAMYCIN) 300MG CAPS', NULL, '7.6000', '12.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '76.0000', '0.0000', '2021-06-17', 'received', '7.6000', '7.6000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19304, 134, NULL, 2736, '34329770', 'THYROXINE TAB 100MG 28\' ECL', NULL, '8.9800', '12.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.9400', '0.0000', '2021-06-17', 'received', '8.9800', '8.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19305, 134, NULL, 2737, '65473411', 'FUROSEMIDE 20MG TABS 28\'', NULL, '6.1300', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.3900', '0.0000', '2021-06-17', 'received', '6.1300', '6.1300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.1300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19306, 134, NULL, 1627, 'PR-340', 'S/SEAS C.L.O CAPS 60\'', NULL, '46.2600', '61.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.5200', '0.0000', '2021-06-17', 'received', '46.2600', '46.2600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '46.2600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19307, 134, NULL, 2741, '91738635', 'NEUROBION TAB', NULL, '40.6400', '32.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.6400', '0.0000', '2021-06-17', 'received', '40.6400', '40.6400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '40.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19308, 134, NULL, 2742, '00544605', 'WL HERBAL LAXATIVE CAPS', NULL, '14.7400', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.4800', '0.0000', '2021-06-17', 'received', '14.7400', '14.7400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19309, 134, NULL, 2743, '85592195', 'ANTACID MIXTURE 200ML', NULL, '5.5900', '7.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.7700', '0.0000', '2021-06-17', 'received', '5.5900', '5.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19310, 134, NULL, 2744, '48964254', 'LAVESTEN VAG PESS', NULL, '9.9800', '13.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9400', '0.0000', '2021-06-17', 'received', '9.9800', '9.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19311, 134, NULL, 2734, '24454054', 'SECNIDAZOLE TAB IG (LAVINA)', NULL, '3.5000', '5.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.5000', '3.0000', '2021-06-17', 'received', '3.5000', '3.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19312, 134, NULL, 2735, '67749877', 'SWEETEX TABS 300\'S', NULL, '13.7800', '18.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.3400', '3.0000', '2021-06-17', 'received', '13.7800', '13.7800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19313, 134, NULL, 1755, 'PR-468', 'STOPKOF EXPT( CARBOCISTEINE)5?ULT 100ML', NULL, '5.5900', '7.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.7700', '0.0000', '2021-06-17', 'received', '5.5900', '5.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19314, 134, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '2.5000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.0000', '0.0000', '2021-06-17', 'received', '1.8600', '1.8600', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '1.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19315, 134, NULL, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '10.2000', '14.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '102.0000', '0.0000', '2021-06-17', 'received', '10.2000', '10.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19316, 134, NULL, 1542, '8902502108920', 'INFAV OINT', NULL, '14.7800', '20.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.9000', '0.0000', '2021-06-17', 'received', '14.7800', '14.7800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19317, 134, NULL, 2945, '07580425', 'CIPROLEX EYE OINTMENT', NULL, '9.0000', '12.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-06-17', 'received', '9.0000', '9.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19318, 134, NULL, 1495, '8904107901401', 'MYCOLEX POWDER', NULL, '17.7300', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4600', '2.0000', '2021-06-17', 'received', '17.7300', '17.7300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.7300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19319, 134, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '15.7500', '21.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.2500', '0.0000', '2021-06-17', 'received', '15.7500', '15.7500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19320, 134, NULL, 1609, '8904107900893', 'MYCOLEX CREAM 20G', NULL, '12.0000', '16.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-06-17', 'received', '12.0000', '12.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19321, 134, NULL, 2710, '09217360', 'AUGMENTIN SUSP 457MG', NULL, '40.3000', '53.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '241.8000', '0.0000', '2021-06-17', 'received', '40.3000', '40.3000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '40.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19322, NULL, 89, 1755, 'PR-468', 'STOPKOF EXPT( CARBOCISTEINE)5?ULT 100ML', NULL, '5.5900', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '16.7700', '2.0000', '2021-07-18', 'received', '5.5900', '5.5900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19323, NULL, 89, 2744, '48964254', 'LAVESTEN VAG PESS', NULL, '9.9800', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '29.9400', '3.0000', '2021-07-18', 'received', '9.9800', '9.9800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19324, NULL, 89, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', NULL, '1.9000', '0.0000', '40.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '76.0000', '37.0000', '2021-07-18', 'received', '1.9000', '1.9000', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19325, NULL, 89, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', NULL, '14.8000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '29.6000', '2.0000', '2021-07-18', 'received', '14.8000', '14.8000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19326, NULL, 89, 1755, 'PR-468', 'STOPKOF EXPT( CARBOCISTEINE)5?ULT 100ML', NULL, '5.5900', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '22.3600', '4.0000', '2021-07-18', 'received', '5.5900', '5.5900', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19327, NULL, 89, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '3.0000', '2021-07-18', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19328, NULL, 89, 2707, '54201128', 'HYDROLYTE LEMON', NULL, '0.5400', '0.0000', '50.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '50.0000', '2021-07-18', 'received', '0.5400', '0.5400', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19329, NULL, 89, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '14.0500', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '42.1500', '2.0000', '2021-07-18', 'received', '14.0500', '14.0500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19330, NULL, 89, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '14.8000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '44.4000', '2.0000', '2021-07-18', 'received', '14.8000', '14.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19331, NULL, 89, 1852, 'PR-565', 'EYECOPEN ACPS 30?S', NULL, '5.0000', '0.0000', '9.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '6.0000', '2021-07-18', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19332, NULL, 89, 1625, '8906116211458', 'PROMAN CAPS 30\' EXETER', NULL, '16.7000', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '66.8000', '4.0000', '2021-07-18', 'received', '16.7000', '16.7000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19333, NULL, 89, 2239, '5021265226085', 'PERFECTIL SKIN HAIR NAIL', NULL, '32.0000', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '128.0000', '4.0000', '2021-07-18', 'received', '32.0000', '32.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19334, NULL, 89, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', NULL, '3.7000', '0.0000', '12.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '44.4000', '11.0000', '2021-07-18', 'received', '3.7000', '3.7000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19335, NULL, 89, 1332, 'PR-45', 'ZINC OXIDE PLATER ROLL 31CH', NULL, '7.5000', '0.0000', '6.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '6.0000', '2021-07-18', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19336, NULL, 89, 1336, 'PR-49', 'RUBBING ALCOHOL -MUL TITI', NULL, '15.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '3.0000', '2021-07-18', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19337, NULL, 89, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', NULL, '4.3900', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '21.9500', '5.0000', '2021-07-18', 'received', '4.3900', '4.3900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19338, NULL, 89, 2545, '82780299', 'DREZ POWDER 10G', NULL, '5.8800', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '17.6400', '1.0000', '2021-07-18', 'received', '5.8800', '5.8800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19339, NULL, 89, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', NULL, '2.9900', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '14.9500', '5.0000', '2021-07-18', 'received', '2.9900', '2.9900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19340, NULL, 89, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', NULL, '2.9900', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '14.9500', '5.0000', '2021-07-18', 'received', '2.9900', '2.9900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19341, NULL, 89, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', NULL, '29.4000', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '117.6000', '4.0000', '2021-07-18', 'received', '29.4000', '29.4000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19342, NULL, 89, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', NULL, '29.4000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '29.4000', '1.0000', '2021-07-18', 'received', '29.4000', '29.4000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19343, NULL, 89, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS', NULL, '65.9500', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '197.8500', '3.0000', '2021-07-18', 'received', '65.9500', '65.9500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19344, NULL, 89, 1737, '8901040310307', 'PREGNACIN PLUS CAPS 60\'', NULL, '46.9800', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '93.9600', '2.0000', '2021-07-18', 'received', '46.9800', '46.9800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19345, NULL, 89, 1758, 'PR-471', 'PREGNACARE (19) CAPS 30', NULL, '42.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '126.0000', '2.0000', '2021-07-18', 'received', '42.0000', '42.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19346, NULL, 89, 2740, '63100500', 'OMEXET (OMEPRAZOLE) CAPS 20MG', NULL, '9.0000', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '3.0000', '2021-07-18', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19347, NULL, 89, 2739, '67011430', 'MYCOVIN TABLETS 125MG', NULL, '6.7000', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '67.0000', '8.0000', '2021-07-18', 'received', '6.7000', '6.7000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19348, NULL, 89, 2738, '79121231', 'ENACIN -C (CLINDAMYCIN) 300MG CAPS', NULL, '7.6000', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '76.0000', '10.0000', '2021-07-18', 'received', '7.6000', '7.6000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19349, NULL, 89, 2736, '34329770', 'THYROXINE TAB 100MG 28\' ECL', NULL, '8.9800', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '26.9400', '3.0000', '2021-07-18', 'received', '8.9800', '8.9800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19350, NULL, 89, 2361, '93787462', 'ASMANOL TABS 200', NULL, '0.4700', '0.0000', '25.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '11.7500', '25.0000', '2021-07-18', 'received', '0.4700', '0.4700', NULL, NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19351, NULL, 89, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', NULL, '5.5000', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '27.5000', '0.0000', '2021-07-18', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19352, NULL, 89, 2727, '76580073', 'PARA TAB 30\' EXETER', NULL, '4.6800', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '23.4000', '4.0000', '2021-07-18', 'received', '4.6800', '4.6800', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19353, NULL, 89, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', NULL, '1.0900', '0.0000', '20.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '21.8000', '10.0000', '2021-07-18', 'received', '1.0900', '1.0900', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19354, NULL, 89, 2728, '93373985', 'DICLOFEN TABS 50G', NULL, '0.8000', '0.0000', '50.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '48.0000', '2021-07-18', 'received', '0.8000', '0.8000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19355, NULL, 89, 2729, '08313778', 'KEFEN EXTRA 10MG TABS', NULL, '3.2900', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '32.9000', '9.0000', '2021-07-18', 'received', '3.2900', '3.2900', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19356, NULL, 89, 1369, 'PR-82', 'NAPROX EC TABS ECL', NULL, '6.0000', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '9.0000', '2021-07-18', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19357, NULL, 89, 1848, 'PR-561', 'DICLO INJ TROGE', NULL, '0.4200', '0.0000', '50.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '21.0000', '50.0000', '2021-07-18', 'received', '0.4200', '0.4200', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19358, NULL, 89, 2731, '73085575', 'LAVINAC (DICLOFENAC) GEL 30G', NULL, '2.8500', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.7000', '1.0000', '2021-07-18', 'received', '2.8500', '2.8500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19359, NULL, 89, 1492, '5017848249589', 'NERVE & BONE LINIMENT', NULL, '10.4400', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '31.3200', '3.0000', '2021-07-18', 'received', '10.4400', '10.4400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19360, NULL, 89, 2732, '47378626', 'KY JELLY 50ML', NULL, '29.8900', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '89.6700', '3.0000', '2021-07-18', 'received', '29.8900', '29.8900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19361, NULL, 89, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '5.9400', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '59.4000', '9.0000', '2021-07-18', 'received', '5.9400', '5.9400', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19362, NULL, 89, 2733, '55537393', 'COTTON WOOL 200G', NULL, '7.5000', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '75.0000', '9.0000', '2021-07-18', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19363, NULL, 89, 1341, 'PR-54', 'COTTON WOOL 500G', NULL, '18.7900', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '56.3700', '3.0000', '2021-07-18', 'received', '18.7900', '18.7900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19364, NULL, 89, 1833, 'PR-546', 'STUGERON TABS 50?S', NULL, '20.8000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '20.8000', '1.0000', '2021-07-18', 'received', '20.8000', '20.8000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19365, NULL, 89, 1582, '5017007016991', 'WARFARIN TAB 5MG 28\'', NULL, '9.3600', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '9.3600', '1.0000', '2021-07-18', 'received', '9.3600', '9.3600', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19366, NULL, 89, 2716, '65751241', 'FUROSEMIDE 40MG 28\' UK', NULL, '9.8500', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '29.5500', '3.0000', '2021-07-18', 'received', '9.8500', '9.8500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19367, NULL, 89, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', NULL, '6.5900', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '19.7700', '3.0000', '2021-07-18', 'received', '6.5900', '6.5900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19368, NULL, 89, 1751, 'PR-464', 'METRO-Z TABS 20', NULL, '3.6900', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '18.4500', '5.0000', '2021-07-18', 'received', '3.6900', '3.6900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19369, NULL, 89, 1761, 'PR-474', 'OMECET CAPS 100', NULL, '1.8200', '0.0000', '8.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '14.5600', '2.0000', '2021-07-18', 'received', '1.8200', '1.8200', NULL, NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19370, NULL, 89, 1761, 'PR-474', 'OMECET CAPS 100', NULL, '1.8200', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '3.6400', '2.0000', '2021-07-18', 'received', '1.8200', '1.8200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19371, NULL, 89, 1657, '5013548102087', 'MEDICATED CHARCOAL', NULL, '0.3900', '0.0000', '300.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '117.0000', '300.0000', '2021-07-18', 'received', '0.3900', '0.3900', NULL, NULL, NULL, 1, 'pc', '300.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19372, NULL, 89, 1663, '5021265221523', 'PREGNACARE PLUS', NULL, '87.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '261.0000', '3.0000', '2021-07-18', 'received', '87.0000', '87.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19373, NULL, 89, 2737, '65473411', 'FUROSEMIDE 20MG TABS 28\'', NULL, '6.1300', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '18.3900', '3.0000', '2021-07-18', 'received', '6.1300', '6.1300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19374, NULL, 89, 2741, '91738635', 'NEUROBION TAB', NULL, '40.6400', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '40.6400', '1.0000', '2021-07-18', 'received', '40.6400', '40.6400', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19375, NULL, 89, 1627, 'PR-340', 'S/SEAS C.L.O CAPS 60\'', NULL, '46.2600', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '92.5200', '2.0000', '2021-07-18', 'received', '46.2600', '46.2600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19376, NULL, 89, 2742, '00544605', 'WL HERBAL LAXATIVE CAPS', NULL, '14.7400', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '29.4800', '2.0000', '2021-07-18', 'received', '14.7400', '14.7400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19377, NULL, 89, 2743, '85592195', 'ANTACID MIXTURE 200ML', NULL, '5.5900', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '16.7700', '3.0000', '2021-07-18', 'received', '5.5900', '5.5900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19378, NULL, 89, 2497, '26571538', 'CALPOl 6+', NULL, '36.6800', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '73.3600', '2.0000', '2021-07-18', 'received', '36.6800', '36.6800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19379, NULL, 89, 1753, 'PR-466', 'LIVERTONE JUNIOR SYRUP 125ML', NULL, '4.6900', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '14.0700', '2.0000', '2021-07-18', 'received', '4.6900', '4.6900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19380, NULL, 89, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', NULL, '3.9800', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '11.9400', '1.0000', '2021-07-18', 'received', '3.9800', '3.9800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19381, NULL, 89, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '4.2000', '0.0000', '30.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '126.0000', '30.0000', '2021-07-18', 'received', '4.2000', '4.2000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19382, NULL, 89, 2734, '24454054', 'SECNIDAZOLE TAB IG (LAVINA)', NULL, '3.5000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '10.5000', '2.0000', '2021-07-18', 'received', '3.5000', '3.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19383, NULL, 89, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.6900', '0.0000', '9.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '42.2100', '8.0000', '2021-07-18', 'received', '4.6900', '4.6900', NULL, NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19384, NULL, 89, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '71.7300', '3.0000', '2021-07-18', 'received', '23.9100', '23.9100', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19385, NULL, 89, 1826, 'PR-539', 'SYRINGES & NEES (KOREA) 5ML', NULL, '0.2100', '0.0000', '100.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '21.0000', '100.0000', '2021-07-18', 'received', '0.2100', '0.2100', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19386, NULL, 89, 2735, '67749877', 'SWEETEX TABS 300\'S', NULL, '13.7800', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '41.3400', '3.0000', '2021-07-18', 'received', '13.7800', '13.7800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19387, NULL, 89, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '0.0000', '100.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '186.0000', '95.0000', '2021-07-18', 'received', '1.8600', '1.8600', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19388, NULL, 89, 1637, '4031571068959', 'DICLO DENK 100MG TAB', NULL, '10.2000', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '102.0000', '9.0000', '2021-07-18', 'received', '10.2000', '10.2000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19389, NULL, 89, 1542, '8902502108920', 'INFAV OINT', NULL, '14.7800', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '73.9000', '5.0000', '2021-07-18', 'received', '14.7800', '14.7800', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19390, NULL, 89, 2945, '07580425', 'CIPROLEX EYE OINTMENT', NULL, '9.0000', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '4.0000', '2021-07-18', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19391, NULL, 89, 1495, '8904107901401', 'MYCOLEX POWDER', NULL, '17.7300', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '35.4600', '2.0000', '2021-07-18', 'received', '17.7300', '17.7300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19392, NULL, 89, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '15.7500', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '47.2500', '3.0000', '2021-07-18', 'received', '15.7500', '15.7500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19393, NULL, 89, 1609, '8904107900893', 'MYCOLEX CREAM 20G', NULL, '12.0000', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '5.0000', '2021-07-18', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19394, NULL, 89, 2710, '09217360', 'AUGMENTIN SUSP 457MG', NULL, '40.3000', '0.0000', '6.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '241.8000', '6.0000', '2021-07-18', 'received', '40.3000', '40.3000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19676, NULL, NULL, 2166, '6036000078514', 'ULCERPLEX HERBAL', NULL, '5.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '16.5000', '0.0000', '2021-07-18', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19677, NULL, NULL, 1706, 'PR-419', 'PROCOLD SYR 100ml', NULL, '15.2700', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '30.5400', '0.0000', '2021-07-18', 'received', '15.2700', '15.2700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19678, NULL, NULL, 2624, '71356473', 'POLAR ICE', NULL, '15.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.0000', '0.0000', '2021-07-18', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19679, NULL, NULL, 1539, '9556100104618', 'O YES FEMININE WASH 200ML', NULL, '18.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '54.0000', '0.0000', '2021-07-18', 'received', '18.0000', '18.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19680, NULL, NULL, 2674, '7470263', 'LEMSIP COLD & FLU 5\'S', NULL, '3.6000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '36.0000', '0.0000', '2021-07-18', 'received', '3.6000', '3.6000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19681, NULL, NULL, 1710, 'PR-423', 'PRONALIN ADULT', NULL, '3.4300', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '10.2900', '0.0000', '2021-07-18', 'received', '3.4300', '3.4300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19682, NULL, NULL, 2156, '10421120', 'LEENA CAPS', NULL, '3.2500', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '32.5000', '0.0000', '2021-07-18', 'received', '3.2500', '3.2500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19683, NULL, NULL, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', NULL, '3.5000', '0.0000', '60.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '210.0000', '0.0000', '2021-07-18', 'received', '3.5000', '3.5000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19684, NULL, NULL, 2823, '78074241', 'IBEX CAPS', NULL, '11.2100', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '56.0500', '-4.0000', '2021-07-18', 'received', '11.2100', '11.2100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19685, NULL, NULL, 1498, 'PR-211', 'PAIN OFF TAB', NULL, '0.3300', '0.0000', '25.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '8.2500', '0.0000', '2021-07-18', 'received', '0.3300', '0.3300', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19686, NULL, NULL, 2946, '71670819', 'HEALTHLINK HAIR,NAIL&SPON TABS', NULL, '37.7900', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '75.5800', '0.0000', '2021-07-18', 'received', '37.7900', '37.7900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19753, 146, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '4.7200', '7.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '0.0000', '2021-06-27', 'received', '4.7200', '4.7200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19754, 146, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '4.5300', '7.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.6500', '0.0000', '2021-06-27', 'received', '4.5300', '4.5300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19755, 146, NULL, 1788, 'PR-501', 'KOFFEX SYR CHILD EXP', NULL, '4.5000', '6.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '0.0000', '2021-06-27', 'received', '4.5000', '4.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19756, 146, NULL, 1706, 'PR-419', 'PROCOLD SYR 100ml', NULL, '15.2700', '21.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.5400', '0.0000', '2021-06-27', 'received', '15.2700', '15.2700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.2700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19757, 146, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.5100', '5.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.2000', '0.0000', '2021-06-27', 'received', '3.5100', '3.5100', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.5100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19758, 146, NULL, 2624, '71356473', 'POLAR ICE', NULL, '15.0000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-06-27', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19759, 146, NULL, 1640, 'PR-353', 'HISTAZINE SYR', NULL, '2.6500', '3.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.2500', '2.0000', '2021-06-27', 'received', '2.6500', '2.6500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19760, 146, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '12.2000', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6000', '0.0000', '2021-06-27', 'received', '12.2000', '12.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19761, 146, NULL, 1549, '610074245209', 'LAVET', NULL, '21.1300', '28.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.3900', '0.0000', '2021-06-27', 'received', '21.1300', '21.1300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.1300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19762, 146, NULL, 1539, '9556100104618', 'O YES FEMININE WASH 200ML', NULL, '18.0000', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-06-27', 'received', '18.0000', '18.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19763, 146, NULL, 2674, '7470263', 'LEMSIP COLD & FLU 5\'S', NULL, '3.6000', '6.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-06-27', 'received', '3.6000', '3.6000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19764, 146, NULL, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '2.5700', '3.8300', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.4200', '0.0000', '2021-06-27', 'received', '2.5700', '2.5700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.5700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19765, 146, NULL, 1710, 'PR-423', 'PRONALIN ADULT', NULL, '3.4300', '4.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2900', '0.0000', '2021-06-27', 'received', '3.4300', '3.4300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.4300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19766, 146, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '11.5600', '16.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.6800', '0.0000', '2021-06-27', 'received', '11.5600', '11.5600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.5600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19767, 146, NULL, 2156, '10421120', 'LEENA CAPS', NULL, '3.2500', '4.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2021-06-27', 'received', '3.2500', '3.2500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19768, 146, NULL, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', NULL, '0.7300', '1.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5000', '0.0000', '2021-06-27', 'received', '0.7300', '0.7300', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.7300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19769, 146, NULL, 1840, 'PR-553', 'B COMPLEX B/P LP', NULL, '0.2400', '0.3000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-06-27', 'received', '0.2400', '0.2400', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19770, 146, NULL, 2338, '45884609', 'DUROMIN 30MG', NULL, '9.6300', '13.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '288.9000', '0.0000', '2021-06-27', 'received', '9.6300', '9.6300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '9.6300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19771, 146, NULL, 1633, '8901138836832', 'TENTEX ROYAL CAPS', NULL, '31.0600', '41.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.1800', '0.0000', '2021-06-27', 'received', '31.0600', '31.0600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '31.0600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19772, 146, NULL, 1565, 'PR-278', 'PARLODEL TABLETS 2.5MG', NULL, '18.0500', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.1500', '0.0000', '2021-06-27', 'received', '18.0500', '18.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19773, 146, NULL, 1634, 'PR-347', 'HYPONIDD TABS 20\' ?', NULL, '22.6600', '30.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.9800', '0.0000', '2021-06-27', 'received', '22.6600', '22.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19774, 146, NULL, 1707, 'PR-420', 'MEDGLOBIN CAPS', NULL, '25.1200', '33.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.2400', '0.0000', '2021-06-27', 'received', '25.1200', '25.1200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.1200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19775, 146, NULL, 1653, 'PR-366', 'PRAZIQUANTEL 600MG TAB 100\'(ECL)', NULL, '8.6200', '12.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.2000', '0.0000', '2021-06-27', 'received', '8.6200', '8.6200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '8.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19776, 146, NULL, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', NULL, '3.5000', '5.0000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '210.0000', '0.0000', '2021-06-27', 'received', '3.5000', '3.5000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19777, 146, NULL, 2822, '17958616', 'TYLENOL COMBO', NULL, '2.7200', '4.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.0000', '0.0000', '2021-06-27', 'received', '2.7200', '2.7200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19778, 146, NULL, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', NULL, '0.8100', '2.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.0500', '0.0000', '2021-06-27', 'received', '0.8100', '0.8100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '0.8100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19779, 146, NULL, 2360, '04076969', 'ASMADRIN TABS', NULL, '0.5200', '0.6900', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2021-06-27', 'received', '0.5200', '0.5200', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19780, 146, NULL, 1365, '8906116211496', 'PROWOMAN', NULL, '19.4900', '26.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.4900', '0.0000', '2021-06-27', 'received', '19.4900', '19.4900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '19.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19781, 146, NULL, 2823, '78074241', 'IBEX CAPS', NULL, '11.2100', '15.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0500', '0.0000', '2021-06-27', 'received', '11.2100', '11.2100', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19782, 146, NULL, 2382, '28069626', 'EPICROM 4% EYE DROP', NULL, '15.6600', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.9800', '0.0000', '2021-06-27', 'received', '15.6600', '15.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19783, 146, NULL, 2387, '00790319', 'NORMAL TEARS EYE DROP', NULL, '14.0700', '18.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.2100', '0.0000', '2021-06-27', 'received', '14.0700', '14.0700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19784, 146, NULL, 1498, 'PR-211', 'PAIN OFF TAB', NULL, '0.3300', '0.5000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.2500', '0.0000', '2021-06-27', 'received', '0.3300', '0.3300', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19785, 146, NULL, 1554, 'PR-267', 'COTRI SUS (M&G) SEPTRIN', NULL, '3.1600', '4.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.4800', '0.0000', '2021-06-27', 'received', '3.1600', '3.1600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.1600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19786, 146, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '29.0000', '38.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.0000', '0.0000', '2021-06-27', 'received', '29.0000', '29.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '29.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19787, 146, NULL, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', NULL, '0.9900', '1.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.5000', '0.0000', '2021-06-27', 'received', '0.9900', '0.9900', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19788, 146, NULL, 2455, '07137762', 'AMITRIPTYLINE 25MG', NULL, '7.5300', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.6500', '0.0000', '2021-06-27', 'received', '7.5300', '7.5300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19789, 146, NULL, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', NULL, '6.8500', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5500', '0.0000', '2021-06-27', 'received', '6.8500', '6.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19790, 146, NULL, 1567, 'PR-280', 'BRENEX SYRUP', NULL, '13.3000', '17.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9000', '0.0000', '2021-06-27', 'received', '13.3000', '13.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19791, 146, NULL, 1542, '8902502108920', 'INFAV OINT', NULL, '14.7800', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.3400', '0.0000', '2021-06-27', 'received', '14.7800', '14.7800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19792, 146, NULL, 2946, '71670819', 'HEALTHLINK HAIR,NAIL&SPON TABS', NULL, '37.7900', '50.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.5800', '0.0000', '2021-06-27', 'received', '37.7900', '37.7900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '37.7900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19793, 146, NULL, 2574, '24484092', 'DULCOLAX TABS 5MG 20\'S', NULL, '0.7800', '1.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '0.0000', '2021-06-27', 'received', '0.7800', '0.7800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19794, 146, NULL, 1351, '4084500846579', 'PEPTO BISMOL 240ML', NULL, '35.5000', '47.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0000', '0.0000', '2021-06-27', 'received', '35.5000', '35.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19795, 146, NULL, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '4.3200', '6.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.9600', '0.0000', '2021-06-27', 'received', '4.3200', '4.3200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19796, 146, NULL, 2383, '32782648', 'GINSOMIN EVE', NULL, '16.3000', '21.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.8000', '0.0000', '2021-06-27', 'received', '16.3000', '16.3000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '16.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19797, 146, NULL, 1354, '5024874700106', 'HEALTH LINK WOMAN', NULL, '39.7500', '53.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.2500', '0.0000', '2021-06-27', 'received', '39.7500', '39.7500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '39.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19798, 146, NULL, 1659, '5021265228027', 'OMEGA H3 CAP', NULL, '40.6500', '55.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.3000', '0.0000', '2021-06-27', 'received', '40.6500', '40.6500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '40.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19799, 146, NULL, 1632, '5024874030630', 'VALUPAK VITE 4001U', NULL, '19.5000', '25.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '0.0000', '2021-06-27', 'received', '19.5000', '19.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '19.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19800, 146, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.3700', '4.0000', '36.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.3200', '0.0000', '2021-06-27', 'received', '2.3700', '2.3700', '36.0000', NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, '2.3700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19801, 146, NULL, 2600, '5011417566800', 'LEMSIP COUGH SYR 180ML UK', NULL, '56.5000', '74.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '113.0000', '0.0000', '2021-06-27', 'received', '56.5000', '56.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '56.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19802, 146, NULL, 1433, 'PR-146', 'TIME HERBAL MIX(25)', NULL, '10.0000', '13.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-06-27', 'received', '10.0000', '10.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19803, 146, NULL, 2451, '56986898', 'GIVERS MIX', NULL, '10.3500', '14.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.0500', '0.0000', '2021-06-27', 'received', '10.3500', '10.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19804, 146, NULL, 1390, 'PR-103', '_ADUTW I MWAA BITTERS ( 2 5)', NULL, '7.5000', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-06-27', 'received', '7.5000', '7.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19805, 146, NULL, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '22.5000', '30.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.5000', '0.0000', '2021-06-27', 'received', '22.5000', '22.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19806, 146, NULL, 2166, '6036000078514', 'ULCERPLEX HERBAL', NULL, '5.5000', '7.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-06-27', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19807, 146, NULL, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', NULL, '13.0000', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-06-27', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19808, 146, NULL, 1423, '6036000115455', 'PROSTACURE X', NULL, '24.5000', '33.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '0.0000', '2021-06-27', 'received', '24.5000', '24.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '24.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19809, 146, NULL, 2374, '02032095', 'OSONS GARLIC CAPS', NULL, '7.3300', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.9900', '0.0000', '2021-06-27', 'received', '7.3300', '7.3300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19810, 146, NULL, 1490, '8903996006013', 'ACNEL GEL 20MG', NULL, '10.3400', '14.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '41.3600', '0.0000', '2021-06-27', 'received', '10.3400', '10.3400', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '10.3400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19811, 146, NULL, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '37.9000', '50.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '227.4000', '0.0000', '2021-06-27', 'received', '37.9000', '37.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '37.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19812, 146, NULL, 2822, '17958616', 'TYLENOL COMBO', NULL, '2.7200', '4.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '136.0000', '0.0000', '2021-06-27', 'received', '2.7200', '2.7200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19813, 146, NULL, 1640, 'PR-353', 'HISTAZINE SYR', NULL, '2.6500', '3.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.9500', '3.0000', '2021-06-27', 'received', '2.6500', '2.6500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '2.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19814, 146, NULL, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.5100', '5.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.2000', '0.0000', '2021-06-27', 'received', '3.5100', '3.5100', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.5100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19815, 146, NULL, 1766, 'PR-479', 'HIST AZINE SYRUP 60ML', NULL, '2.6900', '4.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.3800', '0.0000', '2021-06-27', 'received', '2.6900', '2.6900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '2.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19816, NULL, 117, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.5100', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '35.1000', '2.0000', '2021-07-18', 'received', '3.5100', '3.5100', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19817, NULL, 117, 2821, '27504285', 'COLDRILIF CAPS', NULL, '3.5100', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '35.1000', '10.0000', '2021-07-18', 'received', '3.5100', '3.5100', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19818, NULL, 117, 2822, '17958616', 'TYLENOL COMBO', NULL, '2.7200', '0.0000', '50.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '136.0000', '50.0000', '2021-07-18', 'received', '2.7200', '2.7200', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19819, NULL, 117, 2574, '24484092', 'DULCOLAX TABS 5MG 20\'S', NULL, '0.7800', '0.0000', '20.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '15.6000', '20.0000', '2021-07-18', 'received', '0.7800', '0.7800', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19820, NULL, 117, 1351, '4084500846579', 'PEPTO BISMOL 240ML', NULL, '35.5000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '71.0000', '2.0000', '2021-07-18', 'received', '35.5000', '35.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19821, NULL, 117, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '4.3200', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '12.9600', '3.0000', '2021-07-18', 'received', '4.3200', '4.3200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19822, NULL, 117, 2383, '32782648', 'GINSOMIN EVE', NULL, '16.3000', '0.0000', '6.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '97.8000', '6.0000', '2021-07-18', 'received', '16.3000', '16.3000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19823, NULL, 117, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', NULL, '37.9000', '0.0000', '6.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '227.4000', '6.0000', '2021-07-18', 'received', '37.9000', '37.9000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19824, NULL, 117, 1354, '5024874700106', 'HEALTH LINK WOMAN', NULL, '39.7500', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '119.2500', '3.0000', '2021-07-18', 'received', '39.7500', '39.7500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19825, NULL, 117, 1659, '5021265228027', 'OMEGA H3 CAP', NULL, '40.6500', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '81.3000', '2.0000', '2021-07-18', 'received', '40.6500', '40.6500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19826, NULL, 117, 1632, '5024874030630', 'VALUPAK VITE 4001U', NULL, '19.5000', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '78.0000', '4.0000', '2021-07-18', 'received', '19.5000', '19.5000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19827, NULL, 117, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.3700', '0.0000', '36.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '85.3200', '36.0000', '2021-07-18', 'received', '2.3700', '2.3700', NULL, NULL, NULL, 1, 'pc', '36.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19828, NULL, 117, 2600, '5011417566800', 'LEMSIP COUGH SYR 180ML UK', NULL, '56.5000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '113.0000', '1.0000', '2021-07-18', 'received', '56.5000', '56.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19829, NULL, 117, 1433, 'PR-146', 'TIME HERBAL MIX(25)', NULL, '10.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '2.0000', '2021-07-18', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19830, NULL, 117, 2451, '56986898', 'GIVERS MIX', NULL, '10.3500', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '31.0500', '3.0000', '2021-07-18', 'received', '10.3500', '10.3500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19831, NULL, 117, 1390, 'PR-103', '_ADUTW I MWAA BITTERS ( 2 5)', NULL, '7.5000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '22.5000', '2.0000', '2021-07-18', 'received', '7.5000', '7.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19832, NULL, 117, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', NULL, '22.5000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '67.5000', '1.0000', '2021-07-18', 'received', '22.5000', '22.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19833, NULL, 117, 2166, '6036000078514', 'ULCERPLEX HERBAL', NULL, '5.5000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '16.5000', '3.0000', '2021-07-18', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19834, NULL, 117, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', NULL, '13.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '39.0000', '3.0000', '2021-07-18', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19835, NULL, 117, 1423, '6036000115455', 'PROSTACURE X', NULL, '24.5000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '73.5000', '1.0000', '2021-07-18', 'received', '24.5000', '24.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19836, NULL, 117, 2374, '02032095', 'OSONS GARLIC CAPS', NULL, '7.3300', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '21.9900', '3.0000', '2021-07-18', 'received', '7.3300', '7.3300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19837, NULL, 117, 1490, '8903996006013', 'ACNEL GEL 20MG', NULL, '10.3400', '0.0000', '4.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '41.3600', '4.0000', '2021-07-18', 'received', '10.3400', '10.3400', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19838, NULL, 117, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '4.7200', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '14.1600', '2.0000', '2021-07-18', 'received', '4.7200', '4.7200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19839, NULL, 117, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '4.7200', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '9.4400', '2.0000', '2021-07-18', 'received', '4.7200', '4.7200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19840, NULL, 117, 1646, 'PR-359', 'AMCOF BABY', NULL, '4.5300', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '22.6500', '4.0000', '2021-07-18', 'received', '4.5300', '4.5300', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19841, NULL, 117, 1788, 'PR-501', 'KOFFEX SYR CHILD EXP', NULL, '4.5000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '13.5000', '3.0000', '2021-07-18', 'received', '4.5000', '4.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19842, NULL, 117, 1706, 'PR-419', 'PROCOLD SYR 100ml', NULL, '15.2700', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '30.5400', '1.0000', '2021-07-18', 'received', '15.2700', '15.2700', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19843, NULL, 117, 2624, '71356473', 'POLAR ICE', NULL, '15.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '1.0000', '2021-07-18', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19844, NULL, 117, 2491, '57627875', 'BELLS VITAMIN C', NULL, '12.2000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '36.6000', '2.0000', '2021-07-18', 'received', '12.2000', '12.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19845, NULL, 117, 1549, '610074245209', 'LAVET', NULL, '21.1300', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '21.1300', '1.0000', '2021-07-18', 'received', '21.1300', '21.1300', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19846, NULL, 117, 1549, '610074245209', 'LAVET', NULL, '21.1300', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '21.1300', '1.0000', '2021-07-18', 'received', '21.1300', '21.1300', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19847, NULL, 117, 1549, '610074245209', 'LAVET', NULL, '21.1300', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '21.1300', '1.0000', '2021-07-18', 'received', '21.1300', '21.1300', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19848, NULL, 117, 1539, '9556100104618', 'O YES FEMININE WASH 200ML', NULL, '18.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '54.0000', '3.0000', '2021-07-18', 'received', '18.0000', '18.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19849, NULL, 117, 2674, '7470263', 'LEMSIP COLD & FLU 5\'S', NULL, '5.0000', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '50.0000', '10.0000', '2021-07-18', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19850, NULL, 117, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '2.5700', '0.0000', '6.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '15.4200', '4.0000', '2021-07-18', 'received', '2.5700', '2.5700', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19851, NULL, 117, 1710, 'PR-423', 'PRONALIN ADULT', NULL, '3.4300', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '10.2900', '2.0000', '2021-07-18', 'received', '3.4300', '3.4300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19852, NULL, 117, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '11.5600', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '34.6800', '1.0000', '2021-07-18', 'received', '11.5600', '11.5600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19853, NULL, 117, 2156, '10421120', 'LEENA CAPS', NULL, '3.2500', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '32.5000', '9.0000', '2021-07-18', 'received', '3.2500', '3.2500', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19854, NULL, 117, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', NULL, '0.7300', '0.0000', '40.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '29.2000', '32.0000', '2021-07-18', 'received', '0.7300', '0.7300', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19855, NULL, 117, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', NULL, '0.7300', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '7.3000', '10.0000', '2021-07-18', 'received', '0.7300', '0.7300', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19856, NULL, 117, 1840, 'PR-553', 'B COMPLEX B/P LP', NULL, '0.2400', '0.0000', '50.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '12.0000', '36.0000', '2021-07-18', 'received', '0.2400', '0.2400', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19857, NULL, 117, 2338, '45884609', 'DUROMIN 30MG', NULL, '9.6300', '0.0000', '30.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '288.9000', '30.0000', '2021-07-18', 'received', '9.6300', '9.6300', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19858, NULL, 117, 1633, '8901138836832', 'TENTEX ROYAL CAPS', NULL, '31.0600', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '93.1800', '3.0000', '2021-07-18', 'received', '31.0600', '31.0600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19859, NULL, 117, 1565, 'PR-278', 'PARLODEL TABLETS 2.5MG', NULL, '18.0500', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '54.1500', '3.0000', '2021-07-18', 'received', '18.0500', '18.0500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19860, NULL, 117, 1634, 'PR-347', 'HYPONIDD TABS 20\' ?', NULL, '22.6600', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '67.9800', '3.0000', '2021-07-18', 'received', '22.6600', '22.6600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19861, NULL, 117, 1707, 'PR-420', 'MEDGLOBIN CAPS', NULL, '25.1200', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '50.2400', '2.0000', '2021-07-18', 'received', '25.1200', '25.1200', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19862, NULL, 117, 1653, 'PR-366', 'PRAZIQUANTEL 600MG TAB 100\'(ECL)', NULL, '8.6200', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '86.2000', '10.0000', '2021-07-18', 'received', '8.6200', '8.6200', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19863, NULL, 117, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', NULL, '3.5000', '0.0000', '60.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '210.0000', '58.0000', '2021-07-18', 'received', '3.5000', '3.5000', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19864, NULL, 117, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', NULL, '0.8100', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '1.6200', '0.0000', '2021-07-18', 'received', '0.8100', '0.8100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19865, NULL, 117, 2360, '04076969', 'ASMADRIN TABS', NULL, '0.5200', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.2000', '10.0000', '2021-07-18', 'received', '0.5200', '0.5200', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19866, NULL, 117, 2360, '04076969', 'ASMADRIN TABS', NULL, '0.5200', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.2000', '10.0000', '2021-07-18', 'received', '0.5200', '0.5200', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19867, NULL, 117, 2360, '04076969', 'ASMADRIN TABS', NULL, '0.5200', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '2.6000', '5.0000', '2021-07-18', 'received', '0.5200', '0.5200', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19868, NULL, 117, 2823, '78074241', 'IBEX CAPS', NULL, '11.2100', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '56.0500', '4.0000', '2021-07-18', 'received', '11.2100', '11.2100', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19869, NULL, 117, 2382, '28069626', 'EPICROM 4% EYE DROP', NULL, '15.6600', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '46.9800', '3.0000', '2021-07-18', 'received', '15.6600', '15.6600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19870, NULL, 117, 2387, '00790319', 'NORMAL TEARS EYE DROP', NULL, '14.0700', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '42.2100', '2.0000', '2021-07-18', 'received', '14.0700', '14.0700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19871, NULL, 117, 1498, 'PR-211', 'PAIN OFF TAB', NULL, '0.3300', '0.0000', '25.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '8.2500', '25.0000', '2021-07-18', 'received', '0.3300', '0.3300', NULL, NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19872, NULL, 117, 1554, 'PR-267', 'COTRI SUS (M&G) SEPTRIN', NULL, '3.1600', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '6.3200', '2.0000', '2021-07-18', 'received', '3.1600', '3.1600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19873, NULL, 117, 1554, 'PR-267', 'COTRI SUS (M&G) SEPTRIN', NULL, '3.1600', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '3.1600', '1.0000', '2021-07-18', 'received', '3.1600', '3.1600', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19874, NULL, 117, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '29.0000', '0.0000', '6.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '174.0000', '6.0000', '2021-07-18', 'received', '29.0000', '29.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19875, NULL, 117, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', NULL, '0.9900', '0.0000', '50.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '49.5000', '44.0000', '2021-07-18', 'received', '0.9900', '0.9900', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19876, NULL, 117, 2455, '07137762', 'AMITRIPTYLINE 25MG', NULL, '7.5300', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '37.6500', '6.0000', '2021-07-18', 'received', '7.5300', '7.5300', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19877, NULL, 117, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', NULL, '6.8500', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '20.5500', '3.0000', '2021-07-18', 'received', '6.8500', '6.8500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19878, NULL, 117, 2946, '71670819', 'HEALTHLINK HAIR,NAIL&SPON TABS', NULL, '37.7900', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '75.5800', '2.0000', '2021-07-18', 'received', '37.7900', '37.7900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19879, NULL, 117, 1567, 'PR-280', 'BRENEX SYRUP', NULL, '13.3000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '26.6000', '2.0000', '2021-07-18', 'received', '13.3000', '13.3000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19880, NULL, 117, 1567, 'PR-280', 'BRENEX SYRUP', NULL, '13.3000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '13.3000', '1.0000', '2021-07-18', 'received', '13.3000', '13.3000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19881, NULL, 117, 1542, '8902502108920', 'INFAV OINT', NULL, '14.7800', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '44.3400', '3.0000', '2021-07-18', 'received', '14.7800', '14.7800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19882, NULL, 117, 1766, 'PR-479', 'HIST AZINE SYRUP 60ML', NULL, '2.6900', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.3800', '2.0000', '2021-07-18', 'received', '2.6900', '2.6900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19883, NULL, 117, 1766, 'PR-479', 'HIST AZINE SYRUP 60ML', NULL, '2.6900', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.3800', '2.0000', '2021-07-18', 'received', '2.6900', '2.6900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19884, NULL, 117, 1766, 'PR-479', 'HIST AZINE SYRUP 60ML', NULL, '2.6900', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '2.6900', '1.0000', '2021-07-18', 'received', '2.6900', '2.6900', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19975, NULL, NULL, 2933, '47838827', 'LAMASIL CREAM 15MG', NULL, '56.0500', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '56.0500', '0.0000', '2021-07-18', 'received', '56.0500', '56.0500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19976, NULL, NULL, 1377, '5000158062139', 'BONJELA ADULT', NULL, '33.5700', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '67.1400', '2.0000', '2021-07-18', 'received', '33.5700', '33.5700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19977, NULL, NULL, 2934, '74475924', 'O YES FEMINNE WASH 60ML', NULL, '9.8000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '19.6000', '0.0000', '2021-07-18', 'received', '9.8000', '9.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19978, NULL, NULL, 2936, '30787578', 'MALIN ADULT COUGH', NULL, '6.0400', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '12.0800', '-1.0000', '2021-07-18', 'received', '6.0400', '6.0400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19979, NULL, NULL, 2937, '2745570', 'MALIN BABY COUGH', NULL, '5.3700', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '10.7400', '0.0000', '2021-07-18', 'received', '5.3700', '5.3700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19980, NULL, NULL, 2939, '07196283', 'POFAKOF ADULT SYRP', NULL, '7.1100', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '14.2200', '0.0000', '2021-07-18', 'received', '7.1100', '7.1100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19981, NULL, NULL, 2938, '10623743', 'POFAKOF JUNIOR SYRP', NULL, '6.7900', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.5800', '0.0000', '2021-07-18', 'received', '6.7900', '6.7900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19982, NULL, NULL, 1680, 'PR-393', 'BELLA COUGH MIXTURE', NULL, '5.0300', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '10.0600', '0.0000', '2021-07-18', 'received', '5.0300', '5.0300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19983, NULL, NULL, 2940, '42955737', 'DIPHEX COUGH SYRP', NULL, '6.3000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.9000', '0.0000', '2021-07-18', 'received', '6.3000', '6.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19984, NULL, NULL, 2941, '60137035', 'FUMET SUSPENSION', NULL, '2.6600', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '7.9800', '0.0000', '2021-07-18', 'received', '2.6600', '2.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19985, NULL, NULL, 2942, '53692521', 'LETACAM CAPS', NULL, '0.4900', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '4.9000', '0.0000', '2021-07-18', 'received', '0.4900', '0.4900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19986, NULL, NULL, 2730, '70096024', 'ENAFEN (IBUPROFEN TAB 400MG', NULL, '1.2000', '0.0000', '100.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '120.0000', '0.0000', '2021-07-18', 'received', '1.2000', '1.2000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19987, NULL, NULL, 2943, '94222566', 'MIST EXPECT SEED', NULL, '2.1800', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '6.5400', '-2.0000', '2021-07-18', 'received', '2.1800', '2.1800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19988, NULL, NULL, 2944, '79280298', 'ZINNAT SUSP 50ML', NULL, '51.9700', '0.0000', '1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '51.9700', '0.0000', '2021-07-18', 'received', '51.9700', '51.9700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20583, 137, NULL, 2060, '54947392', 'PARACETAMOL TAB LOCAL', NULL, '0.3300', '0.5000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '96.0000', '2021-06-18', 'received', '0.3300', '0.3300', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20584, 137, NULL, 1912, 'PR-625', 'KWIK ACTION', NULL, '0.3200', '1.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '29.0000', '2021-06-18', 'received', '0.3200', '0.3200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20585, 137, NULL, 1499, 'PR-212', 'RAPINOL', NULL, '0.4100', '0.6000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2500', '18.0000', '2021-06-18', 'received', '0.4100', '0.4100', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.4100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20586, 137, NULL, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', NULL, '1.7000', '2.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '10.0000', '2021-06-18', 'received', '1.7000', '1.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20587, 137, NULL, 1307, 'PR-20', 'FENBASE EXTRA', NULL, '1.9000', '3.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '15.0000', '2021-06-18', 'received', '1.9000', '1.9000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20588, 137, NULL, 1854, 'PR-567', 'IBUCAP L/S 20X20', NULL, '2.5000', '3.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '19.0000', '2021-06-18', 'received', '2.5000', '2.5000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20589, 137, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.4000', '2.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '20.0000', '2021-06-18', 'received', '1.4000', '1.4000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20590, 137, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.0500', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '9.0000', '2021-06-18', 'received', '2.0500', '2.0500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20591, 137, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.5000', '3.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '10.0000', '2021-06-18', 'received', '2.5000', '2.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20592, 137, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.3500', '5.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '8.0000', '2021-06-18', 'received', '3.3500', '3.3500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20593, 137, NULL, 1382, 'PR-95', 'ZULU EXTRA', NULL, '4.0000', '5.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '10.0000', '2021-06-18', 'received', '4.0000', '4.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20594, 137, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1000', '1.5000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-06-18', 'received', '1.1000', '1.1000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20595, 137, NULL, 2073, '59185019', 'DOMI 30', NULL, '2.3000', '3.0000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.5000', '25.0000', '2021-06-18', 'received', '2.3000', '2.3000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '2.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20596, 137, NULL, 1520, 'PR-233', 'DICLOLEX 100MG', NULL, '1.4700', '2.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7000', '9.0000', '2021-06-18', 'received', '1.4700', '1.4700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.4700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20597, 137, NULL, 2284, '8906009232232', 'LOFNAC-P TAB', NULL, '1.3000', '2.0000', '15.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '14.0000', '2021-06-18', 'received', '1.3000', '1.3000', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '1.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20598, 137, NULL, 1503, '305731769203', 'ADVIL CAPLET 20\'', NULL, '32.5100', '43.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0200', '2.0000', '2021-06-18', 'received', '32.5100', '32.5100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.5100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20599, 137, NULL, 1553, 'PR-266', 'LIPITOR 20MG', NULL, '191.9900', '253.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '191.9900', '1.0000', '2021-06-18', 'received', '191.9900', '191.9900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '191.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20600, 137, NULL, 1552, 'PR-265', 'LIPITOR 10MG', NULL, '116.1000', '153.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '116.1000', '1.0000', '2021-06-18', 'received', '116.1000', '116.1000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '116.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20601, 137, NULL, 1615, '5000456022811', 'CRESTOR 20MG', NULL, '69.6000', '92.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '139.2000', '2.0000', '2021-06-18', 'received', '69.6000', '69.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '69.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20602, 137, NULL, 1959, '5000456022798', 'CRESTOR 10MG', NULL, '81.4000', '107.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '162.8000', '2.0000', '2021-06-18', 'received', '81.4000', '81.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '81.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20603, 137, NULL, 1363, '5000456022774', 'CRESTOR 5MG TABS', NULL, '81.4000', '112.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '407.0000', '5.0000', '2021-06-18', 'received', '81.4000', '81.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '81.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20604, 137, NULL, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', NULL, '1.5900', '2.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.5000', '50.0000', '2021-06-18', 'received', '1.5900', '1.5900', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20605, 137, NULL, 1323, 'PR-36', 'GLIZONE 30MG', NULL, '7.9900', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9700', '3.0000', '2021-06-18', 'received', '7.9900', '7.9900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20606, 137, NULL, 2412, '17935935', 'GLIBINIL CAPS 5MG', NULL, '0.5200', '1.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '27.0000', '2021-06-18', 'received', '0.5200', '0.5200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20607, 137, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '1.7100', '2.2000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.5000', '50.0000', '2021-06-18', 'received', '1.7100', '1.7100', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.7100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20608, 137, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.4800', '1.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '43.0000', '2021-06-18', 'received', '0.4800', '0.4800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.4800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20609, 137, NULL, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', NULL, '0.8000', '1.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '50.0000', '2021-06-18', 'received', '0.8000', '0.8000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20610, 137, NULL, 2293, '03010667', 'PENICILLIN V 125MG TABS', NULL, '1.4400', '2.0000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '100.0000', '2021-06-18', 'received', '1.4400', '1.4400', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '1.4400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20611, 137, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.0500', '4.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0000', '17.0000', '2021-06-18', 'received', '3.0500', '3.0500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20612, 137, NULL, 1844, 'PR-557', 'LETAP AMPICLOX', NULL, '1.5000', '2.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '10.0000', '2021-06-18', 'received', '1.5000', '1.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20613, 137, NULL, 1531, 'PR-244', 'CLOXA CAP 250MG (LETAP)', NULL, '0.9600', '1.5000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '25.0000', '2021-06-18', 'received', '0.9600', '0.9600', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '0.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20614, 137, NULL, 2309, '23002945', 'Permoxyl caps 500mg', NULL, '1.9900', '2.6000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.8000', '20.0000', '2021-06-18', 'received', '1.9900', '1.9900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20615, 137, NULL, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '7.5900', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.7700', '0.0000', '2021-06-18', 'received', '7.5900', '7.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20616, 137, NULL, 1880, 'PR-593', 'AMOXY SUSP (LUEX)', NULL, '4.6000', '6.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '3.0000', '2021-06-18', 'received', '4.6000', '4.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20617, 137, NULL, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '5.8200', '8.0000', '48.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '279.3600', '0.0000', '2021-06-18', 'received', '5.8200', '5.8200', '48.0000', NULL, NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, '5.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20618, 137, NULL, 2518, '51929198', 'TAVANIC 500MG', NULL, '107.1800', '154.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.1800', '0.0000', '2021-06-18', 'received', '107.1800', '107.1800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '107.1800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20619, 137, NULL, 2668, '50803356', 'GRISON   FULCIN SYR', NULL, '7.9800', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9400', '3.0000', '2021-06-18', 'received', '7.9800', '7.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20620, 137, NULL, 1886, 'PR-599', 'NORVASC 10MG 30?S', NULL, '76.0000', '110.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '228.0000', '3.0000', '2021-06-18', 'received', '76.0000', '76.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '76.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20621, 137, NULL, 1619, 'PR-332', 'KLINDA300MG', NULL, '9.8500', '13.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.5000', '8.0000', '2021-06-18', 'received', '9.8500', '9.8500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20622, 137, NULL, 1551, '5021691032076', 'LEVOTHYROXINE TAB 50MG (MERC PHARMA)', NULL, '14.7700', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.3100', '3.0000', '2021-06-18', 'received', '14.7700', '14.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.7700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20623, 137, NULL, 2359, '66115662', 'LOSAR-DENK 50MG TAB', NULL, '16.2200', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4400', '0.0000', '2021-06-18', 'received', '16.2200', '16.2200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.2200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20624, 137, NULL, 2358, '32893309', 'LOSAR-DENK 100MG', NULL, '13.6000', '18.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.4000', '4.0000', '2021-06-18', 'received', '13.6000', '13.6000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '13.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20625, 137, NULL, 1684, '18906047544530', 'CLOPIDOGREL 75MG', NULL, '24.8200', '33.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.6400', '2.0000', '2021-06-18', 'received', '24.8200', '24.8200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20626, 137, NULL, 1374, 'PR-87', 'TEGRETOL CR 400MG', NULL, '18.5000', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '3.0000', '2021-06-18', 'received', '18.5000', '18.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20627, 137, NULL, 2152, '6034000189179', 'ADOM W&G MIX', NULL, '10.8300', '14.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6600', '2.0000', '2021-06-18', 'received', '10.8300', '10.8300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20628, 137, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '12.5000', '16.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-06-18', 'received', '12.5000', '12.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20629, 137, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '7.5000', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '2.0000', '2021-06-18', 'received', '7.5000', '7.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20630, 137, NULL, 2159, '88244641', 'TREMENDOUS CAPS', NULL, '15.0000', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2021-06-18', 'received', '15.0000', '15.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20631, 137, NULL, 2371, '83539675', 'FRESH LADY CAPS', NULL, '12.0000', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2021-06-18', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20632, 137, NULL, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', NULL, '13.0000', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-06-18', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20633, 137, NULL, 2717, '31018284', 'ZIIPMAN', NULL, '14.0000', '18.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2021-06-18', 'received', '14.0000', '14.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20634, 137, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '17.0000', '22.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '0.0000', '2021-06-18', 'received', '17.0000', '17.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20635, 137, NULL, 2398, '83807653', 'KINGDOM GINSENG CAPS', NULL, '15.0000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-06-18', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20636, 137, NULL, 1442, '005', 'YAFO MAN CAPS', NULL, '13.0000', '17.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '2.0000', '2021-06-18', 'received', '13.0000', '13.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20637, 137, NULL, 1414, '6034000157048', 'LIVING BITTERS CAPS', NULL, '19.0000', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '2.0000', '2021-06-18', 'received', '19.0000', '19.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20638, 137, NULL, 1389, '6034000189360', 'ADOM PAWAY CAPS(l00)', NULL, '16.4000', '22.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.8000', '2.0000', '2021-06-18', 'received', '16.4000', '16.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20639, 137, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '11.3000', '17.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.9000', '1.0000', '2021-06-18', 'received', '11.3000', '11.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20640, 137, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '17.3000', '23.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.9000', '0.0000', '2021-06-18', 'received', '17.3000', '17.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20641, 137, NULL, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', NULL, '13.0000', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '1.0000', '2021-06-18', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20642, 137, NULL, 1424, '6036000070709', 'PROSTAT 60', NULL, '30.0000', '39.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '2.0000', '2021-06-18', 'received', '30.0000', '30.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20643, 137, NULL, 2376, '77456423', 'PROSTAFIT', NULL, '19.5000', '25.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '3.0000', '2021-06-18', 'received', '19.5000', '19.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20644, 137, NULL, 2378, '08590643', 'VENE CAPS', NULL, '18.0000', '23.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2021-06-18', 'received', '18.0000', '18.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20645, 137, NULL, 1422, 'PR-135', 'PROSTACURE TEA (32)', NULL, '21.0000', '28.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '2.0000', '2021-06-18', 'received', '21.0000', '21.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20646, 137, NULL, 1413, 'PR-126', 'KINGDOM GARLIC CAPS', NULL, '16.0000', '21.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '2.0000', '2021-06-18', 'received', '16.0000', '16.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20647, 137, NULL, 2022, '69436145', 'CHOCHO CREAM', NULL, '3.5000', '4.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '5.0000', '2021-06-18', 'received', '3.5000', '3.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20648, 137, NULL, 2392, '10965636', 'CHOCHO SAOP', NULL, '3.7000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '5.0000', '2021-06-18', 'received', '3.7000', '3.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20649, 137, NULL, 2453, '3410766', 'MONA SOAP', NULL, '2.7000', '3.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '5.0000', '2021-06-18', 'received', '2.7000', '2.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20650, 137, NULL, 2653, '35881608', 'MONA KRIM', NULL, '2.7000', '3.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '2.0000', '2021-06-18', 'received', '2.7000', '2.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20651, 137, NULL, 1401, 'PR-114', 'EKURO BEWU', NULL, '3.0000', '4.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '5.0000', '2021-06-18', 'received', '3.0000', '3.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20652, 137, NULL, 2393, '25300648', 'BOAFO OINT', NULL, '3.8000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '0.0000', '2021-06-18', 'received', '3.8000', '3.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20653, 137, NULL, 1402, 'PR-115', 'ERNEST OINT(200)', NULL, '2.2000', '3.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '5.0000', '2021-06-18', 'received', '2.2000', '2.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20654, 137, NULL, 2633, '36871243', 'GANA BALM', NULL, '3.5000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '5.0000', '2021-06-18', 'received', '3.5000', '3.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20655, 137, NULL, 1396, 'PR-109', 'ANGEL CREAM(200)', NULL, '2.7000', '3.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '0.0000', '2021-06-18', 'received', '2.7000', '2.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20656, 137, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-06-18', 'received', '4.5000', '4.5000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20657, 137, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '2.2000', '3.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-06-18', 'received', '2.2000', '2.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20658, 137, NULL, 1420, 'PR-133', 'NAZO', NULL, '1.2000', '2.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.4000', '12.0000', '2021-06-18', 'received', '1.2000', '1.2000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '1.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20659, 137, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '3.9200', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6000', '5.0000', '2021-06-18', 'received', '3.9200', '3.9200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.9200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20660, 137, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.4400', '11.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.2000', '5.0000', '2021-06-18', 'received', '8.4400', '8.4400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.4400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20661, 137, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.5000', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-06-18', 'received', '7.5000', '7.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20662, 137, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '3.0300', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.1500', '5.0000', '2021-06-18', 'received', '3.0300', '3.0300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.0300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20663, 137, NULL, 1944, 'PR-657', 'Combact N E002d016', NULL, '5.0000', '7.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2021-06-18', 'received', '5.0000', '5.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20664, 137, NULL, 2541, '39996904', 'DEMACOT CREAM', NULL, '10.8000', '14.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '5.0000', '2021-06-18', 'received', '10.8000', '10.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20665, 137, NULL, 2294, '44448916', 'PENICILLIN OINTMENT', NULL, '4.5000', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '0.0000', '2021-06-18', 'received', '4.5000', '4.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20666, 137, NULL, 1489, '6938058600108', 'SAMOCID(SKIN AND NAIL)', NULL, '28.1700', '37.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.5100', '3.0000', '2021-06-18', 'received', '28.1700', '28.1700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.1700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20667, 137, NULL, 1486, '5010441000687', 'HYDROCORTISONE CREAM', NULL, '17.2400', '23.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.7200', '3.0000', '2021-06-18', 'received', '17.2400', '17.2400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20668, 137, NULL, 2492, '51417644', 'NIZORAL SHAMPOO', NULL, '21.9900', '30.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.9800', '1.0000', '2021-06-18', 'received', '21.9900', '21.9900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20669, 137, NULL, 1731, 'PR-444', 'DAKTARIN CREAM 15G', NULL, '19.9600', '27.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8800', '3.0000', '2021-06-18', 'received', '19.9600', '19.9600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20670, 137, NULL, 2347, '27404535', 'SALICYLIC ACID OINT', NULL, '5.2000', '7.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '6.0000', '2021-06-18', 'received', '5.2000', '5.2000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20671, 137, NULL, 1562, 'PR-275', 'SULPHUR OINT.', NULL, '5.1300', '7.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6500', '5.0000', '2021-06-18', 'received', '5.1300', '5.1300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.1300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20672, 137, NULL, 2638, '71491998', 'SUDOCREAM 60G S/S', NULL, '19.6200', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8600', '3.0000', '2021-06-18', 'received', '19.6200', '19.6200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20673, 137, NULL, 1548, '6223003960339', 'DAFLON S00MG', NULL, '2.8000', '3.6000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '30.0000', '2021-06-18', 'received', '2.8000', '2.8000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20674, 137, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '22.6600', '32.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.9800', '0.0000', '2021-06-18', 'received', '22.6600', '22.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20675, 137, NULL, 1860, '8901138150891', 'PILEX OINTMENT', NULL, '21.5000', '28.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.5000', '0.0000', '2021-06-18', 'received', '21.5000', '21.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20676, 137, NULL, 2575, '87228427', 'CANDEREL TABS', NULL, '12.8500', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5500', '3.0000', '2021-06-18', 'received', '12.8500', '12.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20677, 137, NULL, 1377, '5000158062139', 'BONJELA ADULT', NULL, '35.4700', '45.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.9400', '2.0000', '2021-06-18', 'received', '35.4700', '35.4700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.4700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20678, 137, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '13.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-06-18', 'received', '9.0000', '9.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20679, 137, NULL, 2571, '89677505', 'YAAKSON MIXTURE', NULL, '9.0000', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2021-06-18', 'received', '9.0000', '9.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20680, 137, NULL, 1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', NULL, '14.5000', '23.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2021-06-18', 'received', '14.5000', '14.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20681, 137, NULL, 1393, 'PR-106', 'AGBEVE PHEVER( 30)', NULL, '6.5000', '8.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '3.0000', '2021-06-18', 'received', '6.5000', '6.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20682, 137, NULL, 2573, '11557669', 'MASADA', NULL, '8.0000', '12.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '3.0000', '2021-06-18', 'received', '8.0000', '8.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20683, 137, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '9.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2021-06-18', 'received', '6.5000', '6.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20684, 137, NULL, 1430, 'PR-143', 'SOLAK MIXTURE(25)', NULL, '13.0000', '18.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '4.0000', '2021-06-18', 'received', '13.0000', '13.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20685, 137, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '17.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-06-18', 'received', '13.0000', '13.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20686, 137, NULL, 2572, '17160763', 'SWEDISH BITTERS', NULL, '22.0000', '29.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '2.0000', '2021-06-18', 'received', '22.0000', '22.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20687, 137, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '34.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.7000', '0.0000', '2021-06-18', 'received', '25.9000', '25.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20688, 137, NULL, 1404, 'PR-117', 'GBEDEMAH Garlic bitters', NULL, '9.0000', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2021-06-18', 'received', '9.0000', '9.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20689, 137, NULL, 1431, 'PR-144', 'SPANISH GARLIC MIXTURE(30)', NULL, '11.0000', '15.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '4.0000', '2021-06-18', 'received', '11.0000', '11.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20690, 137, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '10.0000', '13.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2021-06-18', 'received', '10.0000', '10.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20691, 137, NULL, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', NULL, '14.0000', '18.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-06-18', 'received', '14.0000', '14.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20692, 137, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '47.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2021-06-18', 'received', '36.0000', '36.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '36.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20693, 137, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '20.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-06-18', 'received', '15.0000', '15.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20694, 137, NULL, 2400, '91513969', 'BRIGHTFOD STRONG', NULL, '12.5000', '16.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '2.0000', '2021-06-18', 'received', '12.5000', '12.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20695, 137, NULL, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '8.1700', '10.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8500', '0.0000', '2021-06-18', 'received', '8.1700', '8.1700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.1700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20696, 137, NULL, 1415, '6034000157055', 'LIVING BITTERS SYP S s', NULL, '14.5000', '19.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '0.0000', '2021-06-18', 'received', '14.5000', '14.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20697, 137, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '5.3000', '7.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.5000', '5.0000', '2021-06-18', 'received', '5.3000', '5.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20698, 137, NULL, 2755, '36040795', 'VITA FORCE SYR', NULL, '15.0000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-06-18', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20699, 137, NULL, 2499, '01118964', 'PROXEED PLUS MEN', NULL, '10.6000', '14.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '318.0000', '0.0000', '2021-06-18', 'received', '10.6000', '10.6000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '10.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20700, 137, NULL, 2756, '48200600', 'CYPRON PLUS SYR', NULL, '9.0000', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-06-18', 'received', '9.0000', '9.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20701, 137, NULL, 2757, '55918370', 'VIGORIX CAPS', NULL, '6.8000', '9.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.6000', '0.0000', '2021-06-18', 'received', '6.8000', '6.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20702, 137, NULL, 2758, '02583050', 'CYFEN TAB', NULL, '5.4000', '2.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '0.0000', '2021-06-18', 'received', '5.4000', '5.4000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20703, 137, NULL, 2759, '56334949', 'SHALCIP TAB', NULL, '3.9500', '5.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7500', '0.0000', '2021-06-18', 'received', '3.9500', '3.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20704, 137, NULL, 2760, '71647290', 'HAYZINE TAB', NULL, '7.9300', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.8600', '0.0000', '2021-06-18', 'received', '7.9300', '7.9300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.9300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20705, 137, NULL, 2761, '15043236', 'LEXOFEN PLUS TAB', NULL, '6.0000', '8.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-06-18', 'received', '6.0000', '6.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20706, 137, NULL, 2762, '15794476', 'BX SYR L/S', NULL, '7.1000', '9.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.3000', '3.0000', '2021-06-18', 'received', '7.1000', '7.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21331, NULL, NULL, 1462, '8904008413690', 'OVACARE TABS', NULL, '20.0000', '0.0000', '-1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '-20.0000', '0.0000', '2021-07-18', 'received', '20.0000', '20.0000', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21336, NULL, NULL, 1952, '5021265221004', 'MENOPACE CAP(UK)', NULL, '37.2600', '0.0000', '-1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '-37.2600', '0.0000', '2021-07-18', 'received', '37.2600', '37.2600', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21395, NULL, NULL, 2935, '15629840', 'LUEX ADULT CHESTY COUGH', NULL, '7.9400', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '15.8800', '0.0000', '2021-07-18', 'received', '7.9400', '7.9400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21443, NULL, NULL, 2162, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21444, NULL, NULL, 1381, 'PR-94', ' GOLDY FORTE DS', NULL, '7.4900', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '37.4500', '0.0000', '2021-07-18', 'received', '7.4900', '7.4900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21445, NULL, NULL, 1365, '8906116211496', 'PROWOMAN', NULL, '19.4900', '0.0000', '6.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '116.9400', '0.0000', '2021-07-18', 'received', '19.4900', '19.4900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21446, NULL, NULL, 1353, '5060085540254', 'SELEVITE TABS', NULL, '20.5000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '61.5000', '0.0000', '2021-07-18', 'received', '20.5000', '20.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21473, NULL, NULL, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '5.2000', '0.0000', '-1.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '-5.2000', '-1.0000', '2021-07-18', 'received', '5.2000', '5.2000', '-1.0000', NULL, NULL, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21483, NULL, NULL, 2145, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21484, NULL, NULL, 1643, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21485, 169, NULL, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '15.7500', '21.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '0.0000', '2021-07-17', 'received', '15.7500', '15.7500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21486, 169, NULL, 1480, '5011501006519', 'DEEP FREEZE SPRAY', NULL, '29.9900', '40.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.9800', '0.0000', '2021-07-17', 'received', '29.9900', '29.9900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21487, 169, NULL, 2085, '35811477', 'PARA DENK 125MG', NULL, '1.4000', '2.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '0.0000', '2021-07-17', 'received', '1.4000', '1.4000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21488, 169, NULL, 2335, '90387267', 'EPICROM EYE DROP 2%', NULL, '15.6600', '21.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.9800', '3.0000', '2021-07-17', 'received', '15.6600', '15.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21489, 169, NULL, 1377, '5000158062139', 'BONJELA ADULT', NULL, '33.5700', '45.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.1400', '0.0000', '2021-07-17', 'received', '33.5700', '33.5700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.5700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21490, 169, NULL, 1766, 'PR-479', 'HIST AZINE SYRUP 60ML', NULL, '2.6900', '4.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.4500', '0.0000', '2021-07-17', 'received', '2.6900', '2.6900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21491, 169, NULL, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '4.0200', '6.0000', '13.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.2600', '0.0000', '2021-07-17', 'received', '4.0200', '4.0200', '13.0000', NULL, NULL, 1, 'pc', '13.0000', NULL, NULL, NULL, NULL, '4.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21492, 169, NULL, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', NULL, '6.6300', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8900', '0.0000', '2021-07-17', 'received', '6.6300', '6.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.6300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21493, 169, NULL, 2280, '8995858999991', 'PROCOLD TABS', NULL, '3.0700', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.0700', '0.0000', '2021-07-17', 'received', '3.0700', '3.0700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '3.0700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21494, 169, NULL, 1706, 'PR-419', 'PROCOLD SYR 100ml', NULL, '15.2700', '21.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.5400', '0.0000', '2021-07-17', 'received', '15.2700', '15.2700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.2700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21495, 169, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '5.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6000', '0.0000', '2021-07-17', 'received', '3.5500', '3.5500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21496, 169, NULL, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', NULL, '2.6700', '4.0000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.7500', '24.0000', '2021-07-17', 'received', '2.6700', '2.6700', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '2.6700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21497, 169, NULL, 1642, '6001135507628', 'BENYLIN DRY  COUGH SYR 100ML', NULL, '31.5000', '41.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '63.0000', '0.0000', '2021-07-17', 'received', '31.5000', '31.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '31.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21498, 169, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '34.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.6000', '0.0000', '2021-07-17', 'received', '25.9000', '25.9000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '25.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21499, 169, NULL, 1511, '5413895053528', 'TEARS NATURAL 11', NULL, '19.0000', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2021-07-17', 'received', '19.0000', '19.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21500, 169, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '11.8700', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.6100', '0.0000', '2021-07-17', 'received', '11.8700', '11.8700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21501, 169, NULL, 1652, 'PR-365', 'CARBODEL JNR SYR', NULL, '4.7500', '6.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.5000', '0.0000', '2021-07-17', 'received', '4.7500', '4.7500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '4.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21502, 169, NULL, 1680, 'PR-393', 'BELLA COUGH MIXTURE', NULL, '5.0300', '7.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0600', '0.0000', '2021-07-17', 'received', '5.0300', '5.0300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.0300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21503, 169, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.2200', '2.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0000', '0.0000', '2021-07-17', 'received', '1.2200', '1.2200', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.2200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21504, 169, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.6000', '0.0000', '2021-07-17', 'received', '2.2300', '2.2300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.2300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21505, 169, NULL, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', NULL, '45.0000', '60.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '0.0000', '2021-07-17', 'received', '45.0000', '45.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21506, 169, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '2.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '0.0000', '2021-07-17', 'received', '1.8600', '1.8600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21507, 169, NULL, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', NULL, '7.5400', '10.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0800', '0.0000', '2021-07-17', 'received', '7.5400', '7.5400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.5400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21508, 169, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.7000', '9.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.1000', '0.0000', '2021-07-17', 'received', '6.7000', '6.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21509, 169, NULL, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '19.0000', '26.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2021-07-17', 'received', '19.0000', '19.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21510, 169, NULL, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '38.6500', '51.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.6000', '0.0000', '2021-07-17', 'received', '38.6500', '38.6500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '38.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21511, 169, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4500', '3.0000', '2021-07-17', 'received', '3.4900', '3.4900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21512, 169, NULL, 2730, '70096024', 'ENAFEN (IBUPROFEN TAB 400MG', NULL, '1.2000', '2.0000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '0.0000', '2021-07-17', 'received', '1.2000', '1.2000', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '1.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21513, 169, NULL, 2669, '24220016', 'POLYGYNAX PESS', NULL, '24.5000', '32.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '0.0000', '2021-07-17', 'received', '24.5000', '24.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21514, 169, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '13.0000', '18.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-07-17', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21515, 169, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '15.1300', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.3900', '0.0000', '2021-07-17', 'received', '15.1300', '15.1300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.1300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21516, 169, NULL, 1302, 'PR-15', 'BASE COLD SYR', NULL, '4.0000', '6.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-07-17', 'received', '4.0000', '4.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21517, 169, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.8300', '12.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '176.6000', '0.0000', '2021-07-17', 'received', '8.8300', '8.8300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '8.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21518, 169, NULL, 2933, '47838827', 'LAMASIL CREAM 15MG', NULL, '56.0500', '74.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0500', '0.0000', '2021-07-17', 'received', '56.0500', '56.0500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '56.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21519, 169, NULL, 2934, '74475924', 'O YES FEMINNE WASH 60ML', NULL, '9.8000', '13.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6000', '0.0000', '2021-07-17', 'received', '9.8000', '9.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21520, 169, NULL, 2935, '15629840', 'LUEX ADULT CHESTY COUGH', NULL, '7.9400', '10.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.8800', '0.0000', '2021-07-17', 'received', '7.9400', '7.9400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21521, 169, NULL, 2936, '30787578', 'MALIN ADULT COUGH', NULL, '6.0400', '8.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0800', '0.0000', '2021-07-17', 'received', '6.0400', '6.0400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.0400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21522, 169, NULL, 2937, '2745570', 'MALIN BABY COUGH', NULL, '5.3700', '7.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.7400', '0.0000', '2021-07-17', 'received', '5.3700', '5.3700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.3700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21523, 169, NULL, 2938, '10623743', 'POFAKOF JUNIOR SYRP', NULL, '6.7900', '9.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5800', '0.0000', '2021-07-17', 'received', '6.7900', '6.7900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.7900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21524, 169, NULL, 2939, '07196283', 'POFAKOF ADULT SYRP', NULL, '7.1100', '10.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.2200', '0.0000', '2021-07-17', 'received', '7.1100', '7.1100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.1100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21525, 169, NULL, 2940, '42955737', 'DIPHEX COUGH SYRP', NULL, '6.3000', '8.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.9000', '0.0000', '2021-07-17', 'received', '6.3000', '6.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21526, 169, NULL, 2941, '60137035', 'FUMET SUSPENSION', NULL, '2.6600', '4.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.9800', '0.0000', '2021-07-17', 'received', '2.6600', '2.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '2.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21527, 169, NULL, 2942, '53692521', 'LETACAM CAPS', NULL, '0.4900', '2.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.9000', '0.0000', '2021-07-17', 'received', '0.4900', '0.4900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '0.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21528, 169, NULL, 2943, '94222566', 'MIST EXPECT SEED', NULL, '2.1800', '3.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.5400', '0.0000', '2021-07-17', 'received', '2.1800', '2.1800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '2.1800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21529, 169, NULL, 2944, '79280298', 'ZINNAT SUSP 50ML', NULL, '51.9700', '69.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.9700', '0.0000', '2021-07-17', 'received', '51.9700', '51.9700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '51.9700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21530, 169, NULL, 2382, '28069626', 'EPICROM 4% EYE DROP', NULL, '15.6600', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.9800', '0.0000', '2021-07-17', 'received', '15.6600', '15.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21531, 169, NULL, 2280, '8995858999991', 'PROCOLD TABS', NULL, '3.0700', '5.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '153.5000', '0.0000', '2021-07-17', 'received', '3.0700', '3.0700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.0700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21532, 169, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '5.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6000', '0.0000', '2021-07-17', 'received', '3.5500', '3.5500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21533, 169, NULL, 1314, 'PR-27', 'WORMBASE SUSP', NULL, '1.2000', '4.0000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-07-17', 'received', '1.2000', '1.2000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '1.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21534, 169, NULL, 2935, '15629840', 'LUEX ADULT CHESTY COUGH', NULL, '7.9400', '10.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.8800', '2.0000', '2021-07-17', 'received', '7.9400', '7.9400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.9400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21535, 169, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '2.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '0.0000', '2021-07-17', 'received', '1.8600', '1.8600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21536, 169, NULL, 2669, '24220016', 'POLYGYNAX PESS', NULL, '24.5000', '32.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '0.0000', '2021-07-17', 'received', '24.5000', '24.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21537, 169, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '14.0500', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.1500', '0.0000', '2021-07-17', 'received', '14.0500', '14.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21538, 169, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.8300', '12.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '176.6000', '0.0000', '2021-07-17', 'received', '8.8300', '8.8300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '8.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21539, 169, NULL, 2955, '51481408', 'LONART TAB 24\'S', NULL, '4.8000', '6.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.4000', '0.0000', '2021-07-17', 'received', '4.8000', '4.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21540, 169, NULL, 2958, '18073468', 'WELCHS TOFFEE', NULL, '1.0000', '2.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-07-17', 'received', '1.0000', '1.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21541, NULL, NULL, 2955, '51481408', 'LONART TAB 24\'S', NULL, '4.8000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '14.4000', '0.0000', '2021-07-20', 'received', '4.8000', '4.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21542, NULL, 116, 2955, '51481408', 'LONART TAB 24\'S', NULL, '4.8000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.4000', '1.0000', '2021-07-20', 'received', '4.8000', '4.8000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21543, NULL, 116, 2944, '79280298', 'ZINNAT SUSP 50ML', NULL, '51.9700', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '51.9700', '1.0000', '2021-07-20', 'received', '51.9700', '51.9700', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21544, NULL, 116, 1302, 'PR-15', 'BASE COLD SYR', NULL, '4.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '3.0000', '2021-07-20', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21545, NULL, 116, 2943, '94222566', 'MIST EXPECT SEED', NULL, '2.1800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.5400', '3.0000', '2021-07-20', 'received', '2.1800', '2.1800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21546, NULL, 116, 1668, '8906016831572', 'Acidom Caps', NULL, '13.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.0000', '2.0000', '2021-07-20', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21547, NULL, 116, 2730, '70096024', 'ENAFEN (IBUPROFEN TAB 400MG', NULL, '1.2000', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '120.0000', '96.0000', '2021-07-20', 'received', '1.2000', '1.2000', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21548, NULL, 116, 2942, '53692521', 'LETACAM CAPS', NULL, '0.4900', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '4.9000', '1.0000', '2021-07-20', 'received', '0.4900', '0.4900', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21549, NULL, 116, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '38.6500', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '154.6000', '2.0000', '2021-07-20', 'received', '38.6500', '38.6500', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21550, NULL, 116, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '19.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.0000', '0.0000', '2021-07-20', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21551, NULL, 116, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.7000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '20.1000', '2.0000', '2021-07-20', 'received', '6.7000', '6.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21552, NULL, 116, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', NULL, '7.5400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.0800', '0.0000', '2021-07-20', 'received', '7.5400', '7.5400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21553, NULL, 116, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', NULL, '45.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '90.0000', '0.0000', '2021-07-20', 'received', '45.0000', '45.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21554, NULL, 116, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.2200', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '61.0000', '0.0000', '2021-07-20', 'received', '1.2200', '1.2200', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21555, NULL, 116, 2941, '60137035', 'FUMET SUSPENSION', NULL, '2.6600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '7.9800', '3.0000', '2021-07-20', 'received', '2.6600', '2.6600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21556, NULL, 116, 2940, '42955737', 'DIPHEX COUGH SYRP', NULL, '6.3000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.9000', '0.0000', '2021-07-20', 'received', '6.3000', '6.3000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21557, NULL, 116, 1680, 'PR-393', 'BELLA COUGH MIXTURE', NULL, '5.0300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.0600', '0.0000', '2021-07-20', 'received', '5.0300', '5.0300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21558, NULL, 116, 2938, '10623743', 'POFAKOF JUNIOR SYRP', NULL, '6.7900', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.5800', '2.0000', '2021-07-20', 'received', '6.7900', '6.7900', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21559, NULL, 116, 2939, '07196283', 'POFAKOF ADULT SYRP', NULL, '7.1100', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.2200', '2.0000', '2021-07-20', 'received', '7.1100', '7.1100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21560, NULL, 116, 1652, 'PR-365', 'CARBODEL JNR SYR', NULL, '4.7500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '9.5000', '2.0000', '2021-07-20', 'received', '4.7500', '4.7500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21561, NULL, 116, 2937, '2745570', 'MALIN BABY COUGH', NULL, '5.3700', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '10.7400', '2.0000', '2021-07-20', 'received', '5.3700', '5.3700', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21562, NULL, 116, 2936, '30787578', 'MALIN ADULT COUGH', NULL, '6.0400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.0800', '2.0000', '2021-07-20', 'received', '6.0400', '6.0400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21563, NULL, 116, 2381, '72472860', 'ENACEF SUSP', NULL, '11.8700', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '35.6100', '1.0000', '2021-07-20', 'received', '11.8700', '11.8700', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21564, NULL, 116, 1511, '5413895053528', 'TEARS NATURAL 11', NULL, '19.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.0000', '2.0000', '2021-07-20', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21565, NULL, 116, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '103.6000', '0.0000', '2021-07-20', 'received', '25.9000', '25.9000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21566, NULL, 116, 1642, '6001135507628', 'BENYLIN DRY  COUGH SYR 100ML', NULL, '31.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '63.0000', '0.0000', '2021-07-20', 'received', '31.5000', '31.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21567, NULL, 116, 2934, '74475924', 'O YES FEMINNE WASH 60ML', NULL, '9.8000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.6000', '1.0000', '2021-07-20', 'received', '9.8000', '9.8000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21568, NULL, 116, 1706, 'PR-419', 'PROCOLD SYR 100ml', NULL, '15.2700', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.5400', '2.0000', '2021-07-20', 'received', '15.2700', '15.2700', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21569, NULL, 116, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', NULL, '6.6300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '19.8900', '1.0000', '2021-07-20', 'received', '6.6300', '6.6300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21570, NULL, 116, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', NULL, '4.0200', '0.0000', '13.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.2600', '10.0000', '2021-07-20', 'received', '4.0200', '4.0200', NULL, NULL, NULL, 1, 'pc', '13.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21571, NULL, 116, 1766, 'PR-479', 'HIST AZINE SYRUP 60ML', NULL, '2.6900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.4500', '5.0000', '2021-07-20', 'received', '2.6900', '2.6900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21572, NULL, 116, 1377, '5000158062139', 'BONJELA ADULT', NULL, '33.5700', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '67.1400', '0.0000', '2021-07-20', 'received', '33.5700', '33.5700', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21573, NULL, 116, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '44.6000', '9.0000', '2021-07-20', 'received', '2.2300', '2.2300', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21574, NULL, 116, 2085, '35811477', 'PARA DENK 125MG', NULL, '1.4000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.0000', '20.0000', '2021-07-20', 'received', '1.4000', '1.4000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21575, NULL, 116, 1480, '5011501006519', 'DEEP FREEZE SPRAY', NULL, '29.9900', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.9900', '1.0000', '2021-07-20', 'received', '29.9900', '29.9900', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21576, NULL, 116, 1480, '5011501006519', 'DEEP FREEZE SPRAY', NULL, '29.9900', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.9900', '1.0000', '2021-07-20', 'received', '29.9900', '29.9900', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21577, NULL, 116, 2933, '47838827', 'LAMASIL CREAM 15MG', NULL, '56.0500', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '56.0500', '1.0000', '2021-07-20', 'received', '56.0500', '56.0500', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21578, NULL, 116, 1610, '8904107900909', 'MYCOLEX-3 CREAM', NULL, '15.7500', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.5000', '1.0000', '2021-07-20', 'received', '15.7500', '15.7500', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21579, NULL, 116, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.8300', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '176.6000', '10.0000', '2021-07-20', 'received', '8.8300', '8.8300', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21580, NULL, 116, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '14.0500', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.1500', '0.0000', '2021-07-20', 'received', '14.0500', '14.0500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21581, NULL, 116, 2669, '24220016', 'POLYGYNAX PESS', NULL, '24.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.0000', '0.0000', '2021-07-20', 'received', '24.5000', '24.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21582, NULL, 116, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '37.2000', '10.0000', '2021-07-20', 'received', '1.8600', '1.8600', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21583, NULL, 116, 2935, '15629840', 'LUEX ADULT CHESTY COUGH', NULL, '7.9400', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '15.8800', '2.0000', '2021-07-20', 'received', '7.9400', '7.9400', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21584, NULL, 116, 1314, 'PR-27', 'WORMBASE SUSP', NULL, '1.2000', '0.0000', '25.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '23.0000', '2021-07-20', 'received', '1.2000', '1.2000', NULL, NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21585, NULL, 116, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '42.6000', '3.0000', '2021-07-20', 'received', '3.5500', '3.5500', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21586, NULL, 116, 2280, '8995858999991', 'PROCOLD TABS', NULL, '3.0700', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '92.1000', '25.0000', '2021-07-20', 'received', '3.0700', '3.0700', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21587, NULL, 116, 2280, '8995858999991', 'PROCOLD TABS', NULL, '3.0700', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '61.4000', '19.0000', '2021-07-20', 'received', '3.0700', '3.0700', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21588, NULL, 116, 2382, '28069626', 'EPICROM 4% EYE DROP', NULL, '15.6600', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.9800', '3.0000', '2021-07-20', 'received', '15.6600', '15.6600', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21589, NULL, 116, 2958, '18073468', 'WELCHS TOFFEE', NULL, '1.0000', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.0000', '17.0000', '2021-07-20', 'received', '1.0000', '1.0000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21590, NULL, NULL, 2714, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21609, NULL, NULL, 1700, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21662, NULL, NULL, 2137, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21663, NULL, NULL, 2948, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21664, NULL, NULL, 1462, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21665, NULL, NULL, 1978, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21717, NULL, NULL, 2958, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21757, 171, NULL, 2450, '16241595', 'HARPIC ANTISEPTIC', NULL, '13.5000', '16.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-07-20', 'received', '13.5000', '13.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21758, 171, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '25.0000', '28.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-07-20', 'received', '25.0000', '25.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21759, 171, NULL, 2566, '42135887', 'MILO TIN', NULL, '16.0000', '18.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '0.0000', '2021-07-20', 'received', '16.0000', '16.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21760, 171, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '5.1000', '7.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.6000', '0.0000', '2021-07-20', 'received', '5.1000', '5.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21761, 171, NULL, 2654, '4000388563803', 'DOVE LOTION', NULL, '15.0000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-07-20', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21762, 171, NULL, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', NULL, '4.0000', '6.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-07-20', 'received', '4.0000', '4.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21763, 171, NULL, 1980, '6186000077052', 'QUEEN ELISABETH COCOA BUTTER LOTION 250ML', NULL, '5.5000', '7.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-07-20', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21764, 171, NULL, 2028, '5137136225122', 'JRA CREAM BIG 220G', NULL, '23.0000', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '69.0000', '0.0000', '2021-07-20', 'received', '23.0000', '23.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21765, 171, NULL, 2029, '5137136225115', 'JRA CREAM MEDIUM 120G', NULL, '13.0000', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-07-20', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21766, 171, NULL, 2030, '00974156', 'JRA CREAM SMALL MEDIUM', NULL, '11.0000', '14.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-07-20', 'received', '11.0000', '11.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21767, 171, NULL, 2024, '6001087357050', 'VASELINE LOTION INTENSIVE CARE 400ML', NULL, '15.0000', '18.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '2.0000', '2021-07-20', 'received', '15.0000', '15.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21768, 171, NULL, 2023, '6001087011143', 'VASELINE LOTION  COCOA GLOW 400ML', NULL, '15.0000', '19.8000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-07-20', 'received', '15.0000', '15.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21769, 171, NULL, 2959, '18835366', 'YAZZ PANTY LINER', NULL, '4.0000', '6.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-07-20', 'received', '4.0000', '4.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21770, 171, NULL, 2428, '50665292', 'HEAVEN MOSQUITO SPRAY', NULL, '19.0000', '24.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '0.0000', '2021-07-20', 'received', '19.0000', '19.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21771, 171, NULL, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '4.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-07-20', 'received', '3.0000', '3.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21772, 171, NULL, 2825, '09140818', 'FACE MASK PACK', NULL, '12.0000', '25.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '0.0000', '2021-07-20', 'received', '12.0000', '12.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21773, 171, NULL, 2964, '65893205', 'LUCOSADE BOTTLE S/S', NULL, '6.6000', '9.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2021-07-20', 'received', '6.6000', '6.6000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21774, 171, NULL, 2965, '86540789', 'LUCOSADE CAN', NULL, '5.0000', '6.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-07-20', 'received', '5.0000', '5.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21775, 171, NULL, 2424, '72870535', 'DEVA SOFTNER', NULL, '12.0000', '15.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-07-20', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21776, 171, NULL, 2963, '58830438', 'COMFORT SOFTNER S/S', NULL, '13.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '0.0000', '2021-07-20', 'received', '13.0000', '13.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21777, 171, NULL, 2969, '6009826820414', 'TETMOSOL BABY SOFT SOAP', NULL, '5.0000', '7.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '0.0000', '2021-07-20', 'received', '5.0000', '5.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21778, 171, NULL, 2970, '6009826820018', 'TETMOSOL MEDICATED SOAP (CITRONELLA/COOL POWER)', NULL, '5.0000', '7.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-07-20', 'received', '5.0000', '5.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21779, 171, NULL, 2967, '73607781', 'HONEY MEADOW 250ML', NULL, '10.0000', '15.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-07-20', 'received', '10.0000', '10.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21780, 171, NULL, 2968, '59467858', 'HONEY MEADOW 500ML', NULL, '18.0000', '25.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '0.0000', '2021-07-20', 'received', '18.0000', '18.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21781, 171, NULL, 2088, '09422816', 'LETALIN EXPECTORANT SYR', NULL, '1.3800', '5.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '7.0000', '2021-07-20', 'received', '1.3800', '1.3800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.3800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21782, 171, NULL, 2486, '46475252', 'CINNAMON STICKS', NULL, '4.0000', '5.0000', '75.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '300.0000', '3.0000', '2021-07-20', 'received', '4.0000', '4.0000', '75.0000', NULL, NULL, 1, 'pc', '75.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21783, 171, NULL, 2966, '77287768', 'COMFORT SOFTNER BIG', NULL, '45.0000', '50.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '0.0000', '2021-07-20', 'received', '45.0000', '45.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21784, 171, NULL, 2422, '92383380', 'POWER ZONE B/S', NULL, '6.0000', '8.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-07-20', 'received', '6.0000', '6.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21785, 171, NULL, 2436, '04225724', 'ANTI BACTERIAL WIPE', NULL, '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '0.0000', '2021-07-20', 'received', '15.0000', '15.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21786, 171, NULL, 2436, '04225724', 'ANTI BACTERIAL WIPE', NULL, '11.5000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '1.0000', '2021-07-20', 'received', '11.5000', '11.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '11.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21787, 171, NULL, 2960, '27098703', 'COTTON BUD B/S', NULL, '9.0000', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-07-20', 'received', '9.0000', '9.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21788, 171, NULL, 2961, '94141314', 'COTTON BUD S/S', NULL, '3.0000', '5.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '0.0000', '2021-07-20', 'received', '3.0000', '3.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21789, 171, NULL, 2027, '60018915', 'VASELINE CREAM SMALL 100ML', NULL, '6.0000', '8.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '0.0000', '2021-07-20', 'received', '6.0000', '6.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21790, 171, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '10.5000', '14.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '0.0000', '2021-07-20', 'received', '10.5000', '10.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21791, 171, NULL, 2325, '68025873', 'ALWAYS PAD MAX', NULL, '5.5000', '7.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '0.0000', '2021-07-20', 'received', '5.5000', '5.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21792, 171, NULL, 2959, '18835366', 'YAZZ PANTY LINER', NULL, '4.0000', '6.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '5.0000', '2021-07-20', 'received', '4.0000', '4.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21793, 171, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '6.0000', '7.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-07-20', 'received', '6.0000', '6.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21794, 171, NULL, 2445, '08969985', 'ADULT DIAPER', NULL, '3.2000', '5.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.8000', '0.0000', '2021-07-20', 'received', '3.2000', '3.2000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '3.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21795, 171, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '9.2000', '12.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.4000', '0.0000', '2021-07-20', 'received', '9.2000', '9.2000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '9.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21796, 171, NULL, 2971, '36770680', 'JOHNSON BABY SOAP', NULL, '3.5000', '5.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '0.0000', '2021-07-20', 'received', '3.5000', '3.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21797, NULL, NULL, 1363, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-27.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21798, NULL, 119, 2967, '73607781', 'HONEY MEADOW 250ML', NULL, '10.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '4.0000', '2021-07-23', 'received', '10.0000', '10.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21799, NULL, 119, 2968, '59467858', 'HONEY MEADOW 500ML', NULL, '18.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '108.0000', '5.0000', '2021-07-23', 'received', '18.0000', '18.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21800, NULL, 119, 2969, '6009826820414', 'TETMOSOL BABY SOFT SOAP', NULL, '5.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '6.0000', '2021-07-23', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21801, NULL, 119, 2970, '6009826820018', 'TETMOSOL MEDICATED SOAP (CITRONELLA/COOL POWER)', NULL, '5.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '12.0000', '2021-07-23', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21802, NULL, 119, 2450, '16241595', 'HARPIC ANTISEPTIC', NULL, '13.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '2.0000', '2021-07-23', 'received', '13.5000', '13.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21803, NULL, 119, 2228, '7501058625915', 'LACTOGEN  1', NULL, '25.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.0000', '2.0000', '2021-07-23', 'received', '25.0000', '25.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21804, NULL, 119, 2228, '7501058625915', 'LACTOGEN  1', NULL, '25.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '25.0000', '1.0000', '2021-07-23', 'received', '25.0000', '25.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21805, NULL, 119, 2566, '42135887', 'MILO TIN', NULL, '16.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.0000', '1.0000', '2021-07-23', 'received', '16.0000', '16.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21806, NULL, 119, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '5.1000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.6000', '4.0000', '2021-07-23', 'received', '5.1000', '5.1000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21807, NULL, 119, 2654, '4000388563803', 'DOVE LOTION', NULL, '15.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '3.0000', '2021-07-23', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21808, NULL, 119, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', NULL, '4.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '5.0000', '2021-07-23', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21809, NULL, 119, 1980, '6186000077052', 'QUEEN ELISABETH COCOA BUTTER LOTION 250ML', NULL, '5.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '16.5000', '3.0000', '2021-07-23', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21810, NULL, 119, 2028, '5137136225122', 'JRA CREAM BIG 220G', NULL, '23.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '69.0000', '3.0000', '2021-07-23', 'received', '23.0000', '23.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21811, NULL, 119, 2029, '5137136225115', 'JRA CREAM MEDIUM 120G', NULL, '13.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.0000', '1.0000', '2021-07-23', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21812, NULL, 119, 2030, '00974156', 'JRA CREAM SMALL MEDIUM', NULL, '11.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '1.0000', '2021-07-23', 'received', '11.0000', '11.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21813, NULL, 119, 2023, '6001087011143', 'VASELINE LOTION  COCOA GLOW 400ML', NULL, '15.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '1.0000', '2021-07-23', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21814, NULL, 119, 2024, '6001087357050', 'VASELINE LOTION INTENSIVE CARE 400ML', NULL, '15.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '1.0000', '2021-07-23', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21815, NULL, 119, 2959, '18835366', 'YAZZ PANTY LINER', NULL, '4.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '6.0000', '2021-07-23', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21816, NULL, 119, 2428, '50665292', 'HEAVEN MOSQUITO SPRAY', NULL, '19.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.0000', '2.0000', '2021-07-23', 'received', '19.0000', '19.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21817, NULL, 119, 2964, '65893205', 'LUCOSADE BOTTLE S/S', NULL, '6.6000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.6000', '3.0000', '2021-07-23', 'received', '6.6000', '6.6000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21818, NULL, 119, 2965, '86540789', 'LUCOSADE CAN', NULL, '5.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '30.0000', '5.0000', '2021-07-23', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21819, NULL, 119, 2699, '85601099', 'CHOCOLATE M/S', NULL, '3.0000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '9.0000', '2021-07-23', 'received', '3.0000', '3.0000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21820, NULL, 119, 2825, '09140818', 'FACE MASK PACK', NULL, '12.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '72.0000', '0.0000', '2021-07-23', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21821, NULL, 119, 2486, '46475252', 'CINNAMON STICKS', NULL, '4.0000', '0.0000', '70.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '280.0000', '44.0000', '2021-07-23', 'received', '4.0000', '4.0000', NULL, NULL, NULL, 1, 'pc', '70.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21822, NULL, 119, 2424, '72870535', 'DEVA SOFTNER', NULL, '12.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '3.0000', '2021-07-23', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21823, NULL, 119, 2966, '77287768', 'COMFORT SOFTNER BIG', NULL, '45.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '1.0000', '2021-07-23', 'received', '45.0000', '45.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21824, NULL, 119, 2963, '58830438', 'COMFORT SOFTNER S/S', NULL, '13.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.0000', '1.0000', '2021-07-23', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21825, NULL, 119, 2422, '92383380', 'POWER ZONE B/S', NULL, '6.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '2.0000', '2021-07-23', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21826, NULL, 119, 2971, '36770680', 'JOHNSON BABY SOAP', NULL, '3.5000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.0000', '2.0000', '2021-07-23', 'received', '3.5000', '3.5000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21827, NULL, 119, 2436, '04225724', 'ANTI BACTERIAL WIPE', NULL, '11.5000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '23.0000', '2.0000', '2021-07-23', 'received', '11.5000', '11.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21828, NULL, 119, 2960, '27098703', 'COTTON BUD B/S', NULL, '9.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '2.0000', '2021-07-23', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21829, NULL, 119, 2961, '94141314', 'COTTON BUD S/S', NULL, '3.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.0000', '2.0000', '2021-07-23', 'received', '3.0000', '3.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21830, NULL, 119, 2027, '60018915', 'VASELINE CREAM SMALL 100ML', NULL, '6.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.0000', '0.0000', '2021-07-23', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21831, NULL, 119, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '10.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.5000', '2.0000', '2021-07-23', 'received', '10.5000', '10.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21832, NULL, 119, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '10.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '31.5000', '3.0000', '2021-07-23', 'received', '10.5000', '10.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21833, NULL, 119, 2325, '68025873', 'ALWAYS PAD MAX', NULL, '5.5000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '33.0000', '4.0000', '2021-07-23', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21834, NULL, 119, 1999, '6971044950313', 'YAZZ PAD', NULL, '6.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '4.0000', '2021-07-23', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21835, NULL, 119, 2445, '08969985', 'ADULT DIAPER', NULL, '3.2000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '12.8000', '0.0000', '2021-07-23', 'received', '3.2000', '3.2000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21836, NULL, 119, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '9.2000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '110.4000', '10.0000', '2021-07-23', 'received', '9.2000', '9.2000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21837, 172, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.8300', '12.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '176.6000', '0.0000', '2021-07-23', 'received', '8.8300', '8.8300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '8.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21838, 172, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '27.2300', '36.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6900', '0.0000', '2021-07-23', 'received', '27.2300', '27.2300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.2300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21839, 172, NULL, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', NULL, '20.2400', '27.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.7200', '0.0000', '2021-07-23', 'received', '20.2400', '20.2400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21843, NULL, NULL, 1857, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21844, NULL, NULL, 2248, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21845, NULL, NULL, 2506, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21846, NULL, NULL, 2437, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21847, NULL, NULL, 1846, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21848, NULL, NULL, 2623, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21849, NULL, NULL, 2726, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21942, NULL, NULL, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.8900', '0.0000', '60.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '53.4000', '0.0000', '2021-07-25', 'received', '0.8900', '0.8900', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21943, NULL, NULL, 2972, '13709725', 'BENYLIN 4 FLU SPRAY 100ML', NULL, '22.9800', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.9600', '0.0000', '2021-07-25', 'received', '22.9800', '22.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21971, NULL, NULL, 2948, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21972, NULL, NULL, 2628, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21973, NULL, NULL, 1856, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21974, NULL, NULL, 2967, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21975, NULL, NULL, 2477, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21976, NULL, NULL, 2763, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21977, NULL, NULL, 2478, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21978, 173, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '16.3900', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.1700', '0.0000', '2021-07-25', 'received', '16.3900', '16.3900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '16.3900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21979, 173, NULL, 2518, '51929198', 'TAVANIC 500MG', NULL, '116.3300', '154.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '232.6600', '0.0000', '2021-07-25', 'received', '116.3300', '116.3300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '116.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21980, 173, NULL, 2810, '44204486', 'L MONTUS', NULL, '2.2000', '2.9000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-07-25', 'received', '2.2000', '2.2000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21981, 173, NULL, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.8300', '12.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '264.9000', '0.0000', '2021-07-25', 'received', '8.8300', '8.8300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '8.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21982, 173, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '8.0000', '11.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '0.0000', '2021-07-25', 'received', '8.0000', '8.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21983, 173, NULL, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '2.0000', '48.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.4000', '0.0000', '2021-07-25', 'received', '1.3000', '1.3000', '48.0000', NULL, NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, '1.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21984, 173, NULL, 2240, '5000198522501', 'PIRITON SYR', NULL, '36.9100', '49.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.8200', '0.0000', '2021-07-25', 'received', '36.9100', '36.9100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21985, 173, NULL, 1555, '3582910081043', 'RHINATHIOL ADULT SYR 125ML', NULL, '22.2400', '29.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '111.2000', '0.0000', '2021-07-25', 'received', '22.2400', '22.2400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '22.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21986, 173, NULL, 1629, 'PR-342', 'GEN-M SUSP', NULL, '15.5000', '20.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2021-07-25', 'received', '15.5000', '15.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21987, 173, NULL, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.8900', '1.5000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.4000', '0.0000', '2021-07-25', 'received', '0.8900', '0.8900', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '0.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21988, 173, NULL, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '24.6200', '32.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.8600', '0.0000', '2021-07-25', 'received', '24.6200', '24.6200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '24.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21989, 173, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '48.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '179.0000', '0.0000', '2021-07-25', 'received', '35.8000', '35.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '35.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21990, 173, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '180.0000', '0.0000', '2021-07-25', 'received', '15.0000', '15.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21991, 173, NULL, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.2000', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '0.0000', '2021-07-25', 'received', '2.2000', '2.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21992, 173, NULL, 2279, '6161105661986', 'PANADOL EXTRA', NULL, '2.7000', '4.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-07-25', 'received', '2.7000', '2.7000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21993, 173, NULL, 1525, '5000158063907', 'LEMSIP SACHETS 5\'S', NULL, '4.9100', '6.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.1000', '0.0000', '2021-07-25', 'received', '4.9100', '4.9100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21994, 173, NULL, 2972, '13709725', 'BENYLIN 4 FLU SPRAY 100ML', NULL, '22.9800', '30.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.9600', '0.0000', '2021-07-25', 'received', '22.9800', '22.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21995, 173, NULL, 1561, 'PR-274', 'SPORANOX CAPS', NULL, '27.0000', '35.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.0000', '0.0000', '2021-07-25', 'received', '27.0000', '27.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21996, 173, NULL, 1700, '8904008410187', 'BECOATIN SYR', NULL, '8.0000', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '0.0000', '2021-07-25', 'received', '8.0000', '8.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21997, 173, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.0000', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-07-25', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21998, 173, NULL, 2333, '81610561', 'CIPROFLOXACIN SUSP (XIN-A)', NULL, '33.0000', '43.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-07-25', 'received', '33.0000', '33.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21999, 173, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '6.6000', '9.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.6000', '0.0000', '2021-07-25', 'received', '6.6000', '6.6000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22000, 173, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '13.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-07-25', 'received', '9.0000', '9.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22001, 173, NULL, 2166, '6036000078514', 'ULCERPLEX HERBAL', NULL, '5.5000', '7.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-07-25', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22002, 173, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '17.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-07-25', 'received', '13.0000', '13.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22003, 173, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.4000', '3.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '0.0000', '2021-07-25', 'received', '2.4000', '2.4000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22004, 173, NULL, 2973, '43393257', 'ALKA SELTZER 10.S', NULL, '4.3000', '5.6000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '0.0000', '2021-07-25', 'received', '4.3000', '4.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22005, NULL, NULL, 2092, '69091614', 'GLUCOSE C L/P', NULL, '4.1500', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '12.4500', '0.0000', '2021-07-27', 'received', '4.1500', '4.1500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22006, NULL, NULL, 2755, '36040795', 'VITA FORCE SYR', NULL, '15.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '45.0000', '0.0000', '2021-07-27', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22007, NULL, NULL, 2499, '01118964', 'PROXEED PLUS MEN', NULL, '10.6000', '0.0000', '30.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '318.0000', '0.0000', '2021-07-27', 'received', '10.6000', '10.6000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22008, NULL, NULL, 2756, '48200600', 'CYPRON PLUS SYR', NULL, '9.0000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.0000', '0.0000', '2021-07-27', 'received', '9.0000', '9.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22009, NULL, NULL, 2757, '55918370', 'VIGORIX CAPS', NULL, '6.8000', '0.0000', '2.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '13.6000', '0.0000', '2021-07-27', 'received', '6.8000', '6.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22010, NULL, NULL, 2104, '44677443', 'DYNWELL TABLETS', NULL, '0.2000', '0.0000', '50.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '10.0000', '0.0000', '2021-07-27', 'received', '0.2000', '0.2000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22011, NULL, NULL, 2758, '02583050', 'CYFEN TAB', NULL, '5.4000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '54.0000', '0.0000', '2021-07-27', 'received', '5.4000', '5.4000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22012, NULL, NULL, 2759, '56334949', 'SHALCIP TAB', NULL, '3.9500', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '19.7500', '0.0000', '2021-07-27', 'received', '3.9500', '3.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22013, NULL, NULL, 1953, '56415263', 'STAGYL TABS', NULL, '2.4900', '0.0000', '5.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '12.4500', '0.0000', '2021-07-27', 'received', '2.4900', '2.4900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22174, NULL, NULL, 2973, '43393257', 'ALKA SELTZER 10.S', NULL, '4.3000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '43.0000', '-1.0000', '2021-07-27', 'received', '4.3000', '4.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22212, NULL, 121, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.4000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '0.0000', '2021-07-27', 'received', '2.4000', '2.4000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22213, NULL, 121, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.4000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '0.0000', '2021-07-27', 'received', '2.4000', '2.4000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22214, NULL, 121, 1629, 'PR-342', 'GEN-M SUSP', NULL, '15.5000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '46.5000', '3.0000', '2021-07-27', 'received', '15.5000', '15.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22215, NULL, 121, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.8900', '0.0000', '60.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '53.4000', '0.0000', '2021-07-27', 'received', '0.8900', '0.8900', NULL, NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22216, NULL, 121, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '24.6200', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '73.8600', '0.0000', '2021-07-27', 'received', '24.6200', '24.6200', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22217, NULL, 121, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '179.0000', '0.0000', '2021-07-27', 'received', '35.8000', '35.8000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22218, NULL, 121, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '0.0000', '12.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '180.0000', '8.0000', '2021-07-27', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22219, NULL, 121, 2167, '6166', 'GEBEDOL EXTRA', NULL, '2.2000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '22.0000', '5.0000', '2021-07-27', 'received', '2.2000', '2.2000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22220, NULL, 121, 2279, '6161105661986', 'PANADOL EXTRA', NULL, '2.7000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '27.0000', '6.0000', '2021-07-27', 'received', '2.7000', '2.7000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22221, NULL, 121, 1525, '5000158063907', 'LEMSIP SACHETS 5\'S', NULL, '4.9100', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '29.4600', '0.0000', '2021-07-27', 'received', '4.9100', '4.9100', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22222, NULL, 121, 2972, '13709725', 'BENYLIN 4 FLU SPRAY 100ML', NULL, '22.9800', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '45.9600', '2.0000', '2021-07-27', 'received', '22.9800', '22.9800', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22223, NULL, 121, 1561, 'PR-274', 'SPORANOX CAPS', NULL, '27.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '81.0000', '2.0000', '2021-07-27', 'received', '27.0000', '27.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22224, NULL, 121, 1700, '8904008410187', 'BECOATIN SYR', NULL, '8.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '24.0000', '0.0000', '2021-07-27', 'received', '8.0000', '8.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22225, NULL, 121, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '1.0000', '2021-07-27', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22226, NULL, 121, 2333, '81610561', 'CIPROFLOXACIN SUSP (XIN-A)', NULL, '33.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '66.0000', '0.0000', '2021-07-27', 'received', '33.0000', '33.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22227, NULL, 121, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '6.6000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '39.6000', '5.0000', '2021-07-27', 'received', '6.6000', '6.6000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22228, NULL, 121, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '1.0000', '2021-07-27', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22229, NULL, 121, 2166, '6036000078514', 'ULCERPLEX HERBAL', NULL, '5.5000', '0.0000', '0.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '0.0000', '0.0000', '2021-07-27', 'received', '5.5000', '5.5000', NULL, NULL, NULL, 1, 'pc', '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22230, NULL, 121, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '65.0000', '1.0000', '2021-07-27', 'received', '13.0000', '13.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22231, NULL, 121, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '16.3900', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '49.1700', '2.0000', '2021-07-27', 'received', '16.3900', '16.3900', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22232, NULL, 121, 2518, '51929198', 'TAVANIC 500MG', NULL, '116.3300', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '232.6600', '0.0000', '2021-07-27', 'received', '116.3300', '116.3300', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22233, NULL, 121, 2810, '44204486', 'L MONTUS', NULL, '2.2000', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '66.0000', '0.0000', '2021-07-27', 'received', '2.2000', '2.2000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22234, NULL, 121, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.8300', '0.0000', '30.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '264.9000', '30.0000', '2021-07-27', 'received', '8.8300', '8.8300', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22235, NULL, 121, 1700, '8904008410187', 'BECOATIN SYR', NULL, '8.0000', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '40.0000', '4.0000', '2021-07-27', 'received', '8.0000', '8.0000', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22236, NULL, 121, 1665, 'PR-378', 'KISS CONDOM', NULL, '1.3000', '0.0000', '48.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '62.4000', '23.0000', '2021-07-27', 'received', '1.3000', '1.3000', NULL, NULL, NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22237, NULL, 121, 2240, '5000198522501', 'PIRITON SYR', NULL, '36.9100', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '73.8200', '1.0000', '2021-07-27', 'received', '36.9100', '36.9100', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22238, NULL, 121, 1555, '3582910081043', 'RHINATHIOL ADULT SYR 125ML', NULL, '22.2400', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '111.2000', '5.0000', '2021-07-27', 'received', '22.2400', '22.2400', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22239, NULL, 121, 2974, '33602978', 'EASY CHECK EARLY PREGNANCY TEST', NULL, '5.0000', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '50.0000', '8.0000', '2021-07-27', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22240, 170, NULL, 1854, 'PR-567', 'IBUCAP L/S 20X20', NULL, '2.5000', '3.5000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '17.0000', '2021-07-18', 'received', '2.5000', '2.5000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22241, 170, NULL, 1855, 'PR-568', 'IBUCAP S/S 200S', NULL, '1.4000', '2.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '18.0000', '2021-07-18', 'received', '1.4000', '1.4000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22242, 170, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.0500', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.5000', '7.0000', '2021-07-18', 'received', '2.0500', '2.0500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22243, 170, NULL, 1521, 'PR-234', 'PAINGAYCAP', NULL, '2.5000', '3.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '6.0000', '2021-07-18', 'received', '2.5000', '2.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22244, 170, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1000', '1.5000', '60.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '35.0000', '2021-07-18', 'received', '1.1000', '1.1000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22245, 170, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.3500', '5.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5000', '3.0000', '2021-07-18', 'received', '3.3500', '3.3500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22246, 170, NULL, 1382, 'PR-95', 'ZULU EXTRA', NULL, '4.0000', '5.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '7.0000', '2021-07-18', 'received', '4.0000', '4.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22247, 170, NULL, 2073, '59185019', 'DOMI 30', NULL, '2.3000', '3.0000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.5000', '25.0000', '2021-07-18', 'received', '2.3000', '2.3000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '2.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22248, 170, NULL, 1520, 'PR-233', 'DICLOLEX 100MG', NULL, '1.4700', '2.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7000', '10.0000', '2021-07-18', 'received', '1.4700', '1.4700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.4700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22249, 170, NULL, 2284, '8906009232232', 'LOFNAC-P TAB', NULL, '1.3000', '2.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '20.0000', '2021-07-18', 'received', '1.3000', '1.3000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22250, 170, NULL, 2767, '22329866', 'ADVIL TAB 24\'S', NULL, '35.5000', '47.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0000', '2.0000', '2021-07-18', 'received', '35.5000', '35.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22251, 170, NULL, 1553, 'PR-266', 'LIPITOR 20MG', NULL, '6.9600', '10.0000', '28.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '194.8800', '28.0000', '2021-07-18', 'received', '6.9600', '6.9600', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '6.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22252, 170, NULL, 1552, 'PR-265', 'LIPITOR 10MG', NULL, '4.2000', '5.6000', '28.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.6000', '28.0000', '2021-07-18', 'received', '4.2000', '4.2000', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '4.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22253, 170, NULL, 1615, '5000456022811', 'CRESTOR 20MG', NULL, '5.3000', '7.0000', '56.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '296.8000', '56.0000', '2021-07-18', 'received', '5.3000', '5.3000', '56.0000', NULL, NULL, 1, 'pc', '56.0000', NULL, NULL, NULL, NULL, '5.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22254, 170, NULL, 1959, '5000456022798', 'CRESTOR 10MG', NULL, '3.0300', '4.0000', '56.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '169.6800', '56.0000', '2021-07-18', 'received', '3.0300', '3.0300', '56.0000', NULL, NULL, 1, 'pc', '56.0000', NULL, NULL, NULL, NULL, '3.0300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22255, 170, NULL, 1363, '5000456022774', 'CRESTOR 5MG TABS', NULL, '3.0300', '4.0000', '56.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '169.6800', '56.0000', '2021-07-18', 'received', '3.0300', '3.0300', '56.0000', NULL, NULL, 1, 'pc', '56.0000', NULL, NULL, NULL, NULL, '3.0300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22256, 170, NULL, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', NULL, '1.5900', '2.0000', '25.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7500', '25.0000', '2021-07-18', 'received', '1.5900', '1.5900', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '1.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22257, 170, NULL, 1323, 'PR-36', 'GLIZONE 30MG', NULL, '7.9900', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9700', '3.0000', '2021-07-18', 'received', '7.9900', '7.9900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22258, 170, NULL, 2412, '17935935', 'GLIBINIL CAPS 5MG', NULL, '0.5200', '1.0000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '30.0000', '2021-07-18', 'received', '0.5200', '0.5200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22259, 170, NULL, 2242, '69633989', 'METAGYL TAB 200 MG', NULL, '0.4800', '1.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '28.0000', '2021-07-18', 'received', '0.4800', '0.4800', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.4800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22260, 170, NULL, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', NULL, '1.7100', '2.2000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.5000', '40.0000', '2021-07-18', 'received', '1.7100', '1.7100', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.7100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22261, 170, NULL, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', NULL, '0.8000', '1.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '46.0000', '2021-07-18', 'received', '0.8000', '0.8000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22262, 170, NULL, 2293, '03010667', 'PENICILLIN V 125MG TABS', NULL, '1.4400', '2.0000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '91.0000', '2021-07-18', 'received', '1.4400', '1.4400', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '1.4400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22263, 170, NULL, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', NULL, '3.0500', '5.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.0000', '16.0000', '2021-07-18', 'received', '3.0500', '3.0500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22264, 170, NULL, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', NULL, '0.9600', '1.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '50.0000', '2021-07-18', 'received', '0.9600', '0.9600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22265, 170, NULL, 2952, '11288003', 'AMPICLOX ECL', NULL, '2.4000', '3.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '10.0000', '2021-07-18', 'received', '2.4000', '2.4000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22266, 170, NULL, 2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', NULL, '1.5200', '2.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.2000', '5.0000', '2021-07-18', 'received', '1.5200', '1.5200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22267, 170, NULL, 1531, 'PR-244', 'CLOXA CAP 250MG (LETAP)', NULL, '0.9600', '1.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '50.0000', '2021-07-18', 'received', '0.9600', '0.9600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22268, 170, NULL, 2309, '23002945', 'Permoxyl caps 500mg', NULL, '1.9900', '2.6000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.8000', '20.0000', '2021-07-18', 'received', '1.9900', '1.9900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22269, 170, NULL, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '7.5900', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.7700', '0.0000', '2021-07-18', 'received', '7.5900', '7.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22270, 170, NULL, 1880, 'PR-593', 'AMOXY SUSP (LUEX)', NULL, '4.6000', '7.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.8000', '3.0000', '2021-07-18', 'received', '4.6000', '4.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22271, 170, NULL, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', NULL, '5.9100', '8.0000', '48.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '283.6800', '48.0000', '2021-07-18', 'received', '5.9100', '5.9100', '48.0000', NULL, NULL, 1, 'pc', '48.0000', NULL, NULL, NULL, NULL, '5.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22272, 170, NULL, 2518, '51929198', 'TAVANIC 500MG', NULL, '107.1800', '154.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '107.1800', '0.0000', '2021-07-18', 'received', '107.1800', '107.1800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '107.1800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22273, 170, NULL, 2668, '50803356', 'GRISON   FULCIN SYR', NULL, '7.9800', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9400', '3.0000', '2021-07-18', 'received', '7.9800', '7.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22274, 170, NULL, 1886, 'PR-599', 'NORVASC 10MG 30?S', NULL, '76.0000', '110.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '228.0000', '3.0000', '2021-07-18', 'received', '76.0000', '76.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '76.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22275, 170, NULL, 2909, '94340911', 'CLINDAMYCIN 300MG CAPS KAMA', NULL, '10.0000', '13.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '10.0000', '2021-07-18', 'received', '10.0000', '10.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22276, 170, NULL, 1551, '5021691032076', 'LEVOTHYROXINE TAB 50MG (MERC PHARMA)', NULL, '14.7700', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.3100', '3.0000', '2021-07-18', 'received', '14.7700', '14.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.7700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22277, 170, NULL, 2359, '66115662', 'LOSAR-DENK 50MG TAB', NULL, '8.1100', '11.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4400', '1.0000', '2021-07-18', 'received', '8.1100', '8.1100', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '8.1100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22278, 170, NULL, 2358, '32893309', 'LOSAR-DENK 100MG', NULL, '13.6000', '18.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.4000', '2.0000', '2021-07-18', 'received', '13.6000', '13.6000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '13.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22279, 170, NULL, 1684, '18906047544530', 'CLOPIDOGREL 75MG EXETER', NULL, '24.8200', '33.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.6400', '2.0000', '2021-07-18', 'received', '24.8200', '24.8200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '24.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22280, 170, NULL, 2814, '5060623371074', 'CLOPIDOGREL 75MG  TORRENT PHARMA', NULL, '14.0400', '18.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0400', '1.0000', '2021-07-18', 'received', '14.0400', '14.0400', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '14.0400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22281, 170, NULL, 2953, '85315538', 'CLOPIDOGREL 75MG  FRELET', NULL, '8.0000', '11.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '48.0000', '6.0000', '2021-07-18', 'received', '8.0000', '8.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22282, 170, NULL, 1832, 'PR-545', 'SYR TEGRATOL', NULL, '59.9000', '79.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.9000', '1.0000', '2021-07-18', 'received', '59.9000', '59.9000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '59.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22283, 170, NULL, 2673, '52626423', 'LISINOPRIL 10MG', NULL, '11.0000', '15.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.0000', '4.0000', '2021-07-18', 'received', '11.0000', '11.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22284, 170, NULL, 2152, '6034000189179', 'ADOM W&G MIX', NULL, '10.8300', '14.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6600', '1.0000', '2021-07-18', 'received', '10.8300', '10.8300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22285, 170, NULL, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', NULL, '12.5000', '16.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '3.0000', '2021-07-18', 'received', '12.5000', '12.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22286, 170, NULL, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', NULL, '7.5000', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '3.0000', '2021-07-18', 'received', '7.5000', '7.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22287, 170, NULL, 2377, '96827889', 'ROCK GENECURE', NULL, '11.0000', '13.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '3.0000', '2021-07-18', 'received', '11.0000', '11.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22288, 170, NULL, 2159, '88244641', 'TREMENDOUS CAPS', NULL, '15.0000', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2021-07-18', 'received', '15.0000', '15.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22289, 170, NULL, 2371, '83539675', 'FRESH LADY CAPS', NULL, '12.0000', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2021-07-18', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22290, 170, NULL, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', NULL, '13.0000', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-07-18', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22291, 170, NULL, 2375, '02290774', 'PA-KUM( ROCKMAN) CAPS', NULL, '14.0000', '18.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '2.0000', '2021-07-18', 'received', '14.0000', '14.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22292, 170, NULL, 2717, '31018284', 'ZIIPMAN', NULL, '14.0000', '19.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2021-07-18', 'received', '14.0000', '14.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22293, 170, NULL, 1407, '001', 'GIVERS POWER CAPS(140)', NULL, '17.0000', '22.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '2.0000', '2021-07-18', 'received', '17.0000', '17.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22294, 170, NULL, 2954, '42250057', 'BE4 BE4 INSTANT', NULL, '27.0000', '36.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '2.0000', '2021-07-18', 'received', '27.0000', '27.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22295, 170, NULL, 2398, '83807653', 'KINGDOM GINSENG CAPS', NULL, '15.0000', '20.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2021-07-18', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22296, 170, NULL, 1442, '005', 'YAFO MAN CAPS', NULL, '13.0000', '17.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '2.0000', '2021-07-18', 'received', '13.0000', '13.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22297, 170, NULL, 1414, '6034000157048', 'LIVING BITTERS CAPS', NULL, '19.0000', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.0000', '2.0000', '2021-07-18', 'received', '19.0000', '19.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22298, 170, NULL, 1389, '6034000189360', 'ADOM PAWAY CAPS(l00)', NULL, '16.4000', '22.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.8000', '2.0000', '2021-07-18', 'received', '16.4000', '16.4000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22299, 170, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '11.7000', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.1000', '0.0000', '2021-07-18', 'received', '11.7000', '11.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22300, 170, NULL, 1406, '16564749', 'GIVERS KOO CAPS(l40)', NULL, '17.3000', '23.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.9000', '2.0000', '2021-07-18', 'received', '17.3000', '17.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22301, 170, NULL, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', NULL, '13.0000', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-07-18', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22302, 170, NULL, 1424, '6036000070709', 'PROSTAT 60', NULL, '30.0000', '39.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '3.0000', '2021-07-18', 'received', '30.0000', '30.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22303, 170, NULL, 2376, '77456423', 'PROSTAFIT', NULL, '19.5000', '25.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '3.0000', '2021-07-18', 'received', '19.5000', '19.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22304, 170, NULL, 2378, '08590643', 'VENE CAPS', NULL, '18.0000', '23.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2021-07-18', 'received', '18.0000', '18.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22305, 170, NULL, 1422, 'PR-135', 'PROSTACURE TEA (32)', NULL, '21.0000', '28.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '1.0000', '2021-07-18', 'received', '21.0000', '21.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22306, 170, NULL, 1413, 'PR-126', 'KINGDOM GARLIC CAPS', NULL, '16.0000', '21.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '2.0000', '2021-07-18', 'received', '16.0000', '16.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22307, 170, NULL, 2392, '10965636', 'CHOCHO SAOP', NULL, '3.7000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '5.0000', '2021-07-18', 'received', '3.7000', '3.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22308, 170, NULL, 2022, '69436145', 'CHOCHO CREAM', NULL, '3.5000', '4.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '5.0000', '2021-07-18', 'received', '3.5000', '3.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22309, 170, NULL, 2453, '3410766', 'MONA SOAP', NULL, '2.7000', '3.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '5.0000', '2021-07-18', 'received', '2.7000', '2.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22310, 170, NULL, 2653, '35881608', 'MONA KRIM', NULL, '2.7000', '3.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '5.0000', '2021-07-18', 'received', '2.7000', '2.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22311, 170, NULL, 1401, 'PR-114', 'EKURO BEWU', NULL, '3.0000', '4.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '1.0000', '2021-07-18', 'received', '3.0000', '3.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22312, 170, NULL, 2393, '25300648', 'BOAFO OINT', NULL, '3.3000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '3.0000', '2021-07-18', 'received', '3.3000', '3.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22313, 170, NULL, 1402, 'PR-115', 'ERNEST OINT(200)', NULL, '2.2000', '3.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '5.0000', '2021-07-18', 'received', '2.2000', '2.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22314, 170, NULL, 2633, '36871243', 'GANA BALM', NULL, '3.5000', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '3.0000', '2021-07-18', 'received', '3.5000', '3.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22315, 170, NULL, 1396, 'PR-109', 'ANGEL CREAM(200)', NULL, '2.7000', '3.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '5.0000', '2021-07-18', 'received', '2.7000', '2.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22316, 170, NULL, 1386, '6156000046105', 'ABONIK BALM (48)', NULL, '4.5000', '6.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '8.0000', '2021-07-18', 'received', '4.5000', '4.5000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22317, 170, NULL, 1410, 'PR-123', 'JOY OINT S/S(200)', NULL, '2.2000', '3.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '10.0000', '2021-07-18', 'received', '2.2000', '2.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22318, 170, NULL, 1420, 'PR-133', 'NAZO', NULL, '1.2000', '2.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.4000', '11.0000', '2021-07-18', 'received', '1.2000', '1.2000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '1.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22319, 170, NULL, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', NULL, '3.9200', '5.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6000', '4.0000', '2021-07-18', 'received', '3.9200', '3.9200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.9200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22320, 170, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.4400', '11.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.2000', '4.0000', '2021-07-18', 'received', '8.4400', '8.4400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.4400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22321, 170, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.5000', '10.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '0.0000', '2021-07-18', 'received', '7.5000', '7.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22322, 170, NULL, 1326, 'PR-39', 'DERMIRON PLUS CREAM', NULL, '4.4000', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0000', '5.0000', '2021-07-18', 'received', '4.4000', '4.4000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22323, 170, NULL, 1944, 'PR-657', 'Combact N E002d016', NULL, '5.0000', '7.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '5.0000', '2021-07-18', 'received', '5.0000', '5.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22324, 170, NULL, 2541, '39996904', 'DEMACOT CREAM', NULL, '10.8000', '14.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '5.0000', '2021-07-18', 'received', '10.8000', '10.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22325, 170, NULL, 2294, '44448916', 'PENICILLIN OINTMENT', NULL, '4.5000', '6.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '1.0000', '2021-07-18', 'received', '4.5000', '4.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22326, 170, NULL, 1489, '6938058600108', 'SAMOCID(SKIN AND NAIL)', NULL, '28.1700', '37.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.5100', '2.0000', '2021-07-18', 'received', '28.1700', '28.1700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.1700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22327, 170, NULL, 1486, '5010441000687', 'HYDROCORTISONE CREAM', NULL, '17.2400', '23.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.7200', '3.0000', '2021-07-18', 'received', '17.2400', '17.2400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22328, 170, NULL, 2492, '51417644', 'NIZORAL SHAMPOO', NULL, '21.9900', '30.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.9800', '2.0000', '2021-07-18', 'received', '21.9900', '21.9900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22329, 170, NULL, 1731, 'PR-444', 'DAKTARIN CREAM 15G', NULL, '19.9600', '27.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8800', '3.0000', '2021-07-18', 'received', '19.9600', '19.9600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22330, 170, NULL, 2347, '27404535', 'SALICYLIC ACID OINT', NULL, '5.2000', '7.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '6.0000', '2021-07-18', 'received', '5.2000', '5.2000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22331, 170, NULL, 1562, 'PR-275', 'SULPHUR OINT.', NULL, '5.1300', '7.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.6500', '4.0000', '2021-07-18', 'received', '5.1300', '5.1300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.1300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22332, 170, NULL, 2770, '61335227', 'SUDO CREAM 400G', NULL, '53.4000', '70.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.2000', '3.0000', '2021-07-18', 'received', '53.4000', '53.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '53.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22333, 170, NULL, 2638, '71491998', 'SUDOCREAM 60G S/S', NULL, '19.6200', '26.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.8600', '2.0000', '2021-07-18', 'received', '19.6200', '19.6200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22334, 170, NULL, 1548, '6223003960339', 'DAFLON S00MG', NULL, '2.8000', '3.6000', '30.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '30.0000', '2021-07-18', 'received', '2.8000', '2.8000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22335, 170, NULL, 1859, '8901138502942', 'PILEX TAB', NULL, '22.6600', '32.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.9800', '1.0000', '2021-07-18', 'received', '22.6600', '22.6600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22336, 170, NULL, 1860, '8901138150891', 'PILEX OINTMENT', NULL, '21.5000', '28.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.5000', '3.0000', '2021-07-18', 'received', '21.5000', '21.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '21.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22337, 170, NULL, 2771, '85140722', 'SYRINGE & NEEDLES 10ML', NULL, '0.6400', '1.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '48.0000', '2021-07-18', 'received', '0.6400', '0.6400', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22338, 170, NULL, 2575, '87228427', 'CANDEREL TABS', NULL, '12.8500', '17.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.5500', '3.0000', '2021-07-18', 'received', '12.8500', '12.8500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22339, 170, NULL, 2772, '70208100', 'CAFEGOT TAB', NULL, '16.7000', '22.0000', '9.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.3000', '7.0000', '2021-07-18', 'received', '16.7000', '16.7000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '16.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22340, 170, NULL, 1377, '5000158062139', 'BONJELA ADULT', NULL, '35.4700', '45.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.9400', '0.0000', '2021-07-18', 'received', '35.4700', '35.4700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.4700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22341, 170, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '13.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-07-18', 'received', '9.0000', '9.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22342, 170, NULL, 2571, '89677505', 'YAAKSON MIXTURE', NULL, '9.0000', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2021-07-18', 'received', '9.0000', '9.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22343, 170, NULL, 1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', NULL, '17.5000', '23.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '2.0000', '2021-07-18', 'received', '17.5000', '17.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22344, 170, NULL, 1393, 'PR-106', 'AGBEVE PHEVER( 30)', NULL, '6.5000', '8.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '3.0000', '2021-07-18', 'received', '6.5000', '6.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22345, 170, NULL, 2573, '11557669', 'MASADA', NULL, '9.3000', '12.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.9000', '2.0000', '2021-07-18', 'received', '9.3000', '9.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22346, 170, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '9.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2021-07-18', 'received', '6.5000', '6.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22347, 170, NULL, 1430, 'PR-143', 'SOLAK MIXTURE(25)', NULL, '13.0000', '18.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '4.0000', '2021-07-18', 'received', '13.0000', '13.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22348, 170, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '17.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '0.0000', '2021-07-18', 'received', '13.0000', '13.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22349, 170, NULL, 2572, '17160763', 'SWEDISH BITTERS', NULL, '22.0000', '29.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '2.0000', '2021-07-18', 'received', '22.0000', '22.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22350, 170, NULL, 1411, '6036000038952', 'JOY VIKIL', NULL, '25.9000', '34.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.7000', '0.0000', '2021-07-18', 'received', '25.9000', '25.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22351, 170, NULL, 1404, 'PR-117', 'GBEDEMAH Garlic bitters', NULL, '9.0000', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2021-07-18', 'received', '9.0000', '9.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22352, 170, NULL, 1431, 'PR-144', 'SPANISH GARLIC MIXTURE(30)', NULL, '9.8000', '14.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2000', '4.0000', '2021-07-18', 'received', '9.8000', '9.8000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '9.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22353, 170, NULL, 1440, 'PR-153', 'VICTORY GARLIC', NULL, '10.0000', '13.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2021-07-18', 'received', '10.0000', '10.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22354, 170, NULL, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', NULL, '14.0000', '18.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '1.0000', '2021-07-18', 'received', '14.0000', '14.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22355, 170, NULL, 1427, '003', 'ROOTER TYTONIC', NULL, '15.0000', '20.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '3.0000', '2021-07-18', 'received', '15.0000', '15.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22356, 170, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '47.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '3.0000', '2021-07-18', 'received', '36.0000', '36.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '36.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22357, 170, NULL, 2400, '91513969', 'BRIGHTFOD STRONG', NULL, '12.5000', '16.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '2.0000', '2021-07-18', 'received', '12.5000', '12.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22358, 170, NULL, 1394, 'PR-107', 'AGBEVE TONIC(30)', NULL, '8.1700', '10.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.8500', '5.0000', '2021-07-18', 'received', '8.1700', '8.1700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.1700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22359, 170, NULL, 1419, '5024389122233', 'MIGHTY POWER SYS LS', NULL, '11.0000', '14.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '3.0000', '2021-07-18', 'received', '11.0000', '11.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22360, 170, NULL, 1415, '6034000157055', 'LIVING BITTERS SYP S s', NULL, '14.5000', '19.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.0000', '2.0000', '2021-07-18', 'received', '14.5000', '14.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22361, 170, NULL, 1388, 'PR-101', 'ADOM KOKO SYP(20)', NULL, '5.3000', '7.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.5000', '5.0000', '2021-07-18', 'received', '5.3000', '5.3000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22362, 170, NULL, 2974, '33602978', 'EASY CHECK EARLY PREGNANCY TEST', NULL, '5.0000', '8.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '0.0000', '2021-07-18', 'received', '5.0000', '5.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22363, 170, NULL, 2975, '25893453', 'EASY CHECK OVULATION TEST KIT', NULL, '6.0000', '10.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '9.0000', '2021-07-18', 'received', '6.0000', '6.0000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22364, NULL, NULL, 2974, '33602978', 'EASY CHECK EARLY PREGNANCY TEST', NULL, '5.0000', '0.0000', '10.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '50.0000', '-7.0000', '2021-07-27', 'received', '5.0000', '5.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22365, NULL, 118, 2974, '33602978', 'EASY CHECK EARLY PREGNANCY TEST', NULL, '5.0000', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '50.0000', '10.0000', '2021-07-27', 'received', '5.0000', '5.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22366, NULL, 118, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', NULL, '0.3700', '0.0000', '25.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '9.2500', '25.0000', '2021-07-27', 'received', '0.3700', '0.3700', NULL, NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22367, NULL, 118, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '5.2000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.2000', '1.0000', '2021-07-27', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22368, NULL, 118, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '5.2000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.2000', '1.0000', '2021-07-27', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22369, NULL, 118, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '5.2000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.2000', '1.0000', '2021-07-27', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22370, NULL, 118, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '5.2000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.2000', '1.0000', '2021-07-27', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22371, NULL, 118, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '5.2000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.2000', '1.0000', '2021-07-27', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22372, NULL, 118, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '5.2000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.2000', '1.0000', '2021-07-27', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22373, NULL, 118, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '5.2000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.2000', '1.0000', '2021-07-27', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22374, NULL, 118, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '5.2000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.2000', '1.0000', '2021-07-27', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22375, NULL, 118, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '5.2000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.2000', '1.0000', '2021-07-27', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22376, NULL, 118, 1824, '8901315201910', 'TAGERA FORTE TABS', NULL, '5.2000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '5.2000', '1.0000', '2021-07-27', 'received', '5.2000', '5.2000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22377, NULL, 118, 1953, '56415263', 'STAGYL TABS', NULL, '2.4900', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '12.4500', '4.0000', '2021-07-27', 'received', '2.4900', '2.4900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22378, NULL, 118, 2759, '56334949', 'SHALCIP TAB', NULL, '3.9500', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '19.7500', '4.0000', '2021-07-27', 'received', '3.9500', '3.9500', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22379, NULL, 118, 2758, '02583050', 'CYFEN TAB', NULL, '5.4000', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '54.0000', '10.0000', '2021-07-27', 'received', '5.4000', '5.4000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22380, NULL, 118, 2104, '44677443', 'DYNWELL TABLETS', NULL, '0.2000', '0.0000', '50.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '10.0000', '42.0000', '2021-07-27', 'received', '0.2000', '0.2000', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22381, NULL, 118, 2757, '55918370', 'VIGORIX CAPS', NULL, '6.8000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '13.6000', '2.0000', '2021-07-27', 'received', '6.8000', '6.8000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22382, NULL, 118, 2254, '8901040258036', 'BIOFERON SYRUP', NULL, '17.9400', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '53.8200', '3.0000', '2021-07-27', 'received', '17.9400', '17.9400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22383, NULL, 118, 2756, '48200600', 'CYPRON PLUS SYR', NULL, '9.0000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '2.0000', '2021-07-27', 'received', '9.0000', '9.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22384, NULL, 118, 2499, '01118964', 'PROXEED PLUS MEN', NULL, '10.6000', '0.0000', '30.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '318.0000', '30.0000', '2021-07-27', 'received', '10.6000', '10.6000', NULL, NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22385, NULL, 118, 2321, '80141429', 'MIST F.A.C', NULL, '2.5000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '7.5000', '3.0000', '2021-07-27', 'received', '2.5000', '2.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22386, NULL, 118, 2755, '36040795', 'VITA FORCE SYR', NULL, '15.0000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '45.0000', '3.0000', '2021-07-27', 'received', '15.0000', '15.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22387, NULL, 118, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '35.6000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '106.8000', '1.0000', '2021-07-27', 'received', '35.6000', '35.6000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22388, NULL, 118, 2092, '69091614', 'GLUCOSE C L/P', NULL, '4.1500', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '12.4500', '3.0000', '2021-07-27', 'received', '4.1500', '4.1500', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22389, NULL, 118, 2407, '8901138140625', 'MENTAT SYRUP 100ML', NULL, '20.2000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '60.6000', '3.0000', '2021-07-27', 'received', '20.2000', '20.2000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22390, NULL, 118, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.0200', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '50.2000', '9.0000', '2021-07-27', 'received', '5.0200', '5.0200', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22391, NULL, 118, 1381, 'PR-94', ' GOLDY FORTE DS', NULL, '7.4900', '0.0000', '5.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '37.4500', '2.0000', '2021-07-27', 'received', '7.4900', '7.4900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22392, NULL, 118, 1462, '8904008413690', 'OVACARE TABS', NULL, '20.0000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '1.0000', '2021-07-27', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22393, NULL, 118, 1462, '8904008413690', 'OVACARE TABS', NULL, '20.0000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '1.0000', '2021-07-27', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22394, NULL, 118, 1462, '8904008413690', 'OVACARE TABS', NULL, '20.0000', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '20.0000', '1.0000', '2021-07-27', 'received', '20.0000', '20.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22395, NULL, 118, 1365, '8906116211496', 'PROWOMAN', NULL, '19.4900', '0.0000', '6.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '116.9400', '6.0000', '2021-07-27', 'received', '19.4900', '19.4900', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22396, NULL, 118, 1952, '5021265221004', 'MENOPACE CAP(UK)', NULL, '37.2600', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '74.5200', '2.0000', '2021-07-27', 'received', '37.2600', '37.2600', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22397, NULL, 118, 1952, '5021265221004', 'MENOPACE CAP(UK)', NULL, '37.2600', '0.0000', '1.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '37.2600', '1.0000', '2021-07-27', 'received', '37.2600', '37.2600', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22398, NULL, 118, 1353, '5060085540254', 'SELEVITE TABS', NULL, '20.5000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '61.5000', '3.0000', '2021-07-27', 'received', '20.5000', '20.5000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22399, NULL, 118, 1353, '5060085540254', 'SELEVITE TABS', NULL, '20.5000', '0.0000', '2.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '41.0000', '2.0000', '2021-07-27', 'received', '20.5000', '20.5000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22400, NULL, 118, 2406, '8901138502829', 'MENTAT', NULL, '20.7000', '0.0000', '3.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '62.1000', '3.0000', '2021-07-27', 'received', '20.7000', '20.7000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22401, NULL, 118, 2973, '43393257', 'ALKA SELTZER 10.S', NULL, '4.3000', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '43.0000', '10.0000', '2021-07-27', 'received', '4.3000', '4.3000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22402, NULL, 118, 2975, '25893453', 'EASY CHECK OVULATION TEST KIT', NULL, '6.0000', '0.0000', '10.0000', 3, '0.0000', NULL, '', NULL, NULL, NULL, '60.0000', '10.0000', '2021-07-27', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22403, NULL, 120, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', NULL, '20.2400', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '60.7200', '1.0000', '2021-07-27', 'received', '20.2400', '20.2400', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22404, NULL, 120, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '27.2300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '81.6900', '1.0000', '2021-07-27', 'received', '27.2300', '27.2300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22405, NULL, 120, 2362, '63796869', 'ZINNAT 500MG', NULL, '8.8300', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '176.6000', '20.0000', '2021-07-27', 'received', '8.8300', '8.8300', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22406, NULL, 120, 2975, '25893453', 'EASY CHECK OVULATION TEST KIT', NULL, '6.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '6.0000', '0.0000', '2021-07-27', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22407, NULL, NULL, 2445, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-34.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22408, NULL, NULL, 1881, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22409, NULL, NULL, 2708, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22410, NULL, NULL, 1559, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22411, NULL, NULL, 1805, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22412, NULL, NULL, 1964, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22413, NULL, NULL, 2950, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22456, 174, NULL, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '18.2300', '24.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.6900', '0.0000', '2021-07-29', 'received', '18.2300', '18.2300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.2300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22457, 174, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.0000', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-07-29', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22458, 174, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.8000', '19.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.6000', '0.0000', '2021-07-29', 'received', '14.8000', '14.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22459, 174, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.5000', '10.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2021-07-29', 'received', '6.5000', '6.5000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22460, 174, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '9.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-07-29', 'received', '6.5000', '6.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22461, 174, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.0000', '3.0000', '40.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '0.0000', '2021-07-29', 'received', '2.0000', '2.0000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22462, 174, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '35.6000', '47.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.2000', '0.0000', '2021-07-29', 'received', '35.6000', '35.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22463, 174, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '47.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.8000', '0.0000', '2021-07-29', 'received', '35.9000', '35.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22464, 174, NULL, 2460, '07910647', 'EVECARE TAB', NULL, '32.7700', '43.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.5400', '0.0000', '2021-07-29', 'received', '32.7700', '32.7700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.7700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22465, 174, NULL, 2413, '72302134', 'LETAVIN 125MG', NULL, '1.0500', '1.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '0.0000', '2021-07-29', 'received', '1.0500', '1.0500', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22466, 174, NULL, 2168, '8901082004356', 'APTIZOOOM', NULL, '26.0000', '39.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '0.0000', '2021-07-29', 'received', '26.0000', '26.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '26.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22467, 174, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '0.0000', '2021-07-29', 'received', '1.3600', '1.3600', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.3600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22468, 174, NULL, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '3.8400', '7.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '0.0000', '2021-07-29', 'received', '3.8400', '3.8400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.8400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22469, 174, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '29.0000', '38.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.0000', '0.0000', '2021-07-29', 'received', '29.0000', '29.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '29.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22470, 174, NULL, 2299, '8904107900961', 'DICLOLEX GEL', NULL, '6.0000', '8.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '0.0000', '2021-07-29', 'received', '6.0000', '6.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22471, 174, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.9800', '15.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.9400', '0.0000', '2021-07-29', 'received', '10.9800', '10.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22472, 174, NULL, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', NULL, '25.0000', '33.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '0.0000', '2021-07-29', 'received', '25.0000', '25.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22473, 174, NULL, 2817, '45511010', 'ROBAXIN TAB', NULL, '1.8200', '2.5000', '100.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '182.0000', '0.0000', '2021-07-29', 'received', '1.8200', '1.8200', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '1.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22474, 174, NULL, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.3300', '0.5000', '50.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-07-29', 'received', '0.3300', '0.3300', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22475, 174, NULL, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '121.8900', '170.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '1218.9000', '0.0000', '2021-07-29', 'received', '121.8900', '121.8900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '121.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22476, 174, NULL, 1363, '5000456022774', 'CRESTOR 5MG TABS', NULL, '3.0300', '4.0000', '28.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.8400', '0.0000', '2021-07-29', 'received', '3.0300', '3.0300', '28.0000', NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, '3.0300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22477, 174, NULL, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', NULL, '25.0000', '33.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '0.0000', '2021-07-29', 'received', '25.0000', '25.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22478, NULL, NULL, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '18.2300', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '54.6900', '0.0000', '2021-07-29', 'received', '18.2300', '18.2300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22479, NULL, NULL, 2299, '8904107900961', 'DICLOLEX GEL', NULL, '6.0000', '0.0000', '3.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '18.0000', '0.0000', '2021-07-29', 'received', '6.0000', '6.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22480, NULL, NULL, 2817, '45511010', 'ROBAXIN TAB', NULL, '1.8200', '0.0000', '100.0000', 4, NULL, NULL, NULL, NULL, NULL, NULL, '182.0000', '0.0000', '2021-07-29', 'received', '1.8200', '1.8200', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22481, NULL, 122, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.3300', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '3.3000', '0.0000', '2021-07-29', 'received', '0.3300', '0.3300', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22482, NULL, 122, 2289, '01037338', 'FOLIC ACID LETAP', NULL, '0.3300', '0.0000', '40.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '13.2000', '24.0000', '2021-07-29', 'received', '0.3300', '0.3300', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22483, NULL, 122, 2817, '45511010', 'ROBAXIN TAB', NULL, '1.8200', '0.0000', '100.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '182.0000', '70.0000', '2021-07-29', 'received', '1.8200', '1.8200', NULL, NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22484, NULL, 122, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.9800', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.9400', '0.0000', '2021-07-29', 'received', '10.9800', '10.9800', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22485, NULL, 122, 2299, '8904107900961', 'DICLOLEX GEL', NULL, '6.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '18.0000', '0.0000', '2021-07-29', 'received', '6.0000', '6.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22486, NULL, 122, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '29.0000', '0.0000', '6.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '174.0000', '3.0000', '2021-07-29', 'received', '29.0000', '29.0000', NULL, NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22487, NULL, 122, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '3.8400', '0.0000', '10.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '38.4000', '10.0000', '2021-07-29', 'received', '3.8400', '3.8400', NULL, NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22488, NULL, 122, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '68.0000', '0.0000', '2021-07-29', 'received', '1.3600', '1.3600', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22489, NULL, 122, 2168, '8901082004356', 'APTIZOOOM', NULL, '26.0000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.0000', '2.0000', '2021-07-29', 'received', '26.0000', '26.0000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22490, NULL, 122, 2413, '72302134', 'LETAVIN 125MG', NULL, '1.0500', '0.0000', '50.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '52.5000', '41.0000', '2021-07-29', 'received', '1.0500', '1.0500', NULL, NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22491, NULL, 122, 2460, '07910647', 'EVECARE TAB', NULL, '32.7700', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.7700', '0.0000', '2021-07-29', 'received', '32.7700', '32.7700', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22492, NULL, 122, 2460, '07910647', 'EVECARE TAB', NULL, '32.7700', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '32.7700', '0.0000', '2021-07-29', 'received', '32.7700', '32.7700', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22493, NULL, 122, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '71.8000', '1.0000', '2021-07-29', 'received', '35.9000', '35.9000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22494, NULL, 122, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '35.6000', '0.0000', '2.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '71.2000', '0.0000', '2021-07-29', 'received', '35.6000', '35.6000', NULL, NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22495, NULL, 122, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.0000', '0.0000', '40.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '80.0000', '0.0000', '2021-07-29', 'received', '2.0000', '2.0000', NULL, NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22496, NULL, 122, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '0.0000', '4.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '26.0000', '0.0000', '2021-07-29', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22497, NULL, 122, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.5000', '0.0000', '20.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '130.0000', '6.0000', '2021-07-29', 'received', '6.5000', '6.5000', NULL, NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22498, NULL, 122, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.8000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.8000', '0.0000', '2021-07-29', 'received', '14.8000', '14.8000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22499, NULL, 122, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.8000', '0.0000', '1.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '14.8000', '0.0000', '2021-07-29', 'received', '14.8000', '14.8000', NULL, NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22500, NULL, 122, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.0000', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '36.0000', '1.0000', '2021-07-29', 'received', '12.0000', '12.0000', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22501, NULL, 122, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', NULL, '18.2300', '0.0000', '3.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '54.6900', '0.0000', '2021-07-29', 'received', '18.2300', '18.2300', NULL, NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22502, NULL, 122, 2307, '07147099', 'ZITHROMAX 250MG', NULL, '121.8900', '0.0000', '5.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '609.4500', '1.0000', '2021-07-29', 'received', '121.8900', '121.8900', NULL, NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22503, NULL, 122, 1363, '5000456022774', 'CRESTOR 5MG TABS', NULL, '3.0300', '0.0000', '28.0000', 2, '0.0000', NULL, '', NULL, NULL, NULL, '84.8400', '0.0000', '2021-07-29', 'received', '3.0300', '3.0300', NULL, NULL, NULL, 1, 'pc', '28.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22514, 175, NULL, 2316, '59549986', 'SMA 1 BABY FOOD', NULL, '45.0000', '48.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '225.0000', '5.0000', '2021-07-29', 'received', '45.0000', '45.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22515, 175, NULL, 2567, '83596243', 'NAN 1', NULL, '33.0000', '36.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '198.0000', '6.0000', '2021-07-29', 'received', '33.0000', '33.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '33.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22516, 175, NULL, 2566, '42135887', 'MILO TIN', NULL, '17.0000', '20.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '2.0000', '2021-07-29', 'received', '17.0000', '17.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22517, 175, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '25.0000', '28.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '2.0000', '2021-07-29', 'received', '25.0000', '25.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22518, 175, NULL, 2229, '7501058625922', 'LACTOGEN 2', NULL, '24.5000', '28.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.5000', '2.0000', '2021-07-29', 'received', '24.5000', '24.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '24.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22519, 175, NULL, 2223, '6033000083043', 'CERELAC TIN FRUIT', NULL, '14.0000', '16.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '2.0000', '2021-07-29', 'received', '14.0000', '14.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22520, 175, NULL, 2224, '6033000086150', 'CERELAC TIN BISCUITY WITH MILK', NULL, '14.0000', '16.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '1.0000', '2021-07-29', 'received', '14.0000', '14.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22521, 175, NULL, 2225, '6033000082985', 'CERELAC TIN WHEAT', NULL, '14.0000', '16.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '1.0000', '2021-07-29', 'received', '14.0000', '14.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22522, 175, NULL, 2226, '6033000086358', 'CERELAC TIN MAIZE', NULL, '14.0000', '16.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '1.0000', '2021-07-29', 'received', '14.0000', '14.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22523, 175, NULL, 2227, '6033000082992', 'CERELAC TIN RICE', NULL, '14.0000', '16.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '2.0000', '2021-07-29', 'received', '14.0000', '14.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22524, 175, NULL, 2978, '79128358', 'CERELAC TIN MILLET', NULL, '14.0000', '17.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '2.0000', '2021-07-29', 'received', '14.0000', '14.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22525, NULL, NULL, 2951, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-20.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22526, NULL, NULL, 1621, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22527, NULL, NULL, 1424, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22535, 176, NULL, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', NULL, '8.5000', '10.0000', '21.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '178.5000', '21.0000', '2021-07-30', 'received', '8.5000', '8.5000', '21.0000', NULL, NULL, 1, 'pc', '21.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22536, 176, NULL, 2979, '74644667', 'NIVEA SPRAY 200ML', NULL, '15.0000', '17.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '2.0000', '2021-07-30', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22537, 176, NULL, 2132, '4005900579614', 'NIVEA BODY LOTION 400ML', NULL, '21.0000', '24.0000', '14.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '294.0000', '14.0000', '2021-07-30', 'received', '21.0000', '21.0000', '14.0000', NULL, NULL, 1, 'pc', '14.0000', NULL, NULL, NULL, NULL, '21.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22538, 176, NULL, 2980, '62456720', 'NIVEA AFTER SHAVE/ SHAVE FOAM', NULL, '19.0000', '23.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '114.0000', '6.0000', '2021-07-30', 'received', '19.0000', '19.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22539, 176, NULL, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', NULL, '10.5000', '14.0000', '9.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '94.5000', '6.0000', '2021-07-30', 'received', '10.5000', '10.5000', '9.0000', NULL, NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, '10.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22540, 176, NULL, 2037, '96125700', 'SURE  DEO SPRAY 250ML', NULL, '11.0000', '14.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '264.0000', '22.0000', '2021-07-30', 'received', '11.0000', '11.0000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22541, 176, NULL, 2981, '81503059', 'NIVEA FACE CARES', NULL, '28.0000', '34.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '280.0000', '8.0000', '2021-07-30', 'received', '28.0000', '28.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '28.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22542, 176, NULL, 2982, '70783681', 'SURE ROLL ON', NULL, '6.0000', '8.0000', '18.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '18.0000', '2021-07-30', 'received', '6.0000', '6.0000', '18.0000', NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22543, 176, NULL, 2130, '4005808837335', 'NIVEA SPRAY 250ML', NULL, '17.5000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '2.0000', '2021-07-30', 'received', '17.5000', '17.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22544, NULL, NULL, 2768, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22545, NULL, NULL, 1581, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22546, NULL, NULL, 2979, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22547, 177, NULL, 2445, '08969985', 'ADULT DIAPER', NULL, '3.2000', '5.0000', '40.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.0000', '30.0000', '2021-07-31', 'received', '3.2000', '3.2000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '3.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22548, 177, NULL, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', NULL, '11.0000', '14.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '3.0000', '2021-07-31', 'received', '11.0000', '11.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22549, 177, NULL, 2444, '73221630', 'SOFTCARE BABY WIPES', NULL, '7.0800', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.4800', '5.0000', '2021-07-31', 'received', '7.0800', '7.0800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '7.0800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22550, 177, NULL, 1999, '6971044950313', 'YAZZ PAD', NULL, '6.0000', '7.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '6.0000', '2021-07-31', 'received', '6.0000', '6.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22551, 177, NULL, 2027, '60018915', 'VASELINE CREAM SMALL 100ML', NULL, '6.0000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2021-07-31', 'received', '6.0000', '6.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22552, 177, NULL, 2971, '36770680', 'JOHNSON BABY SOAP', NULL, '3.5000', '5.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '4.0000', '2021-07-31', 'received', '3.5000', '3.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22553, 177, NULL, 2983, '27895278', 'CUSSONS BABY SOAP', NULL, '3.0000', '4.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '4.0000', '2021-07-31', 'received', '3.0000', '3.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22554, 177, NULL, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', NULL, '15.0000', '18.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '2.0000', '2021-07-31', 'received', '15.0000', '15.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22555, 177, NULL, 2008, '6003001000509', 'SAVELON ANTISEPTIC 125ML', NULL, '10.0000', '13.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '2.0000', '2021-07-31', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22556, 177, NULL, 2436, '04225724', 'ANTI BACTERIAL WIPE', NULL, '11.5000', '15.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.0000', '2.0000', '2021-07-31', 'received', '11.5000', '11.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '11.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22557, 177, NULL, 2000, '6036000087004', 'FAYTEX', NULL, '8.0000', '10.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '4.0000', '2021-07-31', 'received', '8.0000', '8.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22558, 177, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '10.5000', '14.5000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '8.0000', '2021-07-31', 'received', '10.5000', '10.5000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '10.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22559, 177, NULL, 2325, '68025873', 'ALWAYS PAD MAX', NULL, '5.5000', '7.5000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '8.0000', '2021-07-31', 'received', '5.5000', '5.5000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22560, 177, NULL, 2959, '18835366', 'YAZZ PANTY LINER', NULL, '4.0000', '6.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.0000', '4.0000', '2021-07-31', 'received', '4.0000', '4.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22561, 177, NULL, 2642, '23201636', 'SOFTCARE DIAPER', NULL, '9.2000', '12.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '110.4000', '12.0000', '2021-07-31', 'received', '9.2000', '9.2000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '9.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22567, NULL, NULL, 2497, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22597, 178, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '11.9500', '15.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.5000', '9.0000', '2021-07-31', 'received', '11.9500', '11.9500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '11.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22598, 178, NULL, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', NULL, '9.0500', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.2500', '4.0000', '2021-07-31', 'received', '9.0500', '9.0500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22599, 178, NULL, 2984, '72867652', 'METRO SUSP (M&G)', NULL, '3.1500', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7500', '5.0000', '2021-07-31', 'received', '3.1500', '3.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22600, 178, NULL, 2985, '92371428', 'FLAGYL SUSP 200ML', NULL, '28.1000', '37.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.3000', '2.0000', '2021-07-31', 'received', '28.1000', '28.1000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22601, 178, NULL, 2941, '60137035', 'FUMET SUSPENSION', NULL, '2.6600', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.3000', '5.0000', '2021-07-31', 'received', '2.6600', '2.6600', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.6600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22602, 178, NULL, 2989, '30747371', 'ALUMINIUM HYDRO TAB (M&G)', NULL, '0.9200', '1.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.4000', '7.0000', '2021-07-31', 'received', '0.9200', '0.9200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.9200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22603, 178, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '27.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.1000', '2.0000', '2021-07-31', 'received', '19.0200', '19.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '19.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22604, 178, NULL, 2988, '00550870', 'DARAPRIM TAB', NULL, '7.1000', '9.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '213.0000', '30.0000', '2021-07-31', 'received', '7.1000', '7.1000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '7.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22605, 178, NULL, 1967, '5023497400615', 'SALAMOL CFC INHALER', NULL, '19.5900', '26.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.1800', '2.0000', '2021-07-31', 'received', '19.5900', '19.5900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22606, 178, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '5.0000', '2021-07-31', 'received', '15.0000', '15.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22607, 178, NULL, 2987, '01970843', 'SALBUTAMOL 4MG 500\' ECL', NULL, '0.7500', '1.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '20.0000', '2021-07-31', 'received', '0.7500', '0.7500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '0.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22608, 178, NULL, 2459, '26218313', 'ENAMYCIN SUS (ECL)', NULL, '5.5000', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '1.0000', '2021-07-31', 'received', '5.5000', '5.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22609, 178, NULL, 2986, '39982987', 'PANACIN TAB', NULL, '0.7700', '1.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.7000', '10.0000', '2021-07-31', 'received', '0.7700', '0.7700', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '0.7700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22610, 178, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '15.0000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '4.0000', '2021-07-31', 'received', '15.0000', '15.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22611, 178, NULL, 2990, '71484949', 'ENTRAMOL 500 TAB', NULL, '1.1200', '1.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.2000', '4.0000', '2021-07-31', 'received', '1.1200', '1.1200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.1200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22612, 178, NULL, 2991, '46377274', 'ZINTAB 10MG', NULL, '0.5700', '1.0000', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '99.0000', '2021-07-31', 'received', '0.5700', '0.5700', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.5700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22624, 179, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '2.5000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '0.0000', '2021-08-01', 'received', '2.5000', '2.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22625, 179, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '12.2000', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6000', '0.0000', '2021-08-01', 'received', '12.2000', '12.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22626, 179, NULL, 2995, '32309749', 'NAT B CAPS', NULL, '39.7000', '52.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.4000', '1.0000', '2021-08-01', 'received', '39.7000', '39.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '39.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22627, 179, NULL, 2923, '67740529', 'BELLS CHN COUGH SYR', NULL, '11.1200', '15.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.2400', '0.0000', '2021-08-01', 'received', '11.1200', '11.1200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '11.1200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22628, 179, NULL, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '11.1900', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.3800', '0.0000', '2021-08-01', 'received', '11.1900', '11.1900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '11.1900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22629, 179, NULL, 2936, '30787578', 'MALIN ADULT COUGH', NULL, '6.0400', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0800', '2.0000', '2021-08-01', 'received', '6.0400', '6.0400', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.0400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22630, 179, NULL, 2679, '42097030', 'PEVISONE CREAM', NULL, '32.3500', '43.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '97.0500', '1.0000', '2021-08-01', 'received', '32.3500', '32.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '32.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22631, 179, NULL, 2944, '79280298', 'ZINNAT SUSP 50ML', NULL, '51.9700', '69.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '103.9400', '2.0000', '2021-08-01', 'received', '51.9700', '51.9700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '51.9700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22632, 179, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '7.1600', '10.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.6400', '4.0000', '2021-08-01', 'received', '7.1600', '7.1600', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '7.1600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22633, 179, NULL, 2996, '68586365', 'VOMI 10MG', NULL, '1.7800', '3.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7000', '15.0000', '2021-08-01', 'received', '1.7800', '1.7800', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '1.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22634, 179, NULL, 2997, '69518244', 'VOMIT 30MG', NULL, '1.9800', '3.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.7000', '15.0000', '2021-08-01', 'received', '1.9800', '1.9800', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '1.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22635, 179, NULL, 1379, 'PR-92', 'DIFLUCAN CAPS', NULL, '83.0000', '110.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '0.0000', '2021-08-01', 'received', '83.0000', '83.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '83.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22636, 179, NULL, 1731, 'PR-444', 'DAKTARIN CREAM 15G', NULL, '19.9600', '27.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.8800', '2.0000', '2021-08-01', 'received', '19.9600', '19.9600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22637, 179, NULL, 1643, '6001135505433', 'BENYLIN ORIGINAL', NULL, '40.3900', '53.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.1700', '0.0000', '2021-08-01', 'received', '40.3900', '40.3900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '40.3900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22638, 179, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7600', '0.0000', '2021-08-01', 'received', '2.2300', '2.2300', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '2.2300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22639, 179, NULL, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', NULL, '6.9300', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.7900', '2.0000', '2021-08-01', 'received', '6.9300', '6.9300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.9300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22640, 179, NULL, 2264, '78116631', 'LUBRIMAX JELLY 50G', NULL, '14.0000', '18.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '1.0000', '2021-08-01', 'received', '14.0000', '14.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22641, 179, NULL, 2732, '47378626', 'KY JELLY 50ML', NULL, '33.0000', '44.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '0.0000', '2021-08-01', 'received', '33.0000', '33.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22642, 179, NULL, 2759, '56334949', 'SHALCIP TAB', NULL, '3.9500', '5.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.7500', '2.0000', '2021-08-01', 'received', '3.9500', '3.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22643, 179, NULL, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', NULL, '5.3400', '7.1000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '160.2000', '0.0000', '2021-08-01', 'received', '5.3400', '5.3400', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '5.3400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22644, 179, NULL, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', NULL, '37.2800', '49.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.5600', '1.0000', '2021-08-01', 'received', '37.2800', '37.2800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '37.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22645, 179, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '20.0000', '27.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '2.0000', '2021-08-01', 'received', '20.0000', '20.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22646, 179, NULL, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', NULL, '0.7200', '2.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '15.0000', '2021-08-01', 'received', '0.7200', '0.7200', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22647, 179, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.6000', '12.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '0.0000', '2021-08-01', 'received', '9.6000', '9.6000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22648, 179, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.4700', '0.0000', '2021-08-01', 'received', '3.4900', '3.4900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22649, 179, NULL, 2285, '85310856', 'COARTEM 80/480 TABS', NULL, '35.8000', '48.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '179.0000', '3.0000', '2021-08-01', 'received', '35.8000', '35.8000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '35.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22650, 179, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '10.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.9000', '0.0000', '2021-08-01', 'received', '7.8900', '7.8900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22651, 179, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '7.9800', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.9000', '0.0000', '2021-08-01', 'received', '7.9800', '7.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '7.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22652, 179, NULL, 2068, '79519848', 'LUFART DS', NULL, '13.1000', '17.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '131.0000', '5.0000', '2021-08-01', 'received', '13.1000', '13.1000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '13.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22653, 179, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-08-01', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22654, 179, NULL, 2233, '45473068', 'AMOKISKLAV 625MG', NULL, '19.0200', '27.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.1000', '0.0000', '2021-08-01', 'received', '19.0200', '19.0200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '19.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22655, 179, NULL, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '21.1800', '29.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.7200', '0.0000', '2021-08-01', 'received', '21.1800', '21.1800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '21.1800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22656, 179, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '19.4000', '26.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.6000', '0.0000', '2021-08-01', 'received', '19.4000', '19.4000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '19.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22657, 179, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '47.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '179.5000', '5.0000', '2021-08-01', 'received', '35.9000', '35.9000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '35.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22658, 179, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '13.5000', '18.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '5.0000', '2021-08-01', 'received', '13.5000', '13.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '13.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22659, NULL, NULL, 1691, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22660, NULL, NULL, 2986, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22664, NULL, NULL, 2998, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22704, NULL, NULL, 1328, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22705, NULL, NULL, 2647, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22706, NULL, NULL, 2503, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23106, 180, NULL, 2279, '6161105661986', 'PANADOL EXTRA', NULL, '2.6000', '3.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '22.0000', '2021-08-01', 'received', '2.6000', '2.6000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23107, 180, NULL, 2998, '20603397', 'ZIRTEK 10MG', NULL, '3.6000', '4.9000', '14.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4000', '14.0000', '2021-08-01', 'received', '3.6000', '3.6000', '14.0000', NULL, NULL, 1, 'pc', '14.0000', NULL, NULL, NULL, NULL, '3.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23108, 180, NULL, 2999, '72534299', 'ALPHA GARLIC CAPS', NULL, '13.0000', '17.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '3.0000', '2021-08-01', 'received', '13.0000', '13.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23109, 180, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '11.0000', '14.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '2.0000', '2021-08-01', 'received', '11.0000', '11.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23110, 180, NULL, 1759, '5017848251049', 'BELLS OLIVE  OIL 70ML ORIGINAL', NULL, '11.5000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5000', '3.0000', '2021-08-01', 'received', '11.5000', '11.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23111, 180, NULL, 2405, '40815002', 'GLOVES', NULL, '1.2000', '1.6000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '50.0000', '2021-08-01', 'received', '1.2000', '1.2000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23112, 180, NULL, 3000, '69359672', 'FESOLATE TAB UK', NULL, '6.0000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '3.0000', '2021-08-01', 'received', '6.0000', '6.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23113, 180, NULL, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', NULL, '1.9500', '2.6000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.5000', '0.0000', '2021-08-01', 'received', '1.9500', '1.9500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23114, 180, NULL, 2994, '03462805', 'ESKYPAN TAB ', NULL, '33.0000', '44.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '2.0000', '2021-08-01', 'received', '33.0000', '33.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23115, 180, NULL, 1554, 'PR-267', 'COTRI SUS (M&G) SEPTRIN', NULL, '3.2000', '5.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.8000', '4.0000', '2021-08-01', 'received', '3.2000', '3.2000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '3.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23116, 180, NULL, 3001, '89996055', 'COTRIM TAB LETAP', NULL, '1.5000', '2.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '50.0000', '2021-08-01', 'received', '1.5000', '1.5000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23117, 180, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '15.8000', '21.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.4000', '0.0000', '2021-08-01', 'received', '15.8000', '15.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23118, 180, NULL, 2993, '86417416', 'SICAZINK TONIC 200ML', NULL, '13.0000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '3.0000', '2021-08-01', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23119, 180, NULL, 2992, '39433029', 'PANADOL TAB PLAIN', NULL, '2.6000', '3.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '27.0000', '2021-08-01', 'received', '2.6000', '2.6000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23120, 180, NULL, 3002, '94707960', 'FLEMEX CHILD SYR', NULL, '6.2000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.6000', '1.0000', '2021-08-01', 'received', '6.2000', '6.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23121, 180, NULL, 2936, '30787578', 'MALIN ADULT COUGH', NULL, '6.0400', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.1200', '2.0000', '2021-08-01', 'received', '6.0400', '6.0400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.0400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23122, 180, NULL, 2937, '2745570', 'MALIN BABY COUGH', NULL, '5.3700', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.1100', '3.0000', '2021-08-01', 'received', '5.3700', '5.3700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.3700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23123, 180, NULL, 1348, '8901077166144', 'APDYL-H COUGH SYRUP 200ML', NULL, '15.5000', '21.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '3.0000', '2021-08-01', 'received', '15.5000', '15.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23124, 180, NULL, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', NULL, '19.0000', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '3.0000', '2021-08-01', 'received', '19.0000', '19.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23125, 180, NULL, 2669, '24220016', 'POLYGYNAX PESS', NULL, '24.5000', '32.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.0000', '4.0000', '2021-08-01', 'received', '24.5000', '24.5000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '24.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23126, 180, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.8300', '10.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.9800', '2.0000', '2021-08-01', 'received', '6.8300', '6.8300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23127, 180, NULL, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', NULL, '34.0000', '45.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.0000', '2.0000', '2021-08-01', 'received', '34.0000', '34.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23128, 180, NULL, 2700, '11271279', 'GAVISCON PEPPERMINT 200ML LIQ', NULL, '27.9700', '38.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.9400', '2.0000', '2021-08-01', 'received', '27.9700', '27.9700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.9700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23129, 180, NULL, 2659, '48350053', 'LACTULOSE SOLUTION 300ML', NULL, '25.4800', '34.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.9600', '2.0000', '2021-08-01', 'received', '25.4800', '25.4800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.4800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23130, 180, NULL, 2857, '12087740', 'KAMAGRA 50', NULL, '17.0000', '23.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '2.0000', '2021-08-01', 'received', '17.0000', '17.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23131, 180, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '7.0000', '2021-08-01', 'received', '2.0000', '2.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23132, 180, NULL, 3003, '19346811', 'SPIRIT 200ML MALTITI', NULL, '3.5000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.5000', '5.0000', '2021-08-01', 'received', '3.5000', '3.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23133, 180, NULL, 2749, '09707467', 'COARTEM 18\'S TAB', NULL, '20.5000', '27.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.5000', '3.0000', '2021-08-01', 'received', '20.5000', '20.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23134, 180, NULL, 1555, '3582910081043', 'RHINATHIOL ADULT SYR 125ML', NULL, '22.2400', '29.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.7200', '3.0000', '2021-08-01', 'received', '22.2400', '22.2400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.2400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23135, 180, NULL, 1620, '8906009230061', 'COMIT 50MG', NULL, '2.2300', '4.0000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.4500', '11.0000', '2021-08-01', 'received', '2.2300', '2.2300', '15.0000', NULL, NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, '2.2300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23136, 180, NULL, 2259, '72759006', 'DRAGON SPRAY', NULL, '20.0000', '27.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '4.0000', '2021-08-01', 'received', '20.0000', '20.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23137, 180, NULL, 2260, '29581054', 'DRAGON TABS', NULL, '4.2000', '6.0000', '16.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.2000', '16.0000', '2021-08-01', 'received', '4.2000', '4.2000', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, '4.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23138, 180, NULL, 1629, 'PR-342', 'GEN-M SUSP', NULL, '15.5000', '21.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '3.0000', '2021-08-01', 'received', '15.5000', '15.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23139, 180, NULL, 1569, 'PR-282', 'TIGER CAPS', NULL, '14.2800', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.8400', '3.0000', '2021-08-01', 'received', '14.2800', '14.2800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23140, 180, NULL, 1910, 'PR-623', 'Apc 10 x 10', NULL, '1.0200', '1.5000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '25.0000', '2021-08-01', 'received', '1.0200', '1.0200', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '1.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23141, 180, NULL, 2466, '574992', 'ZINCOFER CAPS', NULL, '13.5900', '18.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.7700', '2.0000', '2021-08-01', 'received', '13.5900', '13.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23142, 180, NULL, 2256, '41965129', 'ZINCOFER SYR', NULL, '12.7400', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.2200', '1.0000', '2021-08-01', 'received', '12.7400', '12.7400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23143, 180, NULL, 2660, '84556664', 'ANDREWS LIVER SALT', NULL, '0.7000', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '26.0000', '2021-08-01', 'received', '0.7000', '0.7000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23144, 180, NULL, 1364, '5021265244447', 'WELLWOMAN CAPS 70+', NULL, '52.5500', '69.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '105.1000', '2.0000', '2021-08-01', 'received', '52.5500', '52.5500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '52.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23145, 180, NULL, 2917, '02413027', 'FLEMEX ADULT SYRUP', NULL, '7.3500', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0500', '2.0000', '2021-08-01', 'received', '7.3500', '7.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23146, 180, NULL, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', NULL, '42.0000', '55.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '2.0000', '2021-08-01', 'received', '42.0000', '42.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '42.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23147, 180, NULL, 2626, '10089309', 'OSTECARE TABS INDIA', NULL, '7.8800', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6400', '3.0000', '2021-08-01', 'received', '7.8800', '7.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23148, 180, NULL, 3005, '06203049', 'OSTEOCARE SYR INDIA', NULL, '8.0000', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2021-08-01', 'received', '8.0000', '8.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23149, 180, NULL, 2261, '2112345602905', 'TIGER SPRAY', NULL, '18.9900', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.9700', '3.0000', '2021-08-01', 'received', '18.9900', '18.9900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23150, 180, NULL, 2507, '57385161', 'WELLTEEN HER', NULL, '34.2000', '45.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.4000', '2.0000', '2021-08-01', 'received', '34.2000', '34.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23151, 180, NULL, 2508, '13685865', 'WELLTEEN HIM', NULL, '34.2000', '45.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '68.4000', '2.0000', '2021-08-01', 'received', '34.2000', '34.2000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '34.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23152, 180, NULL, 1660, '5034593050901', 'NEOVITA CAP', NULL, '53.0800', '71.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.1600', '2.0000', '2021-08-01', 'received', '53.0800', '53.0800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '53.0800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23153, 180, NULL, 2593, '8850769013252', 'GINSOMIN CAPS', NULL, '14.4000', '19.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '86.4000', '6.0000', '2021-08-01', 'received', '14.4000', '14.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '14.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23154, 180, NULL, 2903, '64476421', 'LIV 52 TABS', NULL, '32.0000', '42.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '2.0000', '2021-08-01', 'received', '32.0000', '32.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23155, 180, NULL, 2974, '33602978', 'EASY CHECK EARLY PREGNANCY TEST', NULL, '5.0000', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '10.0000', '2021-08-01', 'received', '5.0000', '5.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23156, 180, NULL, 2389, '78098233', 'ALKA SELTZER 20\'S', NULL, '3.1400', '4.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.4000', '10.0000', '2021-08-01', 'received', '3.1400', '3.1400', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.1400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23157, 180, NULL, 2904, '85860104', 'LIV 52 SYRUP', NULL, '19.6100', '26.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.2200', '2.0000', '2021-08-01', 'received', '19.6100', '19.6100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.6100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23158, 180, NULL, 3007, '23234633', 'FOLIC ACID TAB APS 28\'', NULL, '7.2500', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.7500', '3.0000', '2021-08-01', 'received', '7.2500', '7.2500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23159, 180, NULL, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', NULL, '2.7400', '4.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.8000', '20.0000', '2021-08-01', 'received', '2.7400', '2.7400', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '2.7400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23160, 180, NULL, 3008, '55554888', 'PHILEBODIA CAPS', NULL, '56.0000', '74.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '112.0000', '2.0000', '2021-08-01', 'received', '56.0000', '56.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '56.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23161, 180, NULL, 2775, '40792038', 'LEXSPORIN OINTMENT', NULL, '18.9000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.7000', '2.0000', '2021-08-01', 'received', '18.9000', '18.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23162, 180, NULL, 2163, '94064304', 'IMAX DELAY SPRAY', NULL, '22.0000', '29.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '3.0000', '2021-08-01', 'received', '22.0000', '22.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23163, 180, NULL, 1669, '5000456024778', 'NEXIUM 40MG TAB', NULL, '9.3000', '12.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '186.0000', '20.0000', '2021-08-01', 'received', '9.3000', '9.3000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '9.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23164, 180, NULL, 1843, '5000456024754', 'NEXIUM TABS 20MG 14S', NULL, '6.2000', '8.2000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '124.0000', '20.0000', '2021-08-01', 'received', '6.2000', '6.2000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23165, 180, NULL, 2379, '98167111', 'COLODIUM CAPS', NULL, '1.8000', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '1.0000', '2021-08-01', 'received', '1.8000', '1.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23166, 180, NULL, 2943, '94222566', 'MIST EXPECT SEED', NULL, '2.5000', '3.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.5000', '3.0000', '2021-08-01', 'received', '2.5000', '2.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23167, 180, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.3500', '5.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '5.0000', '2021-08-01', 'received', '3.3500', '3.3500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23168, 180, NULL, 2995, '32309749', 'NAT B CAPS', NULL, '39.7000', '52.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.4000', '1.0000', '2021-08-01', 'received', '39.7000', '39.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '39.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23169, 180, NULL, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', NULL, '7.3000', '10.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.2000', '0.0000', '2021-08-01', 'received', '7.3000', '7.3000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '7.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23170, 180, NULL, 3009, '25462573', 'B CO STRONG KRIKA ORIGINAL', NULL, '22.0000', '29.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '3.0000', '2021-08-01', 'received', '22.0000', '22.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '22.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23171, 180, NULL, 1322, 'PR-35', 'BADRUF CREAM 30MG', NULL, '3.6000', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.8000', '1.0000', '2021-08-01', 'received', '3.6000', '3.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23172, 180, NULL, 1479, '8906087940135', 'IMPRESSER OIL', NULL, '44.0000', '58.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '2.0000', '2021-08-01', 'received', '44.0000', '44.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '44.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23173, 180, NULL, 1573, '5997001360170', 'POSTINOR ORIGINAL', NULL, '24.6200', '32.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.8600', '1.0000', '2021-08-01', 'received', '24.6200', '24.6200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '24.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23174, 180, NULL, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', NULL, '5.5000', '7.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '12.0000', '2021-08-01', 'received', '5.5000', '5.5000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23175, 180, NULL, 2135, '42431074', 'POSTINOR LOCAL', NULL, '2.5000', '5.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '21.0000', '2021-08-01', 'received', '2.5000', '2.5000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23176, 180, NULL, 1621, '8851447000021', 'MARK 2 INHALER', NULL, '6.6000', '9.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.2000', '11.0000', '2021-08-01', 'received', '6.6000', '6.6000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '6.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23177, 180, NULL, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', NULL, '25.3300', '33.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.9900', '0.0000', '2021-08-01', 'received', '25.3300', '25.3300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23178, 180, NULL, 2245, '77795384', 'MAGACID TABLETS', NULL, '0.7000', '1.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.0000', '26.0000', '2021-08-01', 'received', '0.7000', '0.7000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23179, 180, NULL, 2998, '20603397', 'ZIRTEK 10MG', NULL, '3.6000', '4.9000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.2000', '7.0000', '2021-08-01', 'received', '3.6000', '3.6000', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '3.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23180, 180, NULL, 3010, '81744974', 'ZIRTEK SOLUTION', NULL, '42.0000', '55.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '2.0000', '2021-08-01', 'received', '42.0000', '42.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '42.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23181, 180, NULL, 2678, '32692312', 'NAPROSYN EC 500MG UK', NULL, '37.0000', '48.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '370.0000', '10.0000', '2021-08-01', 'received', '37.0000', '37.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '37.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23182, 180, NULL, 1882, 'PR-595', 'ICTHAMMOL OINT', NULL, '12.0500', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.1500', '3.0000', '2021-08-01', 'received', '12.0500', '12.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23183, 180, NULL, 2925, '77810587', 'WHITFIELD OINTMENT', NULL, '3.9900', '5.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.9700', '3.0000', '2021-08-01', 'received', '3.9900', '3.9900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23184, 180, NULL, 1514, '6221032340177', 'DEXATROL EYE OINT', NULL, '11.9600', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8800', '3.0000', '2021-08-01', 'received', '11.9600', '11.9600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23185, 180, NULL, 1513, '6221032233103', 'DEXATROL EYE DROP', NULL, '11.9600', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8800', '3.0000', '2021-08-01', 'received', '11.9600', '11.9600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23186, 180, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.5000', '2.0000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '28.0000', '2021-08-01', 'received', '1.5000', '1.5000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23187, 180, NULL, 1510, '009', 'CIPROLEX EYE & EAR DROP', NULL, '8.8600', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.5800', '1.0000', '2021-08-01', 'received', '8.8600', '8.8600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23188, 180, NULL, 1376, '7640153082107', 'IXYLO-MEPHA 0.05%', NULL, '42.0000', '55.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '0.0000', '2021-08-01', 'received', '42.0000', '42.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '42.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23189, NULL, NULL, 2106, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23190, NULL, NULL, 1640, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23191, NULL, NULL, 2990, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23192, NULL, NULL, 2084, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23193, NULL, NULL, 1677, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23194, NULL, NULL, 2916, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23200, 181, NULL, 1376, '7640153082107', 'IXYLO-MEPHA 0.05%', NULL, '42.0000', '55.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '1.0000', '2021-07-24', 'received', '42.0000', '42.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '42.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23201, 181, NULL, 2274, '55192131', 'STOPKOFF EXP CHN', NULL, '3.9800', '6.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.9200', '4.0000', '2021-07-24', 'received', '3.9800', '3.9800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '3.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23202, 181, NULL, 1316, 'PR-29', 'FAMACOLD SYR', NULL, '6.3000', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.9000', '3.0000', '2021-07-24', 'received', '6.3000', '6.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23203, 181, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.2500', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.7500', '1.0000', '2021-07-24', 'received', '4.2500', '4.2500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23204, 181, NULL, 2976, '08146148', 'ACIC LOVIR TAB', NULL, '14.0000', '18.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '4.0000', '2021-07-24', 'received', '14.0000', '14.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23205, 181, NULL, 3011, '26812806', 'ARTHROTEC TABS 75MG 20\'S', NULL, '3.7800', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.6000', '20.0000', '2021-07-24', 'received', '3.7800', '3.7800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23206, 181, NULL, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', NULL, '29.4000', '39.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.6000', '0.0000', '2021-07-24', 'received', '29.4000', '29.4000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '29.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23207, 181, NULL, 2247, '29226629', 'TRISILICATE SYR', NULL, '2.5000', '3.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '4.0000', '2021-07-24', 'received', '2.5000', '2.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23208, 181, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.0600', '2.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.4000', '36.0000', '2021-07-24', 'received', '1.0600', '1.0600', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.0600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23209, 181, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.8300', '10.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.9800', '5.0000', '2021-07-24', 'received', '6.8300', '6.8300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23210, 181, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '7.0000', '2021-07-24', 'received', '5.2000', '5.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23211, 181, NULL, 2166, '6036000078514', 'ULCERPLEX HERBAL', NULL, '5.5000', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-07-24', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23212, 181, NULL, 1506, '7612797504765', 'MAXITROL EYE DROP', NULL, '16.2500', '21.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '2.0000', '2021-07-24', 'received', '16.2500', '16.2500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23213, 181, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '4.5300', '7.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.6500', '5.0000', '2021-07-24', 'received', '4.5300', '4.5300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23214, 181, NULL, 3012, '2568423', 'POLYGEL SYR 120ML', NULL, '4.7000', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1000', '2.0000', '2021-07-24', 'received', '4.7000', '4.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23215, 181, NULL, 1513, '6221032233103', 'DEXATROL EYE DROP', NULL, '11.9600', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9200', '2.0000', '2021-07-24', 'received', '11.9600', '11.9600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '11.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23216, 181, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '7.9500', '10.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.8500', '3.0000', '2021-07-24', 'received', '7.9500', '7.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23217, 181, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.5000', '2.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '0.0000', '2021-07-24', 'received', '1.5000', '1.5000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23218, NULL, NULL, 2989, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23219, NULL, NULL, 2612, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23220, NULL, NULL, 1382, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23221, NULL, NULL, 1640, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23222, NULL, NULL, 2169, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-39.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23223, NULL, NULL, 2951, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-33.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23224, NULL, NULL, 2381, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23225, NULL, NULL, 2320, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-10.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23226, NULL, NULL, 1425, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23227, NULL, NULL, 2167, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-19.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23228, NULL, NULL, 2556, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23229, NULL, NULL, 1307, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-7.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23230, NULL, NULL, 2842, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23231, NULL, NULL, 2102, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23232, NULL, NULL, 2722, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23233, NULL, NULL, 1791, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23234, NULL, NULL, 2945, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23573, 182, NULL, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', NULL, '11.6900', '15.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.7600', '0.0000', '2021-08-04', 'received', '11.6900', '11.6900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '11.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23574, 182, NULL, 2544, '85585070', 'NEXCOFER SYR L/S', NULL, '6.8800', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.6400', '2.0000', '2021-08-04', 'received', '6.8800', '6.8800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23575, 182, NULL, 2810, '44204486', 'L MONTUS', NULL, '2.2000', '2.9000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '66.0000', '20.0000', '2021-08-04', 'received', '2.2000', '2.2000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23576, 182, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '34.9000', '46.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.7000', '2.0000', '2021-08-04', 'received', '34.9000', '34.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '34.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23577, 182, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.4000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '3.0000', '2021-08-04', 'received', '6.4000', '6.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23578, 182, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '5.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.6000', '3.0000', '2021-08-04', 'received', '3.5500', '3.5500', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '3.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23579, 182, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1000', '1.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '19.0000', '2021-08-04', 'received', '1.1000', '1.1000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23580, 182, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.2100', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.1000', '8.0000', '2021-08-04', 'received', '2.2100', '2.2100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23581, 182, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.5000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '6.0000', '2021-08-04', 'received', '1.5000', '1.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23582, 182, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '27.0900', '35.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.2700', '2.0000', '2021-08-04', 'received', '27.0900', '27.0900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.0900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23583, 182, NULL, 2995, '32309749', 'NAT B CAPS', NULL, '39.7000', '52.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.7000', '0.0000', '2021-08-04', 'received', '39.7000', '39.7000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '39.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23584, 182, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7100', '3.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.2600', '3.0000', '2021-08-04', 'received', '2.7100', '2.7100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.7100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23585, 182, NULL, 1537, 'PR-250', 'VITANE SYR', NULL, '37.9200', '50.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.9200', '1.0000', '2021-08-04', 'received', '37.9200', '37.9200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '37.9200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23586, 182, NULL, 3015, '67021005', 'BRAINWISE OMEGA3 SYR150ML', NULL, '47.6700', '63.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.6700', '1.0000', '2021-08-04', 'received', '47.6700', '47.6700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '47.6700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23587, 182, NULL, 2142, '5021265223855', 'WELLBABY ', NULL, '57.0000', '76.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '0.0000', '2021-08-04', 'received', '57.0000', '57.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '57.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23588, 182, NULL, 2462, '03669885', 'WELLBABY DROP', NULL, '42.3500', '56.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.3500', '1.0000', '2021-08-04', 'received', '42.3500', '42.3500', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '42.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23589, 182, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '11.5200', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.5600', '2.0000', '2021-08-04', 'received', '11.5200', '11.5200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23590, 182, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '10.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5600', '2.0000', '2021-08-04', 'received', '6.8900', '6.8900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '6.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23591, 182, NULL, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', NULL, '7.2800', '10.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.1200', '1.0000', '2021-08-04', 'received', '7.2800', '7.2800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '7.2800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23592, 182, NULL, 1337, 'PR-50', 'SPIRIT', NULL, '2.0000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '3.0000', '2021-08-04', 'received', '2.0000', '2.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23593, 182, NULL, 3016, '26681275', 'DREZ OINTMENT 30G', NULL, '14.5200', '19.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5600', '3.0000', '2021-08-04', 'received', '14.5200', '14.5200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.5200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23594, 182, NULL, 1302, 'PR-15', 'BASE COLD SYR', NULL, '4.0000', '6.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '5.0000', '2021-08-04', 'received', '4.0000', '4.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23595, 182, NULL, 1379, 'PR-92', 'DIFLUCAN CAPS', NULL, '83.0000', '110.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '83.0000', '0.0000', '2021-08-04', 'received', '83.0000', '83.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '83.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23596, 182, NULL, 1822, 'PR-535', 'TOT?HEMA', NULL, '2.3000', '3.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '92.0000', '18.0000', '2021-08-04', 'received', '2.3000', '2.3000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '2.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23597, 182, NULL, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', NULL, '0.4700', '0.7000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.5000', '39.0000', '2021-08-04', 'received', '0.4700', '0.4700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.4700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23598, 182, NULL, 2459, '26218313', 'ENAMYCIN SUS (ECL)', NULL, '5.5000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '1.0000', '2021-08-04', 'received', '5.5000', '5.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23599, 182, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '11.9500', '15.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8500', '2.0000', '2021-08-04', 'received', '11.9500', '11.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23600, 182, NULL, 2546, '11973520', 'NOSTAMINE E/N DROPS', NULL, '13.6300', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.2600', '2.0000', '2021-08-04', 'received', '13.6300', '13.6300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.6300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23601, 182, NULL, 2387, '00790319', 'NORMAL TEARS EYE DROP', NULL, '11.9600', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.9200', '2.0000', '2021-08-04', 'received', '11.9600', '11.9600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '11.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23602, 182, NULL, 2541, '39996904', 'DEMACOT CREAM', NULL, '10.0000', '13.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '1.0000', '2021-08-04', 'received', '10.0000', '10.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23603, 182, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '10.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '157.8000', '1.0000', '2021-08-04', 'received', '7.8900', '7.8900', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '7.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23604, 182, NULL, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', NULL, '5.9300', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7900', '1.0000', '2021-08-04', 'received', '5.9300', '5.9300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.9300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23605, 182, NULL, 2972, '13709725', 'BENYLIN 4 FLU SPRAY 100ML', NULL, '22.9800', '30.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.9600', '1.0000', '2021-08-04', 'received', '22.9800', '22.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23606, 182, NULL, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', NULL, '7.8500', '11.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.1000', '2.0000', '2021-08-04', 'received', '7.8500', '7.8500', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '7.8500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23607, 182, NULL, 1733, 'PR-446', 'ENAFIX TABS 200MG 10\'', NULL, '8.8900', '12.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.7800', '2.0000', '2021-08-04', 'received', '8.8900', '8.8900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23608, 182, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '32.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.8200', '1.0000', '2021-08-04', 'received', '23.9100', '23.9100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23609, 182, NULL, 3018, '27169206', 'PARA SYR EXETER', NULL, '4.9100', '6.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7300', '1.0000', '2021-08-04', 'received', '4.9100', '4.9100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23610, 182, NULL, 3019, '72127749', 'HEPTOLIFE SYR 200ML', NULL, '7.8000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '2.0000', '2021-08-04', 'received', '7.8000', '7.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23611, 182, NULL, 3020, '56022580', 'ARZIGLOBIN SYR', NULL, '11.2100', '15.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.4200', '2.0000', '2021-08-04', 'received', '11.2100', '11.2100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '11.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23612, 182, NULL, 3021, '52425979', 'BENYLIN WET COUGH MENTHOL SYR 100ML', NULL, '25.2100', '33.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.4200', '2.0000', '2021-08-04', 'received', '25.2100', '25.2100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23613, 182, NULL, 3022, '51946298', 'SEDALYN ADULT', NULL, '4.1200', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.2400', '2.0000', '2021-08-04', 'received', '4.1200', '4.1200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '4.1200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23614, 182, NULL, 2279, '6161105661986', 'PANADOL EXTRA', NULL, '2.8000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '2.0000', '2021-08-04', 'received', '2.8000', '2.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23615, 182, NULL, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', NULL, '1.5000', '2.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.0000', '35.0000', '2021-08-04', 'received', '1.5000', '1.5000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23616, 182, NULL, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', NULL, '6.6300', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8900', '0.0000', '2021-08-04', 'received', '6.6300', '6.6300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.6300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23617, 182, NULL, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', NULL, '2.5700', '3.8300', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.4200', '2.0000', '2021-08-04', 'received', '2.5700', '2.5700', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.5700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23618, 182, NULL, 1528, '4031571020445', 'METFORMIN DENK S00MG', NULL, '4.4000', '6.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '88.0000', '17.0000', '2021-08-04', 'received', '4.4000', '4.4000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23619, 182, NULL, 1530, '4031571064159', 'METFORMIN DENK 1G', NULL, '28.7000', '38.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.4000', '2.0000', '2021-08-04', 'received', '28.7000', '28.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23620, 182, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '6.5000', '10.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '130.0000', '0.0000', '2021-08-04', 'received', '6.5000', '6.5000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23621, 182, NULL, 1706, 'PR-419', 'PROCOLD SYR 100ml', NULL, '11.8200', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6400', '1.0000', '2021-08-04', 'received', '11.8200', '11.8200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '11.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23622, 182, NULL, 1856, 'PR-569', 'KOFFEX SYR ADULT', NULL, '4.2500', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.7500', '3.0000', '2021-08-04', 'received', '4.2500', '4.2500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23623, 182, NULL, 1851, '8901138100629', 'KOFLET SYRUP 100ML', NULL, '12.1700', '16.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.5100', '0.0000', '2021-08-04', 'received', '12.1700', '12.1700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.1700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23624, 182, NULL, 2937, '2745570', 'MALIN BABY COUGH', NULL, '5.3700', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.7400', '2.0000', '2021-08-04', 'received', '5.3700', '5.3700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.3700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23625, 182, NULL, 1495, '8904107901401', 'MYCOLEX POWDER', NULL, '17.7300', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4600', '2.0000', '2021-08-04', 'received', '17.7300', '17.7300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.7300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23626, 182, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '9.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '0.0000', '2021-08-04', 'received', '6.5000', '6.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23627, 182, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.0000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '0.0000', '2021-08-04', 'received', '9.0000', '9.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23628, 182, NULL, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', NULL, '13.0000', '17.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '0.0000', '2021-08-04', 'received', '13.0000', '13.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23629, 182, NULL, 1426, '6034600108426', 'ROOTER LIFE', NULL, '36.0000', '47.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '2.0000', '2021-08-04', 'received', '36.0000', '36.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '36.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23630, 182, NULL, 3023, '83478580', 'MALIN JUNIOR', NULL, '5.6400', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.9200', '3.0000', '2021-08-04', 'received', '5.6400', '5.6400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23675, 184, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.0600', '2.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.8000', '6.0000', '2021-08-05', 'received', '1.0600', '1.0600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.0600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23676, 184, NULL, 2916, '85432536', 'LONART DS TAB', NULL, '14.7800', '20.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '147.8000', '0.0000', '2021-08-05', 'received', '14.7800', '14.7800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '14.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23677, 184, NULL, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', NULL, '11.7000', '16.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.5000', '5.0000', '2021-08-05', 'received', '11.7000', '11.7000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23678, 184, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '4.7700', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.8500', '4.0000', '2021-08-05', 'received', '4.7700', '4.7700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.7700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23679, 184, NULL, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', NULL, '4.7700', '7.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.8500', '4.0000', '2021-08-05', 'received', '4.7700', '4.7700', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.7700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23680, 184, NULL, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', NULL, '5.9300', '8.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.6500', '4.0000', '2021-08-05', 'received', '5.9300', '5.9300', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.9300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23681, 184, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '10.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4500', '2.0000', '2021-08-05', 'received', '6.8900', '6.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23682, 184, NULL, 1629, 'PR-342', 'GEN-M SUSP', NULL, '15.5000', '21.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.5000', '0.0000', '2021-08-05', 'received', '15.5000', '15.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '15.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23683, 184, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '5.0000', '2021-08-05', 'received', '5.2000', '5.2000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23684, 184, NULL, 2288, '44100235', 'FLUXAMOX SUSP 100ML', NULL, '7.8600', '11.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.4400', '3.0000', '2021-08-05', 'received', '7.8600', '7.8600', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '7.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23685, 184, NULL, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', NULL, '1.0500', '1.3000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '0.0000', '2021-08-05', 'received', '1.0500', '1.0500', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23686, 184, NULL, 2068, '79519848', 'LUFART DS', NULL, '11.6200', '17.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.1000', '3.0000', '2021-08-05', 'received', '11.6200', '11.6200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23687, 184, NULL, 1649, '6161102003536', 'ZUBES EXPECTORANT', NULL, '11.1900', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.5700', '3.0000', '2021-08-05', 'received', '11.1900', '11.1900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.1900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23688, 184, NULL, 1812, 'PR-525', 'VERMOX TABS', NULL, '7.8900', '10.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.9000', '5.0000', '2021-08-05', 'received', '7.8900', '7.8900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23689, 184, NULL, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', NULL, '3.3500', '5.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0500', '2.0000', '2021-08-05', 'received', '3.3500', '3.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '3.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23690, 184, NULL, 2272, '8904008420469', 'CONGESTYL TAB', NULL, '5.5000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '5.5000', '1.0000', '2021-08-05', 'received', '5.5000', '5.5000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23691, 184, NULL, 1967, '5023497400615', 'SALAMOL CFC INHALER', NULL, '19.5900', '26.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.1800', '0.0000', '2021-08-05', 'received', '19.5900', '19.5900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '19.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23692, 184, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.5000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '1.0000', '2021-08-05', 'received', '7.5000', '7.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23693, 184, NULL, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', NULL, '5.4200', '7.2000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.4000', '20.0000', '2021-08-05', 'received', '5.4200', '5.4200', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '5.4200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23694, 184, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '33.8900', '45.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.7800', '2.0000', '2021-08-05', 'received', '33.8900', '33.8900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23695, 184, NULL, 1643, '6001135505433', 'BENYLIN ORIGINAL', NULL, '40.3900', '53.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.3900', '0.0000', '2021-08-05', 'received', '40.3900', '40.3900', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '40.3900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23696, 184, NULL, 2923, '67740529', 'BELLS CHN COUGH SYR', NULL, '11.1200', '15.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.1200', '1.0000', '2021-08-05', 'received', '11.1200', '11.1200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '11.1200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23697, 184, NULL, 1541, '8902502106421', 'INFA V PESS', NULL, '18.7200', '25.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.4400', '2.0000', '2021-08-05', 'received', '18.7200', '18.7200', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '18.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23698, 184, NULL, 1884, 'PR-597', 'POLYFER SYR (200ML)', NULL, '5.1300', '6.7700', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.2600', '1.0000', '2021-08-05', 'received', '5.1300', '5.1300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.1300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23699, 184, NULL, 1339, 'PR-52', 'COTTON WOOL 25G', NULL, '1.8000', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '4.0000', '2021-08-05', 'received', '1.8000', '1.8000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23700, 184, NULL, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', NULL, '14.0000', '18.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '1.0000', '2021-08-05', 'received', '14.0000', '14.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23701, 184, NULL, 3030, '90744167', 'MAAME DAGOMBA BITTERS', NULL, '9.0000', '12.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2021-08-05', 'received', '9.0000', '9.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23702, 184, NULL, 3031, '66880065', 'MAAME DAGOMBA CAPSULES', NULL, '13.0000', '17.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '2.0000', '2021-08-05', 'received', '13.0000', '13.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23703, 184, NULL, 3032, '34566585', 'MAAME DAGOMBA MACHO CAPSULES', NULL, '13.0000', '17.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.0000', '1.0000', '2021-08-05', 'received', '13.0000', '13.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23704, NULL, NULL, 1639, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23705, NULL, NULL, 1431, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23706, NULL, NULL, 2152, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23707, NULL, NULL, 1502, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23708, NULL, NULL, 2073, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23709, NULL, NULL, 1533, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-10.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23710, NULL, NULL, 2769, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23741, NULL, NULL, 1422, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23742, NULL, NULL, 1404, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23743, NULL, NULL, 1312, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23744, NULL, NULL, 2286, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23745, NULL, NULL, 2506, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23746, NULL, NULL, 2234, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23747, NULL, NULL, 1928, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23748, NULL, NULL, 1760, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23749, NULL, NULL, 1961, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23750, NULL, NULL, 2105, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-11.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23751, NULL, NULL, 2242, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-10.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23752, NULL, NULL, 2108, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23753, NULL, NULL, 2315, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23754, NULL, NULL, 3013, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23755, NULL, NULL, 3029, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23756, NULL, NULL, 2294, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23757, NULL, NULL, 1666, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23758, NULL, NULL, 2285, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23759, NULL, NULL, 2351, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23760, NULL, NULL, 2085, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-25.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23761, NULL, NULL, 1616, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23762, NULL, NULL, 1805, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23763, NULL, NULL, 1654, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23764, NULL, NULL, 2411, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23765, NULL, NULL, 2262, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23766, NULL, NULL, 2273, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23767, NULL, NULL, 2546, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23768, NULL, NULL, 1765, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23769, NULL, NULL, 2862, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23770, NULL, NULL, 2992, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23771, NULL, NULL, 2283, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23772, NULL, NULL, 2224, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23773, NULL, NULL, 1854, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23774, NULL, NULL, 2384, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-14.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23775, NULL, NULL, 2655, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23776, NULL, NULL, 2253, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23777, NULL, NULL, 2829, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23778, NULL, NULL, 2760, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-9.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23779, NULL, NULL, 1602, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23780, NULL, NULL, 1863, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-36.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23781, NULL, NULL, 2699, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23782, NULL, NULL, 1950, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23783, NULL, NULL, 1592, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23784, NULL, NULL, 1501, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23785, NULL, NULL, 1868, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-10.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23786, NULL, NULL, 2453, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23787, NULL, NULL, 1837, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23788, NULL, NULL, 1856, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23789, NULL, NULL, 2168, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23790, NULL, NULL, 1307, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23791, NULL, NULL, 1499, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-11.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23792, NULL, NULL, 2403, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23793, NULL, NULL, 2334, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23794, NULL, NULL, 1346, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23795, NULL, NULL, 2949, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23796, NULL, NULL, 1525, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23797, NULL, NULL, 1665, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-11.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23798, NULL, NULL, 1440, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23799, NULL, NULL, 3018, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23800, NULL, NULL, 1702, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23801, NULL, NULL, 1310, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-11.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23802, NULL, NULL, 2650, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23803, NULL, NULL, 2730, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23804, NULL, NULL, 2297, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23805, NULL, NULL, 1975, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23806, NULL, NULL, 2055, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23807, NULL, NULL, 1401, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23808, NULL, NULL, 1420, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23809, NULL, NULL, 1314, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23810, NULL, NULL, 1532, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23811, NULL, NULL, 1523, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23812, NULL, NULL, 2992, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23813, NULL, NULL, 1678, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23814, NULL, NULL, 2876, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23815, NULL, NULL, 2415, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23816, NULL, NULL, 1531, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23817, NULL, NULL, 2277, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23818, NULL, NULL, 1432, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23819, NULL, NULL, 2354, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23820, NULL, NULL, 1690, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23821, NULL, NULL, 1841, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23822, NULL, NULL, 2920, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23823, NULL, NULL, 1394, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23824, NULL, NULL, 2248, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23825, NULL, NULL, 1811, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23826, NULL, NULL, 1512, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23827, NULL, NULL, 1935, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23828, NULL, NULL, 1844, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23838, NULL, NULL, 2060, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23839, NULL, NULL, 2345, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23840, NULL, NULL, 2777, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23841, NULL, NULL, 1308, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23842, NULL, NULL, 1864, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23843, NULL, NULL, 3012, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23844, NULL, NULL, 2950, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23845, NULL, NULL, 1505, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23846, NULL, NULL, 2088, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23847, NULL, NULL, 2244, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23848, NULL, NULL, 1612, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23849, NULL, NULL, 3006, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23850, NULL, NULL, 1695, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23851, NULL, NULL, 1692, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23852, NULL, NULL, 2109, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23853, NULL, NULL, 1481, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23854, NULL, NULL, 1807, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23855, NULL, NULL, 1781, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23856, NULL, NULL, 1876, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23857, NULL, NULL, 3006, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23858, NULL, NULL, 1672, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-20.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23859, NULL, NULL, 2103, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23860, NULL, NULL, 1347, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23861, NULL, NULL, 1700, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23862, NULL, NULL, 1557, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23863, NULL, NULL, 1386, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23864, NULL, NULL, 2393, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23865, NULL, NULL, 2347, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23866, NULL, NULL, 1668, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23867, NULL, NULL, 1595, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23868, NULL, NULL, 3017, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23869, NULL, NULL, 2321, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23870, NULL, NULL, 1590, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23871, NULL, NULL, 2251, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23872, NULL, NULL, 1680, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23873, NULL, NULL, 2600, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23874, NULL, NULL, 1779, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23875, NULL, NULL, 2492, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23876, NULL, NULL, 2309, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23877, NULL, NULL, 1661, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23878, NULL, NULL, 1822, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-30.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23879, NULL, NULL, 2350, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23880, NULL, NULL, 1619, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23881, NULL, NULL, 1662, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23882, NULL, NULL, 1675, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23883, NULL, NULL, 1912, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-17.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23884, NULL, NULL, 2769, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23885, NULL, NULL, 2265, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23971, 183, NULL, 2435, '31684073', 'ORAL B TOOTHPASTE', NULL, '5.0000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '4.0000', '2021-08-05', 'received', '5.0000', '5.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23972, 183, NULL, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', NULL, '5.2100', '7.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2600', '6.0000', '2021-08-05', 'received', '5.2100', '5.2100', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23973, 183, NULL, 3024, '02807617', 'COLGATE CHARCOAL PASTE', NULL, '5.9000', '8.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.4000', '6.0000', '2021-08-05', 'received', '5.9000', '5.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23974, 183, NULL, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.2000', '1.5800', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.4000', '12.0000', '2021-08-05', 'received', '1.2000', '1.2000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '1.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23975, 183, NULL, 3025, '3587770', 'COLGATE BRUSH', NULL, '2.3000', '3.0000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.6000', '12.0000', '2021-08-05', 'received', '2.3000', '2.3000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '2.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23976, 183, NULL, 3026, '94515456', 'YAZZ TOOTH BRUSH', NULL, '1.0000', '1.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '11.0000', '2021-08-05', 'received', '1.0000', '1.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '1.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23977, 183, NULL, 3027, '21467766', 'LUX SOAP', NULL, '5.0000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '6.0000', '2021-08-05', 'received', '5.0000', '5.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23978, 183, NULL, 2449, '73407261', 'DETTOL SOAP SMALL', NULL, '5.0000', '7.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2021-08-05', 'received', '5.0000', '5.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23979, 183, NULL, 2523, '89430832', 'CAMEL SOAP', NULL, '4.8000', '6.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '6.0000', '2021-08-05', 'received', '4.8000', '4.8000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23980, 183, NULL, 2448, '42222157', 'IMPERIAL LEATHER SOAP B/S', NULL, '5.0000', '7.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '6.0000', '2021-08-05', 'received', '5.0000', '5.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23981, 183, NULL, 2423, '57283790', 'POWER ZONE S/S', NULL, '4.0000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '6.0000', '2021-08-05', 'received', '4.0000', '4.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23982, 183, NULL, 3028, '19459821', 'MEDISOFT SOAP', NULL, '2.0000', '3.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '6.0000', '2021-08-05', 'received', '2.0000', '2.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23983, 183, NULL, 3033, '14789418', 'HUICHUN CAPSULES', NULL, '22.0000', '30.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '2.0000', '2021-08-05', 'received', '22.0000', '22.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23984, 183, NULL, 2327, '66319646', 'MR Q', NULL, '4.5000', '6.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '24.0000', '2021-08-05', 'received', '4.5000', '4.5000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23985, 183, NULL, 3039, '29292273', 'ADUSA HERBAL MIXTURE', NULL, '13.5000', '18.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '2.0000', '2021-08-05', 'received', '13.5000', '13.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23986, 183, NULL, 3040, '41228459', 'ADUSA HERBAL CAPS', NULL, '13.5000', '18.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '1.0000', '2021-08-05', 'received', '13.5000', '13.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23987, 183, NULL, 3034, '33733514', 'ARABA BAZAN', NULL, '17.0000', '23.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.0000', '2.0000', '2021-08-05', 'received', '17.0000', '17.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23988, 183, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.0000', '0.0000', '2021-08-05', 'received', '2.0000', '2.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23989, 183, NULL, 2162, '6156000252803', 'TCP SOAP', NULL, '6.5000', '8.5000', '12.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '12.0000', '2021-08-05', 'received', '6.5000', '6.5000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23990, 183, NULL, 3041, '14432869', 'DORCO RAZORS', NULL, '1.6000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '19.0000', '2021-08-05', 'received', '1.6000', '1.6000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23991, 183, NULL, 2809, '57353674', 'LONGRICH TOOTHPASTE', NULL, '28.0000', '35.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.0000', '2.0000', '2021-08-05', 'received', '28.0000', '28.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '28.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23992, 183, NULL, 2870, '312547427555', 'LISTERINE MOUTH WASH 1.5L ', NULL, '45.0000', '60.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '2.0000', '2021-08-05', 'received', '45.0000', '45.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23993, 183, NULL, 2604, '43079266', 'COA MIXTURE', NULL, '90.0000', '120.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '270.0000', '3.0000', '2021-08-05', 'received', '90.0000', '90.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23994, 185, NULL, 2327, '66319646', 'MR Q', NULL, '4.5000', '6.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '135.0000', '0.0000', '2021-08-05', 'received', '4.5000', '4.5000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '4.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23995, 185, NULL, 3033, '14789418', 'HUICHUN CAPSULES', NULL, '22.0000', '30.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.0000', '2.0000', '2021-08-05', 'received', '22.0000', '22.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23996, 185, NULL, 3034, '33733514', 'ARABA BAZAN', NULL, '17.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0000', '1.0000', '2021-08-05', 'received', '17.0000', '17.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23997, 185, NULL, 1420, 'PR-133', 'NAZO', NULL, '1.2000', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '4.0000', '2021-08-05', 'received', '1.2000', '1.2000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '1.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23998, 185, NULL, 3035, '31081429', 'LAWSON HERBAL', NULL, '9.5000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '2.0000', '2021-08-05', 'received', '9.5000', '9.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23999, 185, NULL, 3036, '73219310', 'YAFO KOO BITTERS', NULL, '9.5000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '2.0000', '2021-08-05', 'received', '9.5000', '9.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24000, 185, NULL, 1401, 'PR-114', 'EKURO BEWU', NULL, '3.0000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '1.0000', '2021-08-05', 'received', '3.0000', '3.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24001, 185, NULL, 2604, '43079266', 'COA MIXTURE', NULL, '90.0000', '120.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '4.0000', '2021-08-05', 'received', '90.0000', '90.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24002, 185, NULL, 3041, '14432869', 'DORCO RAZORS', NULL, '1.6000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.0000', '20.0000', '2021-08-05', 'received', '1.6000', '1.6000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24003, 186, NULL, 2649, '19814758', 'ZITHROMAX SUSP', NULL, '71.9800', '95.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '359.9000', '4.0000', '2021-08-09', 'received', '71.9800', '71.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '71.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24004, 186, NULL, 2459, '26218313', 'ENAMYCIN SUS (ECL)', NULL, '5.6900', '7.5000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.5200', '6.0000', '2021-08-09', 'received', '5.6900', '5.6900', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '5.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24005, 186, NULL, 3037, '02744503', 'LORATADINE (CLARITINE) SYRUP 100ML', NULL, '46.9000', '62.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '93.8000', '1.0000', '2021-08-09', 'received', '46.9000', '46.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '46.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24006, 186, NULL, 1780, '5021265220076', 'FEROGLOBIN CAPS', NULL, '35.6000', '47.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '106.8000', '0.0000', '2021-08-09', 'received', '35.6000', '35.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '35.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24007, 186, NULL, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', NULL, '27.2300', '36.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '81.6900', '0.0000', '2021-08-09', 'received', '27.2300', '27.2300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '27.2300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24008, 186, NULL, 3034, '33733514', 'ARABA BAZAN', NULL, '17.0000', '23.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.0000', '3.0000', '2021-08-09', 'received', '17.0000', '17.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24009, 186, NULL, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', NULL, '19.4000', '26.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.2000', '3.0000', '2021-08-09', 'received', '19.4000', '19.4000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24010, 186, NULL, 2682, '40258519', 'FOLIGROW CAPS', NULL, '19.3000', '25.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.9000', '3.0000', '2021-08-09', 'received', '19.3000', '19.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24011, 186, NULL, 1863, '6033000270368', 'CITRO-C 250S 100MG', NULL, '1.3600', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '4.0800', '0.0000', '2021-08-09', 'received', '1.3600', '1.3600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '1.3600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24012, 186, NULL, 3038, '45009505', 'KY JELLY 50G', NULL, '25.0000', '33.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '2.0000', '2021-08-09', 'received', '25.0000', '25.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24013, 186, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.5000', '2.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '60.0000', '2021-08-09', 'received', '1.5000', '1.5000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24014, 186, NULL, 2574, '24484092', 'DULCOLAX TABS 5MG 20\'S', NULL, '1.1300', '1.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.6000', '10.0000', '2021-08-09', 'received', '1.1300', '1.1300', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.1300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24015, 186, NULL, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', NULL, '4.6900', '7.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4500', '4.0000', '2021-08-09', 'received', '4.6900', '4.6900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24016, 186, NULL, 2638, '71491998', 'SUDOCREAM 60G S/S', NULL, '19.6200', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.6200', '1.0000', '2021-08-09', 'received', '19.6200', '19.6200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '19.6200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24017, 186, NULL, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', NULL, '25.0000', '33.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '0.0000', '2021-08-09', 'received', '25.0000', '25.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24018, 186, NULL, 3013, '60394518', 'INOXIME TAB 200MG', NULL, '8.0000', '11.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '4.0000', '2021-08-09', 'received', '8.0000', '8.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24019, 186, NULL, 2333, '81610561', 'CIPROFLOXACIN SUSP (XIN-A)', NULL, '33.0000', '43.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '132.0000', '4.0000', '2021-08-09', 'received', '33.0000', '33.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '33.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24020, 186, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.5000', '2.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '40.0000', '2021-08-09', 'received', '1.5000', '1.5000', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24021, 186, NULL, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', NULL, '25.0000', '33.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '125.0000', '4.0000', '2021-08-09', 'received', '25.0000', '25.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24094, 187, NULL, 1773, '7640153082091', 'XYLO ACINO MEPHA 0.10ML', NULL, '42.0500', '55.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '84.1000', '2.0000', '2021-08-11', 'received', '42.0500', '42.0500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '42.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24095, 187, NULL, 2274, '55192131', 'STOPKOFF EXP CHN', NULL, '3.9800', '6.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.9200', '4.0000', '2021-08-11', 'received', '3.9800', '3.9800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '3.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24096, 187, NULL, 1316, 'PR-29', 'FAMACOLD SYR', NULL, '6.3000', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.9000', '3.0000', '2021-08-11', 'received', '6.3000', '6.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24097, 187, NULL, 1805, 'PR-518', 'SAMALIN ADULT', NULL, '4.2500', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.7500', '3.0000', '2021-08-11', 'received', '4.2500', '4.2500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24098, 187, NULL, 2976, '08146148', 'ACIC LOVIR TAB', NULL, '14.0000', '18.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '4.0000', '2021-08-11', 'received', '14.0000', '14.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24099, 187, NULL, 3011, '26812806', 'ARTHROTEC TABS 75MG 20\'S', NULL, '3.7800', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.6000', '20.0000', '2021-08-11', 'received', '3.7800', '3.7800', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24100, 187, NULL, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', NULL, '29.4000', '39.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '117.6000', '3.0000', '2021-08-11', 'received', '29.4000', '29.4000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '29.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24101, 187, NULL, 2247, '29226629', 'TRISILICATE SYR', NULL, '2.5000', '3.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '4.0000', '2021-08-11', 'received', '2.5000', '2.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24102, 187, NULL, 2237, '6033000270061', 'EFPAC TABS', NULL, '1.0600', '2.0000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.8000', '26.0000', '2021-08-11', 'received', '1.0600', '1.0600', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.0600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24103, 187, NULL, 1651, 'PR-364', 'ZENTEL TAB 200MG', NULL, '6.4000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '38.4000', '1.0000', '2021-08-11', 'received', '6.4000', '6.4000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24104, 187, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0000', '7.0000', '2021-08-11', 'received', '5.2000', '5.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24105, 187, NULL, 2166, '6036000078514', 'ULCERPLEX HERBAL', NULL, '5.5000', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '2.0000', '2021-08-11', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24106, 187, NULL, 1506, '7612797504765', 'MAXITROL EYE DROP', NULL, '16.2500', '21.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.5000', '2.0000', '2021-08-11', 'received', '16.2500', '16.2500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '16.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24107, 187, NULL, 1646, 'PR-359', 'AMCOF BABY', NULL, '5.0000', '7.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.0000', '4.0000', '2021-08-11', 'received', '5.0000', '5.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24108, 187, NULL, 3012, '2568423', 'POLYGEL SYR 120ML', NULL, '4.7000', '6.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1000', '3.0000', '2021-08-11', 'received', '4.7000', '4.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24109, 187, NULL, 1513, '6221032233103', 'DEXATROL EYE DROP', NULL, '11.9600', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8800', '3.0000', '2021-08-11', 'received', '11.9600', '11.9600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24110, 187, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '7.9500', '10.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.8500', '3.0000', '2021-08-11', 'received', '7.9500', '7.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24111, 187, NULL, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', NULL, '1.5000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '3.0000', '2.0000', '2021-08-11', 'received', '1.5000', '1.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '1.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24112, 187, NULL, 3013, '60394518', 'INOXIME TAB 200MG', NULL, '8.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '2.0000', '2021-08-11', 'received', '8.0000', '8.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24113, 187, NULL, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', NULL, '29.0000', '38.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '174.0000', '0.0000', '2021-08-11', 'received', '29.0000', '29.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '29.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24114, 187, NULL, 2350, '58123990', 'COARTEM 6\'S', NULL, '10.3800', '14.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.1400', '3.0000', '2021-08-11', 'received', '10.3800', '10.3800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.3800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24115, 187, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '5.5000', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5000', '5.0000', '2021-08-11', 'received', '5.5000', '5.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24116, 187, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.1500', '8.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.7500', '5.0000', '2021-08-11', 'received', '6.1500', '6.1500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24117, 187, NULL, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', NULL, '11.9500', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.8500', '3.0000', '2021-08-11', 'received', '11.9500', '11.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24118, 187, NULL, 2020, '97365815', 'FUNBACT CREAM', NULL, '7.5000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.5000', '2.0000', '2021-08-11', 'received', '7.5000', '7.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24119, 187, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.4400', '11.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.6400', '3.0000', '2021-08-11', 'received', '8.4400', '8.4400', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '8.4400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24120, 187, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '32.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.8200', '2.0000', '2021-08-11', 'received', '23.9100', '23.9100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24121, 187, NULL, 2413, '72302134', 'LETAVIN 125MG', NULL, '1.0500', '1.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.5000', '48.0000', '2021-08-11', 'received', '1.0500', '1.0500', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24122, 187, NULL, 1686, '8901082006-81', 'ALKA-5 SYR', NULL, '27.0000', '36.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '2.0000', '2021-08-11', 'received', '27.0000', '27.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24123, 187, NULL, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', NULL, '0.3700', '0.5000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.5000', '29.0000', '2021-08-11', 'received', '0.3700', '0.3700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.3700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24124, 187, NULL, 1592, '5021265231102', 'FEROGLOBIN SYR', NULL, '35.9000', '47.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.8000', '1.0000', '2021-08-11', 'received', '35.9000', '35.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24125, 187, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '14.9700', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9400', '2.0000', '2021-08-11', 'received', '14.9700', '14.9700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.9700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24126, 187, NULL, 1626, '306420072116', 'VITAFOL CAP', NULL, '7.5900', '10.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.7700', '2.0000', '2021-08-11', 'received', '7.5900', '7.5900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.5900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24127, 187, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '20.7800', '24.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.3400', '0.0000', '2021-08-11', 'received', '20.7800', '20.7800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.7800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24128, 187, NULL, 1519, 'PR-232', 'ZULU TAB 10', NULL, '3.3500', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.0000', '17.0000', '2021-08-11', 'received', '3.3500', '3.3500', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '3.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24129, 187, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '17.8000', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '53.4000', '1.0000', '2021-08-11', 'received', '17.8000', '17.8000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '17.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24130, 187, NULL, 3042, '84936848', 'S/SEAS CAPS 30\'S', NULL, '27.1000', '36.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.2000', '2.0000', '2021-08-11', 'received', '27.1000', '27.1000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '27.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24131, 187, NULL, 2255, '8901040258050', 'BIOFERON CAPS', NULL, '17.4900', '26.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.9800', '1.0000', '2021-08-11', 'received', '17.4900', '17.4900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '17.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24132, 187, NULL, 1688, 'PR-401', 'ZINCOVIT TAB', NULL, '18.5000', '24.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '55.5000', '2.0000', '2021-08-11', 'received', '18.5000', '18.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24133, 187, NULL, 2265, '5014502000807', 'MINAMINO SYRUP M/S', NULL, '32.0000', '43.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '0.0000', '2021-08-11', 'received', '32.0000', '32.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '32.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24134, 187, NULL, 2767, '22329866', 'ADVIL TAB 24\'S', NULL, '35.5000', '47.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.0000', '2.0000', '2021-08-11', 'received', '35.5000', '35.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24135, 187, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '13.0000', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '5.0000', '2021-08-11', 'received', '13.0000', '13.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24138, 189, NULL, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '4.4000', '7.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '50.0000', '2021-08-12', 'received', '4.4000', '4.4000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '4.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24139, 189, NULL, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', NULL, '1.0000', '5.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '40.0000', '2021-08-12', 'received', '1.0000', '1.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24140, 189, NULL, 2558, '12419923', 'OVULATION TEST KIT', NULL, '6.0000', '10.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '4.0000', '2021-08-12', 'received', '6.0000', '6.0000', '7.0000', NULL, NULL, 1, 'pc', '7.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24141, NULL, NULL, 2378, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24142, NULL, NULL, 1497, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24143, NULL, NULL, 2281, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24144, NULL, NULL, 1577, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24145, NULL, NULL, 2083, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24146, NULL, NULL, 1528, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-8.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24193, 191, NULL, 1967, '5023497400615', 'SALAMOL CFC INHALER', NULL, '20.8800', '28.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.8800', '1.0000', '2021-08-12', 'received', '20.8800', '20.8800', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '20.8800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24194, 191, NULL, 2917, '02413027', 'FLEMEX ADULT SYRUP', NULL, '7.3500', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.0500', '3.0000', '2021-08-12', 'received', '7.3500', '7.3500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24195, 191, NULL, 2331, '22131552', 'IMODIUM CAPS 2MG 6\'S', NULL, '12.0700', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.2100', '3.0000', '2021-08-12', 'received', '12.0700', '12.0700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24196, 191, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '7.0900', '9.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1800', '2.0000', '2021-08-12', 'received', '7.0900', '7.0900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.0900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24197, 191, NULL, 1945, 'PR-658', 'LUFART SUSP', NULL, '9.5000', '12.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '95.0000', '8.0000', '2021-08-12', 'received', '9.5000', '9.5000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24198, 191, NULL, 2940, '42955737', 'DIPHEX COUGH SYRP', NULL, '6.3600', '8.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0800', '1.0000', '2021-08-12', 'received', '6.3600', '6.3600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.3600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24199, 191, NULL, 2972, '13709725', 'BENYLIN 4 FLU SPRAY 100ML', NULL, '28.5000', '38.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '2.0000', '2021-08-12', 'received', '28.5000', '28.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24200, 191, NULL, 1811, 'PR-524', 'VERMOX SUSP', NULL, '14.5300', '19.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.1200', '4.0000', '2021-08-12', 'received', '14.5300', '14.5300', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24201, 191, NULL, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', NULL, '12.5000', '16.5000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '100.0000', '8.0000', '2021-08-12', 'received', '12.5000', '12.5000', '8.0000', NULL, NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, '12.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24202, 191, NULL, 2068, '79519848', 'LUFART DS', NULL, '12.1500', '17.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '121.5000', '4.0000', '2021-08-12', 'received', '12.1500', '12.1500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '12.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24203, 191, NULL, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', NULL, '19.0000', '25.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.0000', '2.0000', '2021-08-12', 'received', '19.0000', '19.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24204, 191, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '8.6700', '11.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.3400', '1.0000', '2021-08-12', 'received', '8.6700', '8.6700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '8.6700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24205, 191, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '9.1700', '12.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.3400', '2.0000', '2021-08-12', 'received', '9.1700', '9.1700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.1700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24206, 191, NULL, 1809, 'PR-522', 'VISCOF D SY', NULL, '9.1700', '12.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.3400', '2.0000', '2021-08-12', 'received', '9.1700', '9.1700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.1700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24207, 191, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '25.1100', '33.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '75.3300', '3.0000', '2021-08-12', 'received', '25.1100', '25.1100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '25.1100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24262, 192, NULL, 2459, '26218313', 'ENAMYCIN SUS (ECL)', NULL, '5.6900', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.0700', '1.0000', '2021-08-12', 'received', '5.6900', '5.6900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.6900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24263, 192, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '11.8700', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.6100', '3.0000', '2021-08-12', 'received', '11.8700', '11.8700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24264, 192, NULL, 1336, 'PR-49', 'RUBBING ALCOHOL -MUL TITI', NULL, '15.0000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '1.0000', '2021-08-12', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24265, 192, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.7400', '2.0000', '2021-08-12', 'received', '6.2900', '6.2900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24266, 192, NULL, 2710, '09217360', 'AUGMENTIN SUSP 457MG', NULL, '40.3000', '53.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.9000', '3.0000', '2021-08-12', 'received', '40.3000', '40.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '40.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24267, 192, NULL, 1704, '5060033711873', 'CYPRODINE SYR', NULL, '25.9800', '36.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '129.9000', '5.0000', '2021-08-12', 'received', '25.9800', '25.9800', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '25.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24268, 192, NULL, 3018, '27169206', 'PARA SYR EXETER', NULL, '4.9100', '6.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7300', '3.0000', '2021-08-12', 'received', '4.9100', '4.9100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24269, 192, NULL, 2497, '26571538', 'CALPOl 6+', NULL, '31.2000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.2000', '0.0000', '2021-08-12', 'received', '31.2000', '31.2000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '31.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24270, 192, NULL, 3046, '45723019', 'SALINE NASAL DROP 0.90 10ML', NULL, '5.4000', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '9.0000', '2021-08-12', 'received', '5.4000', '5.4000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24271, 192, NULL, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', NULL, '12.0000', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '0.0000', '2021-08-12', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24272, 192, NULL, 1810, 'PR-523', 'VISCOF EXPECTORANT', NULL, '7.8000', '11.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.6000', '1.0000', '2021-08-12', 'received', '7.8000', '7.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24273, 192, NULL, 1338, 'PR-51', 'COTTON WOOL 1 00G', NULL, '4.2900', '6.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.7400', '2.0000', '2021-08-12', 'received', '4.2900', '4.2900', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '4.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24274, 192, NULL, 2733, '55537393', 'COTTON WOOL 200G', NULL, '7.5000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '6.0000', '2021-08-12', 'received', '7.5000', '7.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '7.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24275, 192, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '14.5000', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5000', '0.0000', '2021-08-12', 'received', '14.5000', '14.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24276, 192, NULL, 3047, '01534299', 'AVAMYS NASAL SPRAY 7.5MCG', NULL, '52.0200', '69.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '52.0200', '1.0000', '2021-08-12', 'received', '52.0200', '52.0200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '52.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24277, 192, NULL, 3048, '13411031', 'REFRESH TEAR EYE DROP 15ML', NULL, '46.0000', '61.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '138.0000', '3.0000', '2021-08-12', 'received', '46.0000', '46.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '46.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24278, 192, NULL, 3049, '05338053', 'CHILDREN COUGH SYR 100ML', NULL, '10.9000', '15.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.8000', '2.0000', '2021-08-12', 'received', '10.9000', '10.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '10.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24279, 192, NULL, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', NULL, '14.0500', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.1500', '1.0000', '2021-08-12', 'received', '14.0500', '14.0500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24280, 192, NULL, 2708, '5012616291791', 'PHILIPS MILK OF MAGNESIA', NULL, '33.9600', '55.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '101.8800', '2.0000', '2021-08-12', 'received', '33.9600', '33.9600', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.9600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24281, 192, NULL, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', NULL, '2.0000', '3.0000', '60.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '120.0000', '60.0000', '2021-08-12', 'received', '2.0000', '2.0000', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24282, 192, NULL, 3050, '01809572', 'EXCIPRO DEX EYE/EYE DROPS 10ML', NULL, '9.0000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '3.0000', '2021-08-12', 'received', '9.0000', '9.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24283, 192, NULL, 1671, '3838989529642', 'CIPRINOL TAB 500MG', NULL, '4.8000', '6.3500', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '96.0000', '20.0000', '2021-08-12', 'received', '4.8000', '4.8000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '4.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24284, 188, NULL, 1524, 'PR-237', 'MALARIA SELF TEST KITS', NULL, '4.4000', '7.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '220.0000', '50.0000', '2021-08-12', 'received', '4.4000', '4.4000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '4.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24285, 188, NULL, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', NULL, '1.0000', '5.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '47.0000', '2021-08-12', 'received', '1.0000', '1.0000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '1.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24286, 188, NULL, 1689, 'PR-402', 'ZINCOVIT SYR', NULL, '11.9500', '17.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.7500', '5.0000', '2021-08-12', 'received', '11.9500', '11.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '11.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24287, 188, NULL, 1888, 'PR-601', ' NUGEL O SUSPENSION', NULL, '14.5000', '20.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.5000', '0.0000', '2021-08-12', 'received', '14.5000', '14.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24288, 188, NULL, 1672, '890388500076', 'CIPRO DENK 500MG', NULL, '2.8700', '4.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '143.5000', '40.0000', '2021-08-12', 'received', '2.8700', '2.8700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '2.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24289, 188, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '7.9800', '11.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '47.8800', '5.0000', '2021-08-12', 'received', '7.9800', '7.9800', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '7.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24321, 193, NULL, 1482, '5011501040124', 'DEEP HEAT RUB 35G', NULL, '12.3000', '17.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.6000', '2.0000', '2021-08-12', 'received', '12.3000', '12.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '12.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24322, 193, NULL, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', NULL, '21.1800', '29.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.3600', '1.0000', '2021-08-12', 'received', '21.1800', '21.1800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '21.1800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24323, 193, NULL, 1668, '8906016831572', 'Acidom Caps', NULL, '13.2900', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.8700', '2.0000', '2021-08-12', 'received', '13.2900', '13.2900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24324, 193, NULL, 2331, '22131552', 'IMODIUM CAPS 2MG 6\'S', NULL, '12.0700', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.2100', '2.0000', '2021-08-12', 'received', '12.0700', '12.0700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24325, 193, NULL, 3051, '84906766', 'DERMOVATE 25G', NULL, '35.3300', '47.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.6600', '2.0000', '2021-08-12', 'received', '35.3300', '35.3300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '35.3300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24326, 193, NULL, 3052, '37443992', 'ROC MIXTURE 250', NULL, '10.5000', '14.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '31.5000', '3.0000', '2021-08-12', 'received', '10.5000', '10.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24327, 193, NULL, 1634, 'PR-347', 'HYPONIDD TABS 20\' ?', NULL, '25.0000', '33.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '2.0000', '2021-08-12', 'received', '25.0000', '25.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24328, 193, NULL, 2089, '39725135', 'POLYGEL SUSP 200ML', NULL, '7.0900', '9.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.1800', '2.0000', '2021-08-12', 'received', '7.0900', '7.0900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.0900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24329, 193, NULL, 1604, 'PR-317', 'AUGMENTIN 1G', NULL, '38.6500', '51.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '154.6000', '4.0000', '2021-08-12', 'received', '38.6500', '38.6500', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '38.6500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24330, 193, NULL, 2665, '94928957', 'FLEMING 625MG', NULL, '24.4700', '32.3000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.4100', '3.0000', '2021-08-12', 'received', '24.4700', '24.4700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '24.4700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24331, 193, NULL, 2291, '8904091112401', 'CANDIBIOTICS EAR DROPS 5ML', NULL, '20.6400', '27.3000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.9200', '3.0000', '2021-08-12', 'received', '20.6400', '20.6400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '20.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24332, 193, NULL, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', NULL, '13.5000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.5000', '2.0000', '2021-08-12', 'received', '13.5000', '13.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24333, 193, NULL, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', NULL, '13.0000', '17.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '0.0000', '2021-08-12', 'received', '13.0000', '13.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24334, 193, NULL, 3053, '83466743', 'IBUPROFEN DENK 600MG TAB', NULL, '1.4600', '2.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '58.4000', '40.0000', '2021-08-12', 'received', '1.4600', '1.4600', '40.0000', NULL, NULL, 1, 'pc', '40.0000', NULL, NULL, NULL, NULL, '1.4600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24335, 193, NULL, 3054, '23818302', 'AZIRON 500MG TABS', NULL, '57.7500', '76.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '115.5000', '2.0000', '2021-08-12', 'received', '57.7500', '57.7500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '57.7500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24336, 193, NULL, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', NULL, '15.0000', '25.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '360.0000', '19.0000', '2021-08-12', 'received', '15.0000', '15.0000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24337, 193, NULL, 2411, '13740723', 'GEBEDOL FORTE TAB', NULL, '1.6000', '2.0000', '18.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.8000', '17.0000', '2021-08-12', 'received', '1.6000', '1.6000', '18.0000', NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, '1.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24338, 193, NULL, 2169, '97038500', 'GEBEDOL', NULL, '1.1300', '1.5000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.9000', '20.0000', '2021-08-12', 'received', '1.1300', '1.1300', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '1.1300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24339, 193, NULL, 3043, '56894380', 'BEAUTEX COLLAGEN 250MG TABS', NULL, '65.0000', '86.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '1.0000', '2021-08-12', 'received', '65.0000', '65.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '65.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24340, 193, NULL, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', NULL, '6.8900', '10.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '34.4500', '1.0000', '2021-08-12', 'received', '6.8900', '6.8900', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '6.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24341, 193, NULL, 2251, '8901138500573', 'BONNISAN SYRUP', NULL, '12.0000', '16.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '2.0000', '2021-08-12', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24342, 193, NULL, 1623, '5021265223398', 'PERFECTIL PLUS SKIN', NULL, '130.0000', '174.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '260.0000', '2.0000', '2021-08-12', 'received', '130.0000', '130.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '130.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24343, 193, NULL, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', NULL, '26.0000', '34.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '3.0000', '2021-08-12', 'received', '26.0000', '26.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '26.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24344, 193, NULL, 2547, '30290939', 'VISCOF S SYR', NULL, '9.1700', '12.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.5100', '3.0000', '2021-08-12', 'received', '9.1700', '9.1700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.1700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24345, 193, NULL, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', NULL, '28.1300', '39.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.2600', '2.0000', '2021-08-12', 'received', '28.1300', '28.1300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '28.1300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24346, 193, NULL, 1811, 'PR-524', 'VERMOX SUSP', NULL, '14.5300', '19.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5900', '3.0000', '2021-08-12', 'received', '14.5300', '14.5300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24347, 193, NULL, 2232, '25430404', 'AMOKISKLAV 1000MG', NULL, '29.9800', '40.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '119.9200', '4.0000', '2021-08-12', 'received', '29.9800', '29.9800', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '29.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24348, 193, NULL, 1537, 'PR-250', 'VITANE SYR', NULL, '39.0000', '51.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.0000', '2.0000', '2021-08-12', 'received', '39.0000', '39.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '39.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24349, 193, NULL, 1962, '5021265224128', 'VISIONANCE UK', NULL, '32.0000', '42.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '128.0000', '2.0000', '2021-08-12', 'received', '32.0000', '32.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '32.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24350, 193, NULL, 2356, '42767945', 'DIABETONE TABS UK', NULL, '38.9800', '51.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '77.9600', '2.0000', '2021-08-12', 'received', '38.9800', '38.9800', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '38.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24351, 193, NULL, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', NULL, '29.7200', '39.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.7200', '0.0000', '2021-08-12', 'received', '29.7200', '29.7200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '29.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24352, NULL, NULL, 2005, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24353, NULL, NULL, 1678, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24354, NULL, NULL, 2555, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24355, NULL, NULL, 2280, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24356, NULL, NULL, 2907, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24357, NULL, NULL, 2908, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24358, NULL, NULL, 1696, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24359, NULL, NULL, 1871, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24421, NULL, NULL, 2366, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24422, NULL, NULL, 1521, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24423, NULL, NULL, 2541, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24424, NULL, NULL, 1559, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24425, NULL, NULL, 2293, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-9.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24426, NULL, NULL, 1947, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24427, NULL, NULL, 1966, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24428, NULL, NULL, 2284, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-5.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24467, NULL, NULL, 1807, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24559, NULL, NULL, 1855, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24560, NULL, NULL, 2143, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24561, NULL, NULL, 2011, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24562, NULL, NULL, 2353, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24563, NULL, NULL, 2673, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24564, NULL, NULL, 2766, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24565, NULL, NULL, 1493, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24566, NULL, NULL, 2295, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24567, NULL, NULL, 2772, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24568, NULL, NULL, 2458, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24569, NULL, NULL, 1306, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24570, NULL, NULL, 2094, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24571, NULL, NULL, 1867, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-30.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24572, NULL, NULL, 1673, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-4.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24573, NULL, NULL, 1459, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24574, NULL, NULL, 3009, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24575, NULL, NULL, 2609, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24576, NULL, NULL, 1601, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24577, NULL, NULL, 2260, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24632, NULL, NULL, 2101, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24834, NULL, NULL, 1349, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '0.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24859, 195, NULL, 2527, '655295237350', 'MACA POWDER (DR HERBALIST)', NULL, '40.0000', '48.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '80.0000', '2.0000', '2021-08-17', 'received', '40.0000', '40.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '40.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24860, 195, NULL, 2899, '51017186', 'DAWADAWA POWDER', NULL, '12.0000', '17.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2021-08-17', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24861, 195, NULL, 2898, '85738812', 'GINGER POWDER', NULL, '10.0000', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2021-08-17', 'received', '10.0000', '10.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24862, 195, NULL, 2897, '26620183', 'GARLIC POWDER', NULL, '18.0000', '23.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '54.0000', '3.0000', '2021-08-17', 'received', '18.0000', '18.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '18.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24863, 195, NULL, 2515, '22838029', 'CHILLI PEPPER', NULL, '16.0000', '20.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.0000', '4.0000', '2021-08-17', 'received', '16.0000', '16.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '16.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24864, 195, NULL, 2880, '21973547', 'CINNAMON POWDER 400G', NULL, '35.0000', '46.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '1.0000', '2021-08-17', 'received', '35.0000', '35.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24865, 195, NULL, 2214, '8961102060823', 'PROSTATE OIL 60ML', NULL, '15.0000', '22.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.0000', '3.0000', '2021-08-17', 'received', '15.0000', '15.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24866, 195, NULL, 2212, '8964000114018', 'BLACKSEEDS OIL 60ML', NULL, '10.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '1.0000', '2021-08-17', 'received', '10.0000', '10.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24867, 195, NULL, 2884, '72176503', 'BLACK SEED & TUMERIC CAPS', NULL, '30.0000', '40.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-08-17', 'received', '30.0000', '30.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24868, 195, NULL, 2317, '74536436', 'HEMANI HERBAL TEA', NULL, '15.0000', '18.0000', '25.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '375.0000', '25.0000', '2021-08-17', 'received', '15.0000', '15.0000', '25.0000', NULL, NULL, 1, 'pc', '25.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24869, 195, NULL, 3063, '77753803', 'ORGANIC OILS', NULL, '9.0000', '15.0000', '16.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.0000', '16.0000', '2021-08-17', 'received', '9.0000', '9.0000', '16.0000', NULL, NULL, 1, 'pc', '16.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24870, 195, NULL, 2487, '22129068', 'ALMOND SEED', NULL, '25.0000', '30.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '150.0000', '6.0000', '2021-08-17', 'received', '25.0000', '25.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24871, 195, NULL, 2484, '00708902', 'PUMPKIN SEED', NULL, '17.0000', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '85.0000', '5.0000', '2021-08-17', 'received', '17.0000', '17.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '17.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24872, 195, NULL, 3064, '23311985', 'SOBOLO CUT CUT', NULL, '2.0000', '3.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '5.0000', '2021-08-17', 'received', '2.0000', '2.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24873, 195, NULL, 2479, '64861163', 'CHIA SEED', NULL, '10.0000', '13.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.0000', '6.0000', '2021-08-17', 'received', '10.0000', '10.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24874, 195, NULL, 2486, '46475252', 'CINNAMON STICKS', NULL, '4.0000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.0000', '10.0000', '2021-08-17', 'received', '4.0000', '4.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24875, 195, NULL, 2476, '20264921', 'BLACK SEED', NULL, '10.0000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '5.0000', '2021-08-17', 'received', '10.0000', '10.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24876, 195, NULL, 2602, '86780065', 'CLOVES ', NULL, '4.0000', '5.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0000', '2.0000', '2021-08-17', 'received', '4.0000', '4.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24877, 195, NULL, 2697, '72051764', 'BAY LEAVES', NULL, '3.0000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '5.0000', '2021-08-17', 'received', '3.0000', '3.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24878, 195, NULL, 2483, '90693662', 'THYME LEAVES', NULL, '4.0000', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '5.0000', '2021-08-17', 'received', '4.0000', '4.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24879, 195, NULL, 2912, '003372', 'SESAME SEED BROWN (FRIED)', NULL, '10.0000', '12.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '5.0000', '2021-08-17', 'received', '10.0000', '10.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24880, 195, NULL, 2478, '10567518', 'MUSTARD SEED', NULL, '3.0000', '4.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '6.0000', '2.0000', '2021-08-17', 'received', '3.0000', '3.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '3.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24881, 195, NULL, 1349, '5010123722708', 'CALPOL SYR 2+', NULL, '34.9000', '46.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.7000', '2.0000', '2021-08-17', 'received', '34.9000', '34.9000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '34.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24882, 195, NULL, 2302, '98009399', 'WORMPLEX 400', NULL, '5.2000', '7.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '104.0000', '5.0000', '2021-08-17', 'received', '5.2000', '5.2000', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '5.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24883, 195, NULL, 3065, '32116167', 'TUMERIC ROOT CAPS', NULL, '30.0000', '40.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-08-17', 'received', '30.0000', '30.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24906, NULL, NULL, 2344, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24907, NULL, NULL, 2489, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24908, NULL, NULL, 1727, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24909, NULL, NULL, 1704, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24910, NULL, NULL, 2465, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24911, NULL, NULL, 1313, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24912, NULL, NULL, 2097, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24913, NULL, NULL, 1572, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24916, NULL, NULL, 1388, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24917, NULL, NULL, 1410, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24918, NULL, NULL, 1670, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24919, NULL, NULL, 1309, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24920, 194, NULL, 2252, '08741188', 'FLUREST TABS', NULL, '10.0900', '13.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.2700', '2.0000', '2021-08-13', 'received', '10.0900', '10.0900', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.0900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24921, 194, NULL, 2612, '94895079', 'OMEGA OIL 50ML', NULL, '7.1600', '10.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.3200', '0.0000', '2021-08-13', 'received', '7.1600', '7.1600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.1600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24922, 194, NULL, 1480, '5011501006519', 'DEEP FREEZE SPRAY', NULL, '29.9900', '40.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.9800', '2.0000', '2021-08-13', 'received', '29.9900', '29.9900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '29.9900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24923, 194, NULL, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', NULL, '0.9000', '1.5000', '120.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '108.0000', '100.0000', '2021-08-13', 'received', '0.9000', '0.9000', '120.0000', NULL, NULL, 1, 'pc', '120.0000', NULL, NULL, NULL, NULL, '0.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24924, 194, NULL, 1527, '8904159609416', 'PREGASAFE 75MG TAB', NULL, '13.1000', '17.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '78.6000', '6.0000', '2021-08-13', 'received', '13.1000', '13.1000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '13.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24925, 194, NULL, 2682, '40258519', 'FOLIGROW CAPS', NULL, '19.3000', '25.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '57.9000', '3.0000', '2021-08-13', 'received', '19.3000', '19.3000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24926, 194, NULL, 2344, '08199601', 'FOLIGROW TONIC', NULL, '19.8200', '26.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.4600', '3.0000', '2021-08-13', 'received', '19.8200', '19.8200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '19.8200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24927, 194, NULL, 2518, '51929198', 'TAVANIC 500MG', NULL, '118.1000', '156.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '118.1000', '1.0000', '2021-08-13', 'received', '118.1000', '118.1000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '118.1000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24928, 194, NULL, 1693, 'PR-406', 'CITY BLOOD TONIC 200ML', NULL, '7.8600', '10.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.7200', '2.0000', '2021-08-13', 'received', '7.8600', '7.8600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24929, 194, NULL, 1694, 'PR-407', 'LEENASYR', NULL, '7.1900', '10.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.3800', '2.0000', '2021-08-13', 'received', '7.1900', '7.1900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.1900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24930, 194, NULL, 2937, '2745570', 'MALIN BABY COUGH', NULL, '5.3700', '7.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.7400', '2.0000', '2021-08-13', 'received', '5.3700', '5.3700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.3700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24931, 194, NULL, 3023, '83478580', 'MALIN JUNIOR', NULL, '5.6400', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.9200', '3.0000', '2021-08-13', 'received', '5.6400', '5.6400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24932, 194, NULL, 2917, '02413027', 'FLEMEX ADULT SYRUP', NULL, '7.3500', '10.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7000', '2.0000', '2021-08-13', 'received', '7.3500', '7.3500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '7.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24933, 194, NULL, 2810, '44204486', 'L MONTUS', NULL, '2.2000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '2.2000', '1.0000', '2021-08-13', 'received', '2.2000', '2.2000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24934, 194, NULL, 2810, '44204486', 'L MONTUS', NULL, '2.4000', '3.5000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '72.0000', '30.0000', '2021-08-13', 'received', '2.4000', '2.4000', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '2.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24935, 194, NULL, 3055, '59922474', 'L MONTUS KIDS', NULL, '2.1800', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.8000', '10.0000', '2021-08-13', 'received', '2.1800', '2.1800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.1800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24936, 194, NULL, 3015, '67021005', 'BRAINWISE OMEGA3 SYR150ML', NULL, '49.0000', '65.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.0000', '1.0000', '2021-08-13', 'received', '49.0000', '49.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '49.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24937, 194, NULL, 2315, '34300059', 'PARA LOCAL', NULL, '0.3900', '0.5100', '100.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '73.0000', '2021-08-13', 'received', '0.3900', '0.3900', '100.0000', NULL, NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, '0.3900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24938, 194, NULL, 1602, 'PR-315', 'LYDIA POSTPILL', NULL, '7.0400', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.1200', '0.0000', '2021-08-13', 'received', '7.0400', '7.0400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.0400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24939, 194, NULL, 1667, '5011831076695', 'ROUGH RIDER CONDOM', NULL, '6.2900', '8.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '62.9000', '7.0000', '2021-08-13', 'received', '6.2900', '6.2900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.2900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24940, 194, NULL, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', NULL, '2.7100', '3.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.1000', '5.0000', '2021-08-13', 'received', '2.7100', '2.7100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.7100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24941, 194, NULL, 2923, '67740529', 'BELLS CHN COUGH SYR', NULL, '11.1200', '15.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.4800', '3.0000', '2021-08-13', 'received', '11.1200', '11.1200', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '11.1200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24942, 194, NULL, 2248, '06376451', 'MIST SIENNACO SYR', NULL, '2.5000', '4.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '1.0000', '2021-08-13', 'received', '2.5000', '2.5000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24943, 194, NULL, 1501, '8906046931860', 'RONFIT FORTE CAPS', NULL, '2.2100', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '22.1000', '0.0000', '2021-08-13', 'received', '2.2100', '2.2100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '2.2100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24944, 194, NULL, 1680, 'PR-393', 'BELLA COUGH MIXTURE', NULL, '5.0300', '7.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0600', '0.0000', '2021-08-13', 'received', '5.0300', '5.0300', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.0300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24945, 194, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.9600', '1.0000', '2021-08-13', 'received', '3.4900', '3.4900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '3.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24946, 194, NULL, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', NULL, '14.8000', '19.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.6000', '1.0000', '2021-08-13', 'received', '14.8000', '14.8000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.8000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24947, 194, NULL, 2410, '22266640', 'CARTEF SUSP 60ML', NULL, '4.3200', '6.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '5.0000', '2021-08-13', 'received', '4.3200', '4.3200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24948, 194, NULL, 1706, 'PR-419', 'PROCOLD SYR 100ml', NULL, '15.3500', '20.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.7000', '2.0000', '2021-08-13', 'received', '15.3500', '15.3500', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.3500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24949, 194, NULL, 1839, 'PR-552', 'TEEDAR SYRUP', NULL, '6.1500', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '61.5000', '7.0000', '2021-08-13', 'received', '6.1500', '6.1500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '6.1500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24950, 194, NULL, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', NULL, '5.9300', '8.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '59.3000', '8.0000', '2021-08-13', 'received', '5.9300', '5.9300', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.9300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24951, 194, NULL, 1381, 'PR-94', ' GOLDY FORTE DS', NULL, '7.4900', '10.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '74.9000', '8.0000', '2021-08-13', 'received', '7.4900', '7.4900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24952, 194, NULL, 2280, '8995858999991', 'PROCOLD TABS', NULL, '3.0700', '5.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '153.5000', '38.0000', '2021-08-13', 'received', '3.0700', '3.0700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '3.0700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24953, 194, NULL, 1409, 'PR-122', 'IMBOOST', NULL, '13.0000', '17.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '5.0000', '2021-08-13', 'received', '13.0000', '13.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24954, 194, NULL, 2803, '83576846', 'LORATADINE 10MG 30\' ALMUS', NULL, '8.0200', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.0200', '1.0000', '2021-08-13', 'received', '8.0200', '8.0200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '8.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24955, 194, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '5.0000', '2021-08-13', 'received', '1.8600', '1.8600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24956, 194, NULL, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', NULL, '14.6400', '20.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '73.2000', '4.0000', '2021-08-13', 'received', '14.6400', '14.6400', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.6400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24957, 194, NULL, 2891, '27589033', 'FOLIC ACID TAB 5MG (CRESCENT) ', NULL, '9.5000', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '3.0000', '2021-08-13', 'received', '9.5000', '9.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24958, 194, NULL, 3057, '99625622', 'DUCOLAX SUPP 10MG 12\'', NULL, '2.7000', '4.0000', '24.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '64.8000', '24.0000', '2021-08-13', 'received', '2.7000', '2.7000', '24.0000', NULL, NULL, 1, 'pc', '24.0000', NULL, NULL, NULL, NULL, '2.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24959, 194, NULL, 3017, '67524547', 'BASECOLD SYR', NULL, '3.9000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.4000', '6.0000', '2021-08-13', 'received', '3.9000', '3.9000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24960, 194, NULL, 1654, '8904091117703', 'RELCER GEL', NULL, '8.8700', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.6100', '0.0000', '2021-08-13', 'received', '8.8700', '8.8700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24961, 194, NULL, 3058, '28458064', 'LETAVIN 500MG', NULL, '4.3000', '6.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.0000', '10.0000', '2021-08-13', 'received', '4.3000', '4.3000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24962, 194, NULL, 2236, '6033000270108', 'EFPAC JNR', NULL, '5.5000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '0.0000', '2021-08-13', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24963, 194, NULL, 2908, '78138195', 'MAGACID FASTMELT', NULL, '0.2700', '0.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.5000', '48.0000', '2021-08-13', 'received', '0.2700', '0.2700', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.2700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24964, 194, NULL, 2972, '13709725', 'BENYLIN 4 FLU SPRAY 100ML', NULL, '22.7100', '30.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '45.4200', '2.0000', '2021-08-13', 'received', '22.7100', '22.7100', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '22.7100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24965, 194, NULL, 2269, '48726368', 'STOPKOFF CHIDREN', NULL, '5.8300', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4900', '3.0000', '2021-08-13', 'received', '5.8300', '5.8300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24966, 194, NULL, 1450, 'PR-163', 'Lofnac 100 supp WABG035', NULL, '0.8900', '1.2000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.7000', '30.0000', '2021-08-13', 'received', '0.8900', '0.8900', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24967, 194, NULL, 1489, '6938058600108', 'SAMOCID(SKIN AND NAIL)', NULL, '28.1700', '37.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.1700', '1.0000', '2021-08-13', 'received', '28.1700', '28.1700', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '28.1700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24968, 194, NULL, 1647, 'PR-360', 'AMCOF JUNIOR SYR', NULL, '4.7200', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.6000', '4.0000', '2021-08-13', 'received', '4.7200', '4.7200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '4.7200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24969, 194, NULL, 1432, '2546546415413', 'TAABEA MIX(25)', NULL, '9.9500', '13.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '49.7500', '2.0000', '2021-08-13', 'received', '9.9500', '9.9500', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '9.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24970, 194, NULL, 2948, '18028058', 'PREGNANCY TEST KIT', NULL, '0.9000', '3.0000', '161.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '144.9000', '161.0000', '2021-08-13', 'received', '0.9000', '0.9000', '161.0000', NULL, NULL, 1, 'pc', '161.0000', NULL, NULL, NULL, NULL, '0.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24971, 194, NULL, 2109, '94342778', 'ASCORBIN TABS LETAP', NULL, '0.2500', '1.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.5000', '42.0000', '2021-08-13', 'received', '0.2500', '0.2500', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.2500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24972, 194, NULL, 2777, '97856697', 'MMT SUSP', NULL, '2.5000', '3.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '4.0000', '2021-08-13', 'received', '2.5000', '2.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24973, 194, NULL, 2650, '58359784', 'DICNAC 75 SR', NULL, '7.3200', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '7.3200', '0.0000', '2021-08-13', 'received', '7.3200', '7.3200', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '7.3200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24974, 194, NULL, 1557, 'PR-270', 'SECLEAR  EYE DROP', NULL, '7.9500', '10.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.8500', '0.0000', '2021-08-13', 'received', '7.9500', '7.9500', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.9500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24975, 194, NULL, 1425, '6034600108402', 'ROOTER MIXTURE (12)', NULL, '6.5000', '9.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '39.0000', '1.0000', '2021-08-13', 'received', '6.5000', '6.5000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '6.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24976, 194, NULL, 2152, '6034000189179', 'ADOM W&G MIX', NULL, '10.8300', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.4900', '2.0000', '2021-08-13', 'received', '10.8300', '10.8300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.8300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24977, 194, NULL, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', NULL, '14.0000', '18.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2021-08-13', 'received', '14.0000', '14.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24978, 194, NULL, 1433, 'PR-146', 'TIME HERBAL MIX(25)', NULL, '10.0000', '13.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '3.0000', '2021-08-13', 'received', '10.0000', '10.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24979, 194, NULL, 2940, '42955737', 'DIPHEX COUGH SYRP', NULL, '6.3600', '8.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.7200', '2.0000', '2021-08-13', 'received', '6.3600', '6.3600', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.3600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24980, 194, NULL, 3060, '57292195', 'DIPHEX JNR', NULL, '4.9000', '6.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '9.8000', '2.0000', '2021-08-13', 'received', '4.9000', '4.9000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '4.9000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24981, 194, NULL, 3061, '71514531', 'DIPHEX BRONCHO& MUCOLYTIC SYR', NULL, '6.3000', '8.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.6000', '2.0000', '2021-08-13', 'received', '6.3000', '6.3000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.3000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24982, 194, NULL, 3062, '03146209', 'DIPHEX ANTITUSSIVE & EXP SYR', NULL, '6.0700', '8.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.1400', '2.0000', '2021-08-13', 'received', '6.0700', '6.0700', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.0700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24983, 194, NULL, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', NULL, '1.0900', '1.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.9000', '6.0000', '2021-08-13', 'received', '1.0900', '1.0900', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '1.0900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25004, NULL, NULL, 1507, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25005, 190, NULL, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', NULL, '1.8600', '2.5000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.2000', '10.0000', '2021-08-12', 'received', '1.8600', '1.8600', '20.0000', NULL, NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, '1.8600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25006, 190, NULL, 3043, '56894380', 'BEAUTEX COLLAGEN 250MG TABS', NULL, '65.0000', '86.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.0000', '1.0000', '2021-08-12', 'received', '65.0000', '65.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '65.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25007, 190, NULL, 2812, '76039966', 'ORELOX TABLET 200MG', NULL, '98.5600', '130.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '98.5600', '1.0000', '2021-08-12', 'received', '98.5600', '98.5600', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '98.5600');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25008, 190, NULL, 2679, '42097030', 'PEVISONE CREAM', NULL, '33.0100', '44.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '99.0300', '3.0000', '2021-08-12', 'received', '33.0100', '33.0100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '33.0100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25009, 190, NULL, 1730, 'PR-443', 'DAKTACORT CREAM 15G', NULL, '23.9100', '33.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '71.7300', '3.0000', '2021-08-12', 'received', '23.9100', '23.9100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '23.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25010, 190, NULL, 2061, '96762855', 'ZYMAX CAPS 500MG', NULL, '10.9800', '15.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '32.9400', '1.0000', '2021-08-12', 'received', '10.9800', '10.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '10.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25011, 190, NULL, 1762, 'PR-475', 'KIDIVITE MULTIVITAMIN DROPS 25ML', NULL, '9.9800', '13.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '29.9400', '3.0000', '2021-08-12', 'received', '9.9800', '9.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25012, 190, NULL, 2491, '57627875', 'BELLS VITAMIN C', NULL, '12.2000', '16.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.6000', '1.0000', '2021-08-12', 'received', '12.2000', '12.2000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25013, 190, NULL, 2381, '72472860', 'ENACEF SUSP', NULL, '11.8700', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.6100', '1.0000', '2021-08-12', 'received', '11.8700', '11.8700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.8700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25014, 190, NULL, 1757, 'PR-470', 'PERMOXYL (AMOX\'LIN ) SUSP 100ML', NULL, '4.9800', '7.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.9400', '3.0000', '2021-08-12', 'received', '4.9800', '4.9800', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25015, 190, NULL, 2331, '22131552', 'IMODIUM CAPS 2MG 6\'S', NULL, '12.0700', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.2100', '3.0000', '2021-08-12', 'received', '12.0700', '12.0700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25016, 190, NULL, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', NULL, '1.0100', '1.3000', '60.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '60.6000', '60.0000', '2021-08-12', 'received', '1.0100', '1.0100', '60.0000', NULL, NULL, 1, 'pc', '60.0000', NULL, NULL, NULL, NULL, '1.0100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25017, 190, NULL, 3044, '49228950', 'DIAZEPAM TABS 5MG', NULL, '0.4000', '0.5000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '20.0000', '49.0000', '2021-08-12', 'received', '0.4000', '0.4000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.4000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25018, 190, NULL, 3045, '00432970', 'CETRIZAN SYRUP 60ML', NULL, '5.4200', '7.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.1000', '2.0000', '2021-08-12', 'received', '5.4200', '5.4200', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '5.4200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25019, 190, NULL, 1695, '8908002671971', 'APETAMIN SYR', NULL, '15.5000', '20.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.5000', '0.0000', '2021-08-12', 'received', '15.5000', '15.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '15.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25020, 190, NULL, 1380, '4008500060070', 'PRIMOLUT N TABS 5MG- ORIGINAL', NULL, '7.7000', '10.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '23.1000', '3.0000', '2021-08-12', 'received', '7.7000', '7.7000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '7.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25021, 190, NULL, 1529, '8901040207157', 'DYMOL TAB', NULL, '3.5500', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.5000', '0.0000', '2021-08-12', 'received', '3.5500', '3.5500', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '3.5500');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25022, 190, NULL, 2592, '42909881', 'Zentel Suspension ', NULL, '7.9800', '11.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.8000', '8.0000', '2021-08-12', 'received', '7.9800', '7.9800', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '7.9800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25023, 190, NULL, 1811, 'PR-524', 'VERMOX SUSP', NULL, '14.5300', '19.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '43.5900', '2.0000', '2021-08-12', 'received', '14.5300', '14.5300', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.5300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25024, 190, NULL, 2506, '46924578', 'EPANOL SYR', NULL, '3.4900', '5.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.9600', '3.0000', '2021-08-12', 'received', '3.4900', '3.4900', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '3.4900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25025, 190, NULL, 3067, '21042084', 'ESKAZEPAM TAB ( DIAZEPAM) 5MG', NULL, '0.7000', '1.0000', '50.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '35.0000', '46.0000', '2021-08-12', 'received', '0.7000', '0.7000', '50.0000', NULL, NULL, 1, 'pc', '50.0000', NULL, NULL, NULL, NULL, '0.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25026, NULL, NULL, 2633, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25027, NULL, NULL, 1756, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25028, 196, NULL, 2226, '6033000086358', 'CERELAC TIN MAIZE', NULL, '14.0000', '17.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '56.0000', '4.0000', '2021-08-17', 'received', '14.0000', '14.0000', '4.0000', NULL, NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25029, 196, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '25.0000', '28.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '2.0000', '2021-08-17', 'received', '25.0000', '25.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25030, 196, NULL, 2316, '59549986', 'SMA 1 BABY FOOD', NULL, '45.0000', '48.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '2.0000', '2021-08-17', 'received', '45.0000', '45.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25031, 196, NULL, 1527, '8904159609416', 'PREGASAFE 75MG TAB', NULL, '13.2300', '17.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '79.3800', '6.0000', '2021-08-17', 'received', '13.2300', '13.2300', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '13.2300');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25032, 196, NULL, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', NULL, '8.4400', '11.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.3200', '2.0000', '2021-08-17', 'received', '8.4400', '8.4400', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.4400');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25033, 196, NULL, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', NULL, '4.0200', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '40.2000', '8.0000', '2021-08-17', 'received', '4.0200', '4.0200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25034, 196, NULL, 1702, '8906045432580', 'BONAPLEX SYR 200ML', NULL, '14.9700', '20.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '44.9100', '3.0000', '2021-08-17', 'received', '14.9700', '14.9700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.9700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25035, 196, NULL, 1644, '3574661091075', 'BENYLIN INFANT SYR', NULL, '33.8900', '45.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '67.7800', '1.0000', '2021-08-17', 'received', '33.8900', '33.8900', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '33.8900');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25036, 196, NULL, 1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', NULL, '25.7000', '34.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '51.4000', '1.0000', '2021-08-17', 'received', '25.7000', '25.7000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.7000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25037, 196, NULL, 3018, '27169206', 'PARA SYR EXETER', NULL, '4.9100', '6.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.7300', '1.0000', '2021-08-17', 'received', '4.9100', '4.9100', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.9100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25038, 196, NULL, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', NULL, '5.0200', '7.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.2000', '9.0000', '2021-08-17', 'received', '5.0200', '5.0200', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '5.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25039, 196, NULL, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', NULL, '4.7700', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.3100', '3.0000', '2021-08-17', 'received', '4.7700', '4.7700', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '4.7700');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25040, 196, NULL, 2803, '83576846', 'LORATADINE 10MG 30\' ALMUS', NULL, '8.0200', '10.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0600', '3.0000', '2021-08-17', 'received', '8.0200', '8.0200', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.0200');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25041, 196, NULL, 3068, '18022517', 'VIT FORTE VITAMIN C & ZINC', NULL, '14.0000', '18.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '70.0000', '5.0000', '2021-08-17', 'received', '14.0000', '14.0000', '5.0000', NULL, NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25042, NULL, NULL, 1434, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25043, NULL, NULL, 2768, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-3.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25044, NULL, NULL, 3068, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25045, NULL, NULL, 1708, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25046, NULL, NULL, 2982, '', '', NULL, '0.0000', '0.0000', '0.0000', 4, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25149, 197, NULL, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', NULL, '15.0000', '18.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '1.0000', '2021-08-18', 'received', '15.0000', '15.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '15.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25150, 197, NULL, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', NULL, '9.0000', '11.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '2.0000', '2021-08-18', 'received', '9.0000', '9.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25151, 197, NULL, 2418, '5000204957327', 'GLADE AIR FRESHNER', NULL, '9.5000', '12.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '2.0000', '2021-08-18', 'received', '9.5000', '9.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25152, 197, NULL, 2431, '41187227', 'PEPSODENT BRUSH KIDS', NULL, '2.2000', '3.5000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '13.2000', '6.0000', '2021-08-18', 'received', '2.2000', '2.2000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25153, 197, NULL, 2228, '7501058625915', 'LACTOGEN  1', NULL, '25.0000', '28.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '50.0000', '2.0000', '2021-08-18', 'received', '25.0000', '25.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '25.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25154, 197, NULL, 3069, '45207250', 'SANTEX HAND SANITIZER', NULL, '5.0000', '6.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '30.0000', '6.0000', '2021-08-18', 'received', '5.0000', '5.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25155, 197, NULL, 2964, '65893205', 'LUCOZADE BOTTLE S/S', NULL, '6.6000', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.8000', '3.0000', '2021-08-18', 'received', '6.6000', '6.6000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.6000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25156, 197, NULL, 3071, '14199456', 'LUCOSADE BOTTLE B/S', NULL, '12.5000', '16.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '37.5000', '3.0000', '2021-08-18', 'received', '12.5000', '12.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25157, 197, NULL, 3072, '59951063', 'KIDS FACE MASK PACK', NULL, '14.0000', '18.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.0000', '2.0000', '2021-08-18', 'received', '14.0000', '14.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25158, 197, NULL, 2556, '59713806', 'VERNA WATER  0.5L SMALL', NULL, '0.5800', '1.0000', '30.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '17.4000', '27.0000', '2021-08-18', 'received', '0.5800', '0.5800', '30.0000', NULL, NULL, 1, 'pc', '30.0000', NULL, NULL, NULL, NULL, '0.5800');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25159, 197, NULL, 2565, '45244498', 'VERNA WATER MEDIUM', NULL, '0.8100', '1.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '8.1000', '10.0000', '2021-08-18', 'received', '0.8100', '0.8100', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '0.8100');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25160, 197, NULL, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', NULL, '11.0000', '14.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '2.0000', '2021-08-18', 'received', '11.0000', '11.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25161, 197, NULL, 2154, '8410179200927', 'BORGES S/S  125ML', NULL, '12.0000', '16.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '36.0000', '3.0000', '2021-08-18', 'received', '12.0000', '12.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25162, 197, NULL, 2015, '88820286', 'BABY OIL CUSSONS SMALL', NULL, '5.0000', '8.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '3.0000', '2021-08-18', 'received', '5.0000', '5.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25163, 197, NULL, 3073, '85425535', 'CUSSIONS BABY POWDER S/S', NULL, '5.5000', '7.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '3.0000', '2021-08-18', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25164, 197, NULL, 3079, '27605280', 'EYECROM EYE DROPS 5ML', NULL, '9.0000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '3.0000', '2021-08-18', 'received', '9.0000', '9.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25165, 197, NULL, 3080, '73286754', 'DEXAMYCIN DROP', NULL, '8.5000', '12.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '3.0000', '2021-08-18', 'received', '8.5000', '8.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25166, 197, NULL, 3081, '85096507', 'TOBRACIN EYE DROPS 5ML', NULL, '9.5000', '12.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '3.0000', '2021-08-18', 'received', '9.5000', '9.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25167, 197, NULL, 3082, '13230304', 'TIMOLOL MALEATE', NULL, '6.0000', '9.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '3.0000', '2021-08-18', 'received', '6.0000', '6.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25192, NULL, NULL, 1618, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25193, NULL, NULL, 3085, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25194, NULL, NULL, 2270, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25195, NULL, NULL, 2862, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25198, NULL, NULL, 2544, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25199, NULL, NULL, 1546, '', '', NULL, '0.0000', '0.0000', '0.0000', 2, '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, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27311, NULL, NULL, 1372, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-2.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27312, NULL, NULL, 1788, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27313, NULL, NULL, 2441, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27314, NULL, NULL, 3728, '', '', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27315, NULL, NULL, 1674, '', '', NULL, '0.0000', '0.0000', '0.0000', 3, '0.0000', NULL, NULL, NULL, NULL, NULL, '0.0000', '-1.0000', '0000-00-00', 'received', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27316, 198, NULL, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', NULL, '1.2000', '1.5800', '18.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '21.6000', '18.0000', '2021-08-19', 'received', '1.2000', '1.2000', '18.0000', NULL, NULL, 1, 'pc', '18.0000', NULL, NULL, NULL, NULL, '1.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27317, 198, NULL, 3074, '67589199', 'ORAL B TOOTH BRUSH', NULL, '2.0000', '3.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '24.0000', '12.0000', '2021-08-19', 'received', '2.0000', '2.0000', '12.0000', NULL, NULL, 1, 'pc', '12.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27318, 198, NULL, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', NULL, '11.0000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '1.0000', '2021-08-19', 'received', '11.0000', '11.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27319, 198, NULL, 2325, '68025873', 'ALWAYS PAD MAX', NULL, '5.5000', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '3.0000', '2021-08-19', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27320, 198, NULL, 2028, '5137136225122', 'JRA CREAM BIG 220G', NULL, '23.0000', '26.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '46.0000', '2.0000', '2021-08-19', 'received', '23.0000', '23.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '23.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27321, 198, NULL, 2029, '5137136225115', 'JRA CREAM MEDIUM 120G', NULL, '13.0000', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '26.0000', '2.0000', '2021-08-19', 'received', '13.0000', '13.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '13.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27322, 198, NULL, 2031, '5137136225191', 'JRA CREAM SMALL 40G', NULL, '5.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '10.0000', '2.0000', '2021-08-19', 'received', '5.0000', '5.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27323, 198, NULL, 1974, '6186000077649', 'EVERSHEEN LOTION BIG 750ML', NULL, '14.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '14.0000', '1.0000', '2021-08-19', 'received', '14.0000', '14.0000', '1.0000', NULL, NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27324, 198, NULL, 1975, '6186000077410', 'EVERSHEEN LOTION MEDIUM 500ML', NULL, '9.5000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.0000', '1.0000', '2021-08-19', 'received', '9.5000', '9.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27325, 198, NULL, 1976, '6186000077427', 'EVERSHEEN LOTION SMALL 250ML', NULL, '6.0000', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '2.0000', '2021-08-19', 'received', '6.0000', '6.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27326, 198, NULL, 1981, '6186000077168', 'EVERSHEEN CREAM BIG', NULL, '9.0000', '12.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '2.0000', '2021-08-19', 'received', '9.0000', '9.0000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27327, 198, NULL, 1982, '6186000077267', 'EVERSHEEN CREAM SMALL', NULL, '5.5000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '11.0000', '2.0000', '2021-08-19', 'received', '5.5000', '5.5000', '2.0000', NULL, NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27328, 198, NULL, 3075, '91908705', 'CUSSIONS BABY SOAP', NULL, '2.0000', '3.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '12.0000', '6.0000', '2021-08-19', 'received', '2.0000', '2.0000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '2.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27329, 198, NULL, 3076, '57849888', 'CUSSIONS BABY OIL S/S', NULL, '5.0000', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '15.0000', '3.0000', '2021-08-19', 'received', '5.0000', '5.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27330, 198, NULL, 3073, '85425535', 'CUSSIONS BABY POWDER S/S', NULL, '5.5000', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '16.5000', '3.0000', '2021-08-19', 'received', '5.5000', '5.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '5.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27331, 198, NULL, 3077, '79135161', 'JOHNSON BABY POWDER S/S', NULL, '11.0000', '13.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '33.0000', '3.0000', '2021-08-19', 'received', '11.0000', '11.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '11.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27332, 198, NULL, 3078, '11187948', 'KLEANZ SANITIZER 150ML', NULL, '3.2000', '4.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '19.2000', '6.0000', '2021-08-19', 'received', '3.2000', '3.2000', '6.0000', NULL, NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, '3.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27333, 198, NULL, 3072, '59951063', 'KIDS FACE MASK PACK', NULL, '14.0000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '3.0000', '2021-08-19', 'received', '14.0000', '14.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '14.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27334, 198, NULL, 3079, '27605280', 'EYECROM EYE DROPS 5ML', NULL, '9.0000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '27.0000', '3.0000', '2021-08-19', 'received', '9.0000', '9.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27335, 198, NULL, 3080, '73286754', 'DEXAMYCIN DROP', NULL, '8.5000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '25.5000', '3.0000', '2021-08-19', 'received', '8.5000', '8.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '8.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27336, 198, NULL, 3081, '85096507', 'TOBRACIN EYE DROPS 5ML', NULL, '9.5000', '12.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '28.5000', '3.0000', '2021-08-19', 'received', '9.5000', '9.5000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '9.5000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27337, 198, NULL, 3082, '13230304', 'TIMOLOL MALEATE', NULL, '6.0000', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '18.0000', '3.0000', '2021-08-19', 'received', '6.0000', '6.0000', '3.0000', NULL, NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, '6.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27338, 198, NULL, 3083, '43701144', 'VITAMINE K1 INJ 1MG/0.5ML', NULL, '4.2000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '42.0000', '10.0000', '2021-08-19', 'received', '4.2000', '4.2000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '4.2000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27339, 198, NULL, 3084, '79309863', 'TRANEXAMIC ACID INJ 100MG/5ML', NULL, '9.0000', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '90.0000', '10.0000', '2021-08-19', 'received', '9.0000', '9.0000', '10.0000', NULL, NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, '9.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `product_selling_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27340, 198, NULL, 2803, '83576846', 'LORATADINE 10MG 30\' ALMUS', NULL, '0.8200', '1.2000', '80.0000', 2, '0.0000', NULL, '', NULL, '0.0000', NULL, '65.6000', '80.0000', '2021-08-19', 'received', '0.8200', '0.8200', '80.0000', NULL, NULL, 1, 'pc', '80.0000', NULL, NULL, NULL, NULL, '0.8200');


#
# 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=201 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 (2, '001', '2021-03-23 20:40:00', 2, 'Supplier Company Name', 1, '', '10000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10000.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '1202110312', '2021-03-24 16:23:00', 4, 'DESTINY LINK PHARMACY LTD.', 1, '', '23.9700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '23.9700', '0.0000', 'received', 'pending', 1, 3, '2021-03-31 19:41:01', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '0002', '2021-03-24 16:29:00', 4, 'DESTINY LINK PHARMACY LTD.', 1, '', '12.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12.0000', '0.0000', 'received', 'pending', 1, 3, '2021-03-31 19:41:48', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '065', '2021-03-24 16:32:00', 4, 'DESTINY LINK PHARMACY LTD.', 1, '', '47.9600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47.9600', '0.0000', 'received', 'pending', 1, 3, '2021-03-31 19:42:31', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '065', '2021-03-24 16:35:00', 4, 'DESTINY LINK PHARMACY LTD.', 1, '', '15.1500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15.1500', '0.0000', 'received', 'pending', 1, 3, '2021-03-31 19:43:02', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '021', '2021-03-25 13:13:00', 4, 'DESTINY LINK PHARMACY LTD.', 1, '', '3780.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3780.0000', '0.0000', 'received', 'pending', 4, 3, '2021-03-31 19:46:24', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '784', '2021-03-29 23:40:00', 5, 'BASE PHARMACY', 4, '', '17100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17100.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '784', '2021-03-29 23:52:00', 5, 'BASE PHARMACY', 4, '', '19530.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19530.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '784', '2021-03-30 00:19:00', 5, 'BASE PHARMACY', 4, '', '1260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1260.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '784', '2021-03-30 00:33:00', 5, 'BASE PHARMACY', 4, '', '1153.3300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1153.3300', '0.0000', 'received', 'pending', 3, 4, '2021-04-03 13:35:31', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '515', '2021-03-30 01:17:00', 6, 'ERNEST CHEMISTS LTD', 4, '', '21882.8100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '21882.8100', '0.0000', 'received', 'pending', 3, 3, '2021-05-03 11:41:44', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '515', '2021-03-30 01:18:00', 6, 'ERNEST CHEMISTS LTD', 4, '', '5066.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5066.7000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '515', '2021-03-30 02:12:00', 6, 'ERNEST CHEMISTS LTD', 4, '', '5040.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5040.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '515', '2021-03-30 02:34:00', 6, 'ERNEST CHEMISTS LTD', 4, '', '13320.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13320.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (16, '515', '2021-03-30 03:16:00', 6, 'ERNEST CHEMISTS LTD', 4, '', '1053.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1053.9000', '0.0000', 'received', 'pending', 3, 3, '2021-05-03 14:09:38', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (17, 'PO2021/03/0002', '2021-03-30 03:39:00', 6, 'ERNEST CHEMISTS LTD', 4, '', '407.4100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '407.4100', '0.0000', 'received', 'pending', 3, 3, '2021-04-05 06:08:38', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (18, '312/12', '2021-03-30 13:07:00', 7, 'RENIE CHEMIST', 4, '', '3060.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3060.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '312/12', '2021-03-30 13:30:00', 7, 'RENIE CHEMIST', 4, '', '32.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '32.1000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '312/12', '2021-03-30 14:05:00', 8, 'KINAPHARMA LIMITED', 4, '', '12150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12150.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '312/12', '2021-03-30 14:11:00', 8, 'KINAPHARMA LIMITED', 4, '', '38430.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '38430.0000', '0.0000', 'received', 'pending', 3, 3, '2021-03-30 22:12:19', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '312/12', '2021-03-30 14:59:00', 8, 'KINAPHARMA LIMITED', 4, '', '351.7900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '351.7900', '0.0000', 'received', 'pending', 3, 3, '2021-04-24 16:02:11', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '4626', '2021-03-30 23:40:00', 9, 'TOBINCO PHARMCETICAL', 4, '', '13228.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13228.0000', '0.0000', 'received', 'pending', 3, 4, '2021-04-03 10:25:37', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '4628', '2021-03-31 00:17:00', 9, 'TOBINCO PHARMCETICAL', 4, '', '5970.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5970.5000', '0.0000', 'received', 'pending', 3, 3, '2021-05-03 17:30:25', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '4626', '2021-03-31 02:39:00', 9, 'TOBINCO PHARMCETICAL', 4, '', '1030.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1030.9000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (26, '4626', '2021-03-31 02:58:00', 9, 'TOBINCO PHARMCETICAL', 4, '', '1453.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1453.3000', '0.0000', 'received', 'pending', 3, 3, '2021-04-24 17:12:13', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '021', '2021-03-31 12:48:00', 4, 'DESTINY LINK PHARMACY LTD.', 4, '', '634.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '634.5000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '021', '2021-03-31 12:58:00', 4, 'DESTINY LINK PHARMACY LTD.', 4, '', '697.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '697.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (29, '021', '2021-03-31 13:15:00', 4, 'DESTINY LINK PHARMACY LTD.', 4, '', '2157.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2157.6800', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '021', '2021-03-31 13:28:00', 4, 'DESTINY LINK PHARMACY LTD.', 4, '', '6993.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6993.9000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (31, '021', '2021-03-31 13:56:00', 4, 'DESTINY LINK PHARMACY LTD.', 4, '', '4618.4400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4618.4400', '0.0000', 'received', 'pending', 3, 3, '2021-04-15 21:04:20', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (32, '43', '2021-03-31 14:07:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 4, '', '3150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3150.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '43', '2021-03-31 16:21:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 4, '', '5975.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5975.9000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '43', '2021-03-31 16:34:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 4, '', '6159.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6159.8000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '816', '2021-03-31 16:50:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 4, '', '13050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13050.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (36, '816', '2021-03-31 23:24:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 4, '', '11203.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11203.3000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '816', '2021-03-31 23:48:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 4, '', '38160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '38160.0000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '816', '2021-04-01 00:21:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 4, '', '16740.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '16740.0000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '816', '2021-04-01 02:22:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 4, '', '22334.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22334.4000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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, '816', '2021-04-01 02:46:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 4, '', '20360.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20360.0000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (41, '816', '2021-04-01 03:12:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 4, '', '24840.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24840.0000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (42, '816', '2021-04-01 04:31:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 4, '', '46.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '46.8000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (43, '816', '2021-04-01 04:35:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 4, '', '38670.6500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '38670.6500', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (44, '816', '2021-04-01 12:30:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 4, '', '3812.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3812.0700', '0.0000', 'received', 'pending', 4, 3, '2021-04-21 18:30:45', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (45, '816', '2021-04-01 12:49:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 4, '', '215.4800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '215.4800', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (46, '816', '2021-04-01 13:27:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 4, '', '85.8900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '85.8900', '0.0000', 'received', 'pending', 4, 3, '2021-04-06 09:30:20', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (47, '816', '2021-04-01 14:18:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 4, '', '1628.7600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1628.7600', '0.0000', 'received', 'pending', 4, 4, '2021-04-12 02:50:19', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (48, '279982', '2021-04-01 14:50:00', 12, 'OSONS CHEMIST', 4, '', '18900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18900.0000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (49, '279982', '2021-04-01 16:21:00', 12, 'OSONS CHEMIST', 4, '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (50, '279982', '2021-04-01 18:38:00', 12, 'OSONS CHEMIST', 4, '', '7947.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7947.8000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (51, '279982', '2021-04-01 23:38:00', 12, 'OSONS CHEMIST', 4, '', '4950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4950.0000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (52, '279982', '2021-04-01 23:59:00', 12, 'OSONS CHEMIST', 4, '', '7110.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7110.0000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (53, '279982', '2021-04-02 03:44:00', 12, 'OSONS CHEMIST', 4, '', '37813.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '37813.5000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (54, '279982', '2021-04-02 04:19:00', 12, 'OSONS CHEMIST', 4, '', '19417.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19417.6800', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (55, '279982', '2021-04-02 05:37:00', 12, 'OSONS CHEMIST', 4, '', '72.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '72.6000', '0.0000', 'received', 'pending', 4, 4, '2021-04-03 08:49:13', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (56, '371368', '2021-04-02 14:11:00', 13, 'Letap pharmaceuticals ltd', 4, '', '386.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '386.0000', '0.0000', 'received', 'pending', 4, 4, '2021-04-03 00:11:57', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (57, '371368', '2021-04-02 16:16:00', 13, 'Letap pharmaceuticals ltd', 4, '', '2446.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2446.4000', '0.0000', 'received', 'pending', 4, 3, '2021-04-05 01:34:39', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (58, '0001', '2021-04-02 18:08:00', 14, 'OPEN MARKET', 4, '', '402.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '402.4000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (59, '0002', '2021-04-02 18:09:00', 14, 'OPEN MARKET', 4, '', '694.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '694.8200', '0.0000', 'received', 'pending', 4, 3, '2021-05-03 16:25:20', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (60, '0003', '2021-04-02 18:17:00', 14, 'OPEN MARKET', 4, '', '925.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '925.2000', '0.0000', 'received', 'pending', 4, 3, '2021-05-03 16:26:14', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (61, '0004', '2021-04-02 18:37:00', 14, 'OPEN MARKET', 4, '', '374.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '374.0000', '0.0000', 'received', 'pending', 4, 3, '2021-05-03 16:27:02', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (62, '0004', '2021-04-02 18:48:00', 14, 'OPEN MARKET', 4, '', '49.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '49.0000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (63, '0005', '2021-04-02 18:51:00', 14, 'OPEN MARKET', 4, '', '127.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '127.3200', '0.0000', 'received', 'pending', 4, 3, '2021-04-05 01:34:21', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (64, '0006', '2021-04-02 19:56:00', 14, 'OPEN MARKET', 4, '', '1451.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1451.0000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (65, 'PO2021/04/0003', '2021-04-02 23:24:00', 12, 'OSONS CHEMIST', 4, '', '1139.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1139.2000', '0.0000', 'received', 'pending', 4, 3, '2021-04-15 13:37:37', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (66, '0006', '2021-04-04 18:16:00', 14, 'OPEN MARKET', 4, '', '969.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '969.0000', '0.0000', 'received', 'pending', 3, 3, '2021-04-10 11:39:51', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (67, '0007', '2021-04-07 05:17:00', 14, 'OPEN MARKET', 4, '', '2304.7900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2304.7900', '0.0000', 'received', 'pending', 3, 3, '2021-04-07 13:06:58', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (68, '0001', '2021-04-07 18:03:00', 15, 'YARABI VENTURES', 4, '', '645.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '645.0000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (69, '111', '2021-04-08 04:23:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '1556.7300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1556.7300', '0.0000', 'received', 'pending', 3, 3, '2021-04-19 21:13:43', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (70, '76', '2021-04-10 01:43:00', 17, 'HARLOWS HERBALS CENTRE', 4, '', '135.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '135.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (71, '254', '2021-04-11 04:10:00', 14, 'OPEN MARKET', 4, '', '586.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '586.5000', '0.0000', 'received', 'pending', 3, 3, '2021-04-11 11:26:06', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (72, '6259', '2021-04-11 08:28:00', 18, 'NISSI PHARMACY', 4, '', '3280.9000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '3280.9000', '0.0000', 'received', 'pending', 3, 3, '2021-04-12 07:27:34', '0', NULL, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (73, '6259', '2021-04-11 17:37:00', 18, 'NISSI PHARMACY', 4, '', '149.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '149.8000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (74, '6259', '2021-04-11 17:44:00', 18, 'NISSI PHARMACY', 4, '', '1283.9100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1283.9100', '0.0000', 'received', 'pending', 3, 3, '2021-04-21 18:39:20', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (75, 'F0001/11/04/21/COM/STELLA', '2021-04-12 01:38:00', 6, 'ERNEST CHEMISTS LTD', 2, '', '640.4500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '640.4500', '0.0000', 'received', 'pending', 4, 3, '2021-05-03 15:54:52', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (76, 'PO2021/04/0005', '2021-04-12 03:57:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 2, '', '662.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '662.8000', '0.0000', 'received', 'pending', 4, 3, '2021-04-17 18:49:16', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (77, '21', '2021-04-12 05:00:00', 5, 'BASE PHARMACY', 2, '', '340.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '340.8000', '0.0000', 'received', 'pending', 4, 3, '2021-04-15 12:55:25', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (78, '144', '2021-04-14 09:15:00', 14, 'OPEN MARKET', 4, '', '93.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '93.6000', '0.0000', 'received', 'pending', 3, 3, '2021-04-14 11:10:01', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (79, '53', '2021-04-15 11:38:00', 14, 'OPEN MARKET', 4, '', '2650.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2650.1000', '0.0000', 'received', 'pending', 3, 3, '2021-04-18 15:23:59', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (80, '21', '2021-04-15 12:58:00', 5, 'BASE PHARMACY', 4, '', '169.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '169.7000', '0.0000', 'received', 'pending', 3, 3, '2021-04-15 13:21:26', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (81, 'F0001/17/4/21/COM/STELLA', '2021-04-18 19:34:00', 18, 'NISSI PHARMACY', 4, '', '3159.9700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3159.9700', '0.0000', 'received', 'pending', 3, 3, '2021-04-20 09:35:02', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (82, '18/4/2021/STELLA', '2021-04-19 00:20:00', 14, 'OPEN MARKET', 4, '', '861.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '861.4000', '0.0000', 'received', 'pending', 3, 3, '2021-04-20 19:12:09', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (83, '5627', '2021-04-19 21:37:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '1124.9900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1124.9900', '0.0000', 'received', 'pending', 3, 3, '2021-04-20 09:29:36', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (84, '5757/20/21', '2021-04-21 19:44:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '1141.9100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1141.9100', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (85, 'FM/IV/176/23/4/21/STELLA', '2021-04-23 16:39:00', 14, 'OPEN MARKET', 4, '', '367.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '367.3000', '0.0000', 'received', 'pending', 3, 3, '2021-04-26 09:46:46', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (86, 'F0001/23/4/21/COM/STELLA', '2021-04-23 16:51:00', 14, 'OPEN MARKET', 4, '', '1767.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1767.5600', '0.0000', 'received', 'pending', 3, 3, '2021-04-24 11:00:08', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (87, 'F0001/23/4/21/COM/STELLA/ORGANIC', '2021-04-23 21:01:00', 14, 'OPEN MARKET', 4, '', '2071.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2071.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (88, 'F0001/23/4/21/COM/STELLA/NISSI', '2021-04-23 21:40:00', 18, 'NISSI PHARMACY', 4, '', '1019.2300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1019.2300', '0.0000', 'received', 'pending', 3, 3, '2021-04-30 20:32:05', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (89, 'F0001/24/4/21/COM/KELMED', '2021-04-24 10:58:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '683.6100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '683.6100', '0.0000', 'received', 'pending', 3, 3, '2021-04-25 19:51:17', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (90, 'F0001/24/4/21/COM/STELLA/TINATT HERBAL', '2021-04-24 11:03:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 4, '', '93.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '93.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (91, 'F0001/26/4/21/COM/STELLA/NISSI', '2021-04-26 19:04:00', 18, 'NISSI PHARMACY', 4, '', '1161.8700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1161.8700', '0.0000', 'received', 'pending', 3, 3, '2021-05-05 09:32:30', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (92, 'F0001/26/4/21/COM/STELLA/OPEN MKT', '2021-04-26 20:31:00', 14, 'OPEN MARKET', 4, '', '1750.3400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1750.3400', '0.0000', 'received', 'pending', 3, 3, '2021-05-08 20:02:36', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (93, 'F0001/29/4/21/COM/STELLA/ORGANIC', '2021-04-29 21:20:00', 14, 'OPEN MARKET', 4, '', '1913.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1913.5000', '0.0000', 'received', 'pending', 3, 3, '2021-06-19 23:39:50', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (94, 'F0001/30/4/21/COM/STELLA/KELMED', '2021-04-30 16:29:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '925.0400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '925.0400', '0.0000', 'received', 'pending', 3, 3, '2021-05-09 21:36:18', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (95, 'F0001/30/4/21/COM/STELLA/ELOHIM', '2021-04-30 17:32:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 4, '', '5130.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5130.5800', '0.0000', 'received', 'pending', 3, 3, '2021-05-11 21:11:46', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (96, 'F0001/5/5/21/COM/STELLA/OPEN MKT CERE', '2021-05-05 18:13:00', 14, 'OPEN MARKET', 4, '', '1071.2600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1071.2600', '0.0000', 'received', 'pending', 3, 3, '2021-05-05 18:35:31', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (97, 'F0001/5/5/21/COM/STELLA/YELLOW&ORANG', '2021-05-05 18:41:00', 19, 'YELLOW&ORANGE PHARMACEUTICAL', 4, '', '104.4500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '104.4500', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (98, 'F0001/5/5/21/COM/STELLA/TINATT HERBAL', '2021-05-05 19:21:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 4, '', '325.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '325.1000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (99, 'F0001/4/5/21/COM/STELLA/KELMED', '2021-05-05 19:53:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '3686.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3686.3500', '0.0000', 'received', 'pending', 3, 3, '2021-05-13 20:26:56', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (100, 'F0001/06/5/21/COM/STELLA/TINATT HERBAL', '2021-05-06 17:06:00', 14, 'OPEN MARKET', 4, '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (101, 'F0001/8/5/21/COM/STELLA/NISSI', '2021-05-08 15:16:00', 18, 'NISSI PHARMACY', 4, '', '1121.6600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1121.6600', '0.0000', 'received', 'pending', 3, 3, '2021-05-08 21:24:19', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (102, 'F0001/10/5/21/COM/STELLA/KELMED', '2021-05-10 12:15:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '1133.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1133.5800', '0.0000', 'received', 'pending', 3, 3, '2021-05-11 20:15:36', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (103, 'F0001/10/5/21/COM/STELLA/MEDITAB', '2021-05-10 19:41:00', 20, 'MEDITAB PHARMACY', 4, '', '360.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '360.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (104, 'F0001/14/5/2021/nissi ', '2021-05-14 21:31:00', 18, 'NISSI PHARMACY', 4, '', '334.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '334.8000', '0.0000', 'received', 'pending', 3, 3, '2021-05-18 17:19:39', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (105, 'F0001/14/5/21/COM/STELLA/CELLGIVITY/MAX INTER', '2021-05-17 20:50:00', 22, 'MAX INTERNATIONAL', 4, '', '333.3200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '333.3200', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (106, 'F0001/16/5/21/COM/STELLA/OSONS', '2021-05-18 08:27:00', 12, 'OSONS CHEMIST', 4, '', '679.5100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '679.5100', '0.0000', 'received', 'pending', 3, 3, '2021-05-20 20:34:22', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (107, 'F0001/16/5/21/COM/STELLA/KELMED', '2021-05-18 08:42:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '2228.0900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2228.0900', '0.0000', 'received', 'pending', 3, 3, '2021-05-21 20:38:48', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (108, 'F0001/18/5/21/COM/STELLA/TINATT HERBAL', '2021-05-18 17:15:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 4, '', '306.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '306.1000', '0.0000', 'received', 'pending', 3, 3, '2021-05-24 12:31:38', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (109, 'F0001/19/5/21/COM/STELLA/OPEN MKT', '2021-05-19 19:45:00', 14, 'OPEN MARKET', 4, '', '364.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '364.0000', '0.0000', 'received', 'pending', 3, 3, '2021-05-19 20:00:26', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (110, 'F0001/21/05/21/COM/ELOHIM', '2021-05-21 23:30:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 4, '', '1771.4600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1771.4600', '0.0000', 'received', 'pending', 3, 3, '2021-05-25 00:25:48', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (111, 'F0001/21/05/21/COM/SHAGGYSCO', '2021-05-22 00:13:00', 23, 'SHAGGYSCO PHARMACY', 4, '', '276.3700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '276.3700', '0.0000', 'received', 'pending', 3, 3, '2021-05-22 00:32:06', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (112, 'F0001/21/05/21/COM/OPEN MKT', '2021-05-22 00:49:00', 14, 'OPEN MARKET', 4, '', '257.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '257.1000', '0.0000', 'received', 'pending', 3, 3, '2021-05-28 21:46:18', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (113, 'F0001/14/5/21/COM/STELLA/NISSI', '2021-05-25 21:14:00', 18, 'NISSI PHARMACY', 4, '', '1401.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1401.6800', '0.0000', 'received', 'pending', 3, 4, '2021-05-25 23:00:32', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (114, 'F0001/14/05/21/COM/DEPENDABLE', '2021-05-25 23:19:00', 24, 'DEPENDABLE', 4, '', '157.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '157.5000', '0.0000', 'received', 'pending', 4, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (115, 'F0001/25/045/21/COM/KELMED', '2021-05-25 23:38:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '1658.5300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1658.5300', '0.0000', 'received', 'pending', 4, 3, '2021-05-29 18:41:46', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (116, 'F0001/28/5/21/COM/STELLA/OPEN MKT', '2021-05-28 21:45:00', 14, 'OPEN MARKET', 4, '', '1315.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1315.4000', '0.0000', 'received', 'pending', 3, 3, '2021-05-29 16:12:59', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (117, 'F0001/28/5/21/COM/STELLA/KELMED', '2021-05-29 18:37:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '1172.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1172.5600', '0.0000', 'received', 'pending', 3, 3, '2021-05-31 09:23:56', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (118, 'F0001/28/5/21/COM/STELLA/NISSI', '2021-05-29 19:03:00', 18, 'NISSI PHARMACY', 4, '', '460.7800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '460.7800', '0.0000', 'received', 'pending', 3, 3, '2021-05-29 19:28:44', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (120, 'F0001/30/5/21/COM/STELLA/OPEN MARKET', '2021-05-31 20:29:00', 14, 'OPEN MARKET', 4, '', '248.4800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '248.4800', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (121, 'F0001/31/5/21/COM/STELLA/TINATT HERBAL', '2021-05-31 20:44:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 4, '', '79.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '79.5000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (122, 'F0001/31/5/21/COM/STELLA/KELMED', '2021-05-31 21:16:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '563.3100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '563.3100', '0.0000', 'received', 'pending', 3, 3, '2021-06-01 21:47:18', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (123, 'F0001/31/5/21/COM/STELLA/NISSI', '2021-05-31 21:51:00', 18, 'NISSI PHARMACY', 4, '', '1216.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1216.5600', '0.0000', 'received', 'pending', 3, 3, '2021-06-04 21:40:45', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (124, 'F0001/3/6/21/COM/NISSI', '2021-06-03 20:38:00', 18, 'NISSI PHARMACY', 4, '', '2608.3400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2608.3400', '0.0000', 'received', 'pending', 3, 3, '2021-06-04 20:50:23', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (125, 'F0001/5/6/21/COM/STELLA/KELMED', '2021-06-05 16:49:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '2531.2600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2531.2600', '0.0000', 'received', 'pending', 3, 3, '2021-06-06 21:40:50', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (126, 'F0001/7/6/21/COM/STELLA/OPEN MKT', '2021-06-07 21:39:00', 14, 'OPEN MARKET', 4, '', '939.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '939.0000', '0.0000', 'received', 'pending', 3, 3, '2021-06-14 21:47:58', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (127, 'F0001/8/6/21/COM/STELLA/NISSI', '2021-06-08 19:37:00', 18, 'NISSI PHARMACY', 4, '', '367.1800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '367.1800', '0.0000', 'received', 'pending', 3, 3, '2021-06-08 20:43:00', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (128, 'F0001/8/6/21/COM/STELLA/KELMED', '2021-06-08 20:42:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '1079.3400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1079.3400', '0.0000', 'received', 'pending', 3, 3, '2021-06-11 20:17:26', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (129, 'F0001/8/6/21/COM/STELLA/EAST CANTO', '2021-06-09 19:28:00', 25, 'EAST CANTOMENT', 4, '', '573.8100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '573.8100', '0.0000', 'received', 'pending', 3, 3, '2021-06-09 20:08:33', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (130, 'F0001/8/6/21/COM/STELLA/ERNEST CHEMIST', '2021-06-09 20:17:00', 6, 'ERNEST CHEMISTS LTD', 4, '', '1865.9800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1865.9800', '0.0000', 'received', 'pending', 3, 3, '2021-06-14 21:11:58', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (131, 'F0001/12/06/21/COM/STELLA/KELMED', '2021-06-15 08:27:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '2488.0900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2488.0900', '0.0000', 'received', 'pending', 3, 3, '2021-06-15 18:15:48', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (132, 'F0002/10/06/ROSA/ERNEST CHM', '2021-06-15 21:04:00', 6, 'ERNEST CHEMISTS LTD', 4, '', '3548.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3548.1000', '0.0000', 'received', 'pending', 3, 3, '2021-06-16 16:27:29', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (133, 'F000116/06/21/COM/STELLA/KELMED', '2021-06-16 18:47:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '1283.8100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1283.8100', '0.0000', 'received', 'pending', 4, 4, '2021-06-16 19:34:04', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (134, 'F0002/11/6/21/ROSA/ERNEST CHM', '2021-06-17 08:13:00', 6, 'ERNEST CHEMISTS LTD', 4, '', '4143.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4143.5200', '0.0000', 'received', 'pending', 3, 4, '2021-07-18 11:48:14', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (135, 'F0001/17/6/21/COM/STELLA/NISSI', '2021-06-17 19:35:00', 18, 'NISSI PHARMACY', 4, '', '1765.4600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1765.4600', '0.0000', 'received', 'pending', 3, 3, '2021-06-18 15:13:31', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (136, 'F0002/08/6/21/ROSA/UNICORM', '2021-06-18 16:01:00', 26, 'UNICORN CHEMIST', 4, '', '1481.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1481.5000', '0.0000', 'received', 'pending', 3, 3, '2021-06-25 15:29:29', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (137, 'F0002/11/6/21/ROSA/NISSI', '2021-06-18 19:31:00', 18, 'NISSI PHARMACY', 4, '', '6445.7100', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '6445.7100', '0.0000', 'received', 'pending', 3, 3, '2021-07-18 16:36:56', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (138, 'F0002/8/6/ROSA/MPHARMA', '2021-06-19 14:10:00', 27, 'MPHARMA', 4, '', '9448.8800', '0.0000', '', '0.0000', '0.0000', '0.0000', 0, '0.0000', '0.0000', '0.0000', '9448.8800', '0.0000', 'received', 'pending', 3, 3, '2021-07-15 21:10:19', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (139, 'F0001/21/6/21/COM/STELLA/FOOD SUPP/USA', '2021-06-22 12:35:00', 28, 'NEW LIFE PHARMACY', 4, '', '7225.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7225.3800', '0.0000', 'received', 'pending', 3, 3, '2021-07-16 14:47:34', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (140, 'F0001/22/6/21/COM/KELMED', '2021-06-22 20:05:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '1641.2400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1641.2400', '0.0000', 'received', 'pending', 3, 3, '2021-06-25 15:25:58', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (141, 'F0001/22/6/21/COM/STELLA/TINATT HERBAL', '2021-06-22 21:00:00', 10, 'TINATTET HERBAL MANUFACTURING COMPANY', 4, '', '95.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '95.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (142, 'F0001/23/6/21/COM/STELLA/TINATT HERBAL', '2021-06-23 20:24:00', 14, 'OPEN MARKET', 4, '', '323.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '323.0000', '0.0000', 'received', 'pending', 3, 3, '2021-06-23 21:38:22', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (143, 'F0001/25/6/21/COM/STELLA/NISSI', '2021-06-25 21:26:00', 18, 'NISSI PHARMACY', 4, '', '1452.9100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1452.9100', '0.0000', 'received', 'pending', 3, 3, '2021-06-25 23:30:34', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (144, 'F0001/27/6/21/COM/STELLA/ERNEST CHM', '2021-06-27 18:52:00', 6, 'ERNEST CHEMISTS LTD', 4, '', '908.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '908.5800', '0.0000', 'received', 'pending', 3, 3, '2021-07-01 08:50:08', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (145, 'F0001/26/6/21/COM/STELLA/FMMS 1', '2021-06-27 19:31:00', 14, 'OPEN MARKET', 4, '', '1173.1600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1173.1600', '0.0000', 'received', 'pending', 3, 3, '2021-06-29 10:29:02', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (146, 'F0002/11/6/21/ROSA/KELMED', '2021-06-27 21:03:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '3654.3600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3654.3600', '0.0000', 'received', 'pending', 3, 4, '2021-07-18 13:18:10', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (147, 'F0001/31/5/21/COM/STELLA/OPENMKT CEREALS', '2021-06-29 16:54:00', 14, 'OPEN MARKET', 4, '', '562.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '562.0000', '0.0000', 'received', 'pending', 3, 3, '2021-07-02 20:55:18', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (148, 'F0001/31/5/21/COM/STELLA/UNICOM', '2021-06-29 18:44:00', 14, 'OPEN MARKET', 4, '', '376.8500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '376.8500', '0.0000', 'received', 'pending', 3, 3, '2021-06-30 09:08:46', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (149, 'F0001/29/6/21/COM/STELLA/CHINA MALL OPEN MKT', '2021-06-29 18:55:00', 14, 'OPEN MARKET', 4, '', '175.3300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '175.3300', '0.0000', 'received', 'pending', 3, 3, '2021-06-29 19:44:25', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (150, 'F0001/29/6/21/COM/STELLA/PHARMA GEORGE', '2021-06-29 19:45:00', 29, 'PHARMA GEORGE CHEMIST', 4, '', '746.1900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '746.1900', '0.0000', 'received', 'pending', 3, 3, '2021-06-29 20:38:14', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (151, 'F0001/29/6/21/COM/STELLA/KELMED', '2021-06-29 20:56:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '1648.3900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1648.3900', '0.0000', 'received', 'pending', 3, 3, '2021-06-30 08:59:24', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (152, 'F0001/30/6/21/COM/STELLA/SHAGGYSCO', '2021-06-30 20:59:00', 30, 'SHAGGYSCO PHARMACY', 4, '', '374.5900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '374.5900', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (153, 'F0001/3/07/21/COM/STELLA/OPEN MKT', '2021-07-02 23:42:00', 14, 'OPEN MARKET', 4, '', '796.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '796.9000', '0.0000', 'received', 'pending', 3, 3, '2021-07-07 15:46:01', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (154, 'F0001/2/6/21/COM/STELLA/KELMED', '2021-07-03 00:16:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '1606.5500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1606.5500', '0.0000', 'received', 'pending', 3, 3, '2021-07-03 00:42:54', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (155, 'F0001/5/7/21/COM/STELLA/ERNEST CHM', '2021-07-05 20:11:00', 6, 'ERNEST CHEMISTS LTD', 4, '', '507.9300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '507.9300', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (156, 'F0001/5/7/21/COM/STELLA/NISSI', '2021-07-05 20:39:00', 18, 'NISSI PHARMACY', 4, '', '1704.3700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1704.3700', '0.0000', 'received', 'pending', 3, 3, '2021-07-05 21:34:18', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (157, 'F0001/7/7/21/COM/STELLA/UNICORN', '2021-07-06 16:43:00', 26, 'UNICORN CHEMIST', 4, '', '540.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '540.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (158, 'F0001/10/6/21/COM/STELLA/OPEN MKT', '2021-07-10 07:52:00', 14, 'OPEN MARKET', 4, '', '15.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (159, 'F0001/8/7/21/COM/STELLA/KELMED', '2021-07-11 13:04:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '6.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6.0000', '0.0000', 'received', 'pending', 3, 3, '2021-07-11 13:16:32', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (160, 'F0001/7/7/21/COM/STELLA/OPEN MKT', '2021-07-11 19:08:00', 14, 'OPEN MARKET', 4, '', '1575.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1575.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (161, 'F0001/10/7/21/COM/STELLA/DEP', '2021-07-11 19:31:00', 24, 'DEPENDABLE', 4, '', '244.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '244.7000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (162, 'F0001/10/7/21/COM/STELLA/SHAGGYS', '2021-07-11 19:40:00', 23, 'SHAGGYSCO PHARMACY', 4, '', '1105.5100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1105.5100', '0.0000', 'received', 'pending', 3, 3, '2021-07-11 20:41:28', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (163, 'F0001/8/7/21/COM/STELLA/KELMED', '2021-07-11 20:36:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '2487.9700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2487.9700', '0.0000', 'received', 'pending', 3, 3, '2021-07-13 20:52:53', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (164, 'F0001/13/7/21/COM/STELLA/OPEN MKT', '2021-07-13 20:09:00', 14, 'OPEN MARKET', 4, '', '1184.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1184.0000', '0.0000', 'received', 'pending', 3, 3, '2021-07-13 20:46:48', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (165, 'F0001/13/7/21/COM/STELLA/NISSI', '2021-07-13 20:46:00', 18, 'NISSI PHARMACY', 4, '', '2267.0400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2267.0400', '0.0000', 'received', 'pending', 3, 3, '2021-07-14 09:45:54', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (166, 'F0001/14/7/21/COM/STELLA/ORGANIC/OPEN MKT', '2021-07-14 16:24:00', 14, 'OPEN MARKET', 4, '', '447.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '447.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (167, 'F0001/14/7/21/COM/AKA/YARABI HERBAL', '2021-07-14 17:22:00', 15, 'YARABI VENTURES', 4, '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (168, 'F0001/14/7/21/COM/STELLA/MPHARMA', '2021-07-14 20:47:00', 27, 'MPHARMA', 4, '', '1707.3900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1707.3900', '0.0000', 'received', 'pending', 3, 3, '2021-07-14 21:49:19', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (169, 'F0001/17/7/21/COM/STELLA/KELMEND', '2021-07-17 18:39:00', 16, 'KELMED PHARMACAUTICALS', 4, '', '2558.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2558.7000', '0.0000', 'received', 'pending', 3, 3, '2021-07-20 20:30:28', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (170, 'F0002/10/6/21/ROSA/NISSI', '2021-07-18 13:30:00', 18, 'NISSI PHARMACY', 4, '', '6680.8400', '0.0000', NULL, '0.0000', '0.0000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', '6680.8400', '0.0000', 'received', 'pending', 4, 3, '2021-07-27 19:30:40', '0', NULL, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (171, 'F0001/19/7/21/COM/STELLA/OPEN MKT', '2021-07-20 21:41:00', 14, 'OPEN MARKET', 4, '', '1783.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1783.7000', '0.0000', 'received', 'pending', 3, 3, '2021-07-23 21:07:12', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (172, 'F0001/21/7/21/COM/NISSI/KELMED', '2021-07-23 21:28:00', 18, 'NISSI PHARMACY', 4, '', '319.0100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '319.0100', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (173, 'F0001/21/7/21/COM/STELLA/NISSI', '2021-07-25 20:43:00', 18, 'NISSI PHARMACY', 4, '', '2032.0700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2032.0700', '0.0000', 'received', 'pending', 3, 3, '2021-07-27 18:39:53', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (174, 'F0001/28/7/21/COM/STELLA/NISSI', '2021-07-29 08:39:00', 18, 'NISSI PHARMACY', 4, '', '2627.9100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2627.9100', '0.0000', 'received', 'pending', 3, 3, '2021-07-29 10:24:09', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (175, 'F0002/29/7/21/ROSAROSA/STELLA/OPENMKT', '2021-07-29 21:09:00', 14, 'OPEN MARKET', 3, '', '773.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '773.5000', '0.0000', 'received', 'pending', 3, 3, '2021-07-29 21:27:08', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (176, 'F0002/30/7/21/ROSA/OPEN MKT', '2021-07-30 21:07:00', 14, 'OPEN MARKET', 3, '', '1430.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1430.5000', '0.0000', 'received', 'pending', 3, 3, '2021-07-30 21:27:37', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (177, 'F0002/31/7/21/ROSA/OPEN MKT', '2021-07-31 20:18:00', 14, 'OPEN MARKET', 3, '', '675.8800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '675.8800', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (178, 'F0002/31/7/21/ROSA/KELMED', '2021-07-31 20:57:00', 16, 'KELMED PHARMACAUTICALS', 3, '', '987.1800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '987.1800', '0.0000', 'received', 'pending', 3, 3, '2021-07-31 21:38:43', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (179, 'F0001/31/6/21/COM/STELLA/KELMED', '2021-08-01 15:01:00', 16, 'KELMED PHARMACAUTICALS', 2, '', '2257.3300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2257.3300', '0.0000', 'received', 'pending', 3, 3, '2021-08-01 15:46:02', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (180, 'F0002/27/29/7/21/ROSA/NISSI', '2021-08-01 19:13:00', 18, 'NISSI PHARMACY', 3, '', '4750.6100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4750.6100', '0.0000', 'received', 'pending', 3, 3, '2021-08-01 21:07:08', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (181, 'F0001/24/7/21/COM/STELLA/NISSI', '2021-07-24 20:26:00', 18, 'NISSI PHARMACY', 2, '', '722.1700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '722.1700', '0.0000', 'received', 'pending', 3, 3, '2021-08-03 21:24:57', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (182, 'F0001/4/8/21/COM/STELLA/ELOHIM', '2021-08-04 21:01:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 2, '', '2349.5900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2349.5900', '0.0000', 'received', 'pending', 3, 3, '2021-08-05 09:10:55', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (183, 'F0002/4/8/21/ROSA/OPEN MKT', '2021-08-05 10:10:00', 14, 'OPEN MARKET', 3, '', '1128.4600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1128.4600', '0.0000', 'received', 'pending', 3, 3, '2021-08-11 20:51:18', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (184, 'F0002/4/6/21/ROSA/ELOHIM', '2021-08-05 10:34:00', 11, 'ELOHIM PHARMACEUTICALS LTD', 3, '', '1154.7300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1154.7300', '0.0000', 'received', 'pending', 3, 3, '2021-08-05 11:22:23', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (185, 'F0001/4/8/21/COM/STELLA/OPEN MKT', '2021-08-05 13:50:00', 14, 'OPEN MARKET', 2, '', '647.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '647.0000', '0.0000', 'received', 'pending', 3, 3, '2021-08-11 20:52:04', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (186, 'F0001/7/8/21/COM/STELLA/NISSI', '2021-08-09 08:54:00', 18, 'NISSI PHARMACY', 2, '', '1546.5600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1546.5600', '0.0000', 'received', 'pending', 3, 3, '2021-08-11 20:59:54', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (187, 'F0001/24/7/21/COM/STELLA/NISSI', '2021-08-11 20:56:00', 18, 'NISSI PHARMACY', 2, '', '1887.5300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1887.5300', '0.0000', 'received', 'pending', 3, 3, '2021-08-12 11:12:43', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (188, 'F0001/12/8/21/COM/STELLA/OPEN MKT', '2021-08-12 12:03:00', 14, 'OPEN MARKET', 2, '', '593.6300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '593.6300', '0.0000', 'received', 'pending', 3, 3, '2021-08-12 20:56:36', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (189, 'F0002/11/8/21/ROSA/OPEN MKT', '2021-08-12 12:06:00', 14, 'OPEN MARKET', 3, '', '312.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '312.0000', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (190, 'F0002/1/8/21/ROSA/ERNEST', '2021-08-12 18:59:00', 6, 'ERNEST CHEMISTS LTD', 3, '', '942.9100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '942.9100', '0.0000', 'received', 'pending', 3, 3, '2021-08-18 21:33:57', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (191, 'F0002/1/8/21/ROSA/MPHARMA', '2021-08-12 19:23:00', 27, 'MPHARMA', 3, '', '730.3700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '730.3700', '0.0000', 'received', 'pending', 3, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (192, 'F0001/12/8/21/COM/STELLA/ERNEST CHM', '2021-08-12 20:13:00', 6, 'ERNEST CHEMISTS LTD', 2, '', '1250.8400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.8400', '0.0000', 'received', 'pending', 3, 3, '2021-08-12 20:51:38', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (193, 'F0001/12/8/21/COM/STELLA/MPHARMA', '2021-08-12 20:48:00', 27, 'MPHARMA', 2, '', '2309.8200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2309.8200', '0.0000', 'received', 'pending', 3, 3, '2021-08-12 21:36:26', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (194, 'F0002/13/8/21/ROSA/KELMED', '2021-08-13 19:31:00', 16, 'KELMED PHARMACAUTICALS', 3, '', '2424.4900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2424.4900', '0.0000', 'received', 'pending', 3, 3, '2021-08-18 21:19:26', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (195, 'F0002/1/8/21/ROSA/OPEN MKT', '2021-08-17 19:48:00', 14, 'OPEN MARKET', 3, '', '1635.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1635.7000', '0.0000', 'received', 'pending', 3, 3, '2021-08-17 20:39:22', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (196, 'F0001/13/8/21/COM/STELLA/KELMED', '2021-08-17 20:31:00', 16, 'KELMED PHARMACAUTICALS', 2, '', '678.2900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '678.2900', '0.0000', 'received', 'pending', 3, 3, '2021-08-19 09:14:53', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (197, 'F0002/18/8/21/ROSA/OPEN MKT', '2021-08-18 19:10:00', 14, 'OPEN MARKET', 3, '', '479.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '479.5000', '0.0000', 'received', 'pending', 3, 3, '2021-08-19 21:42:41', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
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 (198, 'F0001/18/8/21/COM/STELLA/OPEN MKT', '2021-08-19 20:58:00', 14, 'OPEN MARKET', 2, '', '663.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '663.4000', '0.0000', 'received', 'pending', 3, 3, '2021-08-21 02:12:41', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);


#
# 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 DEFAULT CHARSET=utf8;

#
# 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,
  `shipping` decimal(25,4) DEFAULT 0.0000,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

#
# 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=10792 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 (22, 16, 1702, '8906045432580', 'BONAPLEX SYR 200ML', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (23, 16, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', 'standard', NULL, '2.5000', '2.5000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.5000', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (24, 17, 1999, '6971044950313', 'YAZZ PAD', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (25, 18, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3000', '', '1.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (26, 19, 1385, 'PR-98', 'AZIS TABS. 500MG', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (27, 19, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (28, 19, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (29, 19, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (30, 19, 1565, 'PR-278', 'PARLODEL TABLETS 2.5MG', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (31, 19, 2288, '44100235', 'FLUXAMOX SUSP 100ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (32, 19, 1609, '8904107900893', 'MYCOLEX CREAM 20G', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (33, 19, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (34, 19, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (35, 19, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (36, 19, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (37, 20, 2256, '41965129', 'ZINCOFER SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (38, 20, 2003, '6033000102584', 'ROBB JAR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (39, 20, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (40, 21, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (41, 21, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '26.5000', '26.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (42, 21, 1454, 'PR-167', 'Ancigel  O L033E001', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (43, 21, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (44, 22, 2058, '311917207889', 'VITAMIN B-12 FINEST NUTRITON', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (45, 23, 2256, '41965129', 'ZINCOFER SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (46, 23, 2003, '6033000102584', 'ROBB JAR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (47, 23, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (48, 23, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (49, 24, 1636, '4031571069116', 'VIT-B DENK', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (50, 24, 2068, '79519848', 'LUFART DS', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (51, 24, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (52, 24, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (53, 25, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (54, 25, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (55, 26, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (56, 26, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '0.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (57, 26, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (58, 26, 1559, 'PR-272', 'SIRDALUD 4MG', 'standard', NULL, '30.0000', '30.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '30.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (59, 26, 1993, '6033000330710', 'KLEANZ SANITIZER 50ML', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (60, 26, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (61, 27, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (62, 28, 1299, 'PR-12', 'ARTIBASE : SUSP', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (63, 28, 1319, 'PR-32', 'PARA SYR AYRTON', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (64, 28, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (65, 29, 1980, '6186000077052', 'QUEEN ELISABETH COCOA BUTTER LOTION 250ML', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (66, 29, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (67, 30, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (68, 30, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (69, 30, 1847, '5028268050358', 'BEEHIVE BALSAM SYR', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (70, 31, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (71, 31, 1931, 'PR-644', 'Exicam Do c0070002', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (72, 31, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '1.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (73, 31, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (74, 31, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.8000', '', '0.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (75, 32, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (76, 33, 2178, '8964000114308', 'CARROT OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (77, 33, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (78, 33, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (79, 33, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (80, 33, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (81, 33, 1496, 'PR-209', 'ENACEF SUSP', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (82, 33, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (83, 33, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (84, 34, 1433, 'PR-146', 'TIME HERBAL MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (85, 34, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (86, 34, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (87, 35, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', 'standard', NULL, '7.2600', '7.2600', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.2600', '', '7.2600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (88, 35, 1616, 'PR-329', 'GACET SUPP 250MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (89, 35, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (90, 35, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (91, 36, 1600, 'PR-313', 'OMZOL CAPS 30\' (OMEPRAZOLE) SEDITA', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (92, 36, 2072, '41512770', 'ZINVITE CAPS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (93, 37, 2143, '4005292004916', 'GERMANY VIT C', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (94, 38, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (95, 38, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (96, 38, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (97, 38, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (98, 38, 1805, 'PR-518', 'SAMALIN ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (99, 38, 2143, '4005292004916', 'GERMANY VIT C', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (100, 39, 1717, '3014230021404', 'BRUT DEOSPRAY ORIG. 200ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (101, 40, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (102, 41, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (103, 42, 1952, '5021265221004', 'MENOPACE CAP(UK)', 'standard', NULL, '49.0000', '49.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '49.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (104, 43, 2146, '28780424', 'DICLOKIN-TR', 'standard', NULL, '2.5000', '2.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '2.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (105, 44, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.8000', '', '0.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (106, 44, 1585, 'PR-298', 'ZUBES CHILDREN', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (107, 44, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (108, 44, 1755, 'PR-468', 'STOPKOF EXPT( CARBOCISTEINE)5?ULT 100ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (109, 44, 1392, '6036000115400', 'AFRO MOSES', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (110, 44, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (111, 44, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (112, 44, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '7.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (113, 44, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', 'standard', NULL, '0.5000', '0.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '0.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (114, 44, 2097, '70572709', 'MACRAFOLIN SYRUP 125ML', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (115, 44, 1299, 'PR-12', 'ARTIBASE : SUSP', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (116, 44, 1946, '92115303', 'Ascorbin  Syrup 100ml', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (117, 44, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (118, 44, 1314, 'PR-27', 'WORMBASE SUSP', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (119, 44, 1449, 'PR-162', 'Wormee 4 tab wr036', 'standard', NULL, '2.5000', '2.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '2.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (120, 44, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (121, 44, 1385, 'PR-98', 'AZIS TABS. 500MG', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (122, 44, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (123, 44, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (124, 44, 2063, '28182783', 'NEFLUCON (FLUCONAZOLE) CAP 150', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (125, 44, 1931, 'PR-644', 'Exicam Do c0070002', 'standard', NULL, '1.5000', '1.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (126, 44, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (127, 44, 1953, '56415263', 'STAGYL TABS', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (128, 44, 1874, 'PR-587', 'DICNAC 75 SR(DICLOFENAC)', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (129, 44, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (130, 44, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (131, 45, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '6.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (132, 45, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (133, 45, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (134, 45, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (135, 45, 1534, 'PR-247', 'PINEK 20MG TAB', 'standard', NULL, '1.3000', '1.3000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.6000', '', '1.3000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (136, 45, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (137, 46, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (138, 46, 2001, '012', 'BELLS OLIVE OIL 70ML', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (139, 47, 1575, '5017007043294', 'LOSARTAN POTASSIUM 50MG (TEVA)', 'standard', NULL, '14.0000', '14.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '14.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (140, 47, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (141, 48, 1715, 'PR-428', 'SALOCOLD SYRUP', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (142, 48, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (143, 48, 1989, '6181100321821', 'SULFUR 18', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (144, 49, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (145, 50, 1526, '5052197041545', 'K-Y JELLY 82G', 'standard', NULL, '44.0000', '44.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '44.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (146, 50, 2211, '8964000736371', 'COCONUT OIL 60ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (147, 50, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (148, 50, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (149, 51, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (150, 52, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '26.5000', '26.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (151, 52, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '1.3000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (152, 53, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '6.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (153, 54, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (154, 54, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (155, 54, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '6.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (156, 55, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', 'standard', NULL, '67.0000', '67.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '67.0000', '', '67.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (157, 56, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (158, 56, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (159, 57, 1374, 'PR-87', 'TEGRETOL CR 400MG', 'standard', NULL, '25.0000', '25.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '25.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (160, 58, 1780, '5021265220076', 'FEROGLOBIN CAPS', 'standard', NULL, '47.0000', '47.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '141.0000', '', '47.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (161, 59, 1478, '8906087940128', 'IMPRESSER CAPS', 'standard', NULL, '28.0000', '28.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '56.0000', '', '28.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (162, 60, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (163, 60, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (164, 61, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (165, 61, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (166, 61, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (167, 62, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (168, 63, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (169, 63, 2283, '8906009232225', 'LOFNAC TAB 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (170, 64, 1510, '009', 'CIPROLEX EYE & EAR DROP', 'standard', NULL, '12.0000', '12.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '12.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (171, 65, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (172, 66, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '7.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (173, 67, 1991, '6181100234244', 'PARADISE POWDER', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (174, 68, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (175, 69, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (176, 69, 2068, '79519848', 'LUFART DS', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (177, 69, 1610, '8904107900909', 'MYCOLEX-3 CREAM', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (178, 69, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (179, 69, 2288, '44100235', 'FLUXAMOX SUSP 100ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (180, 69, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '2.6000', '2.6000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '2.6000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (181, 69, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (182, 70, 2228, '7501058625915', 'LACTOGEN  1', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (183, 71, 2168, '8901082004356', 'APTIZOOOM', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (184, 71, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (185, 72, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS', 'standard', NULL, '72.0000', '72.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '72.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (186, 72, 2140, '9556100104335', 'FLUCOR NIGHT', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (187, 72, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (188, 72, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (189, 73, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (190, 73, 2308, '083502770183', 'PSYLLIUM HUSK', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '40.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (191, 73, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (192, 73, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (193, 73, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (194, 73, 1579, 'PR-292', 'LUFART SUSP', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (195, 73, 1455, 'PR-168', 'Gacet125MP KIACK006', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (196, 73, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '31.0000', '31.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '31.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (197, 73, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (198, 73, 1976, '6186000077427', 'EVERSHEEN LOTION SMALL 250ML', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (199, 73, 1903, 'PR-616', 'Lumeth Adult', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (200, 73, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (201, 73, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (202, 73, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (203, 73, 2026, '6001087005661', 'VASELINE CREAM 250ML6001087005661', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (204, 73, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (205, 73, 1735, 'PR-448', 'EXFORGE TABS (10/160)MG 28', 'standard', NULL, '6.0000', '6.0000', '28.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '168.0000', '', '6.0000', NULL, 1, 'pc', '28.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (206, 73, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (207, 73, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (208, 73, 2068, '79519848', 'LUFART DS', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (209, 73, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (210, 73, 2096, '90371186', 'LETAVIT SYRUP 125ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (211, 73, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (212, 74, 1561, 'PR-274', 'SPORANOX CAPS', 'standard', NULL, '35.5000', '35.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '71.0000', '', '35.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (213, 74, 1544, '4031571036033', 'CLOTRI DENK 100 PESS', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (214, 74, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '38.0000', '38.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '38.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (215, 74, 1636, '4031571069116', 'VIT-B DENK', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (216, 74, 2068, '79519848', 'LUFART DS', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (217, 75, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (218, 75, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', 'standard', NULL, '24.5000', '24.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '24.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (219, 75, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', 'standard', NULL, '2.5000', '2.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '2.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (220, 75, 1811, 'PR-524', 'VERMOX SUSP', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (221, 75, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (222, 75, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', 'standard', NULL, '73.0000', '73.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '73.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (223, 75, 2291, '8904091112401', 'CANDIBIOTICS EAR DROPS 5ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (224, 76, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (225, 76, 1702, '8906045432580', 'BONAPLEX SYR 200ML', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (226, 76, 1892, 'PR-605', 'Alugel', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (227, 76, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (228, 76, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (229, 76, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (230, 77, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (231, 77, 2131, '4005900098238', 'NIVEA SPRAY 150ML', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (232, 78, 1866, 'PR-579', 'CETAPOL PM 120/12.5MG/5ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (233, 78, 2314, '30357751', 'ARTIBASE SUSP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (234, 78, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (235, 78, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (236, 78, 1916, 'PR-629', 'Aspaul All in one', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (237, 78, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (238, 78, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '3.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (239, 78, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (240, 78, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (241, 78, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (242, 78, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (243, 79, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (244, 79, 1946, '92115303', 'Ascorbin  Syrup 100ml', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (245, 79, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (246, 80, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (247, 81, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (248, 81, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (249, 81, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', 'standard', NULL, '2.5000', '2.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (250, 81, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (251, 81, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.4000', '', '1.2000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (252, 81, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', 'standard', NULL, '73.0000', '73.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '73.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (253, 81, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (254, 82, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (255, 82, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (256, 82, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (257, 82, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (258, 83, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (259, 84, 2340, '49976874', 'BENDROFLUZIDE 2.5MG UK', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (260, 84, 2341, '67208590', 'NEXCOFER CAPS', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (261, 84, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (262, 85, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (263, 85, 1301, 'PR-14', 'BASE COLD 1X6X10', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (264, 85, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', 'standard', NULL, '74.0000', '74.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '74.0000', '', '74.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (265, 86, 1969, '8906016833507', 'CARTEF TAB 24   20/120', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (266, 86, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (267, 86, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (268, 86, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (269, 86, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (270, 86, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (271, 86, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (272, 86, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (273, 86, 1460, 'PR-173', 'ZOFLORA 120ML', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (274, 86, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (275, 86, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (276, 86, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (277, 86, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (278, 86, 1868, 'PR-581', 'CIPRO TAB 500MG (SHALCIP TAB)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (279, 86, 1449, 'PR-162', 'Wormee 4 tab wr036', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (280, 86, 2030, '00974156', 'JRA CREAM SMALL MEDIUM', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (281, 86, 1645, 'PR-358', 'AMCOF ADULT SYRUP', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (282, 86, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (283, 86, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (284, 86, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (285, 86, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (286, 87, 1414, '6034000157048', 'LIVING BITTERS CAPS', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (287, 87, 1575, '5017007043294', 'LOSARTAN POTASSIUM 50MG (TEVA)', 'standard', NULL, '14.0000', '14.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '14.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (288, 87, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (289, 87, 1397, 'PR-110', 'ANGEL FETWEK3K3(200)', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (290, 87, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (291, 87, 2399, '95599749', 'HEPA PLUS', 'standard', NULL, '11.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '11.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (292, 87, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (293, 87, 1855, 'PR-568', 'IBUCAP S/S 200S', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (294, 87, 1637, '4031571068959', 'DICLO DENK 100MG TAB', 'standard', NULL, '13.5000', '13.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (295, 88, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (296, 88, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (297, 89, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (298, 89, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (299, 89, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (300, 89, 1963, '007', 'MUCOTIN ADULT 5%', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (301, 89, 2061, '96762855', 'ZYMAX CAPS 500MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (302, 89, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '2.6000', '2.6000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '2.6000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (303, 89, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (304, 89, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (305, 89, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (306, 89, 2251, '8901138500573', 'BONNISAN SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (307, 89, 2247, '29226629', 'TRISILICATE SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (308, 89, 2055, '34197416', 'ACTILIFE MUITIVITAMINS', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (309, 89, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (310, 89, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (311, 89, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (312, 89, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (313, 89, 2027, '60018915', 'VASELINE CREAM SMALL 100ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (314, 89, 1983, '6186000077014', 'QUEEN ELISABETH COCOA BUTTER CREAM 500ML', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (315, 89, 2386, '92175949', 'TETRACYCLINE EYE OINT 5G', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (316, 89, 2122, '035000455321', 'MOUTH WASH COLGATE SMALL', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '40.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (317, 89, 2000, '6036000087004', 'FAYTEX', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (318, 90, 2340, '49976874', 'BENDROFLUZIDE 2.5MG UK', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (319, 90, 1591, '5017123328022', 'FUROSEMIDE 20MG TAB (CRESCENT)', 'standard', NULL, '11.5000', '11.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '11.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (320, 90, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (321, 90, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (322, 90, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (323, 90, 1321, 'PR-34', 'TRES ORIX FORTE 1 00ML(S/S)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (324, 90, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (325, 90, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (326, 90, 2253, '6221045010159', 'ACTIFED TAB', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (327, 90, 1577, 'PR-290', 'MALIN LOZ', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (328, 91, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (329, 91, 2362, '63796869', 'ZINNAT 500MG', 'standard', NULL, '108.0000', '108.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '108.0000', '', '108.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (330, 92, 2417, '89073800', 'DOVE SOAP', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (331, 92, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (332, 93, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (333, 94, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (334, 94, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (335, 94, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (336, 94, 1811, 'PR-524', 'VERMOX SUSP', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (337, 94, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (338, 94, 2308, '083502770183', 'PSYLLIUM HUSK', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '40.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (339, 94, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '18.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (340, 94, 1780, '5021265220076', 'FEROGLOBIN CAPS', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (341, 94, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (342, 94, 1922, '8904185507342', 'Blopen gel BG-138', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (343, 94, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (344, 94, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (345, 94, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '0.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (346, 94, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (347, 94, 1688, 'PR-401', 'ZINCOVIT TAB', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (348, 94, 1966, '9556564303336', 'FIESTA CONDOM DOTTED', 'standard', NULL, '3.5000', '3.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '3.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (349, 95, 1586, '5012616173004', 'ABIDEC DROP', 'standard', NULL, '65.0000', '65.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '65.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (350, 95, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (351, 95, 2023, '6001087011143', 'VASELINE LOTION  COCOA GLOW 400ML', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (352, 95, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', 'standard', NULL, '3.5000', '3.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '3.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (353, 95, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (354, 95, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (355, 95, 1737, '8901040310307', 'PREGNACIN PLUS CAPS 60\'', 'standard', NULL, '62.0000', '62.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '62.0000', '', '62.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (356, 95, 2432, '30456278', 'SO KLIN SOFTNER', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (357, 96, 1963, '007', 'MUCOTIN ADULT 5%', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (358, 96, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '2.6000', '2.6000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '2.6000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (359, 96, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (360, 96, 1591, '5017123328022', 'FUROSEMIDE 20MG TAB (CRESCENT)', 'standard', NULL, '11.5000', '11.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '11.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (361, 96, 1385, 'PR-98', 'AZIS TABS. 500MG', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (362, 96, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (363, 96, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (364, 96, 1616, 'PR-329', 'GACET SUPP 250MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (365, 96, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (366, 96, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (367, 96, 2410, '22266640', 'CARTEF SUSP 60ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (368, 97, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '2.6000', '2.6000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '2.6000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (369, 97, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '6.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (370, 97, 2428, '50665292', 'HEAVEN MOSQUITO SPRAY', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (371, 97, 2455, '07137762', 'AMITRIPTYLINE 25MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (372, 97, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (373, 97, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (374, 97, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (375, 97, 1381, 'PR-94', '10 GOLDY FORTE OS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (376, 97, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (377, 97, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (378, 97, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (379, 97, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (380, 97, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (381, 97, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (382, 97, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 97, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 98, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 98, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 98, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 98, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 115, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 118, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 118, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 118, 1738, 'PR-451', 'MENTHODEX LOZENGES 15\'(SACHET} 50G', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 118, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 118, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 118, 1980, '6186000077052', 'QUEEN ELISABETH COCOA BUTTER LOTION 250ML', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 118, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 118, 2151, '05077634', 'TOMAC MIX', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 118, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 118, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (795, 121, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (796, 121, 2435, '31684073', 'ORAL B TOOTHPASTE', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (797, 122, 2191, '8964000114223', 'LAVENDER OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (798, 123, 1855, 'PR-568', 'IBUCAP S/S 200S', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (799, 124, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (800, 124, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (801, 124, 1690, '6001176457883', 'DUROL TONIC 200ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (802, 124, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (803, 124, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (804, 124, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.3000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 124, 1564, '3838989544225', 'TADOL 100MG', 'standard', NULL, '4.0000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 124, 1668, '8906016831572', 'Acidom Caps', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 124, 2001, '012', 'BELLS OLIVE OIL 70ML', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 124, 1663, '5021265221523', 'PREGNACARE PLUS', 'standard', NULL, '109.0000', '109.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '109.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 124, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 124, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 124, 1485, '008', 'NIZORAL CREAM', 'standard', NULL, '30.5000', '30.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.5000', '', '30.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 124, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 124, 1401, 'PR-114', 'EKURO BEWU', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 124, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 124, 1688, 'PR-401', 'ZINCOVIT TAB', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 124, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 124, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 124, 1637, '4031571068959', 'DICLO DENK 100MG TAB', 'standard', NULL, '13.5000', '13.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 124, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 124, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 125, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 125, 1426, '6034600108426', 'ROOTER LIFE', 'standard', NULL, '47.5000', '47.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '47.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 125, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 125, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 125, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 125, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '44.0000', '44.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '44.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 125, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', 'standard', NULL, '54.5000', '54.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '54.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 126, 2155, '5000347045219', 'PANADOL EXTRA ADVANCE', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 127, 1560, 'PR-273', 'STUGERON', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 128, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '44.0000', '44.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '44.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 128, 1375, '5021265243457', 'OSTEOCARE TABS - UK', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 128, 1690, '6001176457883', 'DUROL TONIC 200ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 128, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', 'standard', NULL, '37.0000', '37.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '74.0000', '', '37.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 129, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 129, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 130, 1496, 'PR-209', 'ENACEF SUSP', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 130, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 131, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 131, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 131, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 131, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 132, 2228, '7501058625915', 'LACTOGEN  1', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 132, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 133, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 133, 1604, 'PR-317', 'AUGMENTIN 1G', 'standard', NULL, '93.0000', '93.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '93.0000', '', '93.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 133, 1643, '6001135505433', 'BENYLIN ORIGINAL', 'standard', NULL, '53.0000', '53.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '53.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 133, 2111, '072140028626', 'NIVEA MEN PACK', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '60.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 133, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 134, 1967, '5023497400615', 'SALAMOL CFC INHALER', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 134, 1325, '692771017440', 'MUPIROCIN OINTMENT 15G', 'standard', NULL, '32.0000', '32.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '64.0000', '', '32.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 134, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 134, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 134, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 134, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 134, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 134, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 134, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 134, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 134, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 134, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 134, 2153, '4058172309250', 'MAGNESUIM TABLETS TUBE', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 134, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (863, 134, 2016, '6154000017026', 'BABY OIL CUSSIONS BIG', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (864, 134, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (865, 134, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 134, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 134, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 135, 2476, '20264921', 'BLACK SEED', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 135, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '5.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 135, 2483, '90693662', 'THYME LEAVES', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 135, 2482, '83427820', 'FENUGREEK SEED', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 135, 2481, '40294439', 'FENNEL SEED', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 135, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 135, 2009, '50158911', 'DETTOL ANTISEPTIC 250ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (875, 135, 2286, '91011834', 'FLUXAMOX CAPS 200', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (876, 135, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (877, 135, 1609, '8904107900893', 'MYCOLEX CREAM 20G', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 136, 2163, '94064304', 'IMAX DELAY SPRAY', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 136, 1564, '3838989544225', 'TADOL 100MG', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 136, 2403, '84832683', 'LIMZER CAPS 30\'', 'standard', NULL, '24.0000', '24.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '24.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 136, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 136, 2390, '76253920', 'NEXIUM 10 SACHET', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 136, 1866, 'PR-579', 'CETAPOL PM 120/12.5MG/5ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 137, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 137, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 138, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 138, 1410, 'PR-123', 'JOY OINT S/S(200)', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 138, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 138, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 138, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 138, 1551, '5021691032076', 'LEVOTHYROXINE TAB 50MG (MERC PHARMA)', 'standard', NULL, '20.0000', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '20.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 138, 1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', 'standard', NULL, '17.0000', '17.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '255.0000', '', '17.0000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 138, 1343, '4008500060353', 'PROGYNOVA 2MG TABS', 'standard', NULL, '58.0000', '58.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '58.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 138, 1534, 'PR-247', 'PINEK 20MG TAB', 'standard', NULL, '1.3000', '1.3000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3000', '', '1.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 138, 1931, 'PR-644', 'Exicam Do c0070002', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 138, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 138, 1575, '5017007043294', 'LOSARTAN POTASSIUM 50MG (TEVA)', 'standard', NULL, '14.0000', '14.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '14.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 138, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 139, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 139, 1381, 'PR-94', '10 GOLDY FORTE OS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 139, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 139, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 139, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 139, 1781, 'PR-494', 'CAPS POLYFER', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 139, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 139, 1321, 'PR-34', 'TRES ORIX FORTE 1 00ML(S/S)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 139, 2422, '92383380', 'POWER ZONE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 140, 2273, '04120489', 'RHIZIN SYRP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 140, 2030, '00974156', 'JRA CREAM SMALL MEDIUM', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 140, 1381, 'PR-94', '10 GOLDY FORTE OS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 140, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 140, 1690, '6001176457883', 'DUROL TONIC 200ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 140, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 141, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 141, 1426, '6034600108426', 'ROOTER LIFE', 'standard', NULL, '47.5000', '47.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '47.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 142, 2493, '5060057401095', 'FRUSEMIDE TAB 40MG UK ALMUS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 143, 2304, '90589903', 'PARA-DENK SUPP 250MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 143, 1811, 'PR-524', 'VERMOX SUSP', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 144, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 144, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 144, 2231, '7501058633927', 'NAN 2', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (922, 144, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 144, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 144, 1999, '6971044950313', 'YAZZ PAD', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 144, 1949, '68032552', ' Foliron tonic 200ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 144, 1308, '5012617005687', 'FOLIC ACID 5MG OVAL', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 144, 2342, '62530607', 'DICLO-DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 144, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (929, 144, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (930, 144, 1383, 'PR-96', 'ZULU - MR', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (931, 144, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 144, 1868, 'PR-581', 'CIPRO TAB 500MG (SHALCIP TAB)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 144, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 144, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (935, 145, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (936, 145, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (937, 145, 1583, '5060806420179', 'PROWOMAN DRINK 250ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (938, 145, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (939, 145, 1508, '7612797504857', 'FLAREX 0.1% EYE DROP', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 145, 2294, '44448916', 'PENICILLIN OINTMENT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 145, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 145, 2015, '88820286', 'BABY OIL CUSSONS SMALL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 145, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '4.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 145, 2251, '8901138500573', 'BONNISAN SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 145, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 145, 2479, '64861163', 'CHIA SEED', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 145, 1711, 'PR-424', 'CIROTAMIN SYR', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 145, 2449, '73407261', 'DETTOL SOAP', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 146, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.8000', '', '0.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 146, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 146, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 146, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 146, 2394, '14717379', 'MAAME DAGOMBA', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 146, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (955, 146, 1402, 'PR-115', 'ERNEST OINT(200)', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (956, 146, 1946, '92115303', 'Ascorbin  Syrup 100ml', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (957, 146, 2460, '07910647', 'EVECARE TAB', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (958, 146, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '25.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 146, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 146, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 146, 1657, '5013548102087', 'MEDICATED CHARCOAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 146, 2319, '27607621', 'KN95 FACE MASK', 'standard', NULL, '4.0000', '4.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '4.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 146, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 146, 2231, '7501058633927', 'NAN 2', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 146, 2068, '79519848', 'LUFART DS', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 146, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 146, 1844, 'PR-557', 'LETAP AMPICLOX', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1014, 151, 2346, '68048014', 'CALAMINE OINT', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1015, 151, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1016, 151, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1023, 154, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 157, 1550, '18904083810480', 'GYNOMYCOLEX PESS', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 158, 1550, '18904083810480', 'GYNOMYCOLEX PESS', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 159, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 160, 1953, '56415263', 'STAGYL TABS', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 161, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 162, 1550, '18904083810480', 'GYNOMYCOLEX PESS', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 163, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 164, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 165, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 165, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 166, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 166, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 166, 1410, 'PR-123', 'JOY OINT S/S(200)', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 166, 2393, '25300648', 'BOAFO OINT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 167, 1496, 'PR-209', 'ENACEF SUSP', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 168, 1496, 'PR-209', 'ENACEF SUSP', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 169, 2218, '8964000734698', 'TEA TREE OIL 40ML', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 169, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 169, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 169, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 169, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 170, 1584, '5060806420162', 'PROMAN DRINK 250ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 170, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 170, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 170, 1452, 'PR-165', 'Tobufon 400 T002e001', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 171, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 172, 1855, 'PR-568', 'IBUCAP S/S 200S', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 173, 2351, '81129325', 'COARTEM 12\'S', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 173, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 173, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 173, 1637, '4031571068959', 'DICLO DENK 100MG TAB', 'standard', NULL, '13.5000', '13.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 173, 1430, 'PR-143', 'SOLAK MIXTURE(25)', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 173, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 173, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 173, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 173, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 173, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 173, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.4000', '', '1.2000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 173, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 173, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 173, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 174, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 175, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 175, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.6000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 175, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 175, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 175, 2071, '20773440', 'GRISEOFULVIN', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1074, 175, 1609, '8904107900893', 'MYCOLEX CREAM 20G', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1075, 175, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1076, 175, 2263, '6036000090417', 'LEVON 2', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1077, 175, 2222, '4791014004950', 'QUALITEA GREEN TEA', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1078, 175, 2485, '40177526', 'GOLDEN RAISEN', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1079, 175, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1080, 175, 1874, 'PR-587', 'DICNAC 75 SR(DICLOFENAC)', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1081, 175, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1082, 175, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1083, 175, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3800', '', '0.6900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1084, 175, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1085, 175, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1086, 175, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.2000', '', '0.8000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1087, 175, 1383, 'PR-96', 'ZULU - MR', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1088, 176, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1089, 176, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', 'standard', NULL, '44.0000', '44.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '44.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1090, 176, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1091, 177, 2071, '20773440', 'GRISEOFULVIN', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1092, 177, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1093, 177, 2005, '6926160704036', 'LILY ROSS TOOTHBRUSH HARD', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1094, 177, 1848, 'PR-561', 'DICLO INJ TROGE', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1095, 177, 1874, 'PR-587', 'DICNAC 75 SR(DICLOFENAC)', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1096, 177, 1407, '001', 'GIVERS POWER CAPS(140)', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1097, 177, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1098, 177, 2411, '13740723', 'GEBEDOL FORTE TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1099, 177, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1100, 177, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.2000', '', '0.6000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1101, 177, 2108, '85249693', 'ARFAN 20/120MG', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1102, 177, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', 'standard', NULL, '54.5000', '54.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '54.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1103, 177, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1104, 178, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1105, 178, 2357, '22168350', 'LADINAS PICT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1106, 178, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1107, 178, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', 'standard', NULL, '2.2000', '2.2000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.2000', '', '2.2000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1108, 178, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1109, 178, 1464, '9502930974921', 'SENSONDYN ORIGINAL 75ML', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1110, 178, 2403, '84832683', 'LIMZER CAPS 30\'', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1111, 178, 1755, 'PR-468', 'STOPKOF EXPT( CARBOCISTEINE)5?ULT 100ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1112, 178, 1901, 'PR-614', 'Diclokin TR', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1113, 178, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1114, 178, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.0000', NULL, 1, 'pc', '40.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1115, 178, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1116, 179, 2027, '60018915', 'VASELINE CREAM SMALL 100ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1117, 179, 2155, '5000347045219', 'PANADOL EXTRA ADVANCE', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1118, 179, 1560, 'PR-273', 'STUGERON', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1119, 179, 2271, '9556100104342', 'FLUCOR DAY', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1120, 179, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1121, 179, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1122, 179, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1123, 179, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1124, 179, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1125, 179, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '7.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1126, 179, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1127, 179, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1128, 179, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1129, 179, 1336, 'PR-49', 'RUBBING ALCOHOL -MUL TITI', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1130, 179, 1338, 'PR-51', 'COTTON WOOL 1 00G', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1131, 179, 1632, '5024874030630', 'VALUPAK VITE 4001U', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1132, 179, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1133, 179, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1134, 180, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1135, 180, 2465, '13163480', 'CORORANGE SYR', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1136, 180, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '0.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1137, 180, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1138, 180, 1521, 'PR-234', 'PAINGAYCAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1139, 180, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1140, 181, 1996, '6182000100455', 'CAROTONE LOTION SMALL 215ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1141, 181, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1142, 181, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1143, 181, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1144, 181, 1431, 'PR-144', 'SPARNIS GARLIC MIXTURE(30)', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1145, 181, 2451, '56986898', 'GIVERS MIX', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1146, 181, 2481, '40294439', 'FENNEL SEED', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1147, 181, 2479, '64861163', 'CHIA SEED', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1148, 181, 2151, '05077634', 'TOMAC MIX', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1149, 181, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1150, 182, 2479, '64861163', 'CHIA SEED', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1151, 182, 2399, '95599749', 'HEPA PLUS', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1152, 183, 2483, '90693662', 'THYME LEAVES', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1153, 183, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1154, 183, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1155, 184, 2348, '70645774', 'LYNUX OINT', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1156, 184, 2540, '20509028', 'SPANISH FLY', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '60.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1157, 184, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1158, 184, 1563, 'PR-276', 'AMICLOX SUSP. (ECL)', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1159, 184, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1160, 184, 2405, '40815002', 'GLOVES', 'standard', NULL, '1.6000', '1.6000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '1.6000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1161, 184, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1162, 184, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1163, 184, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1164, 184, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1165, 184, 1922, '8904185507342', 'Blopen gel BG-138', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1166, 184, 2410, '22266640', 'CARTEF SUSP 60ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1167, 184, 2304, '90589903', 'PARA-DENK SUPP 250MG', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1168, 184, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1169, 184, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1170, 184, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1171, 184, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1172, 184, 1383, 'PR-96', 'ZULU - MR', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1173, 184, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1174, 185, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1175, 185, 1563, 'PR-276', 'AMICLOX SUSP. (ECL)', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1176, 185, 2546, '11973520', 'NOSTAMINE E/N DROPS', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1177, 185, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', 'standard', NULL, '38.0000', '38.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '152.0000', '', '38.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1178, 185, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1179, 185, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1180, 185, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1181, 185, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', 'standard', NULL, '8.0000', '8.0000', '21.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '168.0000', '', '8.0000', NULL, 1, 'pc', '21.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1182, 185, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1183, 185, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1184, 185, 2251, '8901138500573', 'BONNISAN SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1185, 185, 1610, '8904107900909', 'MYCOLEX-3 CREAM', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1186, 185, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1187, 185, 2288, '44100235', 'FLUXAMOX SUSP 100ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1188, 186, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1189, 186, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1190, 186, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', 'standard', NULL, '6.5000', '6.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '6.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1191, 186, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1192, 186, 2073, '59185019', 'DOMI 30', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1193, 186, 1415, '6034000157055', 'LIVING BITTERS SYP S s', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1194, 186, 2386, '92175949', 'TETRACYCLINE EYE OINT 5G', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1195, 186, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1196, 186, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '31.0000', '31.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '31.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1197, 186, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1198, 187, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1199, 187, 2228, '7501058625915', 'LACTOGEN  1', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1200, 188, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1201, 189, 1312, 'PR-25', 'MILK OF MAGNESIA S/S', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1202, 190, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1203, 191, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1204, 192, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1205, 192, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1206, 192, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 192, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 192, 1332, 'PR-45', 'ZINC OXIDE PLATER ROLL 31CH', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 192, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 192, 1559, 'PR-272', 'SIRDALUD 4MG', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 192, 2455, '07137762', 'AMITRIPTYLINE 25MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1212, 192, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1213, 192, 1630, 'PR-343', 'GEN-M TAB 80/480', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1214, 193, 2286, '91011834', 'FLUXAMOX CAPS 200', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1215, 193, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1216, 194, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1217, 194, 1721, 'PR-434', 'AZITEX(AZITHROMYCIN) SUSP. 200MG /5ML 15ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1218, 194, 1946, '92115303', 'Ascorbin  Syrup 100ml', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1219, 194, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1220, 194, 1941, 'PR-654', 'Genti Gds11369', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1221, 194, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1222, 194, 2286, '91011834', 'FLUXAMOX CAPS 200', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1223, 195, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1224, 195, 2061, '96762855', 'ZYMAX CAPS 500MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 195, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 196, 1859, '8901138502942', 'PILEX TAB', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 196, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 196, 2426, '49816115', 'COMFORT SOFTNER', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 196, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 196, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 196, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 196, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 196, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 196, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 196, 2437, '44857984', 'APTAMIL BABY MILK', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '100.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 196, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 196, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 196, 1864, 'PR-577', 'VIROL BLOOD TONIC', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 196, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 196, 1440, 'PR-153', 'VICTORY GARLIC', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 197, 1314, 'PR-27', 'WORMBASE SUSP', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 197, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 197, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 197, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '0.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 197, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 197, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 197, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 198, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 198, 2073, '59185019', 'DOMI 30', 'standard', NULL, '3.0000', '3.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 198, 2218, '8964000734698', 'TEA TREE OIL 40ML', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 198, 2191, '8964000114223', 'LAVENDER OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 198, 2120, '850005911845', 'SANITIZERR SMALL SUAVE', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 198, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 198, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1255, 198, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1256, 198, 2482, '83427820', 'FENUGREEK SEED', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1257, 198, 2449, '73407261', 'DETTOL SOAP', 'standard', NULL, '7.0000', '7.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '7.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1258, 198, 2520, '20687050', 'CAMEL LIQUID ANTISEPTIC 500ML', 'standard', NULL, '25.0000', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '25.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1259, 198, 2524, '8858854602732', 'XTREME TUMERIC SOAP', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1260, 198, 2392, '10965636', 'CHOCHO SAOP', 'standard', NULL, '4.5000', '4.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1261, 198, 1463, '5010123715175', 'EUTHYMOO TOOTHPASTE', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1262, 198, 2441, '82095661', 'COLGATE HERBAL TOOTHPASTE', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1263, 198, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1264, 198, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1265, 198, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1266, 198, 2283, '8906009232225', 'LOFNAC TAB 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1267, 199, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1268, 199, 2544, '85585070', 'NEXCOFER SYR L/S', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1269, 199, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1270, 199, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1271, 200, 1410, 'PR-123', 'JOY OINT S/S(200)', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1272, 200, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1273, 200, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1274, 201, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1275, 201, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1276, 201, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1277, 201, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1278, 202, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1279, 202, 2291, '8904091112401', 'CANDIBIOTICS EAR DROPS 5ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1280, 202, 2281, '087450449108', 'TYLENOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1281, 202, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1282, 202, 2479, '64861163', 'CHIA SEED', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1283, 202, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '18.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1284, 202, 1406, '16564749', 'GIVERS KOO CAPS(l40)', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1285, 202, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', '48.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1286, 202, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1287, 202, 1545, '8904091105816', 'CANDID V6 PESS 6\'S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1288, 202, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1289, 202, 1953, '56415263', 'STAGYL TABS', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1290, 202, 1868, 'PR-581', 'CIPRO TAB 500MG (SHALCIP TAB)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1291, 202, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1292, 202, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1293, 202, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1294, 203, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1295, 203, 2281, '087450449108', 'TYLENOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1296, 203, 2463, '22321274', 'ADVIL COMBO 50\'S', 'standard', NULL, '4.0000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1297, 203, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1298, 203, 1710, 'PR-423', 'PRONALIN ADULT', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1299, 203, 1703, 'PR-416', 'VIGORIX SYR 200ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1300, 203, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1301, 203, 2484, '00708902', 'PUMPKIN SEED', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1302, 203, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1303, 203, 2512, '57681465', 'HONEY  500ML', 'standard', NULL, '25.0000', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '25.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1304, 203, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1305, 203, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1306, 203, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1307, 204, 1460, 'PR-173', 'ZOFLORA 120ML', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1308, 204, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 2229, '7501058625922', 'LACTOGEN 2', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 1630, 'PR-343', 'GEN-M TAB 80/480', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 1864, 'PR-577', 'VIROL BLOOD TONIC', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 2231, '7501058633927', 'NAN 2', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 2316, '59549986', 'SMA BABY FOOD', 'standard', NULL, '46.0000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 2151, '05077634', 'TOMAC MIX', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 2255, '8901040258050', 'BIOFERON CAPS', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 1354, '5024874700106', 'HEALTH LINK WOMAN', 'standard', NULL, '53.0000', '53.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '53.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 2089, '39725135', 'POLYGEL SUSP 200ML', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 1449, 'PR-162', 'Wormee 4 tab wr036', 'standard', NULL, '2.5000', '2.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '2.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 1314, 'PR-27', 'WORMBASE SUSP', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 1304, 'PR-17', 'BASECHLOR DROPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 1309, 'PR-22', 'GENTBASE EYE/EAR DROP', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.4000', '', '1.2000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', 'standard', NULL, '3.5000', '3.5000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '3.5000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 1388, 'PR-101', 'ADOM KOKO SYP(20)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 204, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 2120, '850005911845', 'SANITIZERR SMALL SUAVE', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 2071, '20773440', 'GRISEOFULVIN', 'standard', NULL, '6.5000', '6.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '6.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '35.0000', '35.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '35.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 1595, 'PR-308', 'BEEHIVE COUGH SYR', 'standard', NULL, '24.5000', '24.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '24.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 1397, 'PR-110', 'ANGEL FETWEK3K3(200)', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '44.0000', '44.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '88.0000', '', '44.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 1431, 'PR-144', 'SPARNIS GARLIC MIXTURE(30)', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 1376, '7640153082107', 'IXYLO-MEPHA 0.05%', 'standard', NULL, '45.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.2500', '', '0.2500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 205, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.7500', '', '0.2500', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 206, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '3.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 206, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 206, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '26.5000', '26.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 206, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 206, 1431, 'PR-144', 'SPARNIS GARLIC MIXTURE(30)', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1360, 206, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1361, 206, 2541, '39996904', 'DEMACOT CREAM', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 206, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 206, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.2500', '', '0.2500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 206, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.2500', '', '0.2500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 206, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.2500', '', '0.2500', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1366, 206, 1993, '6033000330710', 'KLEANZ SANITIZER 50ML', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1367, 207, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1368, 207, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1369, 207, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.3000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1370, 207, 2336, '74912018', 'ATENOLOL 50MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1371, 207, 1604, 'PR-317', 'AUGMENTIN 1G', 'standard', NULL, '46.5000', '46.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '46.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1372, 207, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1373, 208, 1687, 'PR-400', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1374, 208, 2472, '68854601', 'SOFT & GENTLIE SPRAY', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1375, 208, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1376, 209, 2563, '07901554', 'PROBIOTICS (RENEWLIFE)', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '60.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1377, 209, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1378, 209, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1379, 209, 1372, 'PR-85', 'PARACETAMOL TAB 32\'S', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1380, 209, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '6.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1381, 209, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', 'standard', NULL, '54.5000', '54.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '54.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1382, 209, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '6.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1383, 209, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1384, 210, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '31.0000', '31.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '31.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1385, 210, 2349, '82507445', 'CEBROTONIN TAB', 'standard', NULL, '32.0000', '32.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 210, 1636, '4031571069116', 'VIT-B DENK', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 210, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 210, 2305, '18430069', 'NO-SPA 40MG S/S 20\'S', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 211, 2154, '8410179200927', 'BORGES S/S  125ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 211, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 211, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '35.0000', '35.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '35.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 211, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 211, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '3.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 211, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 211, 2232, '25430404', 'AMOKISKLAV 1000MG', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 211, 2297, '46332629', 'DREZ SOLUTION S/S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 211, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 211, 1610, '8904107900909', 'MYCOLEX-3 CREAM', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 211, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 211, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 211, 1999, '6971044950313', 'YAZZ PAD', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 211, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '3.8000', '3.8000', '14.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '53.2000', '', '3.8000', NULL, 1, 'pc', '14.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 211, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 211, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 212, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 212, 1604, 'PR-317', 'AUGMENTIN 1G', 'standard', NULL, '46.5000', '46.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.5000', '', '46.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 212, 1382, 'PR-95', 'ZULU EXTRA', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 212, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 212, 2371, '83539675', 'FRESH LADY CAPS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 212, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 212, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 212, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.3000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 213, 1730, 'PR-443', 'DAKTACORT CREAM 15G', 'standard', NULL, '31.5000', '31.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '31.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 213, 2271, '9556100104342', 'FLUCOR DAY', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 213, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 213, 2526, '8858854600110', 'VIRGINITY SOAP (SKIN DOCTOR0', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 213, 1791, '8904107900992', 'LEXSPORIN POWDER 10G', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 213, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 213, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 213, 1671, '3838989529642', 'CIPRINOL TAB 500MG', 'standard', NULL, '5.5000', '5.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '5.5000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 213, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 213, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 213, 2142, '5021265223855', 'WELLBABY ', 'standard', NULL, '76.0000', '76.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '76.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 213, 2362, '63796869', 'ZINNAT 500MG', 'standard', NULL, '11.0000', '11.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '11.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 213, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 213, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 213, 2512, '57681465', 'HONEY  500ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 213, 2222, '4791014004950', 'QUALITEA GREEN TEA', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1429, 213, 2567, '83596243', 'NAN 1', 'standard', NULL, '37.0000', '37.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '37.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1430, 213, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1431, 214, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1432, 214, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1433, 214, 2545, '82780299', 'DREZ POWDER 10G', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1434, 214, 1520, 'PR-233', 'DICLOLEX 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1435, 214, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1436, 214, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1437, 214, 2457, '33345179', 'PILIEF TABS', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 214, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 214, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 215, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 215, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1442, 215, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1443, 215, 2170, '8964000114070', 'SWEET ALMOND OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1444, 216, 1512, 'PR-225', 'CIPAC EYE ROP', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1445, 216, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1446, 216, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1447, 216, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1448, 216, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1449, 216, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1450, 216, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1451, 216, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1452, 216, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1453, 216, 1527, '8904159609416', 'PREGASAFE 75MG TAB', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1454, 216, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1455, 216, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1456, 217, 1742, '53996671', 'SUDOCREM 30G TUBE', 'standard', NULL, '23.5000', '23.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.5000', '', '23.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1457, 218, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1458, 218, 2571, '89677505', 'YAAKSON MIXTURE', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1459, 218, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1460, 218, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1461, 218, 1400, 'PR-113', 'DIAGELLETS 500ML(24)', 'standard', NULL, '29.0000', '29.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '29.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1462, 218, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1463, 218, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '1.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1464, 218, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1465, 218, 1420, 'PR-133', 'NAZO', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1466, 218, 2469, '50076979', 'Corsodyl mouth wash', 'standard', NULL, '55.0000', '55.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '55.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1467, 218, 2445, '08969985', 'ADULT DIAPER', 'standard', NULL, '5.0000', '5.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '5.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1468, 218, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1469, 218, 1305, 'PR-18', 'BASEKOF SYR', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1470, 218, 2544, '85585070', 'NEXCOFER SYR L/S', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 218, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 218, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '2.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 219, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 219, 1449, 'PR-162', 'Wormee 4 tab wr036', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 219, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1476, 219, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1477, 219, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '6.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1478, 219, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1479, 219, 2403, '84832683', 'LIMZER CAPS 30\'', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1480, 219, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1481, 219, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1482, 220, 2588, '20381609', 'NORMAL SALINE INFUSSION', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1483, 221, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1484, 221, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1485, 221, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1486, 221, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1487, 221, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1488, 221, 2582, '81054441', 'AZILEX SUSP', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1489, 221, 1557, 'PR-270', 'SE\'CLEAR EYE DROP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1490, 221, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 221, 1955, '4014852751801', 'PROCOMIL TABLET', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 1447, '8906081306418', 'Herbal Lofnac HLB001', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 1577, 'PR-290', 'MALIN LOZ', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 2113, '192624002949', 'BOD MEM SMALL', 'standard', NULL, '12.0000', '12.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '12.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 2319, '27607621', 'KN95 FACE MASK', 'standard', NULL, '4.0000', '4.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '4.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 1385, 'PR-98', 'AZIS TABS. 500MG', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 1394, 'PR-107', 'AGBEVE TONIC(30)', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 1589, '8904008410118', 'GASTRACID SUSP (GR)', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 2559, '42580620', 'ABBYVITA SYRP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1508, 222, 1419, '5024389122233', 'MIGHTY POWER SYS LS', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1509, 222, 1663, '5021265221523', 'PREGNACARE PLUS', 'standard', NULL, '109.0000', '109.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '109.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 1653, 'PR-366', 'PRAZIQUANTEL 600MG TAB 100\'(ECL)', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 222, 2444, '73221630', 'SOFTCARE BABY WIPES', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 223, 2165, '6001051000821', 'NIVEA MEN BODY LOTION', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 224, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 224, 2574, '24484092', 'DULCOLAX TABS 5MG 20\'S', 'standard', NULL, '1.0000', '1.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '1.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 224, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 224, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 225, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 225, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 226, 2436, '04225724', 'ANTI BACTERIAL WIPE', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 2076, '24451420', 'ZINVITE SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 2342, '62530607', 'DICLO-DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '2.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 2345, '37407616', 'PONSTAN CAPS 250MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 2540, '20509028', 'SPANISH FLY', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '60.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '50.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', 'standard', NULL, '7.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 1569, 'PR-282', 'TIGER CAPS', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 2582, '81054441', 'AZILEX SUSP', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 2405, '40815002', 'GLOVES', 'standard', NULL, '1.6000', '1.6000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '1.6000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 227, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 229, 2602, '86780065', 'CLOVES ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_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, 229, 2601, '14487985', 'ULTRA SLIM HERBAL TEA', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1564, 229, 2603, '17379642', 'VITAGO', 'standard', NULL, '1.3000', '1.3000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3000', '', '1.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1565, 230, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1566, 230, 1805, 'PR-518', 'SAMALIN ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1567, 231, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '12.0000', '12.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '12.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1568, 231, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1569, 231, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1570, 231, 2492, '51417644', 'NIZORAL SHAMPOO', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1571, 231, 2541, '39996904', 'DEMACOT CREAM', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1572, 231, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1573, 232, 1563, 'PR-276', 'AMICLOX SUSP. (ECL)', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1574, 232, 2505, '28562016', 'ORELOX 100MG TABLETS', 'standard', NULL, '90.5000', '90.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '90.5000', '', '90.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1575, 232, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1576, 232, 2493, '5060057401095', 'FRUSEMIDE TAB 40MG UK ALMUS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1577, 232, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1578, 232, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1579, 232, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1580, 232, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1581, 232, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1582, 233, 1704, '5060033711873', 'CYPRODINE SYR', 'standard', NULL, '35.5000', '35.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '35.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1583, 233, 2449, '73407261', 'DETTOL SOAP', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1584, 233, 2565, '45244498', 'VERNA WATER MEDIUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1585, 233, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '26.5000', '26.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1586, 233, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1587, 233, 1471, 'PR-184', 'LEXOFEN SUS 100ML', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1588, 233, 1431, 'PR-144', 'SPARNIS GARLIC MIXTURE(30)', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1589, 233, 2027, '60018915', 'VASELINE CREAM SMALL 100ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1590, 233, 1975, '6186000077410', 'EVERSHEEN LOTION MEDIUM 500ML', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1591, 233, 2479, '64861163', 'CHIA SEED', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1592, 233, 2005, '6926160704036', 'LILY ROSS TOOTHBRUSH HARD', 'standard', NULL, '3.5000', '3.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '3.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1593, 233, 1957, '6181100248159', 'Jaguar balm 125ml', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1594, 234, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1595, 234, 1931, 'PR-644', 'Exicam Do c0070002', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1596, 234, 1520, 'PR-233', 'DICLOLEX 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1597, 234, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1598, 234, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1599, 234, 1480, '5011501006519', 'DEEP FREEZE SPRAY', 'standard', NULL, '38.0000', '38.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '38.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1600, 235, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', 'standard', NULL, '3.7000', '3.7000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '3.7000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1601, 236, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1602, 237, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', 'standard', NULL, '33.0000', '33.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '33.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1603, 237, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '31.0000', '31.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '31.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1604, 237, 2417, '89073800', 'DOVE SOAP', 'standard', NULL, '18.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1605, 237, 2431, '41187227', 'PEPSODENT BRUSH KIDS', 'standard', NULL, '3.0000', '3.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1606, 237, 1702, '8906045432580', 'BONAPLEX SYR 200ML', 'standard', NULL, '19.5000', '19.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1607, 237, 1908, 'PR-621', 'Magacid tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1608, 237, 2251, '8901138500573', 'BONNISAN SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1609, 237, 2548, '54581009', 'ZINCOVIT DROP', 'standard', NULL, '9.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1610, 237, 2244, '96089977', 'MAGACID SYRUP 200ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1611, 237, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1612, 237, 1449, 'PR-162', 'Wormee 4 tab wr036', 'standard', NULL, '2.5000', '2.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1613, 237, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '1.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1614, 237, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1615, 237, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1616, 237, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1617, 237, 1901, 'PR-614', 'Diclokin TR', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1618, 237, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1619, 237, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1620, 238, 2350, '58123990', 'COARTEM 6\'S', 'standard', NULL, '13.5000', '13.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1621, 238, 1575, '5017007043294', 'LOSARTAN POTASSIUM 50MG (TEVA)', 'standard', NULL, '14.0000', '14.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '14.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1622, 238, 2231, '7501058633927', 'NAN 2', 'standard', NULL, '36.0000', '36.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1623, 238, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1624, 239, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1625, 239, 2232, '25430404', 'AMOKISKLAV 1000MG', 'standard', NULL, '36.0000', '36.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1626, 239, 1682, 'PR-395', 'SENAFEN TAB 100\'', 'standard', NULL, '14.0000', '14.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1627, 239, 1922, '8904185507342', 'Blopen gel BG-138', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1628, 239, 1922, '8904185507342', 'Blopen gel BG-138', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1629, 239, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1630, 239, 1973, '6181100533101', 'CARO WHITE SHOWER GEL', 'standard', NULL, '17.0000', '17.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '17.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1631, 239, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', 'standard', NULL, '24.0000', '24.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1632, 239, 2567, '83596243', 'NAN 1', 'standard', NULL, '37.0000', '37.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '37.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1633, 239, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1634, 239, 1385, 'PR-98', 'AZIS TABS. 500MG', 'standard', NULL, '8.5000', '8.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1635, 239, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1636, 239, 1414, '6034000157048', 'LIVING BITTERS CAPS', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1637, 239, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1638, 239, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.2000', '1.2000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.2000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1639, 239, 2541, '39996904', 'DEMACOT CREAM', 'standard', NULL, '13.0000', '13.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1640, 239, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1641, 239, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1642, 239, 1440, 'PR-153', 'VICTORY GARLIC', 'standard', NULL, '13.0000', '13.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1643, 239, 2479, '64861163', 'CHIA SEED', 'standard', NULL, '13.0000', '13.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1644, 239, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1645, 239, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.3000', '', '0.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1646, 239, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1647, 240, 2423, '57283790', 'POWER ZONE S/S', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1648, 240, 1410, 'PR-123', 'JOY OINT S/S(200)', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1649, 240, 2605, '92433638', 'COLESTOP 10MG', 'standard', NULL, '11.0000', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '11.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1650, 240, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1651, 240, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1652, 240, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1653, 240, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1654, 240, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1655, 241, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1656, 241, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1657, 241, 2557, '86393917', 'METOCLOPRAMIDE', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1658, 241, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1659, 242, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1660, 242, 2068, '79519848', 'LUFART DS', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1661, 242, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1662, 242, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '0.5000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1663, 242, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1664, 242, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1665, 242, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1666, 242, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1667, 242, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '1.3000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1668, 242, 2155, '5000347045219', 'PANADOL EXTRA ADVANCE', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1669, 242, 1645, 'PR-358', 'AMCOF ADULT SYRUP', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1670, 242, 2426, '49816115', 'COMFORT SOFTNER', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1671, 242, 2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1672, 242, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '23.4000', '23.4000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '23.4000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1673, 242, 1657, '5013548102087', 'MEDICATED CHARCOAL', 'standard', NULL, '0.5000', '0.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '0.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1674, 242, 1654, '8904091117703', 'RELCER GEL', 'standard', NULL, '11.5000', '11.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '11.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1675, 242, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1676, 242, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1677, 242, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1678, 243, 2439, '92520287', 'QUAKER OATS TIN', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1679, 243, 1843, '5000456024754', 'NEXIUM TABS 20MG 14S', 'standard', NULL, '5.6000', '5.6000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.2000', '', '5.6000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1680, 243, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1681, 244, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1682, 244, 1628, 'PR-341', 'GUDAPET SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1683, 244, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1684, 244, 2407, '8901138140625', 'MENTAT SYRUP 100ML', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1685, 244, 2514, '98091900', 'TOMBROWN 500G', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1686, 244, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1687, 244, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1688, 244, 1804, 'PR-517', 'SAMALIN JUNIOR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1689, 244, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1690, 244, 1521, 'PR-234', 'PAINGAYCAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1691, 244, 1636, '4031571069116', 'VIT-B DENK', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1692, 245, 1413, 'PR-126', 'KINGDOM GARLIC CAPS', 'standard', NULL, '21.0000', '21.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1693, 245, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1694, 245, 1847, '5028268050358', 'BEEHIVE BALSAM SYR', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1695, 245, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1696, 245, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1697, 245, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1698, 245, 2019, '6001159111641', 'BIO OIL SMALL60ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1699, 245, 2530, '7640149080124', 'Q7 GOLD (CARROT) SOAP', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1700, 245, 2193, '8964000114216', 'ROSEMARY OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1701, 245, 2577, '71775757', 'PALM OLIVE 650ML BIG', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1702, 245, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '1.3000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1703, 245, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1704, 245, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1705, 245, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1706, 245, 1900, 'PR-613', 'Cefruate 500', 'standard', NULL, '3.3000', '3.3000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '3.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1707, 245, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1708, 245, 2124, '079896174812', 'QUEEN HELENE COCOA BUTTER LOTION', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '40.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1709, 245, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1710, 245, 2543, '89430673', 'SECURE CONTRACEPTIVE', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1711, 246, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1712, 246, 1589, '8904008410118', 'GASTRACID SUSP (GR)', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1713, 246, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.2000', '1.2000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '1.2000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1714, 247, 2155, '5000347045219', 'PANADOL EXTRA ADVANCE', 'standard', NULL, '29.0000', '29.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1715, 247, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1716, 247, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', 'standard', NULL, '16.5000', '16.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1717, 247, 2543, '89430673', 'SECURE CONTRACEPTIVE', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1718, 247, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1719, 248, 1707, 'PR-420', 'MEDGLOBIN CAPS', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1720, 248, 1682, 'PR-395', 'SENAFEN TAB 100\'', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1721, 248, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1722, 248, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1723, 248, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1724, 248, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1725, 248, 2068, '79519848', 'LUFART DS', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1726, 248, 2569, '30297629', 'METROBON F', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1727, 248, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1728, 248, 1668, '8906016831572', 'Acidom Caps', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1729, 248, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1730, 248, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.8000', '', '0.6000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1731, 248, 1645, 'PR-358', 'AMCOF ADULT SYRUP', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1732, 248, 2283, '8906009232225', 'LOFNAC TAB 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1733, 248, 1513, '6221032233103', 'DEXATROL EYE DROP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1734, 248, 2313, '83991627', 'ENTRACIN 300', 'standard', NULL, '12.0000', '12.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '12.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1735, 248, 2481, '40294439', 'FENNEL SEED', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1736, 248, 2483, '90693662', 'THYME LEAVES', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1737, 248, 2602, '86780065', 'CLOVES ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1738, 248, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1739, 248, 1440, 'PR-153', 'VICTORY GARLIC', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1740, 248, 2213, '8964000735695', 'CLOVE OIL 60ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1741, 248, 2362, '63796869', 'ZINNAT 500MG', 'standard', NULL, '11.0000', '11.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '11.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1742, 248, 2400, '91513969', 'BRIGHTFOD STRONG', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1743, 248, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1744, 249, 1954, '87246804', 'COLDRDID TAB', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1745, 250, 2012, '46653631', 'DETTOL ANTISEPTIC 165ML', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1746, 251, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1747, 251, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1748, 251, 1388, 'PR-101', 'ADOM KOKO SYP(20)', 'standard', NULL, '7.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1749, 251, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1750, 251, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1751, 251, 1564, '3838989544225', 'TADOL 100MG', 'standard', NULL, '4.0000', '4.0000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '200.0000', '', '4.0000', NULL, 1, 'pc', '50.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1752, 251, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 'standard', NULL, '26.0000', '26.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '26.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1753, 251, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1754, 251, 2035, '616762001072', 'POWER HOUSE ROLL ON 50ML', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1755, 251, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1756, 251, 1740, 'PR-453', 'SILDENAFIL TABS 1 00MG 4\'(EXETER)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1757, 251, 1730, 'PR-443', 'DAKTACORT CREAM 15G', 'standard', NULL, '31.5000', '31.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '31.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1758, 251, 1414, '6034000157048', 'LIVING BITTERS CAPS', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1759, 251, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1760, 251, 1966, '9556564303336', 'FIESTA CONDOM DOTTED', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1761, 251, 2034, '4800888199188', 'REXONA ROLL ON 50ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1762, 251, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1763, 251, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.2000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1764, 251, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1765, 251, 2263, '6036000090417', 'LEVON 2', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1766, 251, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1767, 251, 1790, '8904107900824', 'LEXSPORIN OINTMENT 20GMS', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1768, 228, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1769, 228, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1770, 228, 2076, '24451420', 'ZINVITE SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1771, 228, 2342, '62530607', 'DICLO-DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '2.5000', NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1772, 228, 2345, '37407616', 'PONSTAN CAPS 250MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1773, 228, 2540, '20509028', 'SPANISH FLY', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '60.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1774, 228, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1775, 228, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1776, 228, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '50.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1777, 228, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', 'standard', NULL, '7.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1778, 228, 1569, 'PR-282', 'TIGER CAPS', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1779, 228, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1780, 228, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1781, 228, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1782, 228, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1783, 228, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1784, 228, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1785, 228, 2582, '81054441', 'AZILEX SUSP', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1786, 228, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1787, 228, 2405, '40815002', 'GLOVES', 'standard', NULL, '1.6000', '1.6000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '1.6000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1788, 228, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1789, 252, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', 'standard', NULL, '6.0000', '6.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-6.0000', '', '6.0000', 1768, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1790, 252, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-48.0000', '', '48.0000', 1769, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1791, 252, 2076, '24451420', 'ZINVITE SYR', 'standard', NULL, '11.0000', '11.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-11.0000', '', '11.0000', 1770, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1792, 252, 2342, '62530607', 'DICLO-DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '-5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-12.5000', '', '2.5000', 1771, 1, 'pc', '-5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1793, 252, 2345, '37407616', 'PONSTAN CAPS 250MG', 'standard', NULL, '10.0000', '10.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-10.0000', '', '10.0000', 1772, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1794, 252, 2540, '20509028', 'SPANISH FLY', 'standard', NULL, '60.0000', '60.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-60.0000', '', '60.0000', 1773, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1795, 252, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '-2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-1.6000', '', '0.8000', 1774, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1796, 252, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-3.0000', '', '3.0000', 1775, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1797, 252, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', 'standard', NULL, '50.0000', '50.0000', '-2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-100.0000', '', '50.0000', 1776, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1798, 252, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', 'standard', NULL, '7.0000', '7.0000', '-2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-14.0000', '', '7.0000', 1777, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1799, 252, 1569, 'PR-282', 'TIGER CAPS', 'standard', NULL, '19.0000', '19.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-19.0000', '', '19.0000', 1778, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1800, 252, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '-4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-16.0000', '', '4.0000', 1779, 1, 'pc', '-4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1801, 252, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-1.5000', '', '1.5000', 1780, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1802, 252, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '-2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-1.6000', '', '0.8000', 1781, 1, 'pc', '-2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1803, 252, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-3.0000', '', '3.0000', 1782, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1804, 252, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '-3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-4.5000', '', '1.5000', 1783, 1, 'pc', '-3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1805, 252, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-3.0000', '', '3.0000', 1784, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1806, 252, 2582, '81054441', 'AZILEX SUSP', 'standard', NULL, '30.0000', '30.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-30.0000', '', '30.0000', 1785, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1807, 252, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-3.0000', '', '3.0000', 1786, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1808, 252, 2405, '40815002', 'GLOVES', 'standard', NULL, '1.6000', '1.6000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-1.6000', '', '1.6000', 1787, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1809, 252, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-5.0000', '', '5.0000', 1788, 1, 'pc', '-1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1810, 253, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1811, 253, 1636, '4031571069116', 'VIT-B DENK', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1812, 253, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1813, 253, 1708, 'PR-421', 'MEDGLOBIN SYR', 'standard', NULL, '26.5000', '26.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1814, 253, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', 'standard', NULL, '24.5000', '24.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '24.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1815, 253, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1816, 253, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1817, 253, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '0.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1818, 253, 2518, '51929198', 'TAVANIC 500MG', 'standard', NULL, '140.0000', '140.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '140.0000', '', '140.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1819, 253, 2463, '22321274', 'ADVIL COMBO 50\'S', 'standard', NULL, '4.0000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1820, 253, 2348, '70645774', 'LYNUX OINT', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1821, 253, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1822, 253, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1823, 254, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', 'standard', 0, '6.0000', '6.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-6.0000', '', '6.0000', NULL, 1, 'pc', '-1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1824, 254, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', 0, '48.0000', '48.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-48.0000', '', '48.0000', NULL, 1, 'pc', '-1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1825, 254, 2076, '24451420', 'ZINVITE SYR', 'standard', 0, '11.0000', '11.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-11.0000', '', '11.0000', NULL, 1, 'pc', '-1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1826, 254, 2342, '62530607', 'DICLO-DENK RECTAL SUPPOSITRY', 'standard', 0, '2.5000', '2.5000', '-5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-12.5000', '', '2.5000', NULL, 1, 'pc', '-5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1827, 254, 2345, '37407616', 'PONSTAN CAPS 250MG', 'standard', 0, '10.0000', '10.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-10.0000', '', '10.0000', NULL, 1, 'pc', '-1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1828, 254, 2540, '20509028', 'SPANISH FLY', 'standard', 0, '60.0000', '60.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-60.0000', '', '60.0000', NULL, 1, 'pc', '-1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1829, 254, 1912, 'PR-625', 'KWIK ACTION', 'standard', 0, '0.8000', '0.8000', '-2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-1.6000', '', '0.8000', NULL, 1, 'pc', '-2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1830, 254, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', 0, '3.0000', '3.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-3.0000', '', '3.0000', NULL, 1, 'pc', '-1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1831, 254, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', 'standard', 0, '50.0000', '50.0000', '-2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-100.0000', '', '50.0000', NULL, 1, 'pc', '-2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1832, 254, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', 'standard', 0, '7.0000', '7.0000', '-2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-14.0000', '', '7.0000', NULL, 1, 'pc', '-2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1833, 254, 1569, 'PR-282', 'TIGER CAPS', 'standard', 0, '19.0000', '19.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-19.0000', '', '19.0000', NULL, 1, 'pc', '-1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1834, 254, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', 0, '4.0000', '4.0000', '-4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-16.0000', '', '4.0000', NULL, 1, 'pc', '-4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1835, 254, 2237, '6033000270061', 'EFPAC TABS', 'standard', 0, '1.5000', '1.5000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-1.5000', '', '1.5000', NULL, 1, 'pc', '-1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1836, 254, 1912, 'PR-625', 'KWIK ACTION', 'standard', 0, '0.8000', '0.8000', '-2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-1.6000', '', '0.8000', NULL, 1, 'pc', '-2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1837, 254, 2136, '39315036', 'ALEVE', 'standard', 0, '3.0000', '3.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-3.0000', '', '3.0000', NULL, 1, 'pc', '-1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1838, 254, 2169, '97038500', 'GEBEDOL', 'standard', 0, '1.5000', '1.5000', '-3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-4.5000', '', '1.5000', NULL, 1, 'pc', '-3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1839, 254, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', 0, '3.0000', '3.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-3.0000', '', '3.0000', NULL, 1, 'pc', '-1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1840, 254, 2582, '81054441', 'AZILEX SUSP', 'standard', 0, '30.0000', '30.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-30.0000', '', '30.0000', NULL, 1, 'pc', '-1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1841, 254, 1337, 'PR-50', 'SPIRIT', 'standard', 0, '3.0000', '3.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-3.0000', '', '3.0000', NULL, 1, 'pc', '-1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1842, 254, 2405, '40815002', 'GLOVES', 'standard', 0, '1.6000', '1.6000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-1.6000', '', '1.6000', NULL, 1, 'pc', '-1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1843, 254, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', 0, '5.0000', '5.0000', '-1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '-5.0000', '', '5.0000', NULL, 1, 'pc', '-1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1844, 255, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', 'standard', 0, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', 1823, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1845, 255, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', 0, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', 1824, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1846, 255, 2076, '24451420', 'ZINVITE SYR', 'standard', 0, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', 1825, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1847, 255, 2342, '62530607', 'DICLO-DENK RECTAL SUPPOSITRY', 'standard', 0, '2.5000', '2.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '2.5000', 1826, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1848, 255, 2345, '37407616', 'PONSTAN CAPS 250MG', 'standard', 0, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', 1827, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1849, 255, 2540, '20509028', 'SPANISH FLY', 'standard', 0, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '60.0000', 1828, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1850, 255, 1912, 'PR-625', 'KWIK ACTION', 'standard', 0, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', 1829, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1851, 255, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', 0, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', 1830, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1852, 255, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', 'standard', 0, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '50.0000', 1831, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1853, 255, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', 'standard', 0, '7.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', 1832, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1854, 255, 1569, 'PR-282', 'TIGER CAPS', 'standard', 0, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', 1833, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1855, 255, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', 0, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', 1834, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1856, 255, 2237, '6033000270061', 'EFPAC TABS', 'standard', 0, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', 1835, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1857, 255, 1912, 'PR-625', 'KWIK ACTION', 'standard', 0, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', 1836, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1858, 255, 2136, '39315036', 'ALEVE', 'standard', 0, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', 1837, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1859, 255, 2169, '97038500', 'GEBEDOL', 'standard', 0, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', 1838, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1860, 255, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', 0, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', 1839, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1861, 255, 2582, '81054441', 'AZILEX SUSP', 'standard', 0, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', 1840, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1862, 255, 1337, 'PR-50', 'SPIRIT', 'standard', 0, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', 1841, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1863, 255, 2405, '40815002', 'GLOVES', 'standard', 0, '1.6000', '1.6000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '1.6000', 1842, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1864, 255, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', 0, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', 1843, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1865, 256, 1363, '5000456022774', 'CRESTOR 5MG TABS', 'standard', NULL, '107.5000', '107.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '107.5000', '', '107.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1866, 256, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1867, 256, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '0.5000', NULL, 1, 'pc', '25.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1868, 256, 1400, 'PR-113', 'DIAGELLETS 500ML(24)', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1869, 257, 1585, 'PR-298', 'ZUBES CHILDREN', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1870, 257, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1871, 257, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1872, 257, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1873, 257, 2283, '8906009232225', 'LOFNAC TAB 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1874, 257, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1875, 257, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1876, 257, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1877, 257, 1805, 'PR-518', 'SAMALIN ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1878, 257, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1879, 257, 2545, '82780299', 'DREZ POWDER 10G', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1880, 257, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1881, 257, 2565, '45244498', 'VERNA WATER MEDIUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1882, 257, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1883, 257, 2479, '64861163', 'CHIA SEED', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1884, 257, 2484, '00708902', 'PUMPKIN SEED', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1885, 257, 2288, '44100235', 'FLUXAMOX SUSP 100ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1886, 257, 2376, '77456423', 'PROSTAFIT', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1887, 257, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1888, 257, 2277, '71311341', 'ZUBES TABLETS ', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1889, 257, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1890, 257, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1891, 257, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '8.5000', '8.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '8.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1892, 258, 2547, '30290939', 'VISCOF S SYR', 'standard', NULL, '11.5000', '11.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '11.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1893, 259, 2547, '30290939', 'VISCOF S SYR', 'standard', NULL, '11.5000', '11.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '11.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1894, 259, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '2.6000', '2.6000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '2.6000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1895, 259, 2061, '96762855', 'ZYMAX CAPS 500MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1896, 259, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1897, 259, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1898, 259, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1899, 259, 1328, 'PR-41', 'HIGH ELASTIC CREPE BANDAGE 4\"', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1900, 259, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1901, 259, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1902, 259, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1903, 259, 2392, '10965636', 'CHOCHO SAOP', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1904, 259, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', 'standard', NULL, '74.0000', '74.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '74.0000', '', '74.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1905, 259, 1650, 'PR-363', 'ZUBES EXTRA', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1906, 259, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.2500', '', '0.2500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1907, 259, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1908, 259, 1588, '8902396003509', 'CORORANGE DROP', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1909, 259, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1910, 259, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1911, 259, 2178, '8964000114308', 'CARROT OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1912, 259, 2199, '8964000390658', 'ROSE OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1913, 260, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1914, 260, 1966, '9556564303336', 'FIESTA CONDOM DOTTED', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1915, 260, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1916, 260, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1917, 260, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1918, 260, 1910, 'PR-623', 'Apc 10 x 10', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1919, 260, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1920, 260, 2392, '10965636', 'CHOCHO SAOP', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1921, 260, 2022, '69436145', 'CHOCHO CREAM', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1922, 260, 2039, '8710447482032', 'REXONA DEO SPRAY 200ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1923, 261, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1924, 261, 1773, '7640153082091', 'XYLO ACINO MEPHA 0.10ML', 'standard', NULL, '59.0000', '59.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '59.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1925, 261, 2271, '9556100104342', 'FLUCOR DAY', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1926, 261, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1927, 261, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1928, 261, 1549, '610074245209', 'LAVET', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1929, 261, 2143, '4005292004916', 'GERMANY VIT C', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1930, 261, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1931, 261, 2331, '22131552', 'IMODIYM CAPS 2MG 6\'S', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1932, 261, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1933, 261, 2606, '79633078', 'MOSQUITO NET RING', 'standard', NULL, '53.0000', '53.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '106.0000', '', '53.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1934, 262, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', 'standard', NULL, '24.5000', '24.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '24.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1935, 262, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1936, 262, 2452, '56056492', 'FINE FINE SOAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1937, 262, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1938, 262, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1939, 262, 2120, '850005911845', 'SANITIZERR SMALL SUAVE', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1940, 262, 2427, '44595573', 'SAVLON SS/S', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1941, 262, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1942, 262, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1943, 262, 2481, '40294439', 'FENNEL SEED', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1944, 262, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1945, 262, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1946, 262, 2593, '8850769013252', 'GINSOMIN CAPS', 'standard', NULL, '19.0000', '19.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '19.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1947, 262, 2005, '6926160704036', 'LILY ROSS TOOTHBRUSH HARD', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1948, 262, 2587, '11447011', 'NEO MEDROL LOTION', 'standard', NULL, '178.0000', '178.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '178.0000', '', '178.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1949, 262, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1950, 263, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1951, 263, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1952, 263, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1953, 263, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1954, 263, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1955, 263, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1956, 263, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1957, 263, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1958, 264, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1959, 264, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1960, 264, 2403, '84832683', 'LIMZER CAPS 30\'', 'standard', NULL, '24.0000', '24.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '24.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1961, 264, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '31.0000', '31.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '31.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1962, 264, 1575, '5017007043294', 'LOSARTAN POTASSIUM 50MG (TEVA)', 'standard', NULL, '14.0000', '14.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '14.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1963, 264, 2468, '92479608', 'ATENOLOL 100MG TABS UK', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1964, 264, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1965, 264, 2435, '31684073', 'ORAL B TOOTHPASTE', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1966, 265, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1967, 265, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1968, 266, 2238, '5021265223350', 'PERFECTIL PLATINUM', 'standard', NULL, '51.0000', '51.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '51.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1969, 267, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1970, 267, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1971, 268, 1623, '5021265223398', 'PERFECTIL SKIN', 'standard', NULL, '186.0000', '186.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '186.0000', '', '186.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1972, 268, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', 'standard', NULL, '33.5000', '33.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '67.0000', '', '33.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1973, 268, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1974, 268, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1975, 268, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1976, 268, 2255, '8901040258050', 'BIOFERON CAPS', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1977, 268, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1978, 268, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1979, 268, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1980, 268, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.0000', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '20.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1981, 268, 2485, '40177526', 'GOLDEN RAISEN', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1982, 268, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1983, 268, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', 'standard', NULL, '54.5000', '54.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '54.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1984, 268, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1985, 268, 1316, 'PR-29', 'FAMACOLD SYR', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1986, 268, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1987, 268, 2602, '86780065', 'CLOVES ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1988, 268, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', 'standard', NULL, '3.4000', '3.4000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.6000', '', '3.4000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1989, 268, 2607, '65744915', 'maalox sachets', 'standard', NULL, '1.7000', '1.7000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.7000', '', '1.7000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1990, 268, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1991, 269, 2466, '574992', 'ZINCOFER CAPS', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1992, 269, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1993, 269, 1669, '5000456024778', 'NEXIUM 40MG TAB', 'standard', NULL, '8.8000', '8.8000', '14.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '123.2000', '', '8.8000', NULL, 1, 'pc', '14.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1994, 269, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1995, 269, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1996, 269, 2602, '86780065', 'CLOVES ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1997, 269, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1998, 269, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1999, 269, 2039, '8710447482032', 'REXONA DEO SPRAY 200ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2000, 269, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2001, 269, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2002, 269, 2405, '40815002', 'GLOVES', 'standard', NULL, '1.6000', '1.6000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '1.6000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2003, 269, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2004, 269, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 'standard', NULL, '26.0000', '26.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '26.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2005, 269, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '44.0000', '44.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '44.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2006, 269, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2007, 269, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2008, 270, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2009, 270, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2010, 270, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2011, 270, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2012, 270, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2013, 270, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2014, 271, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2015, 271, 2492, '51417644', 'NIZORAL SHAMPOO', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2016, 271, 1487, '8902292000893', 'KETAZOL CREAM', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2017, 272, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2018, 272, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2019, 272, 2252, '08741188', 'FLUREST TABS', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2020, 272, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2021, 272, 1402, 'PR-115', 'ERNEST OINT(200)', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2022, 272, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2023, 272, 2108, '85249693', 'ARFAN 20/120MG', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2024, 272, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2025, 272, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2026, 272, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2027, 272, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2028, 272, 1388, 'PR-101', 'ADOM KOKO SYP(20)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2029, 272, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2030, 272, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2031, 272, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.9000', '', '1.3000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2032, 272, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2033, 272, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2034, 272, 2395, '99288830', 'TINATETT 230', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2035, 272, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2036, 272, 1604, 'PR-317', 'AUGMENTIN 1G', 'standard', NULL, '46.5000', '46.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '93.0000', '', '46.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2037, 273, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2038, 273, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2039, 273, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2040, 273, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2041, 273, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2042, 273, 1511, '5413895053528', 'TEARS NATURAL 11', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2043, 274, 1797, '8850769011388', 'PROSTACARE CAPS 30S', 'standard', NULL, '68.0000', '68.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '68.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2044, 275, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2045, 275, 2424, '72870535', 'DEVA SOFTNER', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2046, 275, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2047, 275, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2048, 275, 2514, '98091900', 'TOMBROWN 500G', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2049, 275, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2050, 275, 2607, '65744915', 'maalox sachets', 'standard', NULL, '1.7000', '1.7000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.7000', '', '1.7000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2051, 275, 2334, '99769153', 'CROMAX-2 EYE DROP', 'standard', NULL, '21.0000', '21.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2052, 275, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2053, 275, 1564, '3838989544225', 'TADOL 100MG', 'standard', NULL, '4.0000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2054, 275, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.2500', '', '0.2500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2055, 275, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '0.2500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2056, 275, 1394, 'PR-107', 'AGBEVE TONIC(30)', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2057, 275, 1496, 'PR-209', 'ENACEF SUSP', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2058, 275, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2059, 275, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2060, 275, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2061, 276, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2062, 276, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '0.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2063, 276, 2238, '5021265223350', 'PERFECTIL PLATINUM', 'standard', NULL, '51.0000', '51.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '204.0000', '', '51.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2064, 276, 1550, '18904083810480', 'GYNOMYCOLEX PESS', 'standard', NULL, '18.3500', '18.3500', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.3500', '', '18.3500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2065, 276, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2066, 276, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2067, 276, 1626, '306420072116', 'VITAFOL CAP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2068, 276, 2023, '6001087011143', 'VASELINE LOTION  COCOA GLOW 400ML', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2069, 276, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2070, 276, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2071, 276, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2072, 277, 1693, 'PR-406', 'CITY BLOOD TONIC 200ML', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2073, 277, 1941, 'PR-654', 'Genti Gds11369', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2074, 277, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2075, 277, 2547, '30290939', 'VISCOF S SYR', 'standard', NULL, '11.5000', '11.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '11.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2076, 277, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2077, 277, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2078, 277, 1938, 'PR-651', 'Hilderm Cream CH Agh020', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2079, 277, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2080, 277, 1385, 'PR-98', 'AZIS TABS. 500MG', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2081, 277, 1645, 'PR-358', 'AMCOF ADULT SYRUP', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2082, 277, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2083, 277, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2084, 277, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2085, 277, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2086, 277, 2342, '62530607', 'DICLO-DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2087, 277, 1452, 'PR-165', 'Tobufon 400 T002e001', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2088, 277, 2345, '37407616', 'PONSTAN CAPS 250MG', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2089, 277, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2090, 277, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2091, 277, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2092, 277, 1733, 'PR-446', 'ENAFIX TABS 200MG 10\'', 'standard', NULL, '12.0000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '12.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2093, 277, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '23.4000', '23.4000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '23.4000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2094, 277, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2095, 278, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2096, 278, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2097, 278, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS', 'standard', NULL, '72.0000', '72.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '72.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2098, 278, 2541, '39996904', 'DEMACOT CREAM', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2099, 278, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2100, 278, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2101, 278, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2102, 278, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2103, 279, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2104, 279, 2305, '18430069', 'NO-SPA 40MG S/S 20\'S', 'standard', NULL, '7.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2105, 280, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2106, 281, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '10.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2107, 281, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2108, 282, 2039, '8710447482032', 'REXONA DEO SPRAY 200ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2109, 283, 2247, '29226629', 'TRISILICATE SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2110, 283, 1805, 'PR-518', 'SAMALIN ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2111, 283, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2112, 283, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2113, 284, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2114, 284, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2115, 284, 2297, '46332629', 'DREZ SOLUTION S/S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2116, 284, 2405, '40815002', 'GLOVES', 'standard', NULL, '1.6000', '1.6000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.2000', '', '1.6000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2117, 284, 2432, '30456278', 'SO KLIN SOFTNER', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2118, 284, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2119, 284, 2451, '56986898', 'GIVERS MIX', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2120, 284, 1517, 'PR-230', 'NEOCORT EYE DROP', 'standard', NULL, '31.0000', '31.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '31.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2121, 284, 1521, 'PR-234', 'PAINGAYCAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2122, 284, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2123, 284, 2342, '62530607', 'DICLO-DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2124, 284, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2125, 284, 2346, '68048014', 'CALAMINE OINT', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2126, 284, 1562, 'PR-275', 'SULPHUR OINT.', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2127, 284, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2128, 284, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2129, 284, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2130, 284, 2089, '39725135', 'POLYGEL SUSP 200ML', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2131, 284, 2294, '44448916', 'PENICILLIN OINTMENT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2132, 284, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2133, 284, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2134, 285, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2135, 286, 1507, '002', 'SE\'FLOX EYE/EAR DROP', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2136, 286, 2506, '46924578', 'E PANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2137, 287, 2493, '5060057401095', 'FRUSEMIDE TAB 40MG UK ALMUS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2138, 288, 2608, '57349245', 'CELLGEVITY', 'standard', NULL, '120.0000', '120.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '240.0000', '', '120.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2139, 289, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2140, 289, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2141, 289, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '26.5000', '26.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2142, 289, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2143, 289, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2144, 289, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2145, 289, 2363, '25326446', 'WELLMAN DRINK', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2146, 289, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2147, 289, 2228, '7501058625915', 'LACTOGEN  1', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2148, 289, 1810, 'PR-523', 'VISCOF EXPECTORANT', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2149, 289, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2150, 289, 2618, '72760937', 'BUSCOMED TAB 10MG', 'standard', NULL, '5.5000', '5.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '5.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2151, 289, 1636, '4031571069116', 'VIT-B DENK', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2152, 289, 1559, 'PR-272', 'SIRDALUD 4MG', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2153, 289, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2154, 289, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '3.8000', '3.8000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '3.8000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2155, 289, 2271, '9556100104342', 'FLUCOR DAY', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2156, 289, 2108, '85249693', 'ARFAN 20/120MG', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2157, 289, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2158, 290, 1483, '5011501040131', 'DEEP HEAT RUB 67G', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2159, 290, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2160, 290, 1764, 'PR-477', 'METHYLATED  SPIRIT  125ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2161, 290, 1338, 'PR-51', 'COTTON WOOL 1 00G', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2162, 290, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2163, 290, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2164, 290, 1626, '306420072116', 'VITAFOL CAP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2165, 290, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2166, 290, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', 'standard', NULL, '3.4000', '3.4000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '3.4000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2167, 291, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2168, 291, 1740, 'PR-453', 'SILDENAFIL TABS 1 00MG 4\'(EXETER)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2169, 291, 1438, '004', 'TRUMAN', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2170, 291, 1725, '7321839721397', 'ATACAND TABLETS 16MG 28\'', 'standard', NULL, '94.5000', '94.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '94.5000', '', '94.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2171, 291, 1983, '6186000077014', 'QUEEN ELISABETH COCOA BUTTER CREAM 500ML', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2172, 291, 1669, '5000456024778', 'NEXIUM 40MG TAB', 'standard', NULL, '8.8000', '8.8000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '8.8000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2173, 292, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '26.5000', '26.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2174, 292, 2143, '4005292004916', 'GERMANY VIT C', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2175, 292, 1645, 'PR-358', 'AMCOF ADULT SYRUP', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2176, 292, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2177, 292, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2178, 292, 2358, '32893309', 'LOSAR-DENK 100MG', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2179, 292, 2414, '85111706', 'AMLODIPINE 5MG', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2180, 292, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2181, 292, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2182, 293, 1636, '4031571069116', 'VIT-B DENK', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2183, 293, 2411, '13740723', 'GEBEDOL FORTE TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2184, 293, 1385, 'PR-98', 'AZIS TABS. 500MG', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2185, 293, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2186, 293, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2187, 293, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2188, 293, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2189, 293, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2190, 293, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2191, 293, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2192, 293, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', 'standard', NULL, '18.8800', '18.8800', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.8800', '', '18.8800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2193, 294, 2115, '35179090', 'SMALL BASKET GIFT SET', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '40.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2194, 294, 2044, '68015242', 'BABYMED  BABY SET', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2195, 294, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2196, 294, 2611, '55130336', 'BROWN SUGAR', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2197, 294, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2198, 294, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2199, 294, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2200, 294, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2201, 294, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2202, 294, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2203, 294, 1410, 'PR-123', 'JOY OINT S/S(200)', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2204, 295, 2622, '79117239', 'COMBANTRIN', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2205, 296, 2115, '35179090', 'SMALL BASKET GIFT SET', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '40.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2206, 297, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2207, 297, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2208, 297, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2209, 297, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2210, 297, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2211, 297, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2212, 297, 2611, '55130336', 'BROWN SUGAR', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2213, 297, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2214, 298, 2168, '8901082004356', 'APTIZOOOM', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2215, 298, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2216, 298, 2245, '77795384', 'MAGACID TABLETS', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2217, 299, 2623, '01976331', 'BENDROFLUZIDE 2.5MG UK CRESCENT', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2218, 300, 2325, '68025873', 'ALWAYS PAD MAX', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2219, 300, 1478, '8906087940128', 'IMPRESSER CAPS', 'standard', NULL, '28.0000', '28.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '56.0000', '', '28.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2220, 300, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2221, 300, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2222, 300, 2574, '24484092', 'DULCOLAX TABS 5MG 20\'S', 'standard', NULL, '1.0000', '1.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '1.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2223, 300, 2296, '48633360', 'DREZ SOLUTION B/S', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2224, 300, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2225, 300, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2226, 300, 1579, 'PR-292', 'LUFART SUSP', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2227, 300, 2096, '90371186', 'LETAVIT SYRUP 125ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2228, 300, 1374, 'PR-87', 'TEGRETOL CR 400MG', 'standard', NULL, '24.0000', '24.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '24.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2229, 300, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2230, 300, 1616, 'PR-329', 'GACET SUPP 250MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2231, 300, 2283, '8906009232225', 'LOFNAC TAB 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2232, 300, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2233, 300, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2234, 300, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2235, 300, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.4000', '', '1.2000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2236, 300, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', 'standard', NULL, '3.5000', '3.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '3.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2237, 301, 1704, '5060033711873', 'CYPRODINE SYR', 'standard', NULL, '35.5000', '35.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '35.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2238, 302, 2238, '5021265223350', 'PERFECTIL PLATINUM', 'standard', NULL, '51.0000', '51.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '204.0000', '', '51.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2239, 303, 1779, 'PR-492', 'BISACODYL [GEO] 1000\'S', 'standard', NULL, '1.0000', '1.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '1.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2240, 303, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2241, 303, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2242, 303, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2243, 303, 1671, '3838989529642', 'CIPRINOL TAB 500MG', 'standard', NULL, '5.5000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '5.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2244, 303, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '3.8000', '3.8000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.2000', '', '3.8000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2245, 303, 1687, 'PR-400', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2246, 303, 1550, '18904083810480', 'GYNOMYCOLEX PESS', 'standard', NULL, '18.3500', '18.3500', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.3500', '', '18.3500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2247, 303, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '1.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2248, 303, 2061, '96762855', 'ZYMAX CAPS 500MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2249, 303, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', 'standard', NULL, '6.5000', '6.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '6.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2250, 303, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2251, 303, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2252, 303, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2253, 303, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2254, 304, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.2000', '1.2000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '1.2000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2255, 304, 2437, '44857984', 'APTAMIL BABY MILK', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '100.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2256, 304, 2491, '57627875', 'BELLS VITAMIN C', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2257, 304, 2523, '89430832', 'CAMEL SOAP', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2258, 304, 1618, '8901645060997', 'AZILEX 250MG CAPS', 'standard', NULL, '16.0000', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '16.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2259, 304, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2260, 304, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2261, 304, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '1.3000', NULL, 1, 'pc', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2262, 305, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2263, 305, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2264, 305, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2265, 305, 2609, '48137025', 'ABYVITA TABS', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2266, 305, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2267, 305, 1300, 'PR-13', 'ARTIBASE FORTE 80/4801X6', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2268, 305, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2269, 305, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2270, 305, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2271, 305, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2272, 305, 2334, '99769153', 'CROMAX-2 EYE DROP', 'standard', NULL, '21.0000', '21.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2273, 305, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2274, 305, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '2.6000', '2.6000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '104.0000', '', '2.6000', NULL, 1, 'pc', '40.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2275, 306, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '0.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2276, 307, 2624, '71356473', 'POLAR ICE', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2277, 307, 1847, '5028268050358', 'BEEHIVE BALSAM SYR', 'standard', NULL, '24.5000', '24.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '24.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2278, 308, 1657, '5013548102087', 'MEDICATED CHARCOAL', 'standard', NULL, '0.5000', '0.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '0.5000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2279, 308, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2280, 308, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2281, 308, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2282, 308, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2283, 308, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '25.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2284, 309, 2331, '22131552', 'IMODIYM CAPS 2MG 6\'S', 'standard', NULL, '16.0000', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '16.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2285, 309, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2286, 309, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2287, 309, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2288, 310, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2289, 310, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2290, 310, 1579, 'PR-292', 'LUFART SUSP', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2291, 310, 1300, 'PR-13', 'ARTIBASE FORTE 80/4801X6', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2292, 310, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2293, 310, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3800', '', '0.6900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2294, 310, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2295, 310, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2296, 310, 1578, 'PR-291', 'SAMALIN LOZENGES', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2297, 310, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2298, 310, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2299, 310, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2300, 310, 1577, 'PR-290', 'MALIN LOZ', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2301, 310, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2302, 310, 1874, 'PR-587', 'DICNAC 75 SR(DICLOFENAC)', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2303, 310, 1963, '007', 'MUCOTIN ADULT 5%', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2304, 310, 2341, '67208590', 'NEXCOFER CAPS', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2305, 310, 1864, 'PR-577', 'VIROL BLOOD TONIC', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2306, 310, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2307, 310, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2308, 310, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2309, 310, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2310, 310, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2311, 310, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2312, 310, 2457, '33345179', 'PILIEF TABS', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2313, 310, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2314, 311, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', 'standard', NULL, '54.5000', '54.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '54.5000', '', '54.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2315, 311, 1695, '8908002671971', 'APETAMIN SYR', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2316, 311, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '23.4000', '23.4000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.4000', '', '23.4000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2317, 311, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '4.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2318, 311, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2319, 311, 2460, '07910647', 'EVECARE TAB', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2320, 311, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', 'standard', NULL, '74.0000', '74.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '74.0000', '', '74.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2321, 311, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', 'standard', NULL, '9.0000', '9.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '9.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2322, 311, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2323, 311, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2324, 311, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2325, 311, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2326, 311, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2327, 311, 2604, '43079266', 'COA MIXTURE', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '120.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2328, 311, 2602, '86780065', 'CLOVES ', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2329, 311, 2480, '7108674', 'EFOM WISA', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2330, 311, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2331, 311, 2601, '14487985', 'ULTRA SLIM HERBAL TEA', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2332, 311, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2333, 311, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2334, 311, 1321, 'PR-34', 'TRES ORIX FORTE 1 00ML(S/S)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2335, 311, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2336, 312, 1659, '5021265228027', 'OMEGA H3 CAP', 'standard', NULL, '55.0000', '55.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '55.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2337, 313, 2625, '18152598', 'Olfen Gel', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2338, 314, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.8000', '', '0.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2339, 314, 2567, '83596243', 'NAN 1', 'standard', NULL, '37.0000', '37.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '37.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2340, 314, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2341, 314, 1694, 'PR-407', 'LEENASYR', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2342, 314, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2343, 314, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2344, 314, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '18.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2345, 314, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2346, 314, 1513, '6221032233103', 'DEXATROL EYE DROP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2347, 314, 2615, '04025050', 'COOL EYES DROP', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2348, 315, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2349, 315, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2350, 315, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2351, 315, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2352, 315, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2353, 316, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2354, 316, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2355, 316, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2356, 316, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2357, 316, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2358, 316, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', 'standard', NULL, '6.5000', '6.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '6.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2359, 316, 2061, '96762855', 'ZYMAX CAPS 500MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2360, 316, 1686, '8901082006-81', 'ALKA-5 SYR', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2361, 316, 2565, '45244498', 'VERNA WATER MEDIUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2362, 316, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2363, 316, 2476, '20264921', 'BLACK SEED', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2364, 316, 1824, '8901315201910', 'TAGERA FORTE TABS', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2365, 316, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2366, 316, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2367, 316, 2024, '6001087357050', 'VASELINE LOTION INTENSIVE CARE 400ML', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2368, 316, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2369, 317, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2370, 317, 1691, 'PR-404', 'JARIFAN 2 SYR', 'standard', NULL, '13.5000', '13.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2371, 317, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2372, 317, 1394, 'PR-107', 'AGBEVE TONIC(30)', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2373, 317, 1779, 'PR-492', 'BISACODYL [GEO] 1000\'S', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2374, 318, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2375, 318, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2376, 318, 1695, '8908002671971', 'APETAMIN SYR', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2377, 318, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2378, 319, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '3.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2379, 319, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2380, 319, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2381, 319, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2382, 319, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2383, 319, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.6000', '', '1.2000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2384, 319, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2385, 319, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2386, 319, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2387, 319, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2388, 319, 2130, '4005808837335', 'NIVEA SPRAY 250ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2389, 319, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2390, 319, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2391, 319, 1938, 'PR-651', 'Hilderm Cream CH Agh020', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2392, 319, 2281, '087450449108', 'TYLENOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2393, 319, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2394, 319, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2395, 319, 1431, 'PR-144', 'SPARNIS GARLIC MIXTURE(30)', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2396, 319, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '9.0000', '9.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '9.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2397, 319, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2398, 319, 2230, '8886472104437', 'SMA GOLD 1', 'standard', NULL, '46.0000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2399, 320, 2544, '85585070', 'NEXCOFER SYR L/S', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2400, 320, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '2.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2401, 320, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2402, 320, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2403, 320, 1855, 'PR-568', 'IBUCAP S/S 200S', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2404, 320, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2405, 320, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2406, 320, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2407, 320, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2408, 320, 2602, '86780065', 'CLOVES ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2409, 320, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2410, 320, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2411, 320, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2412, 320, 1388, 'PR-101', 'ADOM KOKO SYP(20)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2413, 320, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2414, 320, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', 'standard', NULL, '2.0000', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2415, 320, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2416, 320, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2417, 320, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2418, 321, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2419, 321, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2420, 321, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2421, 321, 1304, 'PR-17', 'BASECHLOR DROPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2422, 321, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2423, 322, 2032, '8859178707738', 'TOP COUNTRY ROLL ON 80ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2424, 322, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2425, 323, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.9000', '', '1.3000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2426, 323, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2427, 323, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2428, 323, 1687, 'PR-400', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2429, 323, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2430, 324, 1321, 'PR-34', 'TRES ORIX FORTE 1 00ML(S/S)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2431, 324, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2432, 324, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2433, 324, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2434, 324, 1381, 'PR-94', '10 GOLDY FORTE OS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2435, 324, 2452, '56056492', 'FINE FINE SOAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2436, 324, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2437, 324, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2438, 324, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2439, 324, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2440, 324, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2441, 324, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2442, 324, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2443, 324, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '45.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '1.0000', NULL, 1, 'pc', '45.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2444, 324, 2319, '27607621', 'KN95 FACE MASK', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2445, 324, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2446, 324, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2447, 324, 1406, '16564749', 'GIVERS KOO CAPS(l40)', 'standard', NULL, '22.0000', '22.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '22.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2448, 324, 1677, '8902546578543', 'LUEX BABY COUGH', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2449, 324, 1630, 'PR-343', 'GEN-M TAB 80/480', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2450, 324, 2412, '17935935', 'GLIBINIL CAPS 5MG', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2451, 324, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2452, 324, 1931, 'PR-644', 'Exicam Do c0070002', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2453, 324, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2454, 324, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2455, 324, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '40.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '1.0000', NULL, 1, 'pc', '40.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2456, 324, 2368, '85418156', 'SIVODERM  SANITIZER MEDIUM', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2457, 324, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2458, 324, 2436, '04225724', 'ANTI BACTERIAL WIPE', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2459, 324, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2460, 324, 2491, '57627875', 'BELLS VITAMIN C', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2461, 324, 1769, '6001135508526', 'BENYLIN PAED. SYRUP 1 00ML', 'standard', NULL, '35.5000', '35.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '35.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2462, 324, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2463, 324, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2464, 324, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.8000', '', '0.6000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2465, 325, 2570, '24041017', 'GOLDY SUSP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2466, 325, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2467, 325, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2468, 325, 2102, '12180621', 'METRONIDAZOLE SUSP 100ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2469, 325, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2470, 325, 2363, '25326446', 'WELLMAN DRINK', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2471, 325, 2226, '6033000086358', 'CERELAC TIN MAIZE', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2472, 325, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '0.5000', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2473, 325, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '6.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2474, 325, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2475, 325, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2476, 325, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2477, 325, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', 'standard', NULL, '2.0000', '2.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '2.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2478, 325, 2027, '60018915', 'VASELINE CREAM SMALL 100ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2479, 325, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2480, 326, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2481, 326, 1531, 'PR-244', 'CLOXA CAP 250MG (LETAP)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2482, 327, 1306, 'PR-19', 'DOMI 10: TAB', 'standard', NULL, '3.0000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2483, 327, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2484, 327, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2485, 327, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2486, 327, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2487, 327, 1316, 'PR-29', 'FAMACOLD SYR', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2488, 327, 2477, '98577401', 'SESAME SEED', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2489, 327, 2485, '40177526', 'GOLDEN RAISEN', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2490, 327, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2491, 327, 2479, '64861163', 'CHIA SEED', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2492, 327, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2493, 327, 1688, 'PR-401', 'ZINCOVIT TAB', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2494, 327, 1410, 'PR-123', 'JOY OINT S/S(200)', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2495, 327, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '0.5000', NULL, 1, 'pc', '9.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2496, 327, 2466, '574992', 'ZINCOFER CAPS', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2497, 327, 2247, '29226629', 'TRISILICATE SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2498, 327, 1657, '5013548102087', 'MEDICATED CHARCOAL', 'standard', NULL, '0.5000', '0.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '0.5000', NULL, 1, 'pc', '100.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2499, 327, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2500, 327, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2501, 327, 2224, '6033000086150', 'CERELAC TIN BISCUITY WITH MILK', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2502, 328, 1420, 'PR-133', 'NAZO', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2503, 328, 1563, 'PR-276', 'AMICLOX SUSP. (ECL)', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2504, 328, 1730, 'PR-443', 'DAKTACORT CREAM 15G', 'standard', NULL, '31.5000', '31.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '31.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2505, 328, 2541, '39996904', 'DEMACOT CREAM', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2506, 328, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2507, 328, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2508, 328, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2509, 328, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2510, 328, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2511, 328, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2512, 328, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2513, 328, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2514, 328, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2515, 328, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2516, 328, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', 'standard', NULL, '74.0000', '74.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '74.0000', '', '74.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2517, 328, 2614, '96562826', 'WELLMAN CAPS', 'standard', NULL, '70.0000', '70.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '70.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2518, 328, 2543, '89430673', 'SECURE CONTRACEPTIVE', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2519, 328, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2520, 329, 1514, '6221032340177', 'DEXATROL EYE OINT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2521, 329, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2522, 329, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2523, 329, 1722, 'PR-435', 'CLOTRIMAZOLE CREAM 1 G', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2524, 329, 2393, '25300648', 'BOAFO OINT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2525, 329, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.0000', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '20.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2526, 329, 2119, '840038215454', 'SANITIZER BIG KEEP CLEAN', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '60.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2527, 329, 2120, '850005911845', 'SANITIZERR SMALL SUAVE', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2528, 329, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2529, 329, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2530, 329, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2531, 329, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2532, 329, 2299, '8904107900961', 'DICLOLEX GEL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2533, 330, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2534, 330, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2535, 330, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2536, 330, 1338, 'PR-51', 'COTTON WOOL 1 00G', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2537, 330, 1780, '5021265220076', 'FEROGLOBIN CAPS', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2538, 330, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2539, 330, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2540, 330, 2634, '20074246', 'COTTON SKIN ESSENTIALS', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2541, 331, 2466, '574992', 'ZINCOFER CAPS', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2542, 331, 2321, '80141429', 'MIST F.A.C', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2543, 331, 1657, '5013548102087', 'MEDICATED CHARCOAL', 'standard', NULL, '0.5000', '0.5000', '100.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '0.5000', NULL, 1, 'pc', '100.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2544, 331, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2545, 331, 2635, '2208744', 'PLASTER ROLL S/S', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2546, 331, 1426, '6034600108426', 'ROOTER LIFE', 'standard', NULL, '47.5000', '47.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '47.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2547, 332, 1312, 'PR-25', 'MILK OF MAGNESIA S/S', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2548, 332, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2549, 332, 2252, '08741188', 'FLUREST TABS', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2550, 332, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2551, 332, 2015, '88820286', 'BABY OIL CUSSONS SMALL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2552, 332, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2553, 332, 1372, 'PR-85', 'PARACETAMOL TAB 32\'S', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2554, 332, 2408, '5011501009398', 'DEEP HEAT OINT 15G', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2555, 332, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2556, 332, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2557, 332, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2558, 332, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2559, 332, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2560, 332, 2294, '44448916', 'PENICILLIN OINTMENT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2561, 332, 1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', 'standard', NULL, '17.0000', '17.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '255.0000', '', '17.0000', NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2562, 332, 1343, '4008500060353', 'PROGYNOVA 2MG TABS', 'standard', NULL, '58.0000', '58.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '58.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2563, 332, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2564, 332, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.7000', '', '0.3000', NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2565, 332, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2566, 332, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2567, 332, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2568, 333, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2569, 333, 1986, '6181100323658', 'SIVODERM CREAM', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2570, 333, 1649, '6161102003536', 'ZUBES EXPECTORANT', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2571, 333, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2572, 333, 1738, 'PR-451', 'MENTHODEX LOZENGES 15\'(SACHET} 50G', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2573, 333, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2574, 333, 1401, 'PR-114', 'EKURO BEWU', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2575, 333, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2576, 333, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '6.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2577, 333, 2624, '71356473', 'POLAR ICE', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2578, 334, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2579, 334, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2580, 334, 2150, '5060180720148', 'ATWOOD LAXATIVE', 'standard', NULL, '41.0000', '41.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '82.0000', '', '41.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2581, 334, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2582, 334, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3800', '', '0.6900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2583, 334, 1735, 'PR-448', 'EXFORGE TABS (10/160)MG 28', 'standard', NULL, '6.0000', '6.0000', '28.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '168.0000', '', '6.0000', NULL, 1, 'pc', '28.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2584, 334, 1669, '5000456024778', 'NEXIUM 40MG TAB', 'standard', NULL, '8.8000', '8.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '8.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2585, 334, 2570, '24041017', 'GOLDY SUSP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2586, 334, 2085, '35811477', 'PARA-DENK 125MG', 'standard', NULL, '1.8000', '1.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.6000', '', '1.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2587, 334, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2588, 334, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2589, 335, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2590, 335, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2591, 335, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2592, 335, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2593, 335, 2557, '86393917', 'METOCLOPRAMIDE', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2594, 335, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2595, 335, 1564, '3838989544225', 'TADOL 100MG', 'standard', NULL, '4.0000', '4.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '4.0000', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2596, 335, 1328, 'PR-41', 'HIGH ELASTIC CREPE BANDAGE 4\"', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2597, 335, 1618, '8901645060997', 'AZILEX 250MG CAPS', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2598, 335, 1610, '8904107900909', 'MYCOLEX-3 CREAM', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2599, 335, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2600, 335, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2601, 335, 1688, 'PR-401', 'ZINCOVIT TAB', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2602, 335, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2603, 335, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2604, 335, 2022, '69436145', 'CHOCHO CREAM', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2605, 335, 2392, '10965636', 'CHOCHO SAOP', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2606, 335, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2607, 336, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2608, 336, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2609, 336, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2610, 336, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2611, 336, 1642, '6001135507628', 'BENYLIN DRY  COUGH SYR 100ML', 'standard', NULL, '41.0000', '41.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '41.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2612, 336, 1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', 'standard', NULL, '32.0000', '32.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2613, 336, 2552, '17018789', 'ORELOX SUSP', 'standard', NULL, '112.0000', '112.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '112.0000', '', '112.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2614, 336, 2491, '57627875', 'BELLS VITAMIN C', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2615, 336, 1559, 'PR-272', 'SIRDALUD 4MG', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2616, 336, 2512, '57681465', 'HONEY  500ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2617, 336, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2618, 336, 2086, '06489706', 'METAGYL SUSP', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2619, 336, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2620, 336, 1687, 'PR-400', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2621, 336, 1721, 'PR-434', 'AZITEX(AZITHROMYCIN) SUSP. 200MG /5ML 15ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2622, 337, 1539, '9556100104618', 'O\'YES FEMININE WASH 200ML', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2623, 337, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2624, 337, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2625, 337, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2626, 337, 2028, '5137136225122', 'JRA CREAM BIG 220G', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2627, 337, 2034, '4800888199188', 'REXONA ROLL ON 50ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2628, 337, 2142, '5021265223855', 'WELLBABY ', 'standard', NULL, '76.0000', '76.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '76.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2629, 337, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2630, 337, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2631, 337, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2632, 337, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2633, 338, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '2.6000', '2.6000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '2.6000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2634, 339, 2636, '86196755', 'KIDIMIN SYR', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2635, 340, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', 'standard', NULL, '10.0000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '10.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2636, 341, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2637, 341, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2638, 341, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2639, 341, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2640, 341, 1997, '6182000100493', 'CAROTONE CREAM BIG 330ML', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2641, 341, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2642, 341, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', 'standard', NULL, '3.5000', '3.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '3.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2643, 341, 1388, 'PR-101', 'ADOM KOKO SYP(20)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2644, 342, 2286, '91011834', 'FLUXAMOX CAPS 200', 'standard', NULL, '6.0000', '6.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2645, 342, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2646, 342, 1401, 'PR-114', 'EKURO BEWU', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2647, 342, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '10.5000', '10.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2648, 342, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2649, 342, 1550, '18904083810480', 'GYNOMYCOLEX PESS', 'standard', NULL, '18.3500', '18.3500', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.3500', '', '18.3500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2650, 342, 2430, '6926597271255', 'JOZZY KIDS TOOTHPASTE&BRUSH', 'standard', NULL, '10.0000', '10.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '10.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2651, 342, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', 'standard', NULL, '13.0000', '13.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '13.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2652, 342, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '18.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2653, 342, 1470, '8906042660979', 'LEXOFEN SUSP 150ML', 'standard', NULL, '14.5000', '14.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2654, 342, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2655, 343, 2153, '4058172309250', 'MAGNESUIM TABLETS TUBE', 'standard', NULL, '12.0000', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '12.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2656, 343, 1383, 'PR-96', 'ZULU - MR', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2657, 343, 1928, '8906009234090', 'LOFNAC GEL GLF143', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2658, 343, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2659, 343, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2660, 343, 2281, '087450449108', 'TYLENOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2661, 343, 2463, '22321274', 'ADVIL COMBO 50\'S', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2662, 344, 2417, '89073800', 'DOVE SOAP', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2663, 344, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '29.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '87.0000', '', '3.0000', NULL, 1, 'pc', '29.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2664, 344, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2665, 344, 2143, '4005292004916', 'GERMANY VIT C', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2666, 344, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2667, 344, 1856, 'PR-569', 'KOFFEX SYR ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2668, 344, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2669, 344, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2670, 344, 1626, '306420072116', 'VITAFOL CAP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2671, 344, 1637, '4031571068959', 'DICLO DENK 100MG TAB', 'standard', NULL, '13.5000', '13.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2672, 344, 1922, '8904185507342', 'Blopen gel BG-138', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2673, 344, 2261, '2112345602905', 'TIGER SPRAY', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2674, 344, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2675, 344, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2676, 344, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2677, 344, 2016, '6154000017026', 'BABY OIL CUSSIONS BIG', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2678, 344, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2679, 344, 2003, '6033000102584', 'ROBB JAR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2680, 344, 1452, 'PR-165', 'Tobufon 400 T002e001', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2681, 344, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2682, 344, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2683, 344, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2684, 344, 1706, 'PR-419', 'PROCOLD SYR 100ml', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2685, 344, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2686, 344, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2687, 344, 1550, '18904083810480', 'GYNOMYCOLEX PESS', 'standard', NULL, '18.3500', '18.3500', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.3500', '', '18.3500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2688, 344, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2689, 344, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2690, 345, 2283, '8906009232225', 'LOFNAC TAB 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2691, 345, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2692, 345, 1562, 'PR-275', 'SULPHUR OINT.', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2693, 345, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2694, 345, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2695, 345, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2696, 345, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2697, 345, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', 'standard', NULL, '3.7000', '3.7000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '3.7000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2698, 345, 2618, '72760937', 'BUSCOMED TAB 10MG', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2699, 345, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2700, 345, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', 'standard', NULL, '7.1000', '7.1000', '14.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '99.4000', '', '7.1000', NULL, 1, 'pc', '14.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2701, 346, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', 'standard', NULL, '3.7000', '3.7000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '3.7000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2702, 347, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2703, 347, 2350, '58123990', 'COARTEM 6\'S', 'standard', NULL, '13.5000', '13.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2704, 347, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2705, 347, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2706, 347, 1439, 'PR-152', 'VICTAGO s s', 'standard', NULL, '1.3000', '1.3000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.3000', '', '1.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2707, 347, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2708, 347, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2709, 347, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2710, 347, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', 'standard', NULL, '38.0000', '38.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '152.0000', '', '38.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2711, 347, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2712, 347, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2713, 348, 1329, 'PR-42', 'ZINC OXIDE PLASTER ROLL 41CHS', 'standard', NULL, '5.5000', '5.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2714, 349, 2231, '7501058633927', 'NAN 2', 'standard', NULL, '36.0000', '36.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2715, 350, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2716, 350, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2717, 350, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '2.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2718, 350, 1433, 'PR-146', 'TIME HERBAL MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2719, 350, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.9000', '', '1.3000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2720, 351, 1609, '8904107900893', 'MYCOLEX CREAM 20G', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2721, 351, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2722, 351, 1604, 'PR-317', 'AUGMENTIN 1G', 'standard', NULL, '46.5000', '46.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '93.0000', '', '46.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2723, 351, 2277, '71311341', 'ZUBES TABLETS ', 'standard', NULL, '1.0000', '1.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2724, 351, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2725, 351, 2570, '24041017', 'GOLDY SUSP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2726, 351, 2206, '8964001505679', 'VITAMIN E OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2727, 351, 1859, '8901138502942', 'PILEX TAB', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2728, 351, 1860, '8901138150891', 'PILEX OINTMENT', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2729, 351, 2463, '22321274', 'ADVIL COMBO 50\'S', 'standard', NULL, '4.0000', '4.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2730, 351, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', 'standard', NULL, '39.0000', '39.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '39.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2731, 351, 1773, '7640153082091', 'XYLO ACINO MEPHA 0.10ML', 'standard', NULL, '59.0000', '59.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '59.0000', '', '59.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2732, 351, 1663, '5021265221523', 'PREGNACARE PLUS', 'standard', NULL, '115.0000', '115.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '115.0000', '', '115.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2733, 352, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2734, 352, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '44.0000', '44.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '44.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2735, 352, 1422, 'PR-135', 'PROSTACURE TEA (32)', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2736, 352, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2737, 353, 1690, '6001176457883', 'DUROL TONIC 200ML', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2738, 353, 1426, '6034600108426', 'ROOTER LIFE', 'standard', NULL, '47.5000', '47.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '47.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2739, 353, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', 'standard', NULL, '7.1000', '7.1000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '71.0000', '', '7.1000', NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2740, 353, 2252, '08741188', 'FLUREST TABS', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2741, 353, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2742, 353, 2562, '69494430', 'PROBIOTICS', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '80.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2743, 353, 2557, '86393917', 'METOCLOPRAMIDE', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2744, 353, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.7600', '', '0.6900', NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2745, 354, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '1.3000', NULL, 1, 'pc', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2746, 354, 2222, '4791014004950', 'QUALITEA GREEN TEA', 'standard', NULL, '16.0000', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '16.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2747, 354, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2748, 354, 2281, '087450449108', 'TYLENOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2749, 354, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2750, 354, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2751, 355, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2752, 355, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2753, 355, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2754, 355, 2607, '65744915', 'maalox sachets', 'standard', NULL, '1.7000', '1.7000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.1000', '', '1.7000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2755, 355, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2756, 355, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2757, 355, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2758, 355, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2759, 355, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2760, 355, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2761, 355, 2433, '5060033370049', 'PRE MUM BREAST PAD', 'standard', NULL, '1.0000', '1.0000', '80.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '1.0000', NULL, 1, 'pc', '80.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2762, 355, 2363, '25326446', 'WELLMAN DRINK', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2763, 355, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2764, 355, 1413, 'PR-126', 'KINGDOM GARLIC CAPS', 'standard', NULL, '21.0000', '21.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2765, 355, 2357, '22168350', 'LADINAS PICT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2766, 355, 1714, '5024874016771', 'VALPAK VITAMIN C500MG CHEWABLE', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2767, 355, 2001, '012', 'BELLS OLIVE OIL 70ML', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2768, 355, 1433, 'PR-146', 'TIME HERBAL MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2769, 355, 1960, '6033000298379', 'LIFEBUOY SOAP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2770, 355, 2294, '44448916', 'PENICILLIN OINTMENT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2771, 355, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2772, 355, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2773, 355, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', '48.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2774, 356, 2071, '20773440', 'GRISEOFULVIN', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2775, 356, 1495, '8904107901401', 'MYCOLEX POWDER', 'standard', NULL, '22.5000', '22.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '22.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2776, 356, 1610, '8904107900909', 'MYCOLEX-3 CREAM', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2777, 356, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.2000', '1.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2778, 356, 1576, 'PR-289', 'GRISORAL SUSP (MILDLAND)', 'standard', NULL, '9.5000', '9.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2779, 356, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2780, 356, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2781, 356, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2782, 356, 2005, '6926160704036', 'LILY ROSS TOOTHBRUSH HARD', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2783, 356, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', 'standard', NULL, '18.8800', '18.8800', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.8800', '', '18.8800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2784, 356, 1676, '8902451254525', 'LUEX CHILD CHESTY', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2785, 356, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2786, 356, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2787, 356, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2788, 356, 2457, '33345179', 'PILIEF TABS', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2789, 356, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.2000', '1.2000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.2000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2790, 356, 2477, '98577401', 'SESAME SEED', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2791, 356, 1955, '4014852751801', 'PROCOMIL TABLET', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2792, 356, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2793, 356, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2794, 356, 2055, '34197416', 'ACTILIFE MUITIVITAMINS', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2795, 356, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2796, 356, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2797, 356, 1300, 'PR-13', 'ARTIBASE FORTE 80/4801X6', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2798, 356, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2799, 356, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2800, 357, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '1.8000', '1.8000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '1.8000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2801, 358, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2802, 358, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2803, 358, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2804, 358, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2805, 358, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2806, 358, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2807, 358, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', 'standard', NULL, '38.0000', '38.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '114.0000', '', '38.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2808, 358, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2809, 358, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2810, 358, 1769, '6001135508526', 'BENYLIN PAED. SYRUP 1 00ML', 'standard', NULL, '35.5000', '35.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '35.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2811, 358, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2812, 358, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2813, 358, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2814, 358, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2815, 358, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2816, 358, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2817, 359, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2818, 359, 2232, '25430404', 'AMOKISKLAV 1000MG', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2819, 359, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2820, 359, 2003, '6033000102584', 'ROBB JAR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2821, 359, 2222, '4791014004950', 'QUALITEA GREEN TEA', 'standard', NULL, '16.0000', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '16.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2822, 359, 1525, '5000158063907', 'LEMSIP SACHETS 5\'S', 'standard', NULL, '6.5000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '6.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2823, 359, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2824, 359, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2825, 359, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2826, 359, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2827, 359, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2828, 359, 2005, '6926160704036', 'LILY ROSS TOOTHBRUSH HARD', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2829, 359, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2830, 359, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2831, 359, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2832, 359, 1706, 'PR-419', 'PROCOLD SYR 100ml', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2833, 359, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2834, 359, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2835, 359, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2836, 359, 2381, '72472860', 'ENACEF SUSP', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2837, 359, 2410, '22266640', 'CARTEF SUSP 60ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2838, 359, 1320, 'PR-33', 'PARALEX BABY', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2839, 359, 2567, '83596243', 'NAN 1', 'standard', NULL, '37.0000', '37.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '37.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2840, 359, 1989, '6181100321821', 'SULFUR 18', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2841, 359, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2842, 359, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2843, 359, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2844, 359, 2072, '41512770', 'ZINVITE CAPS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2845, 359, 1381, 'PR-94', '10 GOLDY FORTE OS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2846, 359, 1445, 'PR-158', 'Iburex Caps c013D002', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2847, 359, 1464, '9502930974921', 'SENSONDYN ORIGINAL 75ML', 'standard', NULL, '17.5000', '17.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '17.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2848, 359, 1548, '6223003960339', 'DAFLON S00MG', 'standard', NULL, '3.6000', '3.6000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '3.6000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2849, 359, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2850, 359, 2565, '45244498', 'VERNA WATER MEDIUM', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2851, 359, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2852, 359, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2853, 360, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2854, 360, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.8000', '', '0.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2855, 361, 1561, 'PR-274', 'SPORANOX CAPS', 'standard', NULL, '35.5000', '35.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '35.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2856, 361, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2857, 362, 2588, '20381609', 'NORMAL SALINE INFUSSION', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2858, 362, 2296, '48633360', 'DREZ SOLUTION B/S', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2859, 362, 2405, '40815002', 'GLOVES', 'standard', NULL, '1.6000', '1.6000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.6000', '', '1.6000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2860, 363, 2399, '95599749', 'HEPA PLUS', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2861, 363, 1521, 'PR-234', 'PAINGAYCAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2862, 363, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2863, 363, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2864, 363, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2865, 363, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2866, 363, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2867, 363, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2868, 363, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2869, 363, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2870, 363, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2871, 363, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2872, 363, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2873, 363, 1610, '8904107900909', 'MYCOLEX-3 CREAM', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2874, 363, 2492, '51417644', 'NIZORAL SHAMPOO', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2875, 363, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2876, 363, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '0.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2877, 364, 2598, '48289194', 'FOLIC ACID TAB 28\' (EXETER)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2878, 365, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2879, 365, 2642, '23201636', 'SOFTCARE DIAPER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2880, 365, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', 'standard', NULL, '2.5000', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2881, 365, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2882, 365, 1321, 'PR-34', 'TRES ORIX FORTE 1 00ML(S/S)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2883, 365, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '6.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2884, 365, 2362, '63796869', 'ZINNAT 500MG', 'standard', NULL, '11.0000', '11.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '11.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2885, 365, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2886, 365, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2887, 365, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2888, 365, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2889, 366, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2890, 366, 2545, '82780299', 'DREZ POWDER 10G', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2891, 366, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2892, 366, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2893, 366, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2894, 366, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.2000', '1.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2895, 366, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2896, 366, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2897, 366, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2898, 366, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2899, 366, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.6000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2900, 367, 2015, '88820286', 'BABY OIL CUSSONS SMALL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2901, 367, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2902, 367, 2232, '25430404', 'AMOKISKLAV 1000MG', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2903, 367, 2003, '6033000102584', 'ROBB JAR', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2904, 368, 1799, 'PR-512', 'PROXIMEXA TABS 250[10\'S]', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2905, 368, 2281, '087450449108', 'TYLENOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2906, 368, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', 'standard', NULL, '2.5000', '2.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2907, 368, 2546, '11973520', 'NOSTAMINE E/N DROPS', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2908, 368, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2909, 369, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2910, 369, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2911, 369, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2912, 369, 2362, '63796869', 'ZINNAT 500MG', 'standard', NULL, '11.0000', '11.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '11.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2913, 369, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2914, 369, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2915, 369, 2028, '5137136225122', 'JRA CREAM BIG 220G', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2916, 369, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2917, 369, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2918, 369, 2216, '8964000734667', 'LAVENDER OIL 40ML NATURAL', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2919, 369, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '2.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2920, 369, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2921, 369, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2922, 369, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2923, 369, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2924, 369, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2925, 369, 1358, '011', 'LUEX CHILDREN CHESTY COUGH', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2926, 369, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2927, 369, 1701, 'PR-414', 'HEPTOPEP SYR', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2928, 369, 2420, '21380189', 'COWBELL TIN MILK', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2929, 369, 2617, '33457681', 'NIFEDI-DENK 20MG', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2930, 369, 2056, '26049852', 'ESSENTIAL EMBROCATION (LIQUID ROBB) 27ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2931, 369, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2932, 369, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2933, 369, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2934, 369, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2935, 369, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2936, 369, 2435, '31684073', 'ORAL B TOOTHPASTE', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2937, 369, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '0.5000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2938, 369, 2618, '72760937', 'BUSCOMED TAB 10MG', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2939, 369, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2940, 369, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2941, 369, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2942, 369, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2943, 369, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2944, 370, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2945, 370, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2946, 370, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2947, 370, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2948, 370, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2949, 370, 2502, '14251017', 'TCP ANTISEPTIC LIQUID', 'standard', NULL, '55.5000', '55.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '55.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2950, 370, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2951, 370, 2617, '33457681', 'NIFEDI-DENK 20MG', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2952, 370, 2336, '74912018', 'ATENOLOL 50MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2953, 370, 2617, '33457681', 'NIFEDI-DENK 20MG', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2954, 370, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2955, 370, 1626, '306420072116', 'VITAFOL CAP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2956, 371, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.6000', '', '1.3000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2957, 371, 1454, 'PR-167', 'Ancigel  O L033E001', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2958, 371, 2236, '6033000270108', 'EFPAC JNR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2959, 372, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '6.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2960, 373, 2506, '46924578', 'E- PANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2961, 373, 1557, 'PR-270', 'SE CLEAR EYE DROP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2962, 374, 2497, '26571538', 'CALPOl 6+', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2963, 374, 2539, '39255568', 'THERMOMETER DIGITAL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2964, 374, 2539, '39255568', 'THERMOMETER DIGITAL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2965, 374, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2966, 374, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2967, 374, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '11.0000', '11.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '11.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2968, 374, 2576, '59885419', 'DIAMICRON MR 60 MG TAB', 'standard', NULL, '71.0000', '71.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '71.0000', '', '71.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2969, 374, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '11.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '11.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2970, 374, 1976, '6186000077427', 'EVERSHEEN LOTION SMALL 250ML', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2971, 374, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2972, 374, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2973, 374, 2247, '29226629', 'TRISILICATE SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2974, 374, 1567, 'PR-280', 'BRENEX SYRUP', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2975, 374, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2976, 374, 2348, '70645774', 'LYNUX OINT', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2977, 374, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2978, 374, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.4000', '', '0.6000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2979, 374, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2980, 374, 2402, '16734039', 'NANA ADJEI', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2981, 374, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2982, 374, 2252, '08741188', 'FLUREST TABS', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2983, 374, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2984, 375, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2985, 376, 2414, '85111706', 'AMLODIPINE 5MG', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2986, 377, 2362, '63796869', 'ZINNAT 500MG', 'standard', NULL, '11.0000', '11.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '11.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2987, 377, 1426, '6034600108426', 'ROOTER LIFE', 'standard', NULL, '47.5000', '47.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '47.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2988, 377, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.2000', '1.2000', '30.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '1.2000', NULL, 1, 'pc', '30.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2989, 377, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2990, 378, 2094, '68563120', 'COUGH & COLD 100ML CHILD CARE', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2991, 378, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2992, 378, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2993, 378, 2582, '81054441', 'AZILEX SUSP', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2994, 378, 1567, 'PR-280', 'BRENEX SYRUP', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2995, 378, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2996, 378, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2997, 378, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2998, 378, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2999, 378, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3000, 378, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3001, 378, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3002, 378, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3003, 378, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3004, 378, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3005, 378, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3006, 378, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3007, 378, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3008, 378, 1301, 'PR-14', 'BASE COLD 1X6X10', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3009, 378, 2527, '655295237350', 'MACA POWDER (DR HERBALIST)', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3010, 378, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3011, 378, 1419, '5024389122233', 'MIGHTY POWER SYS LS', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3012, 378, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3013, 378, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3014, 378, 2294, '44448916', 'PENICILLIN OINTMENT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3015, 378, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3016, 378, 2299, '8904107900961', 'DICLOLEX GEL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3017, 379, 1537, 'PR-250', 'VITANE SYR', 'standard', NULL, '53.0000', '53.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '53.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3018, 379, 2597, '81022123', 'ABC BABY COUGH SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3019, 379, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '4.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3020, 379, 1585, 'PR-298', 'ZUBES CHILDREN', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3021, 379, 1319, 'PR-32', 'PARA SYR AYRTON', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3022, 379, 2159, '88244641', 'TREMENDOUS CAPS', 'standard', NULL, '19.5000', '19.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '19.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3023, 380, 1440, 'PR-153', 'VICTORY GARLIC', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3024, 380, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3025, 380, 2254, '8901040258036', 'BIOFERON SYRUP', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3026, 380, 2073, '59185019', 'DOMI 30', 'standard', NULL, '3.0000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3027, 380, 2154, '8410179200927', 'BORGES S/S  125ML', 'standard', NULL, '14.0000', '14.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '14.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3028, 380, 2131, '4005900098238', 'NIVEA SPRAY 150ML', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3029, 380, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3030, 380, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3031, 380, 1730, 'PR-443', 'DAKTACORT CREAM 15G', 'standard', NULL, '31.5000', '31.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '31.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3032, 380, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.2000', '1.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3033, 381, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3034, 381, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3035, 381, 1856, 'PR-569', 'KOFFEX SYR ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3036, 381, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3037, 381, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3038, 381, 2391, '12827991', 'ENAMYCIN TAB', 'standard', NULL, '3.5000', '3.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '3.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3039, 381, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3040, 381, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3041, 381, 1868, 'PR-581', 'CIPRO TAB 500MG (SHALCIP TAB)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3042, 381, 1381, 'PR-94', '10 GOLDY FORTE OS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3043, 381, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3044, 381, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3045, 381, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3046, 381, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3047, 381, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '26.5000', '26.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3048, 381, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3049, 381, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3050, 382, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3051, 382, 1704, '5060033711873', 'CYPRODINE SYR', 'standard', NULL, '35.5000', '35.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '35.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3052, 382, 2254, '8901040258036', 'BIOFERON SYRUP', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3053, 383, 1440, 'PR-153', 'VICTORY GARLIC', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3054, 383, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3055, 383, 1406, '16564749', 'GIVERS KOO CAPS(l40)', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3056, 384, 1925, 'PR-638', 'Tobins Cod oil T32003', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3057, 384, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3058, 384, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3059, 384, 2014, '08906045943697', 'ACNE CLEAR GEL', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3060, 384, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3061, 384, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3062, 384, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '26.5000', '26.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3063, 384, 1487, '8902292000893', 'KETAZOL CREAM', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3064, 384, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3065, 384, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3066, 384, 2381, '72472860', 'ENACEF SUSP', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3067, 384, 1306, 'PR-19', 'DOMI 10: TAB', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3068, 384, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3069, 384, 2051, '6186000077731', 'TENDRINA BOBY LOTION 500ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3070, 384, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6900', '', '0.6900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3071, 384, 1810, 'PR-523', 'VISCOF EXPECTORANT', 'standard', NULL, '11.0000', '11.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '11.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3072, 384, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '26.5000', '26.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3073, 384, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3074, 384, 1618, '8901645060997', 'AZILEX 250MG CAPS', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3075, 384, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3076, 384, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3077, 385, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3078, 385, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3079, 385, 1730, 'PR-443', 'DAKTACORT CREAM 15G', 'standard', NULL, '31.5000', '31.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '31.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3080, 385, 2071, '20773440', 'GRISEOFULVIN', 'standard', NULL, '6.5000', '6.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '6.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3081, 385, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '26.5000', '26.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.5000', '', '26.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3082, 385, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3083, 385, 1856, 'PR-569', 'KOFFEX SYR ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3084, 385, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3085, 385, 2388, '50008774', 'S/SEAS JOINTCARE SUPPLEX CAPS', 'standard', NULL, '70.0000', '70.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '70.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3086, 385, 1604, 'PR-317', 'AUGMENTIN 1G', 'standard', NULL, '46.5000', '46.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '93.0000', '', '46.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3087, 385, 2333, '81610561', 'CIPROFLOXACIN SUSP (XIN-A)', 'standard', NULL, '43.5000', '43.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '43.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3088, 385, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3089, 385, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3090, 385, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3091, 385, 2057, '16787356', 'ESSENTIAL EMBROCATION(LIQUID ROBB) 4ML', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3092, 386, 2472, '5012008571401', 'SOFT & GENTLE SPRAY', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3093, 386, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3094, 386, 2247, '29226629', 'TRISILICATE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3095, 387, 2642, '23201636', 'SOFTCARE DIAPER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3096, 387, 2448, '42222157', 'IMPERIAL LEATHER SOAP B/S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3097, 387, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3098, 387, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3099, 387, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3100, 387, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3101, 387, 2131, '4005900098238', 'NIVEA SPRAY 150ML', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3102, 387, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3103, 387, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3104, 387, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', 'standard', NULL, '39.0000', '39.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '39.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3105, 387, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3106, 388, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3107, 388, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3108, 388, 2548, '54581009', 'ZINCOVIT DROP', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3109, 388, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3110, 388, 2381, '72472860', 'ENACEF SUSP', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3111, 389, 2649, '19814758', 'ZITHROMAX SUSP', 'standard', NULL, '94.0000', '94.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '94.0000', '', '94.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3112, 389, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3113, 389, 1810, 'PR-523', 'VISCOF EXPECTORANT', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3114, 389, 1485, '008', 'NIZORAL CREAM', 'standard', NULL, '30.5000', '30.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.5000', '', '30.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3115, 389, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3116, 389, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3117, 389, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3118, 389, 1811, 'PR-524', 'VERMOX SUSP', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3119, 389, 1578, 'PR-291', 'SAMALIN LOZENGES', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3120, 389, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3121, 389, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3122, 390, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3123, 390, 2273, '04120489', 'RHIZIN SYRP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3124, 390, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3125, 390, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3126, 390, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3127, 390, 2544, '85585070', 'NEXCOFER SYR L/S', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3128, 390, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3129, 390, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3130, 390, 2255, '8901040258050', 'BIOFERON CAPS', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3131, 390, 1300, 'PR-13', 'ARTIBASE FORTE 80/4801X6', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3132, 390, 1577, 'PR-290', 'MALIN LOZ', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3133, 390, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3134, 390, 1884, 'PR-597', 'POLYFER SYR (200ML)', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3135, 390, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3136, 390, 1305, 'PR-18', 'BASEKOF SYR', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3137, 390, 1954, '87246804', 'COLDRID TAB', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3138, 390, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3139, 390, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3140, 390, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3141, 390, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3142, 390, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3143, 390, 2063, '28182783', 'NEFLUCON (FLUCONAZOLE) CAP 150', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3144, 390, 1901, 'PR-614', 'Diclokin TR', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3145, 390, 1426, '6034600108426', 'ROOTER LIFE', 'standard', NULL, '47.5000', '47.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '47.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3146, 390, 2244, '96089977', 'MAGACID SYRUP 200ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3147, 390, 2263, '6036000090417', 'LEVON 2', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3148, 390, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3149, 390, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3150, 390, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3151, 390, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3152, 390, 2512, '57681465', 'HONEY  500ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3153, 390, 2346, '68048014', 'CALAMINE OINT', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3154, 391, 2231, '7501058633927', 'NAN 2', 'standard', NULL, '36.0000', '36.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '36.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3155, 391, 1726, '8680199905502', 'CLODIFEN (DICLOFENAC) SUPP. 100MG', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3156, 391, 2011, '6948031103014', 'VIP TOOTHBRUSH', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3157, 391, 1980, '6186000077052', 'QUEEN ELISABETH COCOA BUTTER LOTION 250ML', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3158, 391, 2031, '5137136225191', 'JRA CREAM SMALL 40G', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3159, 391, 2417, '89073800', 'DOVE SOAP', 'standard', NULL, '6.0000', '6.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '6.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3160, 392, 2525, '8850722212760', 'GOATMILK SOAP', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3161, 392, 2580, '8858854600592', 'DARK SPOT REMOVER SOAP', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3162, 392, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3163, 393, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3164, 393, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3165, 393, 1353, '5060085540254', 'SELEVITE TABS', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3166, 393, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3167, 393, 2057, '16787356', 'ESSENTIAL EMBROCATION(LIQUID ROBB) 4ML', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3168, 393, 2545, '82780299', 'DREZ POWDER 10G', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3169, 393, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3170, 393, 1485, '008', 'NIZORAL CREAM', 'standard', NULL, '30.5000', '30.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.5000', '', '30.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3171, 394, 2541, '39996904', 'DEMACOT CREAM', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3172, 394, 2492, '51417644', 'NIZORAL SHAMPOO', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3173, 394, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3174, 394, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3175, 394, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3176, 394, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3177, 394, 2382, '28069626', 'EPICROM 4% EYE DROP', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3178, 394, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3179, 394, 2385, '52921', 'BECOATIN TABS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3180, 394, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3181, 394, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3182, 394, 1300, 'PR-13', 'ARTIBASE FORTE 80/4801X6', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3183, 394, 2392, '10965636', 'CHOCHO SAOP', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3184, 394, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3185, 394, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3186, 394, 1338, 'PR-51', 'COTTON WOOL 1 00G', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3187, 394, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3188, 395, 2661, '52395020', 'GACET 1G', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3189, 395, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.2000', '1.2000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.2000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3190, 395, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3191, 395, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3192, 395, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3193, 395, 1780, '5021265220076', 'FEROGLOBIN CAPS', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3194, 395, 2460, '07910647', 'EVECARE TAB', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3195, 395, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3196, 395, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3197, 395, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3198, 395, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3199, 395, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3200, 395, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3201, 395, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3202, 395, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3203, 395, 1811, 'PR-524', 'VERMOX SUSP', 'standard', NULL, '19.0000', '19.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '19.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3204, 395, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3205, 395, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3206, 395, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3207, 396, 2228, '7501058625915', 'LACTOGEN  1', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3208, 396, 1694, 'PR-407', 'LEENASYR', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3209, 396, 2251, '8901138500573', 'BONNISAN SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3210, 396, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3211, 396, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3212, 396, 2597, '81022123', 'ABC BABY COUGH SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3213, 396, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3214, 396, 1376, '7640153082107', 'IXYLO-MEPHA 0.05%', 'standard', NULL, '45.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3215, 396, 2546, '11973520', 'NOSTAMINE E/N DROPS', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3216, 396, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', 'standard', NULL, '6.5000', '6.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '6.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3217, 396, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3218, 396, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3219, 397, 2059, '5050796002899', 'HEAVEN SCENT BOBY CREAM 500ML', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3220, 398, 1599, 'PR-312', 'RONZOLE 20MG CAPS', 'standard', NULL, '3.0000', '3.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3221, 399, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3222, 399, 2281, '087450449108', 'TYLENOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3223, 399, 2159, '88244641', 'TREMENDOUS CAPS', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3224, 399, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3225, 399, 1300, 'PR-13', 'ARTIBASE FORTE 80/4801X6', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3226, 399, 1618, '8901645060997', 'AZILEX 250MG CAPS', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3227, 399, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3228, 399, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3229, 399, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3230, 399, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3231, 400, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3232, 401, 2479, '64861163', 'CHIA SEED', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3233, 401, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3234, 401, 2645, '04241482', 'COMFORT SOFTNER M/S', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3235, 401, 2642, '23201636', 'SOFTCARE DIAPER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3236, 401, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3237, 401, 1527, '8904159609416', 'PREGASAFE 75MG TAB', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3238, 401, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3239, 401, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3240, 401, 2255, '8901040258050', 'BIOFERON CAPS', 'standard', NULL, '24.0000', '24.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '24.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3241, 401, 2047, '04937592', 'BABY GIRL SET', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3242, 401, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3243, 401, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3244, 402, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3245, 402, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3246, 402, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3247, 403, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3248, 403, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '44.0000', '44.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '44.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3249, 403, 1720, 'PR-433', 'FUROSEMIDE TABS 40MG 500\'(ECL)', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3250, 403, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3251, 403, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3252, 403, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3253, 403, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3254, 403, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3255, 403, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', 'standard', NULL, '38.0000', '38.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '228.0000', '', '38.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3256, 403, 2576, '59885419', 'DIAMICRON MR 60 MG TAB', 'standard', NULL, '71.0000', '71.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '71.0000', '', '71.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3257, 403, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3258, 403, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3259, 403, 2411, '13740723', 'GEBEDOL FORTE TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3260, 403, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6900', '', '0.6900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3261, 403, 1567, 'PR-280', 'BRENEX SYRUP', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3262, 403, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '1.3000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3263, 403, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3264, 403, 2558, '12419923', 'OVULATION TEST KIT', 'standard', NULL, '7.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3265, 403, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '6.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3266, 404, 1779, 'PR-492', 'BISACODYL [GEO] 1000\'S', 'standard', NULL, '1.0000', '1.0000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '1.0000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3267, 404, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3268, 404, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '50.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3269, 404, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3270, 404, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3271, 404, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3272, 404, 1908, 'PR-621', 'Magacid tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3273, 404, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3274, 404, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3275, 404, 2588, '20381609', 'NORMAL SALINE INFUSSION', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3276, 404, 2298, '11840983', 'DREZ OINTMENT 10G S/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3277, 405, 2130, '4005808837335', 'NIVEA SPRAY 250ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3278, 405, 1797, '8850769011388', 'PROSTACARE CAPS 30S', 'standard', NULL, '68.0000', '68.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '68.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3279, 405, 1702, '8906045432580', 'BONAPLEX SYR 200ML', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3280, 405, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', 'standard', NULL, '28.0000', '28.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '56.0000', '', '28.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3281, 405, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3282, 405, 2298, '11840983', 'DREZ OINTMENT 10G S/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3283, 405, 2514, '98091900', 'TOMBROWN 500G', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3284, 405, 1711, 'PR-424', 'CIROTAMIN SYR', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3285, 405, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3286, 405, 2598, '48289194', 'FOLIC ACID TAB 28\' (EXETER)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3287, 405, 1440, 'PR-153', 'VICTORY GARLIC', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3288, 405, 1542, '8902502108920', 'INFAV OINT', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3289, 405, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3290, 405, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '9.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3291, 405, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3292, 405, 1894, 'PR-607', 'Primadal', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3293, 406, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3294, 406, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.2500', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3295, 406, 1328, 'PR-41', 'HIGH ELASTIC CREPE BANDAGE 4\"', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3296, 406, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.8000', '', '0.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3297, 406, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3298, 407, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '6.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3299, 407, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3300, 407, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3301, 407, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3302, 407, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3303, 407, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.0000', NULL, 1, 'pc', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3304, 407, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '18.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3305, 407, 2515, '22838029', 'CHILLI PEPPER', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3306, 407, 2602, '86780065', 'CLOVES ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3307, 407, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3308, 407, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3309, 407, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3310, 407, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3311, 407, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', 'standard', NULL, '27.0000', '27.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3312, 407, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3313, 407, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3314, 407, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3315, 407, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3316, 407, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3317, 407, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3318, 407, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.8000', '', '0.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3319, 407, 2642, '23201636', 'SOFTCARE DIAPER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3320, 408, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3321, 408, 1649, '6161102003536', 'ZUBES EXPECTORANT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3322, 409, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3323, 409, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3324, 409, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', 'standard', NULL, '5.5000', '5.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3325, 409, 2228, '7501058625915', 'LACTOGEN  1', 'standard', NULL, '28.0000', '28.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3326, 409, 1968, '5019781012206', 'VITAMIN E HEALTH AID', 'standard', NULL, '73.0000', '73.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '73.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3327, 409, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3328, 410, 1300, 'PR-13', 'ARTIBASE FORTE 80/4801X6', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3329, 410, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3330, 410, 2074, '8904185508134', 'REVIT MULTIVITAMIN TABLETS', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3331, 410, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', 'standard', NULL, '18.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3332, 410, 2610, '70419862', 'APPLE CIDER VINEGER S/S 473ML', 'standard', NULL, '52.0000', '52.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '52.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3333, 410, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3334, 410, 2086, '06489706', 'METAGYL SUSP', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3335, 410, 1799, 'PR-512', 'PROXIMEXA TABS 250[10\'S]', 'standard', NULL, '30.0000', '30.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3336, 410, 1595, 'PR-308', 'BEEHIVE COUGH SYR', 'standard', NULL, '28.0000', '28.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3337, 410, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3338, 410, 1733, 'PR-446', 'ENAFIX TABS 200MG 10\'', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3339, 410, 1953, '56415263', 'STAGYL TABS', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3340, 410, 2270, '64645876', 'MIST POT CIT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3341, 410, 2649, '19814758', 'ZITHROMAX SUSP', 'standard', NULL, '94.0000', '94.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '94.0000', '', '94.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3342, 410, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3343, 410, 2281, '087450449108', 'TYLENOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3344, 411, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3345, 411, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3346, 411, 1305, 'PR-18', 'BASEKOF SYR', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3347, 411, 2403, '84832683', 'LIMZER CAPS 30\'', 'standard', NULL, '24.0000', '24.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3348, 411, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3349, 411, 1712, 'PR-425', 'ATORVASTATIN 20MG TAB', 'standard', NULL, '13.0000', '13.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3350, 411, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3351, 411, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '3.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3352, 411, 1424, '6036000070709', 'PROSTAT 60', 'standard', NULL, '39.5000', '39.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '39.5000', '', '39.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3353, 412, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3354, 412, 2425, '54377887', 'SASSO MOSQUITO SPRAY  B/S', 'standard', NULL, '27.0000', '27.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3355, 412, 1520, 'PR-233', 'DICLOLEX 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3356, 412, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.6900', '', '0.6900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3357, 412, 2597, '81022123', 'ABC BABY COUGH SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3358, 412, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3359, 412, 1478, '8906087940128', 'IMPRESSER CAPS', 'standard', NULL, '28.0000', '28.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3360, 412, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3361, 412, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3362, 412, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3363, 412, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3364, 412, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3365, 412, 1931, 'PR-644', 'Exicam Do c0070002', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3366, 412, 2351, '81129325', 'COARTEM 12\'S', 'standard', NULL, '23.0000', '23.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3367, 412, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3368, 412, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3369, 413, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3370, 413, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3371, 413, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3372, 413, 2095, '83888513', 'LETAMOL ELIXIR 125ML  LETAP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3373, 414, 1632, '5024874030630', 'VALUPAK VITE 4001U', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3374, 414, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3375, 414, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3376, 414, 2477, '98577401', 'SESAME SEED', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3377, 414, 2527, '655295237350', 'MACA POWDER (DR HERBALIST)', 'standard', NULL, '48.0000', '48.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', '48.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3378, 414, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '1.0000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3379, 414, 1677, '8902546578543', 'LUEX BABY COUGH', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3380, 414, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3381, 414, 2455, '07137762', 'AMITRIPTYLINE 25MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3382, 414, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3383, 414, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3384, 414, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3385, 414, 2335, '90387267', 'EPICROM EYE DROP 2%', 'standard', NULL, '18.5000', '18.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '18.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3386, 414, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '17.5000', '17.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '17.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3387, 414, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3388, 414, 2491, '57627875', 'BELLS VITAMIN C', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3389, 414, 1669, '5000456024778', 'NEXIUM 40MG TAB', 'standard', NULL, '8.8000', '8.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.6000', '', '8.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3390, 414, 1843, '5000456024754', 'NEXIUM TABS 20MG 14S', 'standard', NULL, '5.6000', '5.6000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.8000', '', '5.6000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3391, 414, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3392, 415, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '3.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3393, 416, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3394, 416, 1966, '9556564303336', 'FIESTA CONDOM DOTTED', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3395, 416, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3396, 416, 2524, '8858854602732', 'XTREME TUMERIC SOAP', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3397, 416, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3398, 416, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3399, 416, 1999, '6971044950313', 'YAZZ PAD', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3400, 416, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3401, 416, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6900', '', '0.6900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3402, 416, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3403, 416, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3404, 416, 1433, 'PR-146', 'TIME HERBAL MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3405, 416, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3406, 416, 1811, 'PR-524', 'VERMOX SUSP', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3407, 416, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3408, 416, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '2.5000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3409, 416, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3410, 416, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3411, 416, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3412, 416, 2251, '8901138500573', 'BONNISAN SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3413, 416, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3414, 416, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3415, 416, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.2500', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3416, 416, 2131, '4005900098238', 'NIVEA SPRAY 150ML', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3417, 417, 1730, 'PR-443', 'DAKTACORT CREAM 15G', 'standard', NULL, '32.0000', '32.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3418, 417, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3419, 417, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3420, 417, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3421, 417, 2308, '083502770183', 'PSYLLIUM HUSK', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '40.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3422, 417, 1426, '6034600108426', 'ROOTER LIFE', 'standard', NULL, '47.5000', '47.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '47.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3423, 417, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3424, 417, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3425, 417, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.8000', '', '0.6000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3426, 417, 1581, 'PR-294', 'TOUCH AND GO', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3427, 417, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3428, 417, 1521, 'PR-234', 'PAINGAYCAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3429, 417, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', 'standard', NULL, '8.0000', '8.0000', '16.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '128.0000', '', '8.0000', NULL, 1, 'pc', '16.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3430, 417, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3431, 417, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3432, 417, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3433, 417, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3434, 417, 1884, 'PR-597', 'POLYFER SYR (200ML)', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3435, 418, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3436, 418, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3437, 418, 2582, '81054441', 'AZILEX SUSP', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3438, 418, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3439, 418, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3440, 418, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3441, 418, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3442, 418, 1723, 'PR-436', 'HYDROCORTISONE CREAM 15G TEVA', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3443, 418, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3444, 418, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3445, 418, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3446, 418, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3447, 418, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3448, 418, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3449, 418, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3450, 418, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3451, 418, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3452, 418, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3453, 418, 2676, '39826217', 'ONE TOUCH SELECT PLUS STRIP', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3454, 418, 1717, '3014230021404', 'BRUT DEOSPRAY ORIG. 200ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3455, 418, 2005, '6926160704036', 'LILY ROSS TOOTHBRUSH HARD', 'standard', NULL, '3.5000', '3.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '3.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3456, 418, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3457, 418, 2604, '43079266', 'COA MIXTURE', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '120.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3458, 419, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.8000', '', '0.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3459, 419, 1755, 'PR-468', 'STOPKOF EXPT( CARBOCISTEINE)5?ULT 100ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3460, 419, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3461, 419, 2657, '29274667', 'LOPERON CAPS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3462, 419, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3463, 419, 2635, '2208744', 'PLASTER ROLL S/S', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3464, 419, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3465, 419, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3466, 419, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3467, 419, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3468, 419, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3469, 419, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3470, 419, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3471, 419, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3472, 419, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3473, 419, 1452, 'PR-165', 'Tobufon 400 T002e001', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3474, 419, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3475, 419, 2228, '7501058625915', 'LACTOGEN  1', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3476, 419, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3477, 419, 2287, '72632899', 'FLUCLOXACILLIN CAPS (EMGIFLOX)', 'standard', NULL, '2.5000', '2.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3478, 419, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3479, 419, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3480, 419, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3481, 419, 1380, '4008500060070', 'PRIMOLUT N TABS 5MG- ORIGINAL', 'standard', NULL, '10.0000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '10.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3482, 419, 1779, 'PR-492', 'BISACODYL [GEO] 1000\'S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3483, 419, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3484, 419, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3485, 420, 1806, '5021265222001', 'WELLWOMAN CAPS ORIGINAL', 'standard', NULL, '37.0000', '37.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '37.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3486, 420, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3487, 420, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3488, 420, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3489, 421, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3490, 421, 2016, '6154000017026', 'BABY OIL CUSSIONS BIG', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3491, 422, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3492, 423, 2633, '36871243', 'GANA BALM', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3493, 423, 2393, '25300648', 'BOAFO OINT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3494, 423, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3495, 424, 2011, '6948031103014', 'VIP TOOTHBRUSH', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3496, 424, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3497, 424, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3498, 424, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3499, 424, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3500, 424, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3501, 424, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3502, 424, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3503, 424, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3800', '', '0.6900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3504, 424, 2599, '29486139', 'ABIDEC MULTIVITAMIN SYR', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '60.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3505, 424, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3506, 425, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3507, 426, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3508, 426, 1559, 'PR-272', 'SIRDALUD 4MG', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3509, 426, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3510, 426, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3511, 426, 2437, '44857984', 'APTAMIL BABY MILK', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '100.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3512, 426, 2118, '11415402', 'AVEENO WIPES', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3513, 426, 2005, '6926160704036', 'LILY ROSS TOOTHBRUSH HARD', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3514, 426, 2005, '6926160704036', 'LILY ROSS TOOTHBRUSH HARD', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3515, 426, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3516, 426, 2024, '6001087357050', 'VASELINE LOTION INTENSIVE CARE 400ML', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3517, 426, 1586, '5012616173004', 'ABIDEC DROP', 'standard', NULL, '65.0000', '65.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '65.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3518, 426, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3519, 426, 2048, '67087247', 'DAY BY DAY BABY SET', 'standard', NULL, '45.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3520, 426, 2426, '49816115', 'COMFORT SOFTNER', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3521, 426, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3522, 426, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '30.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3523, 426, 2479, '64861163', 'CHIA SEED', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3524, 426, 2215, '8964000734742', 'CASTOR OIL NATURAL 40ML (HEMANI)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3525, 426, 1928, '8906009234090', 'LOFNAC GEL GLF143', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3526, 426, 1446, 'PR-159', 'Tobufen syr L00YADW6', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3527, 426, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3528, 426, 2228, '7501058625915', 'LACTOGEN  1', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3529, 426, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3530, 426, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', 'standard', NULL, '10.0000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '10.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3531, 426, 1682, 'PR-395', 'SENAFEN TAB 100\'', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3532, 426, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '3.8000', '3.8000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '3.8000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3533, 426, 2270, '64645876', 'MIST POT CIT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3534, 426, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3535, 427, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '2.0000', NULL, 1, 'pc', '9.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3536, 427, 2341, '67208590', 'NEXCOFER CAPS', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3537, 427, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3538, 427, 1722, 'PR-435', 'CLOTRIMAZOLE CREAM 1 G', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3539, 427, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3540, 427, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3541, 427, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3542, 427, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3543, 427, 2086, '06489706', 'METAGYL SUSP', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3544, 427, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3545, 427, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3546, 427, 1642, '6001135507628', 'BENYLIN DRY  COUGH SYR 100ML', 'standard', NULL, '41.0000', '41.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '41.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3547, 427, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3548, 427, 2546, '11973520', 'NOSTAMINE E/N DROPS', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3549, 427, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.7000', '', '1.3000', NULL, 1, 'pc', '9.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3550, 427, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3551, 427, 2565, '45244498', 'VERNA WATER MEDIUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3552, 427, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '1.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3553, 427, 2465, '13163480', 'CORORANGE SYR', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3554, 427, 1779, 'PR-492', 'BISACODYL [GEO] 1000\'S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3555, 427, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3556, 427, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3557, 427, 1811, 'PR-524', 'VERMOX SUSP', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3558, 427, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3559, 427, 1659, '5021265228027', 'OMEGA H3 CAP', 'standard', NULL, '55.0000', '55.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '55.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3560, 427, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '11.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '11.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3561, 428, 1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', 'standard', NULL, '32.0000', '32.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3562, 428, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3563, 428, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.2000', '', '0.6000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3564, 428, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3565, 428, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3566, 428, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3567, 428, 2520, '20687050', 'CAMEL LIQUID ANTISEPTIC 500ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3568, 428, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3569, 428, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3570, 428, 1304, 'PR-17', 'BASECHLOR DROPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3571, 428, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3572, 428, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '1.0000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3573, 428, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '11.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '11.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3574, 429, 2382, '28069626', 'EPICROM 4% EYE DROP', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3575, 429, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3576, 430, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3577, 430, 2142, '5021265223855', 'WELLBABY ', 'standard', NULL, '76.0000', '76.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '76.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3578, 430, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3579, 430, 2005, '6926160704036', 'LILY ROSS TOOTHBRUSH HARD', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3580, 430, 2441, '82095661', 'COLGATE HERBAL TOOTHPASTE', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3581, 430, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3582, 430, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3583, 430, 2391, '12827991', 'ENAMYCIN TAB', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3584, 430, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3585, 430, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3586, 430, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3587, 430, 2212, '8964000114018', 'BLACKSEEDS OIL 60ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3588, 430, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3589, 430, 2247, '29226629', 'TRISILICATE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3590, 430, 2072, '41512770', 'ZINVITE CAPS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3591, 430, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.2000', '1.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3592, 430, 2482, '83427820', 'FENUGREEK SEED', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3593, 430, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3594, 430, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3595, 430, 2399, '95599749', 'HEPA PLUS', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3596, 430, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3597, 430, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3598, 430, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '2.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3599, 430, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3600, 430, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3601, 430, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '11.5000', '11.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '11.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3602, 430, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3603, 430, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3604, 430, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3605, 430, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3606, 431, 1886, 'PR-599', 'NORVASC 10MG 30?S', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '100.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3607, 431, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3608, 431, 2512, '57681465', 'HONEY  500ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3609, 431, 2515, '22838029', 'CHILLI PEPPER', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3610, 431, 1305, 'PR-18', 'BASEKOF SYR', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3611, 431, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3612, 431, 2478, '10567518', 'MUSTARD SEED', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3613, 431, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3614, 431, 2479, '64861163', 'CHIA SEED', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3615, 431, 2482, '83427820', 'FENUGREEK SEED', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3616, 431, 2153, '4058172309250', 'MAGNESUIM TABLETS TUBE', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3617, 431, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3618, 431, 2482, '83427820', 'FENUGREEK SEED', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3619, 431, 2481, '40294439', 'FENNEL SEED', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3620, 431, 2154, '8410179200927', 'BORGES S/S  125ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3621, 431, 1585, 'PR-298', 'ZUBES CHILDREN', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3622, 431, 2527, '655295237350', 'MACA POWDER (DR HERBALIST)', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3623, 431, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3624, 431, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3625, 431, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3626, 431, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3627, 431, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3628, 431, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3629, 431, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3630, 432, 2696, '18569249', 'VIT E OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3631, 433, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', 'standard', NULL, '39.0000', '39.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '39.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3632, 433, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '44.0000', '44.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '44.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3633, 433, 1410, 'PR-123', 'JOY OINT S/S(200)', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3634, 433, 2504, '61281286', 'MISTARD', 'standard', NULL, '44.0000', '44.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '44.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3635, 433, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', 'standard', NULL, '2.5000', '2.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3636, 433, 1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', 'standard', NULL, '17.0000', '17.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '255.0000', '', '17.0000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3637, 433, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3638, 433, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3639, 433, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3640, 433, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '0.5000', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3641, 433, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3642, 433, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3643, 433, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3644, 434, 2154, '8410179200927', 'BORGES S/S  125ML', 'standard', NULL, '14.0000', '14.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '14.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3645, 434, 1759, '5017848251049', 'OLIVE  OIL 70ML', 'standard', NULL, '15.0000', '15.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '75.0000', '', '15.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3646, 434, 2001, '012', 'BELLS OLIVE OIL 70ML', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3647, 435, 1616, 'PR-329', 'GACET SUPP 250MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3648, 435, 1579, 'PR-292', 'LUFART SUSP', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3649, 435, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3650, 436, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3651, 437, 1644, '3574661091075', 'BENYLIN INFANT SYR', 'standard', NULL, '44.0000', '44.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '44.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3652, 438, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '11.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '11.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3653, 438, 2403, '84832683', 'LIMZER CAPS 30\'', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3654, 438, 2358, '32893309', 'LOSAR-DENK 100MG', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3655, 438, 2468, '92479608', 'ATENOLOL 100MG TABS UK', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3656, 438, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3657, 438, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3658, 438, 2232, '25430404', 'AMOKISKLAV 1000MG', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3659, 438, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3660, 438, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3661, 438, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3662, 438, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3663, 438, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3664, 438, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3665, 438, 1300, 'PR-13', 'ARTIBASE FORTE 80/4801X6', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3666, 438, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3667, 438, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3668, 438, 2062, '01665566', 'ZYMAX SUSP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3669, 438, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3670, 438, 2662, '78880294', 'LORNAT TAB', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3671, 438, 1549, '610074245209', 'LAVET', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3672, 438, 2251, '8901138500573', 'BONNISAN SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3673, 438, 2238, '5021265223350', 'PERFECTIL PLATINUM', 'standard', NULL, '51.0000', '51.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '102.0000', '', '51.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3674, 438, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3675, 438, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3676, 439, 1985, '6186000077038', 'QUEEN ELISABETH COCOA BUTTER CREAM 125ML', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3677, 439, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', 'standard', NULL, '73.0000', '73.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '73.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3678, 439, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3679, 439, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3680, 439, 1826, 'PR-539', 'SYRINGES & NEES (KOREA) 5ML', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3681, 439, 1814, 'PR-527', 'VASELINE DRY SKIN 400ML', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3682, 439, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3683, 439, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '11.5000', '11.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '11.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3684, 439, 2665, '94928957', 'FLEMING 625MG', 'standard', NULL, '32.0000', '32.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3685, 439, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3686, 439, 2211, '8964000736371', 'COCONUT OIL 60ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3687, 439, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3688, 439, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '30.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3689, 439, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3690, 439, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3691, 439, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3692, 439, 1426, '6034600108426', 'ROOTER LIFE', 'standard', NULL, '47.5000', '47.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '47.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3693, 439, 2442, '84998316', 'COLGATE TRIPPLE ACTION TOOTHPASTE', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3694, 439, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3695, 439, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3696, 439, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3697, 439, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3698, 439, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3699, 439, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3700, 440, 2493, '5060057401095', 'FUROSEMIDE TAB 40MG UK ALMUS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3701, 440, 1811, 'PR-524', 'VERMOX SUSP', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3702, 440, 1766, 'PR-479', 'HIST AZINE SYRUP 60ML', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3703, 440, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3704, 440, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3705, 440, 2228, '7501058625915', 'LACTOGEN  1', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3706, 440, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3707, 440, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3708, 440, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3709, 440, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3710, 440, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3711, 440, 1695, '8908002671971', 'APETAMIN SYR', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3712, 440, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3713, 440, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3714, 440, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3715, 440, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3716, 440, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3717, 440, 1959, '5000456022798', 'CRESTOR 10MG', 'standard', NULL, '107.0000', '107.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '107.0000', '', '107.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3718, 440, 1636, '4031571069116', 'VIT-B DENK', 'standard', NULL, '13.0000', '13.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '13.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3719, 440, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3720, 440, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3721, 440, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3722, 440, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3723, 440, 1682, 'PR-395', 'SENAFEN TAB 100\'', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3724, 440, 1874, 'PR-587', 'DICNAC 75 SR(DICLOFENAC)', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3725, 440, 1545, '8904091105816', 'CANDID V6 PESS 6\'S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3726, 440, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3727, 441, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3728, 441, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3729, 442, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3730, 442, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3731, 442, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3732, 442, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3733, 442, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3734, 442, 2149, '74837557', 'ZIPMAN CAPS', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3735, 442, 1430, 'PR-143', 'SOLAK MIXTURE(25)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3736, 442, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3737, 442, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3738, 442, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3739, 442, 2009, '50158911', 'DETTOL ANTISEPTIC 250ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3740, 442, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3741, 442, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3742, 442, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3743, 442, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3744, 442, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', 'standard', NULL, '39.0000', '39.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '39.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3745, 442, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3746, 442, 1300, 'PR-13', 'ARTIBASE FORTE 80/4801X6', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3747, 442, 1733, 'PR-446', 'ENAFIX TABS 200MG 10\'', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3748, 442, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3749, 442, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3750, 442, 2411, '13740723', 'GEBEDOL FORTE TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3751, 442, 2359, '66115662', 'LOSAR-DENK 50MG TAB', 'standard', NULL, '21.5000', '21.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.5000', '', '21.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3752, 442, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3753, 442, 1609, '8904107900893', 'MYCOLEX CREAM 20G', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3754, 442, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3755, 442, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3756, 442, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0700', '', '0.6900', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3757, 442, 2644, '46646498', 'COMFORT SOFTNER B/S', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '60.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3758, 442, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3759, 442, 2679, '42097030', 'PEVISONE CREAM', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3760, 442, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3761, 442, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3762, 442, 2465, '13163480', 'CORORANGE SYR', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3763, 442, 1810, 'PR-523', 'VISCOF EXPECTORANT', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3764, 442, 2665, '94928957', 'FLEMING 625MG', 'standard', NULL, '32.0000', '32.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3765, 442, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3766, 442, 2702, '69900073', 'EXCLEAR NASAL DROPS', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3767, 442, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3768, 442, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3769, 442, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3770, 442, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '30.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3771, 442, 2601, '14487985', 'ULTRA SLIM HERBAL TEA', 'standard', NULL, '25.0000', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '25.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3772, 442, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3773, 442, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3774, 442, 2557, '86393917', 'METOCLOPRAMIDE', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3775, 442, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3776, 442, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '2.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3777, 442, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3778, 443, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3779, 443, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3780, 443, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3781, 443, 2251, '8901138500573', 'BONNISAN SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3782, 443, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3783, 443, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3784, 443, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.3000', '', '1.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3785, 443, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', 'standard', NULL, '16.5000', '16.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3786, 443, 2405, '40815002', 'GLOVES', 'standard', NULL, '1.6000', '1.6000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.8000', '', '1.6000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3787, 443, 1703, 'PR-416', 'VIGORIX SYR 200ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3788, 443, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3789, 443, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3790, 443, 1575, '5017007043294', 'LOSARTAN POTASSIUM 50MG (TEVA)', 'standard', NULL, '14.0000', '14.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '14.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3791, 443, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3792, 443, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3793, 443, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3794, 444, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '1.0000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3795, 445, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3796, 445, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3797, 445, 1377, '5000158062139', 'BONJELA ADULT', 'standard', NULL, '47.0000', '47.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3798, 445, 1702, '8906045432580', 'BONAPLEX SYR 200ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3799, 445, 2543, '89430673', 'SECURE CONTRACEPTIVE', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3800, 445, 2701, '89135402', 'GAVISCON DOUBLE ACTION LIQ', 'standard', NULL, '42.0000', '42.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3801, 445, 1416, 'PR-129', 'LUCKY MIXTURE', 'standard', NULL, '13.0000', '13.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3802, 445, 2484, '00708902', 'PUMPKIN SEED', 'standard', NULL, '20.0000', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '20.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3803, 445, 1464, '9502930974921', 'SENSONDYN ORIGINAL 75ML', 'standard', NULL, '17.5000', '17.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3804, 445, 2683, '54509632', 'ZINNAT 250 MG', 'standard', NULL, '64.0000', '64.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '64.0000', '', '64.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3805, 445, 2702, '69900073', 'EXCLEAR NASAL DROPS', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3806, 445, 2602, '86780065', 'CLOVES ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3807, 445, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3808, 445, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', 'standard', NULL, '24.0000', '24.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3809, 445, 2492, '51417644', 'NIZORAL SHAMPOO', 'standard', NULL, '30.0000', '30.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3810, 445, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.2000', '1.2000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.2000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3811, 445, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', 'standard', NULL, '6.5000', '6.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3812, 445, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', 'standard', NULL, '33.0000', '33.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3813, 445, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3814, 445, 1631, '8850769012651', 'ENAT 4001U CAPS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3815, 445, 1687, 'PR-400', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3816, 445, 2541, '39996904', 'DEMACOT CREAM', 'standard', NULL, '14.5000', '14.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3817, 445, 2263, '6036000090417', 'LEVON 2', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3818, 445, 2612, '94895079', 'OMEGA OIL 50ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3819, 445, 1805, 'PR-518', 'SAMALIN ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3820, 445, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3821, 445, 2662, '78880294', 'LORNAT TAB', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3822, 445, 1384, 'PR-97', 'STARWIN MILK. 0 .M B/S', 'standard', NULL, '18.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3823, 445, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.2000', '', '0.6000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3824, 445, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3825, 445, 2252, '08741188', 'FLUREST TABS', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3826, 445, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3827, 445, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3828, 446, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3829, 446, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3830, 446, 1454, 'PR-167', 'Ancigel  O L033E001', 'standard', NULL, '13.0000', '13.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3831, 446, 1599, 'PR-312', 'RONZOLE 20MG CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3832, 446, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3833, 446, 2444, '73221630', 'SOFTCARE BABY WIPES', 'standard', NULL, '9.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3834, 446, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3835, 446, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3836, 446, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3837, 446, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3838, 446, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3839, 447, 1480, '5011501006519', 'DEEP FREEZE SPRAY', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3840, 447, 1478, '8906087940128', 'IMPRESSER CAPS', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3841, 447, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3842, 447, 1631, '8850769012651', 'ENAT 4001U CAPS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3843, 447, 1814, 'PR-527', 'VASELINE DRY SKIN 400ML', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3844, 447, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3845, 447, 1695, '8908002671971', 'APETAMIN SYR', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3846, 447, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '39.0000', '39.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '39.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3847, 447, 2697, '72051764', 'BAY LEAVES', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3848, 447, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', 'standard', NULL, '2.2000', '2.2000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '2.2000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3849, 447, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3850, 447, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3851, 447, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3852, 447, 2071, '20773440', 'GRISEOFULVIN', 'standard', NULL, '6.5000', '6.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '6.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3853, 447, 1511, '5413895053528', 'TEARS NATURAL 11', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3854, 447, 1401, 'PR-114', 'EKURO BEWU', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3855, 448, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3856, 448, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3857, 448, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3858, 449, 1480, '5011501006519', 'DEEP FREEZE SPRAY', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3859, 449, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3860, 449, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3861, 449, 1999, '6971044950313', 'YAZZ PAD', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3862, 449, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3863, 449, 2238, '5021265223350', 'PERFECTIL PLATINUM', 'standard', NULL, '51.0000', '51.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '204.0000', '', '51.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3864, 449, 2524, '8858854602732', 'XTREME TUMERIC SOAP', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3865, 449, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3866, 449, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3867, 449, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3868, 449, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '25.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3869, 449, 1525, '5000158063907', 'LEMSIP SACHETS 5\'S', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3870, 449, 2565, '45244498', 'VERNA WATER MEDIUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3871, 449, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3872, 449, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3873, 449, 2557, '86393917', 'METOCLOPRAMIDE', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3874, 449, 2706, '44071026', 'GASTRONE SYRUP 200ML', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3875, 449, 1599, 'PR-312', 'RONZOLE 20MG CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3876, 449, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3877, 449, 2514, '98091900', 'TOMBROWN 500G', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3878, 450, 2560, '27717765', 'HONEY 250G (GIFT OF NATURE)', 'standard', NULL, '21.0000', '21.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3879, 450, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3880, 450, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3881, 450, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3882, 450, 2679, '42097030', 'PEVISONE CREAM', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3883, 450, 1543, '4031571066740', 'CLOTRI DENK CREAM', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3884, 450, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3885, 450, 1381, 'PR-94', '10 GOLDY FORTE OS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3886, 450, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3887, 450, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3888, 450, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3889, 450, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3890, 450, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.3000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3891, 450, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3892, 450, 2385, '52921', 'BECOATIN TABS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3893, 450, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3894, 450, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3895, 450, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3896, 450, 2544, '85585070', 'NEXCOFER SYR L/S', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3897, 450, 2281, '087450449108', 'TYLENOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3898, 450, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3899, 450, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3900, 450, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3901, 450, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3902, 451, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3903, 451, 2463, '22321274', 'ADVIL COMBO 50\'S', 'standard', NULL, '4.0000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3904, 451, 1426, '6034600108426', 'ROOTER LIFE', 'standard', NULL, '47.5000', '47.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '95.0000', '', '47.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3905, 451, 2465, '13163480', 'CORORANGE SYR', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3906, 451, 2512, '57681465', 'HONEY  500ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3907, 451, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3908, 451, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3909, 451, 1507, '002', 'SEFLOX EYE/EAR DROP', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3910, 451, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3911, 451, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '6.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3912, 451, 2565, '45244498', 'VERNA WATER MEDIUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3913, 451, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3914, 451, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3915, 452, 1662, '3400970000913', 'IDEOS ~', 'standard', NULL, '66.0000', '66.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '66.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3916, 452, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3917, 452, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3918, 452, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3919, 452, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '0.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3920, 453, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3921, 454, 1650, 'PR-363', 'ZUBES EXTRA', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3922, 454, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3923, 454, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3924, 455, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3925, 455, 1577, 'PR-290', 'MALIN LOZ', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3926, 455, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3927, 455, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3928, 455, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3929, 455, 1751, 'PR-464', 'METRO-Z TABS 20', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3930, 455, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '0.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3931, 455, 1306, 'PR-19', 'DOMI 10: TAB', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3932, 455, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3933, 455, 2478, '10567518', 'MUSTARD SEED', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3934, 455, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3935, 455, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3936, 455, 2314, '30357751', 'ARTIBASE SUSP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3937, 455, 2095, '83888513', 'LETAMOL ELIXIR 125ML  LETAP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3938, 455, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3939, 455, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3940, 455, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3941, 455, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3942, 455, 2283, '8906009232225', 'LOFNAC TAB 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3943, 455, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3944, 455, 1301, 'PR-14', 'BASE COLD 1X6X10', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3945, 455, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '3.8000', '3.8000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '3.8000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3946, 455, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3947, 455, 2482, '83427820', 'FENUGREEK SEED', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3948, 455, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3949, 455, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3950, 455, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3951, 455, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3952, 455, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3953, 455, 2071, '20773440', 'GRISEOFULVIN', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3954, 455, 1356, '5021265221608', 'CARDIOACE CAPS', 'standard', NULL, '68.5000', '68.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '68.5000', '', '68.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3955, 455, 2091, '11166394', 'CA-C 1000 SANDOZ', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3956, 455, 1636, '4031571069116', 'VIT-B DENK', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3957, 455, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3958, 455, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3959, 455, 2254, '8901040258036', 'BIOFERON SYRUP', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3960, 455, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3961, 455, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3962, 455, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3963, 455, 1687, 'PR-400', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3964, 455, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3965, 455, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', 'standard', NULL, '17.0000', '17.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '17.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3966, 455, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3967, 455, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3968, 455, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3969, 455, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3970, 455, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3971, 456, 2648, '61024738', 'COLGATE FOR KIDS', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3972, 456, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3973, 457, 2537, '32182788', 'HARD COLLAR NECK', 'standard', NULL, '105.0000', '105.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '105.0000', '', '105.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3974, 458, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3975, 458, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3976, 458, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3977, 458, 2232, '25430404', 'AMOKISKLAV 1000MG', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3978, 458, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', 'standard', NULL, '3.7000', '3.7000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.7000', '', '3.7000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3979, 458, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', 'standard', NULL, '3.7000', '3.7000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.4000', '', '3.7000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3980, 458, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3981, 458, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3982, 458, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3983, 458, 2410, '22266640', 'CARTEF SUSP 60ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3984, 458, 2096, '90371186', 'LETAVIT SYRUP 125ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3985, 458, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3986, 458, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3987, 458, 2603, '17379642', 'VITAGO', 'standard', NULL, '1.3000', '1.3000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3000', '', '1.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3988, 458, 1857, '6033000270320', 'BX SYR S/S', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3989, 458, 1857, '6033000270320', 'BX SYR S/S', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3990, 458, 2072, '41512770', 'ZINVITE CAPS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3991, 458, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '6.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3992, 458, 2359, '66115662', 'LOSAR-DENK 50MG TAB', 'standard', NULL, '21.5000', '21.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.5000', '', '21.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3993, 458, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3994, 459, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3995, 460, 1579, 'PR-292', 'LUFART SUSP', 'standard', NULL, '12.5000', '12.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '12.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3996, 461, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3997, 461, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3998, 461, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3999, 461, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4000, 461, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4001, 461, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4002, 461, 2557, '86393917', 'METOCLOPRAMIDE', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4003, 461, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4004, 461, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4005, 461, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4006, 461, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4007, 461, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '102.0000', '', '34.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4008, 461, 2548, '54581009', 'ZINCOVIT DROP', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4009, 461, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4010, 461, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4011, 461, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4012, 461, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4013, 461, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4014, 461, 2089, '39725135', 'POLYGEL SUSP 200ML', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4015, 461, 1599, 'PR-312', 'RONZOLE 20MG CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4016, 461, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4017, 461, 1530, '4031571064159', 'METFORMIN DENK 1G', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4018, 461, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4019, 461, 2253, '6221045010159', 'ACTIFED TAB', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4020, 461, 2028, '5137136225122', 'JRA CREAM BIG 220G', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4021, 461, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4022, 461, 2710, '09217360', 'AUGMENTIN SUSP 457MG', 'standard', NULL, '53.0000', '53.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '53.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4023, 461, 2266, '8906046070682', 'KIDIVITE SYR L/S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4024, 461, 2123, '842379108860', 'MOUTH WASH SOLIMO', 'standard', NULL, '45.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4025, 462, 1844, 'PR-557', 'LETAP AMPICLOX', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4026, 462, 2565, '45244498', 'VERNA WATER MEDIUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4027, 462, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4028, 462, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4029, 462, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4030, 462, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', 'standard', NULL, '2.5000', '2.5000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.5000', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4031, 462, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4032, 462, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4033, 462, 2408, '5011501009398', 'DEEP HEAT OINT 15G', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4034, 462, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4035, 462, 1351, '4084500846579', 'PEPTO BISMOL 240ML', 'standard', NULL, '46.0000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4036, 462, 2027, '60018915', 'VASELINE CREAM SMALL 100ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4037, 462, 1981, '6186000077168', 'EVERSHEEN CREAM BIG', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4038, 462, 1982, '6186000077267', 'EVERSHEEN CREAM SMALL', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4039, 462, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4040, 462, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4041, 462, 1464, '9502930974921', 'SENSONDYN ORIGINAL 75ML', 'standard', NULL, '17.5000', '17.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '17.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4042, 462, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '1.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4043, 463, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4044, 463, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4045, 463, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4046, 463, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4047, 463, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4048, 464, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4049, 464, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4050, 464, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4051, 464, 2683, '54509632', 'ZINNAT 250 MG', 'standard', NULL, '64.0000', '64.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '64.0000', '', '64.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4052, 464, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4053, 464, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4054, 464, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4055, 464, 2708, '5012616291791', 'PHILIPS MILK OF MAGNESIA', 'standard', NULL, '45.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4056, 464, 1599, 'PR-312', 'RONZOLE 20MG CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4057, 464, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4058, 464, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '4.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4059, 464, 2618, '72760937', 'BUSCOMED TAB 10MG', 'standard', NULL, '5.5000', '5.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '5.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4060, 464, 2021, '96101102', 'LEMONVATE', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4061, 464, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4062, 464, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4063, 464, 1630, 'PR-343', 'GEN-M TAB 80/480', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4064, 464, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4065, 464, 1702, '8906045432580', 'BONAPLEX SYR 200ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4066, 464, 1350, '4084500846548', 'PEPTOBISMOL S/S 120ML', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '40.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4067, 465, 1316, 'PR-29', 'FAMACOLD SYR', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4068, 465, 2703, '05760199', 'ASCOVIT CEE SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4069, 465, 1637, '4031571068959', 'DICLO DENK 100MG TAB', 'standard', NULL, '13.5000', '13.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4070, 465, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4071, 465, 1416, 'PR-129', 'LUCKY MIXTURE', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4072, 465, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4073, 465, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4074, 465, 1682, 'PR-395', 'SENAFEN TAB 100\'', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4075, 465, 2678, '32692312', 'NAPROSYN EC 500MG UK', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4076, 465, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', 'standard', NULL, '3.0000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4077, 465, 1486, '5010441000687', 'HYDROCORTISONE CREAM', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4078, 465, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.2000', '1.2000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.2000', '', '1.2000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4079, 465, 2132, '4005900579614', 'NIVEA BODY LOTION 400ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4080, 465, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4081, 465, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4082, 465, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4083, 465, 1908, 'PR-621', 'Magacid tablet', 'standard', NULL, '1.0000', '1.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4084, 466, 1644, '3574661091075', 'BENYLIN INFANT SYR', 'standard', NULL, '44.0000', '44.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '44.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4085, 466, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4086, 466, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4087, 466, 1464, '9502930974921', 'SENSONDYN ORIGINAL 75ML', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4088, 467, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4089, 467, 2491, '57627875', 'BELLS VITAMIN C', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4090, 467, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4091, 467, 1706, 'PR-419', 'PROCOLD SYR 100ml', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4092, 467, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4093, 467, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4094, 467, 1900, 'PR-613', 'Cefruate 500', 'standard', NULL, '3.3000', '3.3000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '3.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4095, 467, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4096, 467, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4097, 467, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4098, 467, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4099, 467, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4100, 467, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4101, 467, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4102, 467, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4103, 467, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4104, 467, 1521, 'PR-234', 'PAINGAYCAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4105, 467, 2444, '73221630', 'SOFTCARE BABY WIPES', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4106, 467, 1329, 'PR-42', 'ZINC OXIDE PLASTER ROLL 41CHS', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4107, 467, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4108, 467, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4109, 467, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4110, 467, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4111, 467, 2615, '04025050', 'COOL EYES DROP', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4112, 467, 1306, 'PR-19', 'DOMI 10: TAB', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4113, 467, 2228, '7501058625915', 'LACTOGEN  1', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4114, 467, 1880, 'PR-593', 'AMOXY SUSP (LUEX)', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4115, 467, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4116, 467, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4117, 467, 2635, '2208744', 'PLASTER ROLL S/S', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4118, 467, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4119, 468, 2238, '5021265223350', 'PERFECTIL PLATINUM', 'standard', NULL, '51.0000', '51.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '51.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4120, 469, 2689, '852474360018', 'OLIVE OIL BODY WASH SHOWER GEL', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4121, 470, 2095, '83888513', 'LETAMOL ELIXIR 125ML  LETAP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4122, 471, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4123, 472, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4124, 472, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4125, 472, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4126, 472, 1701, 'PR-414', 'HEPTOPEP SYR', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4127, 472, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4128, 472, 2132, '4005900579614', 'NIVEA BODY LOTION 400ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4129, 472, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4130, 472, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4131, 472, 1999, '6971044950313', 'YAZZ PAD', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4132, 472, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4133, 472, 2455, '07137762', 'AMITRIPTYLINE 25MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4134, 472, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4135, 472, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4136, 472, 2622, '79117239', 'COMBANTRIN', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4137, 472, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4138, 472, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.8000', '', '0.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4139, 472, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '0.8000', '0.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.6000', '', '0.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4140, 472, 2659, '48350053', 'LACTULOSE SOLUTION 300ML', 'standard', NULL, '33.5000', '33.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.5000', '', '33.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4141, 472, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4142, 472, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4143, 472, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4144, 472, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4145, 472, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4146, 472, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.3000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4147, 472, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4148, 472, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4149, 472, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '3.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4150, 472, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4151, 472, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '1.3000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4152, 472, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4153, 472, 2460, '07910647', 'EVECARE TAB', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4154, 472, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4155, 473, 2050, '6181100329155', 'BIOSKIN CREAM SMALL', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4156, 473, 2034, '4800888199188', 'REXONA ROLL ON 50ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4157, 474, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '11.5000', '11.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '11.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4158, 474, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4159, 474, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4160, 474, 2163, '94064304', 'IMAX DELAY SPRAY', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4161, 474, 2396, '57591599', 'LUCKY KOO MIX', 'standard', NULL, '15.0000', '15.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '15.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4162, 474, 2642, '23201636', 'SOFTCARE DIAPER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4163, 474, 2444, '73221630', 'SOFTCARE BABY WIPES', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4164, 474, 1382, 'PR-95', 'ZULU EXTRA', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4165, 474, 2003, '6033000102584', 'ROBB JAR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4166, 474, 2622, '79117239', 'COMBANTRIN', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4167, 474, 2604, '43079266', 'COA MIXTURE', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '120.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4168, 474, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4169, 474, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4170, 474, 2253, '6221045010159', 'ACTIFED TAB', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4171, 474, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4172, 474, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4173, 474, 1657, '5013548102087', 'MEDICATED CHARCOAL', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4174, 474, 1579, 'PR-292', 'LUFART SUSP', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4175, 474, 1866, 'PR-579', 'CETAPOL PM 120/12.5MG/5ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4176, 474, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4177, 475, 2519, '61714252', 'COLESTOP 20MG', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4178, 476, 2358, '32893309', 'LOSAR-DENK 100MG', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4179, 477, 2695, '26196799', 'ANAFRANIL TAB', 'standard', NULL, '2.7000', '2.7000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.4000', '', '2.7000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4180, 477, 1610, '8904107900909', 'MYCOLEX-3 CREAM', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4181, 477, 1694, 'PR-407', 'LEENASYR', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4182, 477, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4183, 477, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '0.5000', NULL, 1, 'pc', '9.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4184, 477, 2612, '94895079', 'OMEGA OIL 50ML', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4185, 477, 2296, '48633360', 'DREZ SOLUTION B/S', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4186, 477, 2545, '82780299', 'DREZ POWDER 10G', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4187, 477, 2381, '72472860', 'ENACEF SUSP', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4188, 477, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4189, 477, 2433, '5060033370049', 'PRE MUM BREAST PAD', 'standard', NULL, '1.0000', '1.0000', '80.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '1.0000', NULL, 1, 'pc', '80.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4190, 477, 2548, '54581009', 'ZINCOVIT DROP', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4191, 477, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4192, 477, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4193, 477, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4194, 477, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4195, 477, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4196, 477, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4197, 477, 1682, 'PR-395', 'SENAFEN TAB 100\'', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4198, 477, 1922, '8904185507342', 'Blopen gel BG-138', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4199, 477, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4200, 477, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4201, 477, 1708, 'PR-421', 'MEDGLOBIN SYR', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4202, 477, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4203, 477, 2345, '37407616', 'PONSTAN CAPS 250MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4204, 478, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4205, 478, 1922, '8904185507342', 'Blopen gel BG-138', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4206, 478, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4207, 478, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4208, 478, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4209, 478, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4210, 478, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4211, 478, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4212, 478, 1908, 'PR-621', 'Magacid tablet', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4213, 478, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '60.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4214, 478, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4215, 478, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3800', '', '0.6900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4216, 479, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4217, 479, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4218, 479, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '9.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '1.0000', NULL, 1, 'pc', '9.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4219, 479, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4220, 479, 2331, '22131552', 'IMODIYM CAPS 2MG 6\'S', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4221, 479, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4222, 479, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '18.5000', '18.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4223, 479, 2636, '86196755', 'KIDIMIN SYR', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4224, 479, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4225, 479, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', 'standard', NULL, '15.5000', '15.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4226, 479, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4227, 479, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4228, 479, 1622, '5021265223602', 'WELLWOMAN 50+ CAPS', 'standard', NULL, '43.5000', '43.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '43.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4229, 479, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4230, 479, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4231, 479, 1577, 'PR-290', 'MALIN LOZ', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4232, 479, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4233, 479, 2001, '012', 'BELLS OLIVE OIL 70ML', 'standard', NULL, '4.0000', '4.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4234, 479, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4235, 479, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 'standard', NULL, '4.0000', '4.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4236, 479, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4237, 479, 1925, 'PR-638', 'Tobins Cod oil T32003', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4238, 479, 1430, 'PR-143', 'SOLAK MIXTURE(25)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4239, 479, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4240, 479, 2512, '57681465', 'HONEY  500ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4241, 479, 2485, '40177526', 'GOLDEN RAISEN', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4242, 479, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4243, 479, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4244, 480, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4245, 480, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4246, 480, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4247, 480, 2277, '71311341', 'ZUBES TABLETS ', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4248, 480, 1426, '6034600108426', 'ROOTER LIFE', 'standard', NULL, '47.5000', '47.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '47.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4249, 480, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4250, 480, 2520, '20687050', 'CAMEL LIQUID ANTISEPTIC 500ML', 'standard', NULL, '25.0000', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '25.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4251, 480, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4252, 480, 2640, '08457216', 'GLUCO NAF D (DANNEX)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4253, 480, 2124, '079896174812', 'QUEEN HELENE COCOA BUTTER LOTION', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '40.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4254, 480, 2567, '83596243', 'NAN 1', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4255, 480, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4256, 480, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4257, 480, 1992, '6033000171719', 'KLEANZ SANITIZER 100ML', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4258, 480, 1401, 'PR-114', 'EKURO BEWU', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4259, 480, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4260, 480, 2334, '99769153', 'CROMAX-2 EYE DROP', 'standard', NULL, '21.0000', '21.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4261, 480, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4262, 480, 1557, 'PR-270', 'SE CLEAR EYE DROP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4263, 480, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4264, 480, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4265, 480, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4266, 480, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4267, 480, 1992, '6033000171719', 'KLEANZ SANITIZER 100ML', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4268, 480, 2168, '8901082004356', 'APTIZOOOM', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4269, 480, 2713, '06467625', 'MENTOS ICE GUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4270, 480, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4271, 480, 2387, '00790319', 'NORMAL TEARS EYE DROP', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4272, 480, 1645, 'PR-358', 'AMCOF ADULT SYRUP', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4273, 480, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4274, 480, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4275, 480, 1377, '5000158062139', 'BONJELA ADULT', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4276, 481, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4277, 482, 2473, '12094351', 'RIGHT GUARD SPRAY', 'standard', NULL, '15.0000', '15.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '15.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4278, 482, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4279, 482, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4280, 482, 2525, '8850722212760', 'GOATMILK SOAP', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4281, 482, 2059, '5050796002899', 'HEAVEN SCENT BOBY CREAM 500ML', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4282, 482, 1332, 'PR-45', 'ZINC OXIDE PLATER ROLL 31CH', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4283, 482, 2296, '48633360', 'DREZ SOLUTION B/S', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4284, 482, 2099, '36936180', 'LETARON SYRUP 200ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4285, 482, 2314, '30357751', 'ARTIBASE SUSP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4286, 482, 1616, 'PR-329', 'GACET SUPP 250MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4287, 482, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4288, 482, 2217, '8964000734650', 'BLACKSEED OIL 40ML', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4289, 482, 2247, '29226629', 'TRISILICATE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4290, 482, 1430, 'PR-143', 'SOLAK MIXTURE(25)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4291, 482, 2484, '00708902', 'PUMPKIN SEED', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4292, 482, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4293, 482, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4294, 482, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4295, 482, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4296, 482, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4297, 482, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4298, 482, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4299, 483, 2232, '25430404', 'AMOKISKLAV 1000MG', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4300, 483, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4301, 483, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4302, 483, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4303, 484, 1935, '8906046130058', 'SOOTHING STROBIN  L02 s/s ', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4304, 485, 1893, 'PR-606', 'Metrokin Sups', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4305, 485, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4306, 485, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4307, 485, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4308, 485, 2334, '99769153', 'CROMAX-2 EYE DROP', 'standard', NULL, '21.0000', '21.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4309, 485, 1557, 'PR-270', 'SE CLEAR EYE DROP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4310, 485, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4311, 485, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4312, 485, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4313, 485, 2228, '7501058625915', 'LACTOGEN  1', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4314, 485, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '1.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4315, 485, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4316, 485, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4317, 485, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4318, 485, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4319, 485, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4320, 485, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4321, 485, 2304, '90589903', 'PARA-DENK SUPP 250MG', 'standard', NULL, '2.0000', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4322, 485, 2350, '58123990', 'COARTEM 6\'S', 'standard', NULL, '13.5000', '13.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4323, 485, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4324, 485, 2304, '90589903', 'PARA-DENK SUPP 250MG', 'standard', NULL, '2.0000', '2.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '2.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4325, 485, 1314, 'PR-27', 'WORMBASE SUSP', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4326, 485, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4327, 486, 2273, '04120489', 'RHIZIN SYRP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4328, 487, 2763, '91369587', 'FLAXSEED', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4329, 487, 1616, 'PR-329', 'GACET SUPP 250MG', 'standard', 0, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4330, 488, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4331, 488, 1388, 'PR-101', 'ADOM KOKO SYP(20)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4332, 488, 2633, '36871243', 'GANA BALM', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4333, 488, 1645, 'PR-358', 'AMCOF ADULT SYRUP', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4334, 488, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4335, 488, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4336, 488, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4337, 488, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4338, 488, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', 'standard', NULL, '3.4000', '3.4000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '3.4000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4339, 488, 2263, '6036000090417', 'LEVON 2', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4340, 488, 1643, '6001135505433', 'BENYLIN ORIGINAL', 'standard', NULL, '53.0000', '53.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '53.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4341, 488, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4342, 488, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4343, 488, 2732, '47378626', 'KY JELLY 50ML', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '40.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4344, 488, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '10.0000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '10.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4345, 488, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4346, 488, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4347, 488, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4348, 488, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4349, 488, 1706, 'PR-419', 'PROCOLD SYR 100ml', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4350, 488, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4351, 488, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4352, 488, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4353, 488, 1586, '5012616173004', 'ABIDEC DROP', 'standard', NULL, '65.0000', '65.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '65.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4354, 488, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', 'standard', NULL, '37.0000', '37.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '37.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4355, 488, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4356, 488, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4357, 488, 1534, 'PR-247', 'PINEK 20MG TAB', 'standard', NULL, '1.3000', '1.3000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.2000', '', '1.3000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4358, 488, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4359, 488, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4360, 489, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4361, 489, 1668, '8906016831572', 'Acidom Caps', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4362, 489, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4363, 489, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4364, 489, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4365, 489, 2430, '6926597271255', 'JOZZY KIDS TOOTHPASTE&BRUSH', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4366, 489, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4367, 489, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4368, 490, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4369, 490, 1843, '5000456024754', 'NEXIUM TABS 20MG 14S', 'standard', NULL, '5.6000', '5.6000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.2000', '', '5.6000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4370, 490, 2443, '42430092', 'SOFTCARE SANITRY PAD', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4371, 490, 1917, 'PR-630', 'ASPANOL JUNIOR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4372, 490, 1316, 'PR-29', 'FAMACOLD SYR', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4373, 490, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4374, 490, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4375, 490, 2549, '07128035', 'GILLETTE RAZOR', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4376, 490, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4377, 490, 1394, 'PR-107', 'AGBEVE TONIC(30)', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4378, 490, 1393, 'PR-106', 'AGBEVE PHEVER( 30)', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4379, 490, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4380, 490, 1318, '5017848248049', 'MENTHOX SYR ADULT', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4381, 490, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '3.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4382, 490, 1374, 'PR-87', 'TEGRETOL CR 400MG', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4383, 490, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '46.0000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4384, 490, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4385, 490, 1542, '8902502108920', 'INFAV OINT', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4386, 490, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4387, 490, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4388, 490, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4389, 490, 2565, '45244498', 'VERNA WATER MEDIUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4390, 490, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4391, 490, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '15.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4392, 490, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.8000', '', '0.6000', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4393, 490, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4394, 490, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4395, 490, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4396, 490, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4397, 490, 2523, '89430832', 'CAMEL SOAP', 'standard', NULL, '6.5000', '6.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '6.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4398, 490, 2524, '8858854602732', 'XTREME TUMERIC SOAP', 'standard', NULL, '15.0000', '15.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '15.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4399, 490, 2520, '20687050', 'CAMEL LIQUID ANTISEPTIC 500ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4400, 490, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4401, 490, 2441, '82095661', 'COLGATE HERBAL TOOTHPASTE', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4402, 490, 2610, '70419862', 'APPLE CIDER VINEGER S/S 473ML', 'standard', NULL, '52.0000', '52.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '52.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4403, 490, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4404, 490, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4405, 490, 2483, '90693662', 'THYME LEAVES', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4406, 490, 2127, '047400671881', 'JOY RAZAR GIT SET', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4407, 490, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4408, 490, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4409, 490, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4410, 491, 2475, '88463350', 'PEPSODENT CHARCOAL TOOTHPASTE', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4411, 491, 2391, '12827991', 'ENAMYCIN TAB', 'standard', NULL, '3.5000', '3.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '3.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4412, 491, 2249, '22244269', 'EXPECT SEED', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4413, 491, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '3.0000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4414, 491, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4415, 492, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '46.0000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4416, 492, 1541, '8902502106421', 'INFA V PESS', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4417, 493, 1668, '8906016831572', 'Acidom Caps', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4418, 494, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4419, 494, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4420, 494, 2676, '39826217', 'ONE TOUCH SELECT PLUS STRIP', 'standard', NULL, '3.0000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '3.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4421, 494, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4422, 494, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4423, 494, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4424, 494, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4425, 494, 1953, '56415263', 'STAGYL TABS', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4426, 494, 1520, 'PR-233', 'DICLOLEX 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4427, 494, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', 'standard', NULL, '2.5000', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '2.5000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4428, 494, 2618, '72760937', 'BUSCOMED TAB 10MG', 'standard', NULL, '5.5000', '5.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '5.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4429, 494, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4430, 494, 1419, '5024389122233', 'MIGHTY POWER SYS LS', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4431, 494, 1941, 'PR-654', 'Genti Gds11369', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4432, 494, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4433, 494, 2545, '82780299', 'DREZ POWDER 10G', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4434, 494, 1550, '18904083810480', 'GYNOMYCOLEX PESS', 'standard', NULL, '18.3500', '18.3500', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.3500', '', '18.3500', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4435, 494, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4436, 494, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4437, 494, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4438, 495, 2331, '22131552', 'IMODIYM CAPS 2MG 6\'S', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4439, 495, 2254, '8901040258036', 'BIOFERON SYRUP', 'standard', NULL, '24.0000', '24.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '24.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4440, 495, 2163, '94064304', 'IMAX DELAY SPRAY', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4441, 495, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4442, 495, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4443, 495, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4444, 495, 2726, '79072570', 'SANA NASAL DROP 10ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4445, 495, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4446, 495, 2345, '37407616', 'PONSTAN CAPS 250MG', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4447, 495, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4448, 495, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4449, 495, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4450, 495, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4451, 496, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4452, 496, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0700', '', '0.6900', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4453, 496, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4454, 496, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4455, 496, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4456, 496, 1780, '5021265220076', 'FEROGLOBIN CAPS', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4457, 496, 1824, '8901315201910', 'TAGERA FORTE TABS', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4458, 496, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4459, 496, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4460, 496, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4461, 496, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4462, 496, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4463, 496, 1300, 'PR-13', 'ARTIBASE FORTE 80/4801X6', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4464, 496, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4465, 496, 1497, 'PR-210', 'JARIFAN 2 CAPS', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4466, 496, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4467, 496, 2713, '06467625', 'MENTOS ICE GUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4468, 496, 1712, 'PR-425', 'ATORVASTATIN 20MG TAB', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4469, 496, 2106, '26940098', 'XPEL SUSPENSION 20ML', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4470, 497, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4471, 497, 1810, 'PR-523', 'VISCOF EXPECTORANT', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4472, 497, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4473, 497, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4474, 497, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4475, 497, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4476, 497, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4477, 497, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4478, 497, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4479, 497, 2138, '2890607011007', 'CARVEDILOL 12.5MG', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4480, 497, 2423, '57283790', 'POWERZONE S/S', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4481, 497, 2662, '78880294', 'LONART TAB', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4482, 497, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4483, 497, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4484, 497, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4485, 497, 2021, '96101102', 'LEMONVATE', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4486, 497, 2049, '6181100329162', 'BIOSKIN CREAM  MEDIUM', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4487, 497, 2703, '05760199', 'ASCOVIT CEE SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4488, 497, 1967, '5023497400615', 'SALAMOL CFC INHALER', 'standard', NULL, '26.0000', '26.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '26.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4489, 497, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4490, 497, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4491, 497, 2619, '34146625', 'XARELTO 20MG', 'standard', NULL, '41.5000', '41.5000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '290.5000', '', '41.5000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4492, 497, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4493, 497, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4494, 497, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4495, 497, 2713, '06467625', 'MENTOS ICE GUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4496, 497, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4497, 497, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4498, 497, 1654, '8904091117703', 'RELCER GEL', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4499, 497, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4500, 497, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4501, 497, 2713, '06467625', 'MENTOS ICE GUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4502, 498, 2786, '030768037208', 'FISH OIL (SUNDOWN)', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '80.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4503, 499, 1593, 'PR-306', 'LYRICA 75MG', 'standard', NULL, '8.7000', '8.7000', '28.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '243.6000', '', '8.7000', NULL, 1, 'pc', '28.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4504, 499, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4505, 499, 2713, '06467625', 'MENTOS ICE GUM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4506, 499, 2642, '23201636', 'SOFTCARE DIAPER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4507, 500, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4508, 500, 2642, '23201636', 'SOFTCARE DIAPER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4509, 501, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4510, 502, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4511, 502, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4512, 502, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4513, 502, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4514, 502, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4515, 502, 1668, '8906016831572', 'Acidom Caps', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4516, 502, 2618, '72760937', 'BUSCOMED TAB 10MG', 'standard', NULL, '5.5000', '5.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '5.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4517, 502, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4518, 502, 1589, '8904008410118', 'GASTRACID SUSP (GR)', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4519, 502, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4520, 502, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4521, 502, 1684, '18906047544530', 'CLOPIDOGREL 75MG', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4522, 502, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4523, 502, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4524, 502, 2225, '6033000082985', 'CERELAC TIN WHEAT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4525, 502, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '4.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4526, 502, 2168, '8901082004356', 'APTIZOOOM', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4527, 502, 2281, '087450449108', 'TYLENOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '4.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4528, 502, 2557, '86393917', 'METOCLOPRAMIDE', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4529, 502, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4530, 502, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4531, 502, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '3.0000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4532, 502, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4533, 502, 1922, '8904185507342', 'Blopen gel BG-138', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4534, 502, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4535, 502, 1420, 'PR-133', 'NAZO', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4536, 503, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '0.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4537, 504, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4538, 504, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4539, 504, 1381, 'PR-94', ' GOLDY FORTE DS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4540, 504, 2619, '34146625', 'XARELTO 20MG', 'standard', NULL, '41.5000', '41.5000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '290.5000', '', '41.5000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4541, 504, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4542, 504, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4543, 505, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4544, 505, 2253, '6221045010159', 'ACTIFED TAB', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4545, 505, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4546, 505, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4547, 506, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4548, 506, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '3.5000', '3.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '3.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4549, 506, 1318, '5017848248049', 'MENTHOX SYR ADULT', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4550, 506, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4551, 506, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4552, 506, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4553, 506, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4554, 506, 1695, '8908002671971', 'APETAMIN SYR', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4555, 506, 1781, 'PR-494', 'CAPS POLYFER', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4556, 506, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4557, 506, 2178, '8964000114308', 'CARROT OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4558, 506, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4559, 506, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4560, 506, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4561, 506, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4562, 506, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4563, 506, 2545, '82780299', 'DREZ POWDER 10G', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4564, 506, 2228, '7501058625915', 'LACTOGEN  1', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4565, 506, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4566, 506, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4567, 506, 1579, 'PR-292', 'LUFART SUSP', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4568, 506, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4569, 506, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4570, 507, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4571, 507, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4572, 507, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4573, 507, 1910, 'PR-623', 'Apc 10 x 10', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4574, 507, 2061, '96762855', 'ZYMAX CAPS 500MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4575, 507, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4576, 507, 1657, '5013548102087', 'MEDICATED CHARCOAL', 'standard', NULL, '0.6000', '0.6000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.4000', '', '0.6000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4577, 507, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4578, 507, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4579, 507, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4580, 507, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4581, 507, 2726, '79072570', 'SANA NASAL DROP 10ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4582, 507, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4583, 507, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4584, 507, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4585, 507, 1682, 'PR-395', 'SENAFEN TAB 100\'', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4586, 507, 1447, '8906081306418', 'Herbal Lofnac HLB001', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4587, 507, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4588, 507, 1610, '8904107900909', 'MYCOLEX-3 CREAM', 'standard', NULL, '21.0000', '21.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4589, 507, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4590, 507, 2168, '8901082004356', 'APTIZOOOM', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4591, 507, 2463, '22321274', 'ADVIL COMBO 50\'S', 'standard', NULL, '4.0000', '4.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '4.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4592, 507, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4593, 507, 2617, '33457681', 'NIFEDI-DENK 20MG', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4594, 507, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4595, 507, 1791, '8904107900992', 'LEXSPORIN POWDER 10G', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4596, 507, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4597, 507, 2571, '89677505', 'YAAKSON MIXTURE', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4598, 507, 2262, '69085595', 'LENOR CONTRACEPTIVE', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4599, 507, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4600, 507, 2544, '85585070', 'NEXCOFER SYR L/S', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4601, 507, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4602, 507, 1701, 'PR-414', 'HEPTOPEP SYR', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4603, 508, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 'standard', 0, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4604, 509, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4605, 509, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4606, 509, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '3.8000', '3.8000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '3.8000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4607, 509, 1363, '5000456022774', 'CRESTOR 5MG TABS', 'standard', NULL, '107.5000', '107.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '107.5000', '', '107.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4608, 509, 1385, 'PR-98', 'AZIS TABS. 500MG', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4609, 509, 1900, 'PR-613', 'Cefruate 500', 'standard', NULL, '3.3000', '3.3000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '3.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4610, 509, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4611, 509, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '1.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4612, 509, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4613, 509, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4614, 509, 2256, '41965129', 'ZINCOFER SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4615, 509, 1394, 'PR-107', 'AGBEVE TONIC(30)', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4616, 509, 1521, 'PR-234', 'PAINGAYCAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4617, 509, 2637, '30755055', 'KIDICARE SYR', 'standard', NULL, '13.5000', '13.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4618, 509, 1682, 'PR-395', 'SENAFEN TAB 100\'', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4619, 510, 2808, '5017007012498', 'LEVOFLOXACIN 500MG TEVA', 'standard', NULL, '51.0000', '51.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '51.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4620, 511, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4621, 511, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4622, 511, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4623, 512, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4624, 513, 2593, '8850769013252', 'GINSOMIN CAPS', 'standard', NULL, '19.0000', '19.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '19.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4625, 513, 1527, '8904159609416', 'PREGASAFE 75MG TAB', 'standard', NULL, '17.5000', '17.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '52.5000', '', '17.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4626, 513, 2388, '50008774', 'S/SEAS JOINTCARE SUPPLEX CAPS', 'standard', NULL, '70.0000', '70.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '70.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4627, 513, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4628, 513, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4629, 513, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4630, 513, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '46.0000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4631, 513, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '9.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4632, 513, 2142, '5021265223855', 'WELLBABY ', 'standard', NULL, '76.0000', '76.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '76.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4633, 513, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4634, 513, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4635, 513, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.8000', '', '0.6000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4636, 513, 2713, '06467625', 'MENTOS ICE GUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4637, 513, 2405, '40815002', 'GLOVES', 'standard', NULL, '1.6000', '1.6000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.8000', '', '1.6000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4638, 513, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4639, 513, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', 'standard', NULL, '3.4000', '3.4000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '3.4000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4640, 513, 2635, '2208744', 'PLASTER ROLL S/S', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4641, 513, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4642, 513, 1415, '6034000157055', 'LIVING BITTERS SYP S s', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4643, 513, 2572, '17160763', 'SWEDISH BITTERS', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4644, 513, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4645, 514, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4646, 514, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4647, 514, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4648, 514, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4649, 514, 1677, '8902546578543', 'LUEX BABY COUGH', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4650, 514, 1430, 'PR-143', 'SOLAK MIXTURE(25)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4651, 514, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4652, 514, 2650, '58359784', 'DICNAC 75 SR', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4653, 515, 1390, 'PR-103', '_ADUTW I MWAA BITTERS ( 2 5)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4654, 515, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '25.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '1.0000', NULL, 1, 'pc', '25.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4655, 515, 2622, '79117239', 'COMBANTRIN', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4656, 515, 2230, '8886472104437', 'SMA GOLD 1', 'standard', NULL, '46.0000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4657, 515, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6900', '', '0.6900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4658, 515, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4659, 515, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '1.8000', '1.8000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '1.8000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4660, 515, 2003, '6033000102584', 'ROBB JAR', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4661, 515, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', 'standard', NULL, '3.4000', '3.4000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '3.4000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4662, 515, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4663, 516, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4664, 516, 2680, '27326576', 'OLFEN GEL 20GM S/S', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4665, 516, 2058, '311917207889', 'VITAMIN B-12 FINEST NUTRITON', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '40.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4666, 516, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4667, 517, 1811, 'PR-524', 'VERMOX SUSP', 'standard', NULL, '19.0000', '19.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '19.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4668, 518, 1811, 'PR-524', 'VERMOX SUSP', 'standard', NULL, '19.0000', '19.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '57.0000', '', '19.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4669, 518, 1830, '6033000296481', 'SUNLIGHT PINK BAR 120G', 'standard', NULL, '3.5000', '3.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '3.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4670, 518, 2348, '70645774', 'LYNUX OINT', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4671, 519, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4672, 519, 2281, '087450449108', 'TYLENOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '4.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4673, 519, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4674, 519, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4688, 520, 2019, '6001159111641', 'BIO OIL SMALL60ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4689, 520, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4690, 520, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4691, 520, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4692, 520, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4693, 520, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4694, 520, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4695, 520, 2726, '79072570', 'SANA NASAL DROP 10ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4696, 520, 2649, '19814758', 'ZITHROMAX SUSP', 'standard', NULL, '94.0000', '94.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '94.0000', '', '94.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4697, 520, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4698, 520, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4699, 520, 2261, '2112345602905', 'TIGER SPRAY', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4700, 520, 2430, '6926597271255', 'JOZZY KIDS TOOTHPASTE&BRUSH', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4701, 521, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4702, 521, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4703, 521, 2253, '6221045010159', 'ACTIFED TAB', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4704, 521, 2622, '79117239', 'COMBANTRIN', 'standard', NULL, '25.0000', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '25.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4705, 521, 2589, '04036623', 'DEXTROSE SALINE DNS INFUSSION', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4706, 521, 2554, '14693543', 'DISPOSABLE INFUSION', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4707, 521, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', 'standard', NULL, '78.5000', '78.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '78.5000', '', '78.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4708, 521, 1643, '6001135505433', 'BENYLIN ORIGINAL', 'standard', NULL, '53.0000', '53.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '53.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4709, 521, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4710, 521, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4711, 521, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4712, 521, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4713, 521, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4714, 521, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4715, 521, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4716, 521, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', 'standard', NULL, '4.0000', '4.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '4.0000', NULL, 1, 'pc', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4717, 521, 2035, '616762001072', 'POWER HOUSE ROLL ON 50ML', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4718, 521, 2567, '83596243', 'NAN 1', 'standard', NULL, '36.0000', '36.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4719, 521, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4720, 521, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', 'standard', NULL, '8.0000', '8.0000', '16.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '128.0000', '', '8.0000', NULL, 1, 'pc', '16.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4721, 521, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4722, 522, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4723, 522, 2481, '40294439', 'FENNEL SEED', 'standard', NULL, '4.5000', '4.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4724, 522, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4725, 522, 2713, '06467625', 'MENTOS ICE GUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4726, 522, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4727, 522, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', 'standard', NULL, '17.5000', '17.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4728, 523, 2345, '37407616', 'PONSTAN CAPS 250MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4729, 524, 1630, 'PR-343', 'GEN-M TAB 80/480', 'standard', NULL, '22.5000', '22.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '22.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4730, 524, 2131, '4005900098238', 'NIVEA SPRAY 150ML', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4731, 524, 2497, '26571538', 'CALPOl 6+', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4732, 524, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '60.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4733, 524, 2656, '88370131', 'CHOCOLATE S/S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4734, 524, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4735, 524, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '5.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4736, 524, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '3.0000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4737, 524, 2649, '19814758', 'ZITHROMAX SUSP', 'standard', NULL, '94.0000', '94.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '94.0000', '', '94.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4738, 524, 2505, '28562016', 'ORELOX 100MG TABLETS', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '130.0000', '', '130.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4739, 524, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4740, 524, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4741, 524, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4742, 524, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4743, 524, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '3.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4744, 524, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4745, 524, 2463, '22321274', 'ADVIL COMBO 50\'S', 'standard', NULL, '4.0000', '4.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '4.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4746, 525, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4747, 525, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4748, 525, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4749, 525, 2622, '79117239', 'COMBANTRIN', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4750, 525, 2168, '8901082004356', 'APTIZOOOM', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4751, 525, 2679, '42097030', 'PEVISONE CREAM', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4752, 525, 2286, '91011834', 'FLUXAMOX CAPS 200', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4753, 525, 2288, '44100235', 'FLUXAMOX SUSP 100ML', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4754, 525, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4755, 525, 1690, '6001176457883', 'DUROL TONIC 200ML', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4756, 525, 1381, 'PR-94', ' GOLDY FORTE DS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4757, 525, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4758, 525, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4759, 525, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4760, 525, 2281, '087450449108', 'TYLENOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4761, 525, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4762, 525, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4763, 525, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4764, 525, 2566, '42135887', 'MILO TIN', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4765, 525, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4766, 526, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4767, 526, 2713, '06467625', 'MENTOS ICE GUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4768, 526, 2363, '25326446', 'WELLMAN DRINK', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4769, 527, 2810, '44204486', 'L MONTUS', 'standard', NULL, '2.9000', '2.9000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.9000', '', '2.9000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4770, 528, 2810, '44204486', 'L MONTUS', 'standard', NULL, '2.9000', '2.9000', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.1000', '', '2.9000', NULL, 1, 'pc', '9.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4771, 529, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4772, 529, 1579, 'PR-292', 'LUFART SUSP', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4773, 529, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4774, 529, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4775, 529, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4776, 529, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '3.8000', '3.8000', '22.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '83.6000', '', '3.8000', NULL, 1, 'pc', '22.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4777, 529, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4778, 529, 2633, '36871243', 'GANA BALM', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4779, 529, 2700, '11271279', 'GAVISCON PEPPERMINT 200ML LIQ', 'standard', NULL, '37.0000', '37.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '37.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4780, 529, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4781, 529, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4782, 529, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4783, 529, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4784, 529, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4785, 529, 2274, '55192131', 'STOPKOFF EXP CHN', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4786, 529, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4787, 529, 2713, '06467625', 'MENTOS ICE GUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4788, 529, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4789, 529, 2161, '58683972', 'GLYCERINE B/S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4790, 529, 1730, 'PR-443', 'DAKTACORT CREAM 15G', 'standard', NULL, '32.0000', '32.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '64.0000', '', '32.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4791, 529, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4792, 529, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4793, 529, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4794, 530, 2810, '44204486', 'L MONTUS', 'standard', NULL, '2.9000', '2.9000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '2.9000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4795, 531, 1426, '6034600108426', 'ROOTER LIFE', 'standard', NULL, '47.5000', '47.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '47.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4796, 531, 1433, 'PR-146', 'TIME HERBAL MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4797, 531, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4798, 531, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4799, 531, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4800, 531, 2641, '92213060', 'CONGESTYL SUSP', 'standard', NULL, '12.5000', '12.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '12.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4801, 531, 2811, '02080207', 'MERCY CREAM', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4802, 531, 1410, 'PR-123', 'JOY OINT S/S(200)', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4803, 531, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '3.5000', '3.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '3.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4804, 531, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4805, 531, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4806, 531, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4807, 531, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '6.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4808, 531, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4809, 531, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4810, 531, 2613, '76873738', 'OSTEOCARE SYR UK', 'standard', NULL, '39.0000', '39.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '39.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4811, 531, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '2.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4812, 531, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4813, 531, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4814, 531, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4815, 531, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '2.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4816, 531, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '0.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4817, 531, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4818, 531, 1415, '6034000157055', 'LIVING BITTERS SYP S s', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4819, 531, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4820, 531, 2708, '5012616291791', 'PHILIPS MILK OF MAGNESIA', 'standard', NULL, '45.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4821, 531, 2142, '5021265223855', 'WELLBABY ', 'standard', NULL, '76.0000', '76.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '76.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4822, 531, 2710, '09217360', 'AUGMENTIN SUSP 457MG', 'standard', NULL, '53.0000', '53.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '53.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4823, 532, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4824, 532, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4825, 532, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4826, 532, 2270, '64645876', 'MIST POT CIT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4827, 532, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', 'standard', NULL, '18.5000', '18.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '18.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4828, 532, 1864, 'PR-577', 'VIROL BLOOD TONIC', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4829, 532, 2256, '41965129', 'ZINCOFER SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4830, 532, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4831, 532, 2372, '48662385', 'FRESHMAN CAPS', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4832, 533, 1894, 'PR-607', 'Primadal', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4833, 533, 1394, 'PR-107', 'AGBEVE TONIC(30)', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4834, 533, 1644, '3574661091075', 'BENYLIN INFANT SYR', 'standard', NULL, '45.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4835, 533, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4836, 533, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4837, 533, 2481, '40294439', 'FENNEL SEED', 'standard', NULL, '4.5000', '4.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4838, 533, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4839, 533, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4840, 533, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4841, 533, 2545, '82780299', 'DREZ POWDER 10G', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4842, 533, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4843, 533, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4844, 533, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4845, 533, 2034, '4800888199188', 'REXONA ROLL ON 50ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4846, 533, 2277, '71311341', 'ZUBES TABLETS ', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4847, 533, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '0.5000', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4848, 533, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4849, 533, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', 'standard', NULL, '38.0000', '38.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '38.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4850, 533, 1484, '8470007006244', 'SILVER DERMA CREAM 50G', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4851, 533, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4852, 533, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4853, 533, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4854, 533, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4855, 533, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4856, 533, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4857, 533, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4858, 534, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4859, 534, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4860, 534, 2236, '6033000270108', 'EFPAC JNR', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4861, 534, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', 'standard', NULL, '2.0000', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4862, 534, 1649, '6161102003536', 'ZUBES EXPECTORANT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4863, 534, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4864, 534, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4865, 534, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4866, 534, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4867, 535, 1910, 'PR-623', 'Apc 10 x 10', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4868, 535, 2389, '78098233', 'ALKA SELTZER 20\'S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4869, 535, 2687, '815195014509', 'ULTRA MAX BOBY WASH SHOWER GEL', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4870, 535, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4871, 535, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4872, 535, 2013, '3612815532569', 'CAMPHOR', 'standard', NULL, '4.5000', '4.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4873, 535, 2143, '4005292004916', 'GERMANY VIT C', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4874, 536, 2557, '86393917', 'METOCLOPRAMIDE', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4875, 536, 1635, '5060589200012', 'CYCLOGEST 400MG PESS 15\'5', 'standard', NULL, '17.0000', '17.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '17.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4876, 536, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4877, 536, 2008, '6003001000509', 'SAVELON ANTISEPTIC 125ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4878, 536, 2005, '6926160704036', 'LILY ROSS TOOTHBRUSH HARD', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4879, 536, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4880, 536, 2472, '5012008571401', 'SOFT & GENTLE SPRAY', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4881, 537, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4882, 537, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4883, 537, 1999, '6971044950313', 'YAZZ PAD', 'standard', NULL, '7.5000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4884, 537, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4885, 537, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4886, 537, 2425, '54377887', 'SASSO MOSQUITO SPRAY  B/S', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4887, 538, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4888, 538, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4889, 538, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4890, 539, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4891, 539, 2713, '06467625', 'MENTOS ICE GUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4892, 539, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4893, 540, 2393, '25300648', 'BOAFO OINT', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4894, 540, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4895, 541, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', 'standard', NULL, '16.5000', '16.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '16.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4896, 541, 2473, '12094351', 'RIGHT GUARD SPRAY', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4897, 541, 2809, '57353674', 'LONGRICH TOOTHPASTE', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4898, 541, 2362, '63796869', 'ZINNAT 500MG', 'standard', NULL, '12.0000', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '12.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4899, 541, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4900, 541, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4901, 541, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4902, 541, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4903, 541, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4904, 541, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4905, 541, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4906, 541, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4907, 541, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4908, 541, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4909, 541, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', 'standard', NULL, '2.5000', '2.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4910, 541, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4911, 541, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4912, 541, 1420, 'PR-133', 'NAZO', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4913, 541, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4914, 541, 2274, '55192131', 'STOPKOFF EXP CHN', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4915, 541, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '1.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4916, 541, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4917, 541, 1910, 'PR-623', 'Apc 10 x 10', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4918, 541, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4919, 542, 1995, '6182000109939', 'CAROTONE LOTION MEDIUM 350ML', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4920, 542, 2249, '22244269', 'EXPECT SEED', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4921, 542, 2428, '50665292', 'HEAVEN MOSQUITO SPRAY', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4922, 542, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4923, 542, 1365, '8906116211496', 'PROWOMAN', 'standard', NULL, '51.5000', '51.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '51.5000', '', '51.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4924, 542, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4925, 542, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4926, 542, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4927, 543, 1324, '6181100465976', 'MEDICAL ICE COOL', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4928, 544, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4929, 544, 1305, 'PR-18', 'BASEKOF SYR', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4930, 544, 1810, 'PR-523', 'VISCOF EXPECTORANT', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4931, 544, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4932, 544, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4933, 544, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '11.5000', '11.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '11.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4934, 544, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4935, 544, 2263, '6036000090417', 'LEVON 2', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4936, 544, 1440, 'PR-153', 'VICTORY GARLIC', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4937, 544, 2713, '06467625', 'MENTOS ICE GUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4938, 544, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.6000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4939, 544, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4940, 544, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4941, 544, 2262, '69085595', 'LENOR CONTRACEPTIVE', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4942, 544, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '3.8000', '3.8000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.8000', '', '3.8000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4943, 544, 2512, '57681465', 'HONEY  500ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4944, 544, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4945, 544, 1791, '8904107900992', 'LEXSPORIN POWDER 10G', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4946, 544, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4947, 544, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4948, 544, 2713, '06467625', 'MENTOS ICE GUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4949, 545, 2230, '8886472104437', 'SMA GOLD 1', 'standard', NULL, '46.0000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4950, 545, 2343, '67107435', 'INFACOL DROPS 50ML', 'standard', NULL, '51.0000', '51.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '51.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4951, 545, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4952, 545, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4953, 545, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '1.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4954, 545, 1381, 'PR-94', ' GOLDY FORTE DS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4955, 545, 2461, '13231903', 'ENAFIX TAB 200MG', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4956, 545, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4957, 545, 1710, 'PR-423', 'PRONALIN ADULT', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4958, 545, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4959, 545, 2622, '79117239', 'COMBANTRIN', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4960, 545, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', 'standard', NULL, '39.0000', '39.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '39.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4961, 545, 1958, '7640128012184', 'ROCEPHIN INJ 1G IV', 'standard', NULL, '71.0000', '71.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '71.0000', '', '71.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4962, 545, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '2.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4963, 545, 2240, '5000198522501', 'PIRITON SYR', 'standard', NULL, '49.0000', '49.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '49.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4964, 545, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4965, 545, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4966, 545, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4967, 545, 1585, 'PR-298', 'ZUBES CHILDREN', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4968, 545, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', 'standard', NULL, '39.0000', '39.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '39.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4969, 545, 2726, '79072570', 'SANA NASAL DROP 10ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4970, 545, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4971, 545, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4972, 545, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4973, 545, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '50.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4974, 545, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4975, 545, 2803, '83576846', 'LORATADINE 10MG 30\'', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4976, 546, 2726, '79072570', 'SANA NASAL DROP 10ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4977, 546, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4978, 546, 2622, '79117239', 'COMBANTRIN', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4979, 546, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4980, 546, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4981, 546, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4982, 546, 1314, 'PR-27', 'WORMBASE SUSP', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4983, 546, 1941, 'PR-654', 'Genti Gds11369', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4984, 546, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4985, 546, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4986, 546, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4987, 547, 2422, '92383380', 'POWER ZONE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4988, 548, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4989, 549, 2307, '07147099', 'ZITHROMAX 250MG', 'standard', NULL, '180.0000', '180.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '180.0000', '', '180.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4990, 549, 1595, 'PR-308', 'BEEHIVE COUGH SYR', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4991, 549, 2570, '24041017', 'GOLDY SUSP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4992, 549, 2269, '48726368', 'STOPKOFF CHIDREN', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4993, 549, 1452, 'PR-165', 'Tobufon 400 T002e001', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4994, 549, 2824, '55755568', 'BINGO SOFTNER', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4995, 549, 1365, '8906116211496', 'PROWOMAN', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4996, 549, 2569, '30297629', 'METROBON F', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4997, 549, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', 'standard', NULL, '78.5000', '78.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '78.5000', '', '78.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4998, 549, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4999, 549, 2713, '06467625', 'MENTOS ICE GUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5000, 549, 1668, '8906016831572', 'Acidom Caps', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5001, 549, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5002, 549, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5003, 549, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5004, 549, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5005, 549, 1790, '8904107900824', 'LEXSPORIN OINTMENT 20GMS', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5006, 549, 2825, '09140818', 'FACE MASK PACK', 'standard', NULL, '25.0000', '25.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '500.0000', '', '25.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5007, 549, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '11.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '11.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5008, 549, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5009, 549, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5010, 549, 2662, '78880294', 'LONART TAB', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5011, 549, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5012, 549, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5013, 549, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5014, 549, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5015, 549, 2452, '56056492', 'FINE FINE SOAP', 'standard', NULL, '4.5000', '4.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5016, 549, 1396, 'PR-109', 'ANGEL CREAM(200)', 'standard', NULL, '3.5000', '3.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '3.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5017, 550, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5018, 550, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5019, 550, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5020, 550, 2435, '31684073', 'ORAL B TOOTHPASTE', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5021, 550, 1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5022, 550, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5023, 550, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5024, 550, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '4.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5025, 550, 2089, '39725135', 'POLYGEL SUSP 200ML', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5026, 550, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5027, 550, 2582, '81054441', 'AZILEX SUSP', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5028, 550, 2086, '06489706', 'METAGYL SUSP', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5029, 550, 2491, '57627875', 'BELLS VITAMIN C', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5030, 550, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5031, 550, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5032, 550, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '1.8000', '1.8000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '1.8000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5033, 550, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5034, 550, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '4.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5035, 550, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5036, 550, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5037, 550, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5038, 550, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5039, 550, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5040, 550, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5041, 550, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5042, 550, 1591, '5017123328022', 'FUROSEMIDE 20MG TAB (CRESCENT)', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5043, 550, 2673, '52626423', 'LISINOPRIL 10MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5044, 550, 2336, '74912018', 'ATENOLOL 50MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5045, 550, 2004, '44696495', 'ESSENTIAL EMBROCATION (LIQUID ROBB) 8ML', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5046, 551, 1695, '8908002671971', 'APETAMIN SYR', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5047, 551, 2265, '5014502000807', 'MINAMINO SYRUP M/S', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5048, 551, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5049, 551, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5050, 551, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5051, 551, 1908, 'PR-621', 'Magacid tablet', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5052, 551, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5053, 551, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5054, 551, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5055, 551, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5056, 552, 1506, '7612797504765', 'MAXITROL EYE DROP', 'standard', NULL, '21.5000', '21.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.5000', '', '21.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5057, 552, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5058, 552, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5059, 552, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5060, 552, 2325, '68025873', 'ALWAYS PAD MAX', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5061, 552, 1642, '6001135507628', 'BENYLIN DRY  COUGH SYR 100ML', 'standard', NULL, '41.0000', '41.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '41.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5062, 552, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5063, 552, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5064, 553, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5065, 553, 1649, '6161102003536', 'ZUBES EXPECTORANT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5066, 553, 2566, '42135887', 'MILO TIN', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5067, 553, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5068, 554, 2622, '79117239', 'COMBANTRIN', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5069, 555, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5070, 555, 1649, '6161102003536', 'ZUBES EXPECTORANT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5071, 555, 2566, '42135887', 'MILO TIN', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5072, 555, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5073, 555, 2622, '79117239', 'COMBANTRIN', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5074, 555, 2399, '95599749', 'HEPA PLUS', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5075, 555, 2277, '71311341', 'ZUBES TABLETS ', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5076, 555, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5077, 555, 2092, '69091614', 'GLUCOSE C L/P', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5078, 555, 2615, '04025050', 'COOL EYES DROP', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5079, 555, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5080, 555, 1630, 'PR-343', 'GEN-M TAB 80/480', 'standard', NULL, '22.5000', '22.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '22.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5081, 555, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5082, 555, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5083, 555, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5084, 555, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5085, 555, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5086, 555, 1473, '5056338341617', 'HOT WATER BOTTLE (JACKET)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5087, 555, 1916, 'PR-629', 'ASPANOL  All in one', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5088, 555, 2284, '8906009232232', 'LOFNAC-P TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5089, 555, 1779, 'PR-492', 'BISACODYL [GEO] 1000\'S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5090, 555, 2254, '8901040258036', 'BIOFERON SYRUP', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5091, 555, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5092, 555, 2651, '50684287', 'KETAZOL SHAMPOO', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5093, 555, 2346, '68048014', 'CALAMINE OINT', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5094, 555, 2603, '17379642', 'VITAGO', 'standard', NULL, '1.3000', '1.3000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3000', '', '1.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5095, 556, 2362, '63796869', 'ZINNAT 500MG', 'standard', NULL, '12.0000', '12.0000', '14.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '168.0000', '', '12.0000', NULL, 1, 'pc', '14.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5096, 556, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5097, 556, 2479, '64861163', 'CHIA SEED', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5098, 556, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5099, 556, 2157, '13804928', 'GVITHER INJ', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5100, 556, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5101, 557, 1374, 'PR-87', 'TEGRETOL CR 400MG', 'standard', NULL, '26.0000', '26.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '26.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5102, 557, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5103, 557, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', 'standard', NULL, '3.6000', '3.6000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '3.6000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5104, 557, 1688, 'PR-401', 'ZINCOVIT TAB', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5105, 557, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5106, 557, 1701, 'PR-414', 'HEPTOPEP SYR', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5107, 557, 2283, '8906009232225', 'LOFNAC TAB 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5108, 557, 2512, '57681465', 'HONEY  500ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5109, 557, 2625, '18152598', 'Olfen Gel', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5110, 557, 1656, '8902457848759', 'STOMOCAINE SUP', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5111, 557, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5112, 557, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5113, 557, 2026, '6001087005661', 'VASELINE CREAM 250ML6001087005661', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5114, 557, 2476, '20264921', 'BLACK SEED', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5115, 557, 2240, '5000198522501', 'PIRITON SYR', 'standard', NULL, '49.0000', '49.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '49.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5116, 557, 1585, 'PR-298', 'ZUBES CHILDREN', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5117, 557, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5118, 557, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5119, 557, 2584, '53094861', 'ROSESHIP OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5120, 557, 2567, '83596243', 'NAN 1', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5121, 557, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5122, 557, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5123, 557, 2808, '5017007012498', 'LEVOFLOXACIN 500MG TEVA', 'standard', NULL, '51.0000', '51.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '102.0000', '', '51.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5124, 557, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5125, 557, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5126, 557, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5127, 557, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5128, 557, 1704, '5060033711873', 'CYPRODINE SYR', 'standard', NULL, '35.5000', '35.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '35.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5129, 557, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5130, 557, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5131, 557, 1336, 'PR-49', 'RUBBING ALCOHOL -MUL TITI', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5132, 557, 2662, '78880294', 'LONART TAB', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5133, 557, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5134, 557, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5135, 558, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5136, 558, 2815, '5017007024262', 'OMEPRAZOLE 20MG  TEVA', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5137, 558, 1654, '8904091117703', 'RELCER GEL', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5138, 558, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5139, 558, 2565, '45244498', 'VERNA WATER MEDIUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5140, 558, 1618, '8901645060997', 'AZILEX 250MG CAPS', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5141, 558, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5142, 558, 2270, '64645876', 'MIST POT CIT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5143, 559, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '3.9000', '3.9000', '14.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '54.6000', '', '3.9000', NULL, 1, 'pc', '14.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5144, 560, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '46.0000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5145, 561, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5146, 561, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5147, 561, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5148, 561, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5149, 562, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5150, 562, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5151, 562, 2288, '44100235', 'FLUXAMOX SUSP 100ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5152, 562, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5153, 562, 2854, '44570580', 'LORATADINE 10MG  TEVA', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5154, 562, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5155, 562, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5156, 562, 2697, '72051764', 'BAY LEAVES', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5157, 562, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5158, 562, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5159, 562, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5160, 562, 1562, 'PR-275', 'SULPHUR OINT.', 'standard', NULL, '7.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5161, 562, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5162, 562, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5163, 562, 1954, '87246804', 'COLDRID TAB', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5164, 562, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 'standard', NULL, '26.0000', '26.0000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '182.0000', '', '26.0000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5165, 562, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '4.0000', NULL, 1, 'pc', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5166, 562, 2442, '84998316', 'COLGATE TRIPPLE ACTION TOOTHPASTE', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5167, 562, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5168, 562, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5169, 562, 2286, '91011834', 'FLUXAMOX CAPS 200', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5170, 562, 2414, '85111706', 'AMLODIPINE 5MG', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5171, 562, 2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5172, 562, 2545, '82780299', 'DREZ POWDER 10G', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5173, 562, 2298, '11840983', 'DREZ OINTMENT 10G S/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5174, 562, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5175, 562, 2215, '8964000734742', 'CASTOR OIL NATURAL 40ML (HEMANI)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5176, 563, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5177, 564, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '1.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5178, 564, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5179, 565, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5180, 565, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5181, 565, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5182, 565, 1701, 'PR-414', 'HEPTOPEP SYR', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5183, 565, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5184, 565, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5185, 565, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5186, 565, 2557, '86393917', 'METOCLOPRAMIDE', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5187, 565, 1589, '8904008410118', 'GASTRACID SUSP (GR)', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5188, 565, 1415, '6034000157055', 'LIVING BITTERS SYP S s', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5189, 565, 2142, '5021265223855', 'WELLBABY ', 'standard', NULL, '76.0000', '76.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '76.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5190, 565, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5191, 565, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5192, 565, 1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5193, 565, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5194, 565, 1424, '6036000070709', 'PROSTAT 60', 'standard', NULL, '39.5000', '39.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.5000', '', '39.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5195, 566, 2178, '8964000114308', 'CARROT OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5196, 566, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5197, 566, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5198, 566, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5199, 566, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5200, 566, 1943, 'PR-656', 'Kofof Adult Lo12D002', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5201, 566, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5202, 566, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5203, 566, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5204, 566, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5205, 566, 1695, '8908002671971', 'APETAMIN SYR', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5206, 566, 2759, '56334949', 'SHALCIP TAB', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5207, 566, 1900, 'PR-613', 'Cefruate 500', 'standard', NULL, '3.3000', '3.3000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '3.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5208, 567, 2445, '08969985', 'ADULT DIAPER', 'standard', NULL, '5.0000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '5.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5209, 567, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5210, 568, 1511, '5413895053528', 'TEARS NATURAL 11', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5211, 568, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '4.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5212, 568, 2780, '016500586975', 'ONE A DAY WOMEN TABLET 60', 'standard', NULL, '110.0000', '110.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '110.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5213, 568, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5214, 568, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5215, 568, 1555, '3582910081043', 'RHINATHIOL ADULT SYR 125ML', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5216, 568, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5217, 568, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5218, 568, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '4.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5219, 568, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5220, 568, 1406, '16564749', 'GIVERS KOO CAPS(l40)', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5221, 568, 1407, '001', 'GIVERS POWER CAPS(140)', 'standard', NULL, '22.5000', '22.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '22.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5222, 568, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '6.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5223, 568, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5224, 568, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5225, 568, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5226, 568, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5227, 568, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5228, 568, 1630, 'PR-343', 'GEN-M TAB 80/480', 'standard', NULL, '22.5000', '22.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '22.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5229, 568, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5230, 568, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5231, 568, 2485, '40177526', 'GOLDEN RAISEN', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5232, 568, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5233, 568, 2851, '5021265246298', 'WELLWOMAN MAX', 'standard', NULL, '58.0000', '58.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '116.0000', '', '58.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5234, 568, 2058, '311917207889', 'VITAMIN B-12 FINEST NUTRITON', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '40.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5235, 569, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5236, 569, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5237, 569, 2657, '29274667', 'LOPERON CAPS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5238, 569, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5239, 570, 2083, '0114', 'CO-TRIMAZOLE  TAB  SEPTRIM (LETAP) ', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5240, 571, 2855, '71871067', 'ESURO WISA', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5241, 572, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5242, 572, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5243, 572, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5244, 572, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5245, 572, 2777, '97856697', 'MMT SUSP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5246, 572, 2816, '72412730', 'MOTILUM TAB', 'standard', NULL, '1.0000', '1.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5247, 572, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5248, 572, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5249, 572, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5250, 572, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5251, 572, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5252, 572, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5253, 572, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5254, 572, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5255, 572, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 'standard', NULL, '26.0000', '26.0000', '7.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '182.0000', '', '26.0000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5256, 572, 1479, '8906087940135', 'IMPRESSER OIL', 'standard', NULL, '56.0000', '56.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '56.0000', '', '56.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5257, 572, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.6900', '', '0.6900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5258, 572, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', 'standard', NULL, '6.5000', '6.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5259, 572, 2314, '30357751', 'ARTIBASE SUSP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5260, 572, 1864, 'PR-577', 'VIROL BLOOD TONIC', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5261, 572, 1616, 'PR-329', 'GACET SUPP 250MG', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5262, 572, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5263, 572, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5264, 572, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5265, 572, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5266, 572, 2411, '13740723', 'GEBEDOL FORTE TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5267, 572, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5268, 572, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5269, 572, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5270, 572, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '0.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5271, 572, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5272, 572, 2228, '7501058625915', 'LACTOGEN  1', 'standard', 0, '28.0000', '28.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5273, 572, 2816, '72412730', 'MOTILUM TAB', 'standard', NULL, '1.0000', '1.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5274, 573, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5275, 573, 2294, '44448916', 'PENICILLIN OINTMENT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5276, 573, 2439, '92520287', 'QUAKER OATS TIN', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5277, 573, 2577, '71775757', 'PALM OLIVE 650ML BIG', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5278, 573, 2405, '40815002', 'GLOVES', 'standard', NULL, '1.6000', '1.6000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.2000', '', '1.6000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5279, 573, 2007, '6003001000547', 'SAVELON ANTISEPTIC 250ML', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5280, 573, 2286, '91011834', 'FLUXAMOX CAPS 200', 'standard', 0, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5281, 573, 1987, '6181100323665', 'SIVODERM POWDER', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5282, 574, 2685, '011111014237', 'DOVE BODY WASH SHOWER GEL', 'standard', NULL, '45.0000', '45.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5283, 575, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5284, 575, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.2500', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5285, 575, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5286, 576, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '52.5000', '', '10.5000', NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5287, 576, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5288, 576, 1483, '5011501040131', 'DEEP HEAT RUB 67G', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5289, 576, 2316, '59549986', 'SMA 1 BABY FOOD', 'standard', 0, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5290, 576, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5291, 576, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5292, 576, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5293, 576, 1539, '9556100104618', 'O\'YES FEMININE WASH 200ML', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5294, 576, 2766, '95455611', 'LUBRIMAX JELLY 70G', 'standard', NULL, '21.0000', '21.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5295, 576, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5296, 577, 1420, 'PR-133', 'NAZO', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5297, 577, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5298, 577, 2850, '74664071', 'TRAMADOL 50MG', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5299, 577, 1541, '8902502106421', 'INFA V PESS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5300, 577, 2243, '84463478', 'CALAMINE LOTION', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5301, 577, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5302, 577, 1543, '4031571066740', 'CLOTRI DENK CREAM', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5303, 577, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5304, 577, 2662, '78880294', 'LONART TAB', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5305, 577, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5306, 577, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5307, 577, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '0.2500', NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5308, 577, 2741, '91738635', 'NEUROBION TAB', 'standard', 0, '64.0000', '64.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '64.0000', '', '64.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5309, 577, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '3.0000', NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5310, 577, 1695, '8908002671971', 'APETAMIN SYR', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5311, 577, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5312, 577, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '0.5000', NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5313, 577, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5314, 577, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', 'standard', NULL, '32.0000', '32.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5315, 577, 2481, '40294439', 'FENNEL SEED', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5316, 577, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '1.3000', NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5317, 577, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5318, 577, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5319, 577, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5320, 577, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5321, 577, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5322, 577, 2442, '84998316', 'COLGATE TRIPPLE ACTION TOOTHPASTE', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5323, 577, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5324, 577, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5325, 577, 2485, '40177526', 'GOLDEN RAISEN', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5326, 577, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5327, 577, 1702, '8906045432580', 'BONAPLEX SYR 200ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5328, 577, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5329, 577, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5330, 577, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5331, 577, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5332, 577, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5333, 577, 1978, '6186000077045', 'QUEEN ELISABETH COCO BUTTER LOTIN 400ML', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5334, 577, 1980, '6186000077052', 'QUEEN ELISABETH COCOA BUTTER LOTION 250ML', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5335, 577, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5336, 577, 1394, 'PR-107', 'AGBEVE TONIC(30)', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5337, 577, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5338, 577, 2641, '92213060', 'CONGESTYL SUSP', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5339, 577, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5340, 577, 2623, '01976331', 'BENDROFLUZIDE 2.5MG UK CRESCENT', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5341, 577, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5342, 577, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5343, 577, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5344, 577, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5345, 577, 2061, '96762855', 'ZYMAX CAPS 500MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5346, 577, 1483, '5011501040131', 'DEEP HEAT RUB 67G', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5347, 577, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5348, 577, 1954, '87246804', 'COLDRID TAB', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5349, 577, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5350, 577, 1900, 'PR-613', 'Cefruate 500', 'standard', NULL, '3.3000', '3.3000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '3.3000', NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5351, 577, 1541, '8902502106421', 'INFA V PESS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5352, 577, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5353, 577, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5354, 577, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5355, 577, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5356, 577, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5357, 577, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5358, 577, 1543, '4031571066740', 'CLOTRI DENK CREAM', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5359, 577, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5360, 577, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5361, 577, 1944, 'PR-657', 'Combact N E002d016', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5362, 577, 2307, '07147099', 'ZITHROMAX 250MG', 'standard', NULL, '180.0000', '180.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '180.0000', '', '180.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5363, 577, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5364, 577, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5365, 577, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5366, 577, 1571, 'udia111', 'DIABETMIN TABS 500MG', 'standard', NULL, '2.5000', '2.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.5000', NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5367, 577, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5368, 577, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5369, 577, 2825, '09140818', 'FACE MASK PACK', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5370, 577, 2654, '4000388563803', 'DOVE LOTION', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5371, 577, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5372, 577, 2034, '4800888199188', 'REXONA ROLL ON 50ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5373, 577, 1695, '8908002671971', 'APETAMIN SYR', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5374, 577, 1662, '3400970000913', 'IDEOS ~', 'standard', NULL, '69.0000', '69.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '69.0000', '', '69.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5375, 577, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5376, 577, 1478, '8906087940128', 'IMPRESSER CAPS', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5377, 577, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5378, 577, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5379, 577, 2012, '46653631', 'DETTOL ANTISEPTIC 165ML', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5380, 577, 2427, '44595573', 'SAVLON SS/S', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5381, 577, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5382, 577, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5383, 577, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '1.0000', NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5384, 577, 2828, '81305537', 'D Artepp Tap 60/480mg', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5385, 577, 1896, 'PR-609', 'Mayfer Cap', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5386, 577, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5387, 577, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5388, 578, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '11.5000', '11.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '11.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5389, 578, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5390, 578, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '1.8000', '1.8000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '1.8000', NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5391, 578, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5392, 578, 2083, '0114', 'CO-TRIMAZOLE  TAB  SEPTRIM (LETAP) ', 'standard', NULL, '1.0000', '1.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '1.0000', NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5393, 578, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5394, 578, 2256, '41965129', 'ZINCOFER SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5395, 578, 1536, '8901040245197', 'AXACEF S00MG 10\'S', 'standard', NULL, '5.0000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '5.0000', NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5396, 579, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5397, 579, 2108, '85249693', 'ARFAN 20/120MG', 'standard', NULL, '6.5000', '6.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '6.5000', NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5398, 579, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '0.5000', NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5399, 579, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5400, 579, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5401, 579, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5402, 579, 2817, '45511010', 'ROBAXIN TAB', 'standard', NULL, '2.2000', '2.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '2.2000', NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5403, 579, 2741, '91738635', 'NEUROBION TAB', 'standard', 0, '64.0000', '64.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '64.0000', '', '64.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5404, 579, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5405, 579, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '5.0000', NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5406, 579, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5407, 579, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5408, 579, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5409, 579, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5410, 579, 1986, '6181100323658', 'SIVODERM CREAM', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5411, 579, 2208, '8964000114049', 'CASTOR OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5412, 579, 2715, '61261096', 'CASTOR OIL 70ML BELLS', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5413, 579, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5414, 579, 2560, '27717765', 'HONEY 250G (GIFT OF NATURE)', 'standard', NULL, '21.0000', '21.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5415, 579, 1826, 'PR-539', 'SYRINGES & NEES (KOREA) 5ML', 'standard', NULL, '0.5000', '0.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '0.5000', NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5416, 579, 2670, '18984546', 'ASPIRIN TABS GEO', 'standard', NULL, '1.0000', '1.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5417, 579, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5418, 579, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '0.5000', NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5419, 579, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5420, 579, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5421, 579, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5422, 579, 2059, '5050796002899', 'HEAVEN SCENT BOBY CREAM 500ML', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5423, 579, 2031, '5137136225191', 'JRA CREAM SMALL 40G', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5424, 579, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5425, 579, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5426, 579, 2703, '05760199', 'ASCOVIT CEE SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5427, 579, 2662, '78880294', 'LONART TAB', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5428, 579, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5429, 579, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5430, 579, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5431, 579, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6900', '', '0.6900', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5432, 579, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5433, 579, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5434, 579, 1401, 'PR-114', 'EKURO BEWU', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5435, 579, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5436, 579, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5437, 579, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5438, 579, 2694, '59710964', 'ZINC OXIDE PLASTER 1\'\'', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5439, 579, 1394, 'PR-107', 'AGBEVE TONIC(30)', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5440, 579, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5441, 579, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5442, 579, 2460, '07910647', 'EVECARE TAB', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5443, 579, 1859, '8901138502942', 'PILEX TAB', 'standard', NULL, '32.0000', '32.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5444, 579, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5445, 579, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5446, 579, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '0.5000', NULL, 1, 'pc', '5.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5447, 579, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5448, 579, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5449, 579, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5450, 579, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5451, 579, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5452, 579, 1616, 'PR-329', 'GACET SUPP 250MG', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5453, 579, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5454, 579, 2648, '61024738', 'COLGATE FOR KIDS', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5455, 579, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5456, 579, 2277, '71311341', 'ZUBES TABLETS ', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5457, 580, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5458, 580, 1855, 'PR-568', 'IBUCAP S/S 200S', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5459, 580, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5460, 580, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5461, 580, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5462, 580, 2325, '68025873', 'ALWAYS PAD MAX', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5463, 580, 1811, 'PR-524', 'VERMOX SUSP', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5464, 580, 2768, '31007297', 'AMOXYL CAPS 250 (ESKAY)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5465, 580, 1928, '8906009234090', 'LOFNAC GEL GLF143', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5466, 580, 2850, '74664071', 'TRAMADOL 50MG', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5467, 580, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5468, 580, 2236, '6033000270108', 'EFPAC JNR', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5469, 580, 2184, '8964000114353', 'MINT OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5470, 580, 2008, '6003001000509', 'SAVELON ANTISEPTIC 125ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5471, 580, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5472, 580, 2106, '26940098', 'XPEL SUSPENSION 20ML', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5473, 580, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '11.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '11.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5474, 580, 2311, '90764208', 'PREGNACARE 19', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '60.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5475, 580, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5476, 580, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5477, 580, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5478, 581, 1945, 'PR-658', 'LUFART SUSP', 'standard', NULL, '12.5000', '12.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5479, 581, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5480, 581, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5481, 581, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5482, 581, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5483, 581, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '11.0000', '11.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '11.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5484, 581, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5485, 581, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5486, 581, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5487, 581, 2816, '72412730', 'MOTILUM TAB', 'standard', NULL, '1.0000', '1.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '1.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5488, 581, 2314, '30357751', 'ARTIBASE SUSP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5489, 581, 2168, '8901082004356', 'APTIZOOOM', 'standard', NULL, '39.0000', '39.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '39.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5490, 581, 2304, '90589903', 'PARA-DENK SUPP 250MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5491, 581, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5492, 581, 2671, '29819837', 'MINADEX MULTIVITAMIN SYRUP 100ML', 'standard', NULL, '38.0000', '38.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5493, 581, 2251, '8901138500573', 'BONNISAN SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5494, 581, 2702, '69900073', 'EXCLEAR NASAL DROPS', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5495, 581, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5496, 581, 2269, '48726368', 'STOPKOFF CHIDREN', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5497, 581, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5498, 581, 2058, '311917207889', 'VITAMIN B-12 FINEST NUTRITON', 'standard', NULL, '40.0000', '40.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '40.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5499, 581, 2168, '8901082004356', 'APTIZOOOM', 'standard', NULL, '39.0000', '39.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '39.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5500, 581, 2262, '69085595', 'LENOR CONTRACEPTIVE', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5501, 581, 2045, '6181100532166', 'DAY BY DAY POWDER 500 G', 'standard', NULL, '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5502, 581, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', 'standard', NULL, '36.5000', '36.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '36.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5503, 581, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5504, 581, 1946, '92115303', 'Ascorbin  Syrup 100ml', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5505, 582, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5506, 582, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5507, 582, 2083, '0114', 'CO-TRIMAZOLE  TAB  SEPTRIM (LETAP) ', 'standard', NULL, '1.0000', '1.0000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.0000', NULL, 1, 'pc', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5508, 582, 2680, '27326576', 'OLFEN GEL 20GM S/S', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5509, 582, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5510, 582, 2291, '8904091112401', 'CANDIBIOTICS EAR DROPS 5ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5511, 582, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5512, 582, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5513, 582, 1520, 'PR-233', 'DICLOLEX 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5514, 582, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5515, 582, 1541, '8902502106421', 'INFA V PESS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5516, 582, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5517, 582, 1536, '8901040245197', 'AXACEF S00MG 10\'S', 'standard', NULL, '5.0000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '5.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5518, 582, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5519, 582, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5520, 582, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5521, 582, 2661, '52395020', 'GACET 1G', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5522, 582, 2231, '7501058633927', 'NAN 2', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5523, 582, 1993, '6033000330710', 'KLEANZ SANITIZER 50ML', 'standard', NULL, '3.5000', '3.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '3.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5524, 582, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '1.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5525, 582, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5526, 583, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5527, 584, 1630, 'PR-343', 'GEN-M TAB 80/480', 'standard', NULL, '22.5000', '22.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '22.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5528, 584, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5529, 584, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5530, 584, 1696, 'PR-409', 'CYFEN SYR', 'standard', NULL, '13.5000', '13.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5531, 584, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5532, 584, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5533, 584, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5534, 584, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5535, 584, 1406, '16564749', 'GIVERS KOO CAPS(l40)', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5536, 584, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5537, 584, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5538, 584, 2565, '45244498', 'VERNA WATER MEDIUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5539, 584, 1401, 'PR-114', 'EKURO BEWU', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5540, 584, 2657, '29274667', 'LOPERON CAPS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5541, 584, 2713, '06467625', 'MENTOS ICE GUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5542, 584, 2463, '22321274', 'ADVIL COMBO 50\'S', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5543, 584, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5544, 584, 2646, '15816669', 'GLADE PAPER AIR FRESHNER', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5545, 584, 2254, '8901040258036', 'BIOFERON SYRUP', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5546, 584, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5547, 584, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5548, 584, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5549, 584, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5550, 585, 2657, '29274667', 'LOPERON CAPS', 'standard', NULL, '1.0000', '1.0000', '3.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5551, 585, 1992, '6033000171719', 'KLEANZ SANITIZER 100ML', 'standard', NULL, '4.0000', '4.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5552, 585, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '20.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '3.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5553, 585, 2741, '91738635', 'NEUROBION TAB', 'standard', NULL, '32.0000', '32.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '64.0000', '', '32.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5554, 585, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5555, 585, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '16.5000', '16.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5556, 585, 2828, '81305537', 'D Artepp Tap 60/480mg', 'standard', NULL, '24.0000', '24.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5557, 585, 2816, '72412730', 'MOTILUM TAB', 'standard', NULL, '1.0000', '1.0000', '5.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5558, 585, 2281, '087450449108', 'TYLENOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '6.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '4.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5559, 585, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '16.5000', '16.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5560, 585, 2269, '48726368', 'STOPKOFF CHIDREN', 'standard', NULL, '7.0000', '7.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5561, 585, 2658, '46663167', 'CANNULA G20 PINK', 'standard', NULL, '1.5000', '1.5000', '8.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.5000', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5562, 585, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5563, 585, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5564, 586, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5565, 586, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5566, 586, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '13.0000', '13.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5567, 586, 2662, '78880294', 'LONART TAB', 'standard', NULL, '6.0000', '6.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5568, 586, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '16.5000', '16.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5569, 586, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5570, 586, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5571, 586, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5572, 586, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5573, 586, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5574, 586, 1848, 'PR-561', 'DICLO INJ TROGE', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5575, 586, 2771, '85140722', 'SYRINGE & NEEDLES 10ML', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5576, 586, 2662, '78880294', 'LONART TAB', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5577, 586, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5578, 586, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '0.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5579, 586, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5580, 586, 1859, '8901138502942', 'PILEX TAB', 'standard', NULL, '32.0000', '32.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5581, 586, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5582, 586, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5583, 586, 1780, '5021265220076', 'FEROGLOBIN CAPS', 'standard', NULL, '47.0000', '47.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5584, 586, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5585, 586, 1642, '6001135507628', 'BENYLIN DRY  COUGH SYR 100ML', 'standard', NULL, '41.0000', '41.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '41.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5586, 586, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', 'standard', NULL, '16.5000', '16.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5587, 586, 2825, '09140818', 'FACE MASK PACK', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5588, 586, 1400, 'PR-113', 'DIAGELLETS 500ML(24)', 'standard', NULL, '29.0000', '29.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5589, 586, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5590, 587, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5591, 587, 2662, '78880294', 'LONART TAB', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5592, 587, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5593, 587, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '0.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5594, 587, 1917, 'PR-630', 'ASPANOL JUNIOR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5595, 587, 2004, '44696495', 'ESSENTIAL EMBROCATION (LIQUID ROBB) 8ML', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5596, 587, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5597, 587, 2618, '72760937', 'BUSCOMED TAB 10MG', 'standard', NULL, '5.5000', '5.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '5.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5598, 587, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5599, 588, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5600, 589, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5601, 589, 2543, '89430673', 'SECURE CONTRACEPTIVE', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5602, 589, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5603, 589, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5604, 589, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5605, 590, 1530, '4031571064159', 'METFORMIN DENK 1G', 'standard', NULL, '38.0000', '38.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5606, 590, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '26.0000', '26.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5607, 590, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5608, 590, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5609, 590, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 'standard', NULL, '26.0000', '26.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5610, 591, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5611, 591, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5612, 591, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5613, 591, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '2.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5614, 591, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5615, 591, 1328, 'PR-41', 'HIGH ELASTIC CREPE BANDAGE 4\"', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5616, 591, 1401, 'PR-114', 'EKURO BEWU', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5617, 591, 1418, 'PR-131', 'MADAM CATERINE', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5618, 591, 2662, '78880294', 'LONART TAB', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5619, 591, 1328, 'PR-41', 'HIGH ELASTIC CREPE BANDAGE 4\"', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5620, 591, 2657, '29274667', 'LOPERON CAPS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5621, 591, 1657, '5013548102087', 'MEDICATED CHARCOAL', 'standard', NULL, '0.6000', '0.6000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '0.6000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5622, 591, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5623, 591, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5624, 591, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5625, 591, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5626, 591, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5627, 591, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5628, 591, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5629, 591, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5630, 591, 2589, '04036623', 'DEXTROSE SALINE DNS INFUSSION', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5631, 591, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5632, 591, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5633, 592, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5634, 592, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5635, 592, 1578, 'PR-291', 'SAMALIN LOZENGES', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5636, 593, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5637, 594, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5638, 594, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5639, 594, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5640, 594, 1375, '5021265243457', 'OSTEOCARE TABS - UK', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5641, 594, 1581, 'PR-294', 'TOUCH AND GO', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5642, 594, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5643, 594, 1506, '7612797504765', 'MAXITROL EYE DROP', 'standard', NULL, '21.5000', '21.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.5000', '', '21.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5644, 594, 2867, '035046003340', 'OMEGA 3 1000MG (WINDMILL)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '100.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5645, 594, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5646, 594, 1595, 'PR-308', 'BEEHIVE COUGH SYR', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5647, 594, 1557, 'PR-270', 'SE CLEAR EYE DROP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5648, 594, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5649, 594, 1759, '5017848251049', 'BELLS OLIVE  OIL 70ML ORIGINAL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5650, 594, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5651, 594, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5652, 594, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5653, 594, 2741, '91738635', 'NEUROBION TAB', 'standard', NULL, '32.0000', '32.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '64.0000', '', '32.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5654, 594, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5655, 594, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5656, 594, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5657, 594, 1615, '5000456022811', 'CRESTOR 20MG', 'standard', NULL, '92.0000', '92.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '184.0000', '', '92.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5658, 594, 2552, '17018789', 'ORELOX SUSP', 'standard', NULL, '127.0000', '127.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '127.0000', '', '127.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5659, 594, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5660, 594, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5661, 594, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5662, 594, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.3000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5663, 594, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5664, 594, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5665, 594, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5666, 594, 2713, '06467625', 'MENTOS ICE GUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5667, 594, 2602, '86780065', 'CLOVES ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5668, 594, 2865, '90832999', 'FINE FINE CREAM', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5669, 594, 2316, '59549986', 'SMA 1 BABY FOOD', 'standard', NULL, '58.0000', '58.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '58.0000', '', '58.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5670, 594, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5671, 594, 2815, '5017007024262', 'OMEPRAZOLE 20MG  TEVA', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5672, 594, 2459, '26218313', 'ENAMYCIN SUS (ECL)', 'standard', NULL, '7.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5673, 594, 2089, '39725135', 'POLYGEL SUSP 200ML', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5674, 594, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5675, 594, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5676, 594, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5677, 594, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5678, 594, 2325, '68025873', 'ALWAYS PAD MAX', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5679, 594, 1514, '6221032340177', 'DEXATROL EYE OINT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5680, 594, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5681, 594, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5682, 594, 2816, '72412730', 'MOTILUM TAB', 'standard', NULL, '1.0000', '1.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '1.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5683, 594, 2659, '48350053', 'LACTULOSE SOLUTION 300ML', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5684, 594, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '34.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5685, 594, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5686, 594, 2390, '76253920', 'NEXIUM 10 SACHET', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5687, 594, 1418, 'PR-131', 'MADAM CATERINE', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5688, 594, 1348, '8901077166144', 'APDYL-H COUGH SYRUP 200ML', 'standard', NULL, '20.5000', '20.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.5000', '', '20.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5689, 594, 2365, '37620765', 'CLARITHROMYCIN 500MG B-CLAR', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5690, 594, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5691, 594, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5692, 594, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5693, 594, 1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5694, 594, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5695, 595, 2262, '69085595', 'LENOR CONTRACEPTIVE', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5696, 595, 2679, '42097030', 'PEVISONE CREAM', 'standard', NULL, '43.0000', '43.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5697, 595, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5698, 596, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5699, 596, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5700, 597, 1567, 'PR-280', 'BRENEX SYRUP', 'standard', NULL, '17.5000', '17.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5701, 597, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', 'standard', NULL, '17.5000', '17.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5702, 597, 2031, '5137136225191', 'JRA CREAM SMALL 40G', 'standard', NULL, '6.5000', '6.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5703, 597, 2381, '72472860', 'ENACEF SUSP', 'standard', NULL, '14.5000', '14.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '14.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5704, 597, 2314, '30357751', 'ARTIBASE SUSP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5705, 598, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5706, 598, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5707, 598, 2604, '43079266', 'COA MIXTURE', 'standard', NULL, '120.0000', '120.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '360.0000', '', '120.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5708, 598, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', 'standard', NULL, '1.5000', '1.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '1.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5709, 598, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5710, 598, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5711, 598, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5712, 598, 1557, 'PR-270', 'SE CLEAR EYE DROP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5713, 599, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5714, 600, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5715, 601, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5716, 602, 2680, '27326576', 'OLFEN GEL 20GM S/S', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5717, 602, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5718, 602, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '2.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5719, 602, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5720, 602, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5721, 602, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5722, 602, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5723, 603, 2810, '44204486', 'L MONTUS', 'standard', NULL, '2.9000', '2.9000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.4000', '', '2.9000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5724, 603, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '6.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5725, 603, 1730, 'PR-443', 'DAKTACORT CREAM 15G', 'standard', NULL, '32.0000', '32.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5726, 603, 1588, '8902396003509', 'CORORANGE DROP', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5727, 603, 2535, '740939004150', 'CLEAR N SMOOTH', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5728, 603, 1446, 'PR-159', 'Tobufen syr L00YADW6', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5729, 603, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5730, 603, 2381, '72472860', 'ENACEF SUSP', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5731, 603, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '1.8000', '1.8000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '1.8000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5732, 603, 1712, 'PR-425', 'ATORVASTATIN 20MG TAB', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5733, 603, 2142, '5021265223855', 'WELLBABY ', 'standard', NULL, '76.0000', '76.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '76.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5734, 603, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5735, 603, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5736, 603, 1406, '16564749', 'GIVERS KOO CAPS(l40)', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5737, 603, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5738, 603, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '46.0000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5739, 603, 2240, '5000198522501', 'PIRITON SYR', 'standard', NULL, '49.0000', '49.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '49.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5740, 603, 1954, '87246804', 'COLDRID TAB', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5741, 603, 1999, '6971044950313', 'YAZZ PAD', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5742, 603, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5743, 603, 1449, 'PR-162', 'Wormee 4 tab wr036', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5744, 603, 2478, '10567518', 'MUSTARD SEED', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5745, 603, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5746, 603, 1446, 'PR-159', 'Tobufen syr L00YADW6', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5747, 603, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5748, 603, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '1.8000', '1.8000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.8000', '', '1.8000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5749, 603, 2858, '54574718', 'PREG TEST CASSETTE', 'standard', NULL, '5.0000', '5.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '5.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5750, 603, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5751, 603, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5752, 603, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5753, 603, 2273, '04120489', 'RHIZIN SYRP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5754, 603, 2642, '23201636', 'SOFTCARE DIAPER', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5755, 603, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5756, 603, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5757, 603, 2477, '98577401', 'SESAME SEED', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5758, 603, 2481, '40294439', 'FENNEL SEED', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5759, 603, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5760, 603, 1593, 'PR-306', 'LYRICA 75MG', 'standard', NULL, '8.7000', '8.7000', '14.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '121.8000', '', '8.7000', NULL, 1, 'pc', '14.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5761, 603, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5762, 603, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5763, 603, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5764, 603, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5765, 603, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5766, 603, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5767, 603, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5768, 603, 2662, '78880294', 'LONART TAB', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5769, 603, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5770, 603, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5771, 603, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5772, 603, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5773, 604, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5774, 605, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5775, 605, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5776, 605, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5777, 605, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', 'standard', NULL, '38.0000', '38.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5778, 605, 1810, 'PR-523', 'VISCOF EXPECTORANT', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5779, 605, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5780, 605, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5781, 605, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.3000', '', '0.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5782, 605, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5783, 605, 2607, '65744915', 'maalox sachets', 'standard', NULL, '1.7000', '1.7000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.2000', '', '1.7000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5784, 605, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5785, 605, 1480, '5011501006519', 'DEEP FREEZE SPRAY', 'standard', NULL, '38.0000', '38.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5786, 605, 2056, '26049852', 'ESSENTIAL EMBROCATION (LIQUID ROBB) 27ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5787, 605, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5788, 605, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', 'standard', NULL, '39.0000', '39.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '39.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5789, 605, 1826, 'PR-539', 'SYRINGES & NEES (KOREA) 5ML', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5790, 605, 1483, '5011501040131', 'DEEP HEAT RUB 67G', 'standard', NULL, '23.0000', '23.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5791, 605, 2859, '57412085', 'PELODIUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5792, 605, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', 'standard', NULL, '38.0000', '38.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5793, 605, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5794, 605, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.5000', '16.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5795, 605, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5796, 605, 2284, '8906009232232', 'LOFNAC-P TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5797, 605, 2419, '03336179', 'MR  MUSCLE', 'standard', NULL, '18.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5798, 605, 2657, '29274667', 'LOPERON CAPS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5799, 605, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5800, 605, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5801, 606, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5802, 606, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5803, 606, 2307, '07147099', 'ZITHROMAX 250MG', 'standard', NULL, '190.0000', '190.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '190.0000', '', '190.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5804, 606, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5805, 606, 1680, 'PR-393', 'BELLA COUGH MIXTURE', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5806, 607, 1316, 'PR-29', 'FAMACOLD SYR', 'standard', NULL, '9.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5807, 607, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', 'standard', NULL, '6.5000', '6.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5808, 607, 2514, '98091900', 'TOMBROWN 500G', 'standard', NULL, '13.0000', '13.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5809, 607, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5810, 607, 2635, '2208744', 'PLASTER ROLL S/S', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5811, 607, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5812, 607, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5813, 607, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5814, 607, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5815, 608, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5816, 608, 1978, '6186000077045', 'QUEEN ELISABETH COCO BUTTER LOTIN 400ML', 'standard', NULL, '8.5000', '8.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5817, 608, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5818, 608, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5819, 608, 2463, '22321274', 'ADVIL COMBO 50\'S', 'standard', NULL, '4.0000', '4.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5820, 608, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5821, 608, 1544, '4031571036033', 'CLOTRI DENK 100 PESS', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5822, 608, 2589, '04036623', 'DEXTROSE SALINE DNS INFUSSION', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5823, 608, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5824, 608, 2055, '34197416', 'ACTILIFE MUITIVITAMINS', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5825, 608, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5826, 608, 2485, '40177526', 'GOLDEN RAISEN', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5827, 608, 2481, '40294439', 'FENNEL SEED', 'standard', NULL, '4.5000', '4.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5828, 608, 2513, '35471802', 'HONEY 1L', 'standard', NULL, '50.0000', '50.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '50.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5829, 608, 1762, 'PR-475', 'KIDIVITE MULTIVITAMIN DROPS 25ML', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5830, 608, 2226, '6033000086358', 'CERELAC TIN MAIZE', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5831, 608, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5832, 608, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5833, 609, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', 'standard', NULL, '32.0000', '32.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '64.0000', '', '32.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5834, 609, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5835, 609, 1688, 'PR-401', 'ZINCOVIT TAB', 'standard', NULL, '24.0000', '24.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5836, 609, 2411, '13740723', 'GEBEDOL FORTE TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5837, 609, 2398, '83807653', 'KINGDOM GINSENG CAPS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5838, 609, 2485, '40177526', 'GOLDEN RAISEN', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5839, 609, 1962, '5021265224128', 'VISIONANCE UK', 'standard', NULL, '38.5000', '38.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '77.0000', '', '38.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5840, 609, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5841, 609, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '1.8000', '1.8000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.4000', '', '1.8000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5842, 609, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.9000', '', '1.3000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5843, 609, 2170, '8964000114070', 'SWEET ALMOND OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5844, 609, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5845, 609, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5846, 609, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5847, 609, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '1.8000', '1.8000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.6000', '', '1.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5848, 609, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5849, 609, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5850, 609, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', 'standard', NULL, '36.5000', '36.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '36.5000', '', '36.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5851, 610, 1530, '4031571064159', 'METFORMIN DENK 1G', 'standard', NULL, '38.0000', '38.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5852, 610, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5853, 610, 1345, '8901082005339', 'ADDYZOA CAPS', 'standard', NULL, '65.0000', '65.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '65.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5854, 610, 1554, 'PR-267', 'COTRI SUS (M&G) SEPTRIN', 'standard', NULL, '4.5000', '4.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5855, 610, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5856, 610, 1616, 'PR-329', 'GACET SUPP 250MG', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5857, 611, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5858, 611, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5859, 611, 2633, '36871243', 'GANA BALM', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5860, 611, 2348, '70645774', 'LYNUX OINT', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5861, 611, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5862, 611, 1394, 'PR-107', 'AGBEVE TONIC(30)', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5863, 611, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5864, 611, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5865, 611, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5866, 611, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5867, 611, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5868, 611, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5869, 611, 2662, '78880294', 'LONART TAB', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5870, 611, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5871, 611, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5872, 611, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5873, 611, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5874, 611, 1856, 'PR-569', 'KOFFEX SYR ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5875, 611, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5876, 611, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5877, 611, 2602, '86780065', 'CLOVES ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5878, 611, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '27.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '81.0000', '', '3.0000', NULL, 1, 'pc', '27.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5879, 611, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5880, 611, 2143, '4005292004916', 'GERMANY VIT C', 'standard', NULL, '18.0000', '18.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '18.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5881, 611, 2255, '8901040258050', 'BIOFERON CAPS', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5882, 611, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5883, 611, 1578, 'PR-291', 'SAMALIN LOZENGES', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5884, 611, 1954, '87246804', 'COLDRID TAB', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5885, 612, 1894, 'PR-607', 'Primadal', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5886, 612, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5887, 612, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5888, 613, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '11.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '11.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5889, 613, 2463, '22321274', 'ADVIL COMBO 50\'S', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5890, 613, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5891, 613, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5892, 613, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.3000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5893, 613, 2858, '54574718', 'PREG TEST CASSETTE', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5894, 613, 2041, '6181100535136', 'BABY MED LOTION 800ML', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5895, 613, 2676, '39826217', 'ONE TOUCH SELECT PLUS STRIP', 'standard', NULL, '3.0000', '3.0000', '21.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '3.0000', NULL, 1, 'pc', '21.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5896, 613, 2120, '850005911845', 'SANITIZERR SMALL SUAVE', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5897, 613, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5898, 613, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6900', '', '0.6900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5899, 613, 2570, '24041017', 'GOLDY SUSP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5900, 613, 2864, '58170295', 'PARA DENK 250MG SUPP', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5901, 613, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5902, 613, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5903, 613, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5904, 613, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5905, 613, 2567, '83596243', 'NAN 1', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5906, 613, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '3.9000', '3.9000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '3.9000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5907, 613, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5908, 613, 2816, '72412730', 'MOTILUM TAB', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5909, 613, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5910, 613, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5911, 613, 2254, '8901040258036', 'BIOFERON SYRUP', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5912, 613, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5913, 613, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5914, 613, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5915, 613, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5916, 613, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5917, 613, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5918, 613, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5919, 613, 1610, '8904107900909', 'MYCOLEX-3 CREAM', 'standard', NULL, '21.0000', '21.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5920, 613, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5921, 613, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5922, 613, 2072, '41512770', 'ZINVITE CAPS', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5923, 613, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5924, 613, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5925, 613, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5926, 613, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5927, 613, 1399, 'PR-112', 'DIAGELLETS 250ML(50)', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5928, 613, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5929, 613, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5930, 614, 2443, '42430092', 'SOFTCARE SANITRY PAD', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5931, 614, 2552, '17018789', 'ORELOX SUSP', 'standard', NULL, '127.0000', '127.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '127.0000', '', '127.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5932, 614, 2307, '07147099', 'ZITHROMAX 250MG', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '190.0000', '', '190.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5933, 614, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5934, 614, 1604, 'PR-317', 'AUGMENTIN 1G', 'standard', NULL, '51.5000', '51.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '103.0000', '', '51.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5935, 614, 2815, '5017007024262', 'OMEPRAZOLE 20MG  TEVA', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5936, 614, 2813, '48335635', 'JOINTACE', 'standard', NULL, '68.0000', '68.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '68.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5937, 614, 2817, '45511010', 'ROBAXIN TAB', 'standard', NULL, '2.2000', '2.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '2.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5938, 614, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5939, 614, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5940, 614, 2546, '11973520', 'NOSTAMINE E/N DROPS', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5941, 615, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '1.8000', '1.8000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '1.8000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5942, 616, 2359, '66115662', 'LOSAR-DENK 50MG TAB', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5943, 617, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5944, 617, 1355, 'PR-68', 'LIVOPAT CAPS- INDUS', 'standard', NULL, '23.5000', '23.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.5000', '', '23.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5945, 617, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5946, 617, 1796, 'PR-509', 'SEPTRIN SY MG', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5947, 617, 2274, '55192131', 'STOPKOFF EXP CHN', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5948, 617, 2096, '90371186', 'LETAVIT SYRUP 125ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5949, 617, 1969, '8906016833507', 'CARTEF TAB 24   20/120', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5950, 617, 2864, '58170295', 'PARA DENK 250MG SUPP', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5951, 617, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5952, 617, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5953, 617, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5954, 617, 1318, '5017848248049', 'MENTHOX SYR ADULT', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5955, 617, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5956, 617, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5957, 617, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5958, 617, 2157, '13804928', 'GVITHER INJ', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5959, 617, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5960, 617, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5961, 617, 2102, '12180621', 'METRONIDAZOLE SUSP 100ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5962, 617, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5963, 617, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5964, 617, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5965, 617, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5966, 617, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5967, 617, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5968, 617, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5969, 617, 2816, '72412730', 'MOTILUM TAB', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5970, 617, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5971, 617, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5972, 617, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5973, 617, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5974, 617, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5975, 617, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5976, 617, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5977, 617, 1659, '5021265228027', 'OMEGA H3 CAP', 'standard', NULL, '55.0000', '55.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '55.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5978, 617, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5979, 617, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5980, 617, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5981, 617, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5982, 617, 2482, '83427820', 'FENUGREEK SEED', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5983, 617, 2807, '80774399', 'FAMI CARE KID BRUSH', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5984, 617, 2313, '83991627', 'ENTRACIN 300', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5985, 617, 1649, '6161102003536', 'ZUBES EXPECTORANT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5986, 617, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5987, 617, 2706, '44071026', 'GASTRONE SYRUP 200ML', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5988, 617, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5989, 617, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5990, 617, 2325, '68025873', 'ALWAYS PAD MAX', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5991, 617, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5992, 617, 2713, '06467625', 'MENTOS ICE GUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5993, 617, 1389, '6034000189360', 'ADOM PAWAY CAPS(l00)', 'standard', NULL, '22.5000', '22.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '22.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5994, 617, 2382, '28069626', 'EPICROM 4% EYE DROP', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5995, 617, 1938, 'PR-651', 'Hilderm Cream CH Agh020', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5996, 617, 1452, 'PR-165', 'Tobufon 400 T002e001', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5997, 617, 2228, '7501058625915', 'LACTOGEN  1', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5998, 617, 2262, '69085595', 'LENOR CONTRACEPTIVE', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5999, 617, 1668, '8906016831572', 'Acidom Caps', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6000, 617, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6001, 617, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6002, 617, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6003, 617, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.2000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6004, 617, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6005, 617, 2288, '44100235', 'FLUXAMOX SUSP 100ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6006, 617, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6007, 617, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6008, 617, 2346, '68048014', 'CALAMINE OINT', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6009, 617, 2569, '30297629', 'METROBON F', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6010, 617, 2093, '74359321', 'CALCIUM B12 SYRUP 200ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6011, 617, 1351, '4084500846579', 'PEPTO BISMOL 240ML', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6012, 617, 1946, '92115303', 'Ascorbin  Syrup 100ml', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6013, 617, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6014, 617, 2554, '14693543', 'DISPOSABLE INFUSION', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6015, 617, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6016, 617, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6017, 617, 2261, '2112345602905', 'TIGER SPRAY', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6018, 617, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6019, 618, 2892, '97440547', 'JET INHALER LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6020, 619, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6021, 619, 2331, '22131552', 'IMODIYM CAPS 2MG 6\'S', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6022, 619, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6023, 619, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '11.5000', '11.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '11.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6024, 619, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6025, 619, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6026, 619, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '0.2500', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6027, 619, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6028, 620, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6029, 621, 2097, '70572709', 'MACRAFOLIN SYRUP 125ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6030, 621, 2491, '57627875', 'BELLS VITAMIN C', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6031, 621, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6032, 621, 2274, '55192131', 'STOPKOFF EXP CHN', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6033, 621, 2294, '44448916', 'PENICILLIN OINTMENT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6034, 621, 2410, '22266640', 'CARTEF SUSP 60ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6035, 621, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6036, 621, 2363, '25326446', 'WELLMAN DRINK', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6037, 621, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6038, 621, 2566, '42135887', 'MILO TIN', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6039, 621, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6040, 621, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6041, 621, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6042, 621, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6043, 621, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6044, 621, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6045, 621, 1662, '3400970000913', 'IDEOS ~', 'standard', NULL, '69.0000', '69.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '69.0000', '', '69.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6046, 621, 2238, '5021265223350', 'PERFECTIL PLATINUM', 'standard', NULL, '51.0000', '51.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '204.0000', '', '51.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6047, 621, 2631, '30731680', 'CARO WHITE SAOP', 'standard', NULL, '7.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6048, 621, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6049, 621, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 'standard', NULL, '34.0000', '34.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '34.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6050, 621, 2316, '59549986', 'SMA 1 BABY FOOD', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6051, 621, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6052, 621, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '1.8000', '1.8000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '1.8000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6053, 621, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6054, 621, 2096, '90371186', 'LETAVIT SYRUP 125ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6055, 621, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '1.8000', '1.8000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.6000', '', '1.8000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6056, 621, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6057, 621, 1978, '6186000077045', 'QUEEN ELISABETH COCO BUTTER LOTIN 400ML', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6058, 622, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6059, 622, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6060, 622, 1859, '8901138502942', 'PILEX TAB', 'standard', NULL, '32.0000', '32.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6061, 622, 2614, '96562826', 'WELLMAN CAPS', 'standard', NULL, '71.0000', '71.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '71.0000', '', '71.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6062, 622, 2558, '12419923', 'OVULATION TEST KIT', 'standard', NULL, '7.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6063, 622, 1465, '9502930974976', 'SENSOOYNE EXTRA FRESH PASTE 75ML', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6064, 622, 2236, '6033000270108', 'EFPAC JNR', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6065, 622, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6066, 622, 2168, '8901082004356', 'APTIZOOOM', 'standard', NULL, '39.0000', '39.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '39.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6067, 622, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6068, 622, 2633, '36871243', 'GANA BALM', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6069, 622, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6070, 622, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6071, 622, 2463, '22321274', 'ADVIL COMBO 50\'S', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6072, 622, 2772, '70208100', 'CAFEGOT TAB', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6073, 622, 2425, '54377887', 'SASSO MOSQUITO SPRAY  B/S', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6074, 622, 2893, '66615924', 'FISHERMAN\'S FRIEND', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6075, 622, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', 'standard', NULL, '39.0000', '39.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '39.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6076, 622, 1754, '5000347029462', 'PANADOL ADV PLAIN 16\' COMPACK', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6077, 622, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6078, 622, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6079, 622, 1711, 'PR-424', 'CIROTAMIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6080, 622, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6081, 622, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6082, 622, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6083, 622, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6084, 622, 1585, 'PR-298', 'ZUBES CHILDREN', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6085, 622, 2062, '01665566', 'ZYMAX SUSP', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6086, 622, 2703, '05760199', 'ASCOVIT CEE SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6087, 622, 2459, '26218313', 'ENAMYCIN SUS (ECL)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6088, 622, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6089, 622, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6090, 622, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6091, 622, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '3.8300', '3.8300', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.8300', '', '3.8300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6092, 622, 1969, '8906016833507', 'CARTEF TAB 24   20/120', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6093, 622, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6094, 622, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6095, 622, 1375, '5021265243457', 'OSTEOCARE TABS - UK', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6096, 622, 1645, 'PR-358', 'AMCOF ADULT SYRUP', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6097, 622, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6098, 622, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6099, 622, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6100, 622, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6101, 622, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6102, 622, 2434, '50763677', 'PEPSODENT 123', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6103, 622, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6104, 622, 2345, '37407616', 'PONSTAN CAPS 250MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6105, 622, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6106, 622, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6107, 622, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '3.8300', '3.8300', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.8300', '', '3.8300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6108, 622, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6109, 622, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6110, 622, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6111, 622, 2463, '22321274', 'ADVIL COMBO 50\'S', 'standard', NULL, '4.0000', '4.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6112, 622, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6113, 622, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6114, 622, 2810, '44204486', 'L MONTUS', 'standard', NULL, '2.9000', '2.9000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.8000', '', '2.9000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6115, 622, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6116, 622, 2817, '45511010', 'ROBAXIN TAB', 'standard', NULL, '2.2000', '2.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '2.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6117, 622, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6118, 622, 2866, '6922049789736', 'CALCIUM/IRON/ZINC CHEWABLE TABLETS', 'standard', NULL, '1.5000', '1.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '1.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6119, 622, 2240, '5000198522501', 'PIRITON SYR', 'standard', NULL, '49.0000', '49.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '49.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6120, 623, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.2000', '', '0.6000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6121, 623, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6122, 623, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6123, 623, 2893, '66615924', 'FISHERMAN\'S FRIEND', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6124, 623, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '46.0000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6125, 623, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6126, 623, 1645, 'PR-358', 'AMCOF ADULT SYRUP', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6127, 623, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6128, 624, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6129, 624, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6130, 625, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6131, 626, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6132, 626, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6133, 626, 1999, '6971044950313', 'YAZZ PAD', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6134, 626, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6135, 626, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6136, 626, 1688, 'PR-401', 'ZINCOVIT TAB', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6137, 626, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6138, 626, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6139, 626, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.5000', '20.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.5000', '', '20.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6140, 626, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6141, 626, 1637, '4031571068959', 'DICLO DENK 100MG TAB', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6142, 626, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6143, 626, 2381, '72472860', 'ENACEF SUSP', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6144, 626, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', 'standard', NULL, '15.5000', '15.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '15.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6145, 626, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6146, 626, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6147, 626, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6148, 626, 2602, '86780065', 'CLOVES ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6149, 626, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6150, 626, 2326, '76020391', 'FLOOR CLEANER', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6151, 627, 1324, '6181100465976', 'MEDICAL ICE COOL', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6152, 628, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '11.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '11.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6153, 628, 1557, 'PR-270', 'SE CLEAR EYE DROP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6154, 628, 1308, '5012617005687', 'FOLIC ACID 5MG OVAL', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6155, 628, 2859, '57412085', 'PELODIUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6156, 628, 2662, '78880294', 'LONART TAB', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6157, 628, 2154, '8410179200927', 'BORGES S/S  125ML', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6158, 628, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6159, 628, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6160, 628, 2491, '57627875', 'BELLS VITAMIN C', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6161, 628, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6162, 628, 2236, '6033000270108', 'EFPAC JNR', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6163, 628, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6164, 628, 1304, 'PR-17', 'BASECHLOR DROPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6165, 628, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6166, 628, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6167, 628, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6168, 628, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6169, 628, 2245, '77795384', 'MAGACID TABLETS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6170, 628, 2297, '46332629', 'DREZ SOLUTION S/S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6171, 628, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6172, 628, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6173, 628, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6174, 628, 1908, 'PR-621', 'Magacid tablet', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6175, 628, 2032, '8859178707738', 'TOP COUNTRY ROLL ON 80ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6176, 628, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6177, 628, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6178, 628, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6179, 628, 2442, '84998316', 'COLGATE TRIPPLE ACTION TOOTHPASTE', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6180, 628, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6181, 628, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6182, 628, 2544, '85585070', 'NEXCOFER SYR L/S', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6183, 628, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6184, 628, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6185, 628, 1811, 'PR-524', 'VERMOX SUSP', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6186, 628, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6187, 628, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6188, 628, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.8000', '', '0.6000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6189, 628, 2236, '6033000270108', 'EFPAC JNR', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6190, 628, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6191, 628, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6192, 628, 2713, '06467625', 'MENTOS ICE GUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6193, 628, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6194, 628, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6195, 628, 2444, '73221630', 'SOFTCARE BABY WIPES', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6196, 628, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6197, 628, 1304, 'PR-17', 'BASECHLOR DROPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6198, 628, 2333, '81610561', 'CIPROFLOXACIN SUSP (XIN-A)', 'standard', NULL, '43.5000', '43.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '43.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6199, 628, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6200, 628, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6201, 628, 2333, '81610561', 'CIPROFLOXACIN SUSP (XIN-A)', 'standard', NULL, '43.5000', '43.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '43.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6202, 628, 1585, 'PR-298', 'ZUBES CHILDREN', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6203, 628, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6204, 628, 1385, 'PR-98', 'AZIS TABS. 500MG', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6205, 628, 1934, '2553185615463', 'Mucotin  ENFANT 2% l017d007', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6206, 628, 1733, 'PR-446', 'ENAFIX TABS 200MG 10\'', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6207, 628, 2270, '64645876', 'MIST POT CIT', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6208, 628, 1953, '56415263', 'STAGYL TABS', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6209, 628, 1521, 'PR-234', 'PAINGAYCAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6210, 628, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', 'standard', NULL, '3.7000', '3.7000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.4000', '', '3.7000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6211, 628, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6212, 628, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6213, 628, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6214, 628, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', 'standard', NULL, '45.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6215, 628, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6216, 629, 2565, '45244498', 'VERNA WATER MEDIUM', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6217, 630, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6218, 630, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6219, 630, 2485, '40177526', 'GOLDEN RAISEN', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6220, 630, 1452, 'PR-165', 'Tobufon 400 T002e001', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6221, 630, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6222, 630, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6223, 630, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6224, 630, 1577, 'PR-290', 'MALIN LOZ', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6225, 630, 2277, '71311341', 'ZUBES TABLETS ', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6226, 630, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6227, 630, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6228, 630, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6229, 630, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6230, 630, 1649, '6161102003536', 'ZUBES EXPECTORANT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6231, 630, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6232, 630, 2635, '2208744', 'PLASTER ROLL S/S', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6233, 630, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6234, 630, 2298, '11840983', 'DREZ OINTMENT 10G S/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6235, 630, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6236, 630, 2635, '2208744', 'PLASTER ROLL S/S', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6237, 630, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6238, 630, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6239, 631, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6240, 631, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '60.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6241, 631, 2131, '4005900098238', 'NIVEA SPRAY 150ML', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6242, 631, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6243, 632, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6244, 632, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6245, 632, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6246, 632, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6247, 633, 1616, 'PR-329', 'GACET SUPP 250MG', 'standard', NULL, '7.5000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6248, 633, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6249, 633, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '3.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6250, 633, 1309, 'PR-22', 'GENTBASE EYE/EAR DROP', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6251, 633, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '3.8300', '3.8300', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.8300', '', '3.8300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6252, 633, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6253, 633, 1730, 'PR-443', 'DAKTACORT CREAM 15G', 'standard', NULL, '32.0000', '32.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6254, 633, 2854, '44570580', 'LORATADINE 10MG  TEVA', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6255, 633, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6256, 633, 2546, '11973520', 'NOSTAMINE E/N DROPS', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6257, 633, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3800', '', '0.6900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6258, 633, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6259, 633, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6260, 633, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6261, 633, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6262, 633, 2892, '97440547', 'JET INHALER LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6263, 633, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6264, 633, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6265, 633, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6266, 633, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6267, 633, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6268, 633, 2603, '17379642', 'VITAGO', 'standard', NULL, '1.3000', '1.3000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3000', '', '1.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6269, 633, 1730, 'PR-443', 'DAKTACORT CREAM 15G', 'standard', NULL, '32.0000', '32.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6270, 633, 2332, '55271844', 'FLUXACIN (F\'CLOX) SUSP 100ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6271, 633, 2273, '04120489', 'RHIZIN SYRP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6272, 633, 2316, '59549986', 'SMA 1 BABY FOOD', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6273, 633, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6274, 633, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6275, 633, 2437, '44857984', 'APTAMIL BABY MILK', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '100.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6276, 633, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', 'standard', NULL, '38.0000', '38.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '38.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6277, 633, 1584, '5060806420162', 'PROMAN DRINK 250ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6278, 633, 2649, '19814758', 'ZITHROMAX SUSP', 'standard', NULL, '94.0000', '94.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '94.0000', '', '94.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6279, 633, 1306, 'PR-19', 'DOMI 10: TAB', 'standard', NULL, '3.0000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6280, 633, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6281, 633, 1420, 'PR-133', 'NAZO', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6282, 633, 2335, '90387267', 'EPICROM EYE DROP 2%', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6283, 633, 2178, '8964000114308', 'CARROT OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6284, 633, 1604, 'PR-317', 'AUGMENTIN 1G', 'standard', NULL, '51.5000', '51.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '103.0000', '', '51.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6285, 633, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6286, 633, 2665, '94928957', 'FLEMING 625MG', 'standard', NULL, '32.0000', '32.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6287, 633, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6288, 633, 1555, '3582910081043', 'RHINATHIOL ADULT SYR 125ML', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6289, 633, 2810, '44204486', 'L MONTUS', 'standard', NULL, '2.9000', '2.9000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '2.9000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6290, 634, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6291, 634, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', '48.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6292, 634, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6293, 634, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '4.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6294, 634, 1908, 'PR-621', 'Magacid tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6295, 634, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6296, 634, 2859, '57412085', 'PELODIUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6297, 635, 2916, '85432536', 'LORNAT DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6298, 635, 2672, '46856001', 'ALDOMENT 250MGTAB 60\'S', 'standard', NULL, '10.0000', '10.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '10.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6299, 636, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '14.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '2.5000', NULL, 1, 'pc', '14.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6300, 636, 2288, '44100235', 'FLUXAMOX SUSP 100ML', 'standard', 0, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6301, 637, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6302, 637, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6303, 637, 2345, '37407616', 'PONSTAN CAPS 250MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6304, 637, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6305, 637, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '3.8300', '3.8300', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.8300', '', '3.8300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6306, 637, 2386, '92175949', 'TETRACYCLINE EYE OINT 5G', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6307, 637, 2274, '55192131', 'STOPKOFF EXP CHN', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6308, 637, 1336, 'PR-49', 'RUBBING ALCOHOL -MUL TITI', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6309, 637, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6310, 637, 2056, '26049852', 'ESSENTIAL EMBROCATION (LIQUID ROBB) 27ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6311, 637, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6312, 637, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6313, 637, 2830, '95865835', 'AMERICAN APPLE CIDER 946ML', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6314, 637, 1626, '306420072116', 'VITAFOL CAP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6315, 637, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6316, 637, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6317, 637, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.4000', '', '1.2000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6318, 637, 2393, '25300648', 'BOAFO OINT', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6319, 637, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6320, 637, 2392, '10965636', 'CHOCHO SAOP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6321, 637, 2108, '85249693', 'ARFAN 20/120MG', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6322, 637, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6323, 637, 2222, '4791014004950', 'QUALITEA GREEN TEA', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6324, 637, 1910, 'PR-623', 'Apc 10 x 10', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6325, 638, 1999, '6971044950313', 'YAZZ PAD', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6326, 638, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6327, 639, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '1.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6328, 639, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6329, 639, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '0.5000', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6330, 639, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6331, 639, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6332, 639, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6333, 639, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6334, 639, 1604, 'PR-317', 'AUGMENTIN 1G', 'standard', NULL, '51.5000', '51.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '103.0000', '', '51.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6335, 639, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', 'standard', NULL, '26.0000', '26.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '26.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6336, 639, 2343, '67107435', 'INFACOL DROPS 50ML', 'standard', NULL, '51.0000', '51.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '51.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6337, 639, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6338, 639, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6339, 639, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6340, 639, 2604, '43079266', 'COA MIXTURE', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '120.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6341, 639, 2654, '4000388563803', 'DOVE LOTION', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6342, 639, 1541, '8902502106421', 'INFA V PESS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6343, 639, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6344, 639, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6345, 639, 1314, 'PR-27', 'WORMBASE SUSP', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6346, 639, 1452, 'PR-165', 'Tobufon 400 T002e001', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6347, 639, 2394, '14717379', 'MAAME DAGOMBA', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6348, 639, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6349, 639, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6350, 639, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6351, 639, 2600, '5011417566800', 'LEMSIP COUGH SYR 180ML UK', 'standard', NULL, '74.5000', '74.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '74.5000', '', '74.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6352, 639, 2061, '96762855', 'ZYMAX CAPS 500MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6353, 639, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6354, 639, 1511, '5413895053528', 'TEARS NATURAL 11', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6355, 639, 2270, '64645876', 'MIST POT CIT', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6356, 639, 1733, 'PR-446', 'ENAFIX TABS 200MG 10\'', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6357, 639, 2316, '59549986', 'SMA 1 BABY FOOD', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6358, 639, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6359, 639, 2390, '76253920', 'NEXIUM 10 SACHET', 'standard', NULL, '9.0000', '9.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '9.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6360, 639, 1668, '8906016831572', 'Acidom Caps', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6361, 639, 2557, '86393917', 'METOCLOPRAMIDE', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6362, 639, 2557, '86393917', 'METOCLOPRAMIDE', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6363, 639, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6364, 640, 2642, '23201636', 'SOFTCARE DIAPER', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6365, 640, 1525, '5000158063907', 'LEMSIP SACHETS 5\'S', 'standard', NULL, '6.5000', '6.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '6.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6366, 640, 2625, '18152598', 'Olfen Gel', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6367, 640, 2680, '27326576', 'OLFEN GEL 20GM S/S', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6368, 640, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6369, 640, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6370, 640, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6371, 640, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6372, 640, 1975, '6186000077410', 'EVERSHEEN LOTION MEDIUM 500ML', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6373, 640, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '3.8300', '3.8300', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.8300', '', '3.8300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6374, 640, 2854, '44570580', 'LORATADINE 10MG  TEVA', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6375, 640, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6376, 640, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6377, 641, 2923, '67740529', 'BELLS CHN COUGH SYR', 'standard', NULL, '14.6800', '14.6800', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.6800', '', '14.6800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6378, 641, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '3.8300', '3.8300', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.8300', '', '3.8300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6379, 641, 2390, '76253920', 'NEXIUM 10 SACHET', 'standard', NULL, '9.0000', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '9.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6380, 641, 2557, '86393917', 'METOCLOPRAMIDE', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6381, 642, 2916, '85432536', 'LORNAT DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6382, 642, 1557, 'PR-270', 'SE CLEAR EYE DROP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6383, 643, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6384, 643, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6385, 643, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6386, 643, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6387, 643, 1525, '5000158063907', 'LEMSIP SACHETS 5\'S', 'standard', NULL, '6.5000', '6.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '6.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6388, 643, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6389, 643, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6390, 643, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '6.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6391, 643, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6392, 643, 2359, '66115662', 'LOSAR-DENK 50MG TAB', 'standard', NULL, '12.0000', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '12.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6393, 643, 2412, '17935935', 'GLIBINIL CAPS 5MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6394, 643, 2609, '48137025', 'ABYVITA TABS', 'standard', NULL, '4.0000', '4.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6395, 643, 1668, '8906016831572', 'Acidom Caps', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6396, 643, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6397, 643, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6398, 643, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6399, 643, 2908, '78138195', 'MAGACID FASTMELT', 'standard', NULL, '0.5000', '0.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6400, 643, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '1.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6401, 643, 2581, '6006118000202', 'CIPROBAY 500', 'standard', NULL, '122.0000', '122.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '122.0000', '', '122.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6402, 643, 2669, '24220016', 'POLYGYNAX PESS', 'standard', NULL, '32.5000', '32.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6403, 643, 2362, '63796869', 'ZINNAT 500MG', 'standard', NULL, '12.0000', '12.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '12.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6404, 643, 1686, '8901082006-81', 'ALKA-5 SYR', 'standard', NULL, '35.0000', '35.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6405, 643, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6406, 643, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6407, 643, 2283, '8906009232225', 'LOFNAC TAB 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6408, 643, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6409, 643, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6410, 643, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6411, 643, 2362, '63796869', 'ZINNAT 500MG', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6412, 643, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6413, 643, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6414, 643, 2270, '64645876', 'MIST POT CIT', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6415, 644, 2929, '740985212493', 'GINGKO BILOBA', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '90.0000', '', '90.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6416, 645, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6417, 645, 2245, '77795384', 'MAGACID TABLETS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6418, 646, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6419, 646, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6420, 646, 1513, '6221032233103', 'DEXATROL EYE DROP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6421, 646, 2244, '96089977', 'MAGACID SYRUP 200ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6422, 646, 1478, '8906087940128', 'IMPRESSER CAPS', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6423, 646, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6424, 646, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6425, 646, 2543, '89430673', 'SECURE CONTRACEPTIVE', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6426, 646, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6427, 646, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6428, 646, 2270, '64645876', 'MIST POT CIT', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6429, 646, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6430, 646, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6431, 646, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6432, 646, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6433, 646, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6434, 646, 2659, '48350053', 'LACTULOSE SOLUTION 300ML', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6435, 647, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6436, 647, 2273, '04120489', 'RHIZIN SYRP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6437, 647, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6438, 647, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6439, 647, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6440, 647, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6441, 647, 2238, '5021265223350', 'PERFECTIL PLATINUM', 'standard', NULL, '51.0000', '51.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '51.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6442, 647, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6443, 647, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6444, 647, 1649, '6161102003536', 'ZUBES EXPECTORANT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6445, 647, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6446, 647, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6447, 647, 1969, '8906016833507', 'CARTEF TAB 24   20/120', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6448, 647, 2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6449, 647, 2870, '312547427555', 'LISTERINE MOUTH WASH 1.5L ', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '60.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6450, 647, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6451, 647, 2410, '22266640', 'CARTEF SUSP 60ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6452, 647, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6453, 647, 2777, '97856697', 'MMT SUSP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6454, 647, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6455, 647, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6456, 648, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6457, 648, 2273, '04120489', 'RHIZIN SYRP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6458, 648, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6459, 648, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6460, 648, 2712, '7261325', 'VINKA CHOCOLATE TOFFEE', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6461, 648, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6462, 648, 2238, '5021265223350', 'PERFECTIL PLATINUM', 'standard', NULL, '51.0000', '51.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '51.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6463, 648, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6464, 648, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6465, 648, 1649, '6161102003536', 'ZUBES EXPECTORANT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6466, 648, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6467, 648, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6468, 648, 1969, '8906016833507', 'CARTEF TAB 24   20/120', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6469, 648, 2340, '49976874', 'BENDRO FLUZIDE  2.5MG UK', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6470, 648, 2870, '312547427555', 'LISTERINE MOUTH WASH 1.5L ', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '60.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6471, 648, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6472, 648, 2410, '22266640', 'CARTEF SUSP 60ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6473, 648, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6474, 648, 2777, '97856697', 'MMT SUSP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6475, 648, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6476, 648, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6477, 649, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6478, 649, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6479, 650, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6480, 651, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.3000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6481, 651, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6482, 651, 1999, '6971044950313', 'YAZZ PAD', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6483, 651, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6484, 651, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6485, 651, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6486, 651, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6487, 651, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6488, 651, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6489, 651, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6490, 651, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6491, 651, 2557, '86393917', 'METOCLOPRAMIDE', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6492, 651, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6493, 651, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6494, 651, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6495, 651, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6496, 651, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6497, 651, 2858, '54574718', 'PREG TEST CASSETTE', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6498, 651, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6499, 651, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6500, 651, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6501, 651, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6502, 651, 2166, '6036000078514', 'ULCERPLEX HERBAL', 'standard', NULL, '7.5000', '7.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '7.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6503, 652, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6504, 652, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6505, 652, 2356, '42767945', 'DIABETONE TABS UK', 'standard', NULL, '51.0000', '51.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '51.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6506, 652, 2154, '8410179200927', 'BORGES S/S  125ML', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6507, 652, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6508, 652, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6509, 652, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6510, 652, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6511, 652, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', 'standard', NULL, '4.0000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6512, 652, 2866, '6922049789736', 'CALCIUM/IRON/ZINC CHEWABLE TABLETS', 'standard', NULL, '1.5000', '1.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '1.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6513, 652, 2680, '27326576', 'OLFEN GEL 20GM S/S', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6514, 653, 1542, '8902502108920', 'INFAV OINT', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6515, 653, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6516, 653, 1779, 'PR-492', 'BISACODYL [GEO] 1000\'S', 'standard', NULL, '1.0000', '1.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '1.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6517, 653, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '4.0000', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6518, 653, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6519, 653, 2810, '44204486', 'L MONTUS', 'standard', NULL, '2.9000', '2.9000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.3000', '', '2.9000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6520, 653, 2484, '00708902', 'PUMPKIN SEED', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6521, 653, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6522, 653, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6523, 653, 1643, '6001135505433', 'BENYLIN ORIGINAL', 'standard', NULL, '53.0000', '53.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '53.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6524, 653, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6559, 654, 2247, '29226629', 'TRISILICATE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6560, 654, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6561, 654, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6562, 654, 1440, 'PR-153', 'VICTORY GARLIC', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6563, 654, 1401, 'PR-114', 'EKURO BEWU', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6564, 654, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6565, 654, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6566, 654, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6567, 654, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6568, 654, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6569, 654, 2602, '86780065', 'CLOVES ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6570, 654, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6571, 654, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6572, 654, 2455, '07137762', 'AMITRIPTYLINE 25MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6573, 654, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6574, 654, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6575, 654, 1445, 'PR-158', 'Iburex Caps c013D002', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6576, 654, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6577, 654, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6578, 654, 2262, '69085595', 'LENOR CONTRACEPTIVE', 'standard', NULL, '6.0000', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '6.0000', NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6579, 654, 1568, '5000283659013', 'TAMSULOSIN MR CAPS 400MG ZENTIVA', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6580, 654, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6581, 654, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6582, 654, 2543, '89430673', 'SECURE CONTRACEPTIVE', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6583, 654, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6584, 654, 2917, '02413027', 'FLEMEX ADULT SYRUP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6585, 654, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6586, 654, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '0.2500', NULL, 1, 'pc', '20.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6587, 654, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6588, 654, 2876, '19595752', 'TUMERIC TRANSPARENT SOAP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6589, 654, 2825, '09140818', 'FACE MASK PACK', 'standard', NULL, '25.0000', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '25.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6590, 654, 1999, '6971044950313', 'YAZZ PAD', 'standard', NULL, '7.5000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6591, 654, 2692, '05619425', 'STICK ROLL ON B/S', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6592, 655, 2824, '55755568', 'BINGO SOFTNER', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6593, 655, 2162, '6156000252803', 'TCP SOAP', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6594, 655, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6595, 655, 2817, '45511010', 'ROBAXIN TAB', 'standard', NULL, '2.2000', '2.2000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '2.2000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6596, 655, 2866, '6922049789736', 'CALCIUM/IRON/ZINC CHEWABLE TABLETS', 'standard', NULL, '1.5000', '1.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '1.5000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6597, 655, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6598, 655, 2525, '8850722212760', 'GOATMILK SOAP', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6599, 655, 2346, '68048014', 'CALAMINE OINT', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6600, 655, 1562, 'PR-275', 'SULPHUR OINT.', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6601, 655, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6602, 656, 2275, '10665944', 'PARACETAMOL TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6603, 656, 2916, '85432536', 'LORNAT DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6604, 657, 2423, '57283790', 'POWERZONE S/S', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6605, 658, 2768, '31007297', 'AMOXYL CAPS 250 (ESKAY)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6606, 658, 2803, '83576846', 'LORATADINE 10MG 30\' ALMUS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6607, 658, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6608, 658, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6609, 658, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6610, 659, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6611, 659, 1570, '4014852750712', 'PROCOMIL MALE DELAY SPRAY', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '60.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6612, 659, 2399, '95599749', 'HEPA PLUS', 'standard', NULL, '11.0000', '11.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '11.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6613, 659, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6614, 660, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6615, 660, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6616, 660, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6617, 661, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6618, 662, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6619, 662, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6620, 662, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6621, 662, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6622, 663, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6623, 663, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6624, 663, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6625, 663, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6626, 663, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6627, 663, 1693, 'PR-406', 'CITY BLOOD TONIC 200ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6628, 663, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6629, 663, 1945, 'PR-658', 'LUFART SUSP', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6630, 663, 1455, 'PR-168', 'Gacet125MP KIACK006', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6631, 663, 1567, 'PR-280', 'BRENEX SYRUP', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6632, 663, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6633, 663, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6634, 663, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6635, 663, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6636, 663, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6637, 663, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6638, 663, 2541, '39996904', 'DEMACOT CREAM', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6639, 663, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6640, 663, 1379, 'PR-92', 'DIFLUCAN CAPS', 'standard', NULL, '109.0000', '109.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '109.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6641, 663, 1452, 'PR-165', 'Tobufon 400 T002e001', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6642, 664, 2700, '11271279', 'GAVISCON PEPPERMINT 200ML LIQ', 'standard', NULL, '37.0000', '37.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '37.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6643, 664, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6644, 664, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6645, 664, 2485, '40177526', 'GOLDEN RAISEN', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6646, 665, 2072, '41512770', 'ZINVITE CAPS', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6647, 665, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6648, 665, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6649, 666, 2390, '76253920', 'NEXIUM 10 SACHET', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6650, 666, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6651, 666, 2644, '46646498', 'COMFORT SOFTNER B/S', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '60.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6652, 666, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6653, 666, 2768, '31007297', 'AMOXYL CAPS 250 (ESKAY)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6654, 666, 2357, '22168350', 'LADINAS PICT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6655, 666, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6656, 666, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6657, 666, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6658, 666, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6659, 666, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6660, 666, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6661, 666, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6662, 666, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6663, 666, 2277, '71311341', 'ZUBES TABLETS ', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6664, 666, 2518, '51929198', 'TAVANIC 500MG', 'standard', NULL, '154.0000', '154.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '154.0000', '', '154.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6665, 666, 2145, '4000987008118', 'AMOS VIT C', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6666, 666, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6667, 666, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6668, 666, 2362, '63796869', 'ZINNAT 500MG', 'standard', NULL, '12.0000', '12.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '12.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6669, 666, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6670, 666, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6671, 666, 1306, 'PR-19', 'DOMI 10: TAB', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6672, 666, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6673, 666, 2825, '09140818', 'FACE MASK PACK', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6674, 666, 1735, 'PR-448', 'EXFORGE TABS (10/160)MG 28', 'standard', NULL, '6.0000', '6.0000', '28.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '168.0000', '', '6.0000', NULL, 1, 'pc', '28.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6675, 666, 1527, '8904159609416', 'PREGASAFE 75MG TAB', 'standard', NULL, '17.5000', '17.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '52.5000', '', '17.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6676, 666, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6900', '', '0.6900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6677, 666, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6678, 667, 2350, '58123990', 'COARTEM 6\'S', 'standard', NULL, '13.5000', '13.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6679, 667, 2027, '60018915', 'VASELINE CREAM SMALL 100ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6680, 667, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6900', '', '0.6900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6681, 667, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6682, 667, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6683, 667, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6684, 667, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', 'standard', NULL, '38.0000', '38.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '38.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6685, 667, 2380, '5625110', 'WELLWOMAN PLUS OMEGA(2,6,9)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '50.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6686, 667, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6687, 667, 1463, '5010123715175', 'EUTHYMOO TOOTHPASTE', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6688, 667, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6689, 668, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6690, 668, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6691, 668, 2100, '76299284', 'AMOXYCILLIN SUSP 100ML LETAP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6692, 668, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6693, 668, 1318, '5017848248049', 'MENTHOX SYR ADULT', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6694, 668, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6695, 668, 2266, '8906046070682', 'KIDIVITE SYR L/S', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6696, 668, 2166, '6036000078514', 'ULCERPLEX HERBAL', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6697, 668, 2132, '4005900579614', 'NIVEA BODY LOTION 400ML', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6698, 669, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6699, 669, 2704, '24774325', 'SENSODYNE DEEP CLEAN GEL', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6700, 670, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6701, 670, 1856, 'PR-569', 'KOFFEX SYR ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6702, 670, 2240, '5000198522501', 'PIRITON SYR', 'standard', NULL, '49.0000', '49.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '49.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6703, 670, 1643, '6001135505433', 'BENYLIN ORIGINAL', 'standard', NULL, '53.0000', '53.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '106.0000', '', '53.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6704, 670, 2703, '05760199', 'ASCOVIT CEE SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6705, 670, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6706, 670, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6707, 670, 2277, '71311341', 'ZUBES TABLETS ', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6708, 670, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6709, 670, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6710, 670, 2387, '00790319', 'NORMAL TEARS EYE DROP', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6711, 670, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6712, 670, 1864, 'PR-577', 'VIROL BLOOD TONIC', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6713, 670, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6714, 670, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6715, 670, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6716, 670, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6717, 670, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6718, 670, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6719, 670, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6720, 671, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6721, 671, 1928, '8906009234090', 'LOFNAC GEL GLF143', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6722, 671, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6723, 671, 1306, 'PR-19', 'DOMI 10: TAB', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6724, 671, 1704, '5060033711873', 'CYPRODINE SYR', 'standard', NULL, '35.5000', '35.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '35.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6725, 671, 2634, '20074246', 'COTTON SKIN ESSENTIALS/ORGANIC', 'standard', NULL, '15.0000', '15.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '15.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6726, 671, 2514, '98091900', 'TOMBROWN 500G', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6727, 671, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '1.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6728, 671, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6729, 671, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '14.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '2.0000', NULL, 1, 'pc', '14.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6730, 671, 1811, 'PR-524', 'VERMOX SUSP', 'standard', NULL, '19.5000', '19.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '19.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6731, 671, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6732, 671, 1643, '6001135505433', 'BENYLIN ORIGINAL', 'standard', NULL, '53.0000', '53.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '53.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6733, 671, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6734, 671, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6735, 671, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6736, 671, 2003, '6033000102584', 'ROBB JAR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6737, 672, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6738, 672, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6739, 672, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '3.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6740, 672, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6741, 672, 2232, '25430404', 'AMOKISKLAV 1000MG', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6742, 672, 2730, '70096024', 'ENAFEN (IBUPROFEN TAB 400MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6743, 672, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6744, 672, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6745, 672, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6746, 673, 2307, '07147099', 'ZITHROMAX 250MG', 'standard', 0, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '170.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6747, 673, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6748, 674, 1486, '5010441000687', 'HYDROCORTISONE CREAM', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6749, 674, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6750, 674, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '1.5000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6751, 674, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6752, 674, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6753, 674, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6754, 674, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6755, 674, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6756, 674, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6757, 674, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6758, 674, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', 'standard', NULL, '2.5000', '2.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '2.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6759, 674, 1637, '4031571068959', 'DICLO DENK 100MG TAB', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6760, 674, 2267, '52018792', 'KIDICS SYRUP', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6761, 674, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6762, 674, 1398, 'PR-111', 'DIAGEI.LETS 125ML(70)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6763, 674, 2291, '8904091112401', 'CANDIBIOTICS EAR DROPS 5ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6764, 674, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6765, 674, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6766, 674, 1910, 'PR-623', 'Apc 10 x 10', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6767, 674, 2541, '39996904', 'DEMACOT CREAM', 'standard', NULL, '14.5000', '14.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '14.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6768, 675, 2871, '09818574', 'JULIVIT  OATMEAL', 'standard', NULL, '46.0000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6769, 675, 2855, '71871067', 'ESURO WISA', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6770, 675, 2697, '72051764', 'BAY LEAVES', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6771, 675, 2623, '01976331', 'BENDROFLUZIDE 2.5MG UK CRESCENT', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6772, 675, 1928, '8906009234090', 'LOFNAC GEL GLF143', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6773, 675, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6774, 675, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6775, 676, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6776, 677, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6777, 677, 1642, '6001135507628', 'BENYLIN DRY  COUGH SYR 100ML', 'standard', NULL, '41.0000', '41.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '41.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6778, 677, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6779, 677, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6780, 677, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6781, 677, 1626, '306420072116', 'VITAFOL CAP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6782, 677, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6783, 677, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6784, 677, 2247, '29226629', 'TRISILICATE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6785, 677, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6786, 677, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6787, 677, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6788, 677, 2441, '82095661', 'COLGATE HERBAL TOOTHPASTE', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6789, 677, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6790, 677, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6791, 677, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6792, 677, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '0.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6793, 677, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6794, 677, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6795, 677, 2239, '5021265226085', 'PERFECTIL SKIN HAIR NAIL', 'standard', NULL, '35.0000', '35.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '35.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6796, 677, 2825, '09140818', 'FACE MASK PACK', 'standard', NULL, '25.0000', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '25.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6797, 677, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6798, 677, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6799, 677, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6800, 677, 2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6801, 677, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6802, 677, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6803, 677, 1446, 'PR-159', 'Tobufen syr L00YADW6', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6804, 677, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6805, 677, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6806, 677, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6807, 677, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6808, 677, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6809, 677, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6810, 677, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6811, 677, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6812, 677, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6813, 677, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6814, 677, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6815, 677, 2667, '02987046', 'AXACEF TAB 250MG', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6816, 677, 2923, '67740529', 'BELLS CHN COUGH SYR', 'standard', NULL, '14.6800', '14.6800', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.6800', '', '14.6800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6817, 677, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6818, 677, 2890, '13204101', 'PROXIMEXA SUSP 125MG', 'standard', NULL, '52.0000', '52.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '52.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6819, 677, 1677, '8902546578543', 'LUEX BABY COUGH', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6820, 677, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6821, 677, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6822, 678, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6823, 679, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6824, 679, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6825, 679, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6826, 679, 1662, '3400970000913', 'IDEOS ~', 'standard', NULL, '69.0000', '69.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '69.0000', '', '69.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6827, 679, 2891, '27589033', 'FOLIC ACID TAB 5MG (CRESCENT) ', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6828, 679, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6829, 679, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6830, 679, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6831, 679, 2445, '08969985', 'ADULT DIAPER', 'standard', NULL, '5.0000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '5.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6832, 679, 2596, '04414143', 'FEMISTAR CAPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6833, 679, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6834, 679, 2297, '46332629', 'DREZ SOLUTION S/S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6835, 679, 2463, '22321274', 'ADVIL COMBO 50\'S', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6836, 679, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6837, 679, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6838, 679, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6839, 679, 1642, '6001135507628', 'BENYLIN DRY  COUGH SYR 100ML', 'standard', NULL, '41.0000', '41.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '41.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6840, 679, 1627, 'PR-340', 'S/SEAS C.L.O CAPS 60\'', 'standard', NULL, '61.0000', '61.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '61.0000', '', '61.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6841, 679, 1688, 'PR-401', 'ZINCOVIT TAB', 'standard', NULL, '24.5000', '24.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '24.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6842, 679, 2255, '8901040258050', 'BIOFERON CAPS', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6843, 679, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6844, 679, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6845, 679, 1720, 'PR-433', 'FUROSEMIDE TABS 40MG 500\'(ECL)', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6846, 679, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6847, 679, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6848, 679, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6849, 679, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6850, 680, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6851, 680, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '11.5000', '11.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '11.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6852, 680, 1688, 'PR-401', 'ZINCOVIT TAB', 'standard', NULL, '24.5000', '24.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '24.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6853, 680, 2137, '2890607011010', 'CAVEDILOL 6.25 MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6854, 681, 2265, '5014502000807', 'MINAMINO SYRUP M/S', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6855, 681, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6856, 681, 2650, '58359784', 'DICNAC 75 SR', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6857, 682, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6858, 682, 1983, '6186000077014', 'QUEEN ELISABETH COCOA BUTTER CREAM 500ML', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6859, 682, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6860, 682, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6861, 682, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6862, 682, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6863, 682, 1768, '8901040369305', 'VITAMIN C TABS 500MG 30\' (EXETER)', 'standard', NULL, '21.0000', '21.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '63.0000', '', '21.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6864, 682, 1334, 'PR-47', 'GAUSE BANDAGE 41CH', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6865, 682, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6866, 682, 2804, '311845162458', 'ALPHA LIPOIC ACID 200MG CAPS (MASON)', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '80.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6867, 682, 2669, '24220016', 'POLYGYNAX PESS', 'standard', NULL, '32.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6868, 682, 1637, '4031571068959', 'DICLO DENK 100MG TAB', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6869, 682, 1645, 'PR-358', 'AMCOF ADULT SYRUP', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6870, 682, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6871, 682, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6872, 682, 2948, '18028058', 'PREGNANCY TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6873, 682, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6874, 682, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6875, 682, 2363, '25326446', 'WELLMAN DRINK', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6876, 682, 1462, '8904008413690', 'OVACARE TABS', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6877, 682, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6878, 682, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6879, 682, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6880, 682, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6881, 682, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6882, 682, 2955, '51481408', 'LONART TAB 24\'S', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6883, 682, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6884, 682, 1525, '5000158063907', 'LEMSIP SACHETS 5\'S', 'standard', NULL, '6.5000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '6.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6885, 682, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6886, 683, 1707, 'PR-420', 'MEDGLOBIN CAPS', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6887, 683, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6888, 684, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6889, 684, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6890, 684, 2407, '8901138140625', 'MENTAT SYRUP 100ML', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6891, 684, 2406, '8901138502829', 'MENTAT', 'standard', NULL, '27.5000', '27.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.5000', '', '27.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6892, 684, 1978, '6186000077045', 'QUEEN ELISABETH COCO BUTTER LOTIN 400ML', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6893, 684, 1995, '6182000109939', 'CAROTONE LOTION MEDIUM 350ML', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6894, 684, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6895, 684, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6896, 684, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6897, 684, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6898, 684, 2915, '21109477', 'ASPIRIN CARDIO 100MG', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6899, 684, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6900, 684, 2394, '14717379', 'MAAME DAGOMBA', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6901, 684, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6902, 685, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6903, 685, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6904, 685, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6905, 686, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6906, 686, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6907, 686, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.2000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6908, 686, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6909, 686, 2441, '82095661', 'COLGATE HERBAL TOOTHPASTE', 'standard', NULL, '6.5000', '6.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6910, 686, 2166, '6036000078514', 'ULCERPLEX HERBAL', 'standard', NULL, '7.5000', '7.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6911, 686, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6912, 686, 2083, '0114', 'CO-TRIMAZOLE  TAB  SEPTRIM (LETAP) ', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6913, 686, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6914, 686, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6915, 686, 2649, '19814758', 'ZITHROMAX SUSP', 'standard', NULL, '95.0000', '95.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '95.0000', '', '95.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6916, 686, 2316, '59549986', 'SMA 1 BABY FOOD', 'standard', NULL, '48.0000', '48.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6917, 686, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6918, 687, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6919, 687, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6920, 687, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6921, 687, 2331, '22131552', 'IMODIYM CAPS 2MG 6\'S', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6922, 687, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6923, 687, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '6.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6924, 687, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6925, 687, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '3.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6926, 687, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6927, 687, 2680, '27326576', 'OLFEN GEL 20GM S/S', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6928, 687, 2850, '74664071', 'TRAMADOL 50MG', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6929, 687, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6930, 687, 1424, '6036000070709', 'PROSTAT 60', 'standard', NULL, '39.5000', '39.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.5000', '', '39.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6931, 687, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6932, 687, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6933, 687, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6934, 687, 1407, '001', 'GIVERS POWER CAPS(140)', 'standard', NULL, '22.5000', '22.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '22.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6935, 687, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6936, 687, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6937, 687, 2862, '97602687', 'TYPHOID TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6938, 687, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6939, 687, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6940, 687, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6941, 687, 2281, '087450449108', 'TYLENOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '4.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6942, 687, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6943, 687, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6944, 687, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6945, 687, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6946, 687, 1379, 'PR-92', 'DIFLUCAN CAPS', 'standard', NULL, '109.0000', '109.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '109.0000', '', '109.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6947, 687, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', 'standard', NULL, '7.1000', '7.1000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '71.0000', '', '7.1000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6948, 687, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6949, 687, 2284, '8906009232232', 'LOFNAC-P TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6950, 687, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '4.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6951, 687, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6952, 687, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6953, 687, 2027, '60018915', 'VASELINE CREAM SMALL 100ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6954, 687, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6955, 688, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6956, 688, 1857, '6033000270320', 'BX SYR S/S', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6957, 688, 1855, 'PR-568', 'IBUCAP S/S 200S', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6958, 688, 2541, '39996904', 'DEMACOT CREAM', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6959, 688, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6960, 688, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6961, 688, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6962, 688, 1953, '56415263', 'STAGYL TABS', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6963, 688, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6964, 688, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6965, 688, 1363, '5000456022774', 'CRESTOR 5MG TABS', 'standard', NULL, '4.0000', '4.0000', '28.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '112.0000', '', '4.0000', NULL, 1, 'pc', '28.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6966, 689, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6967, 689, 1857, '6033000270320', 'BX SYR S/S', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6968, 689, 1855, 'PR-568', 'IBUCAP S/S 200S', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6969, 689, 2541, '39996904', 'DEMACOT CREAM', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6970, 689, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6971, 689, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6972, 689, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6973, 689, 1953, '56415263', 'STAGYL TABS', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6974, 689, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6975, 689, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6976, 689, 1363, '5000456022774', 'CRESTOR 5MG TABS', 'standard', NULL, '4.0000', '4.0000', '28.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '112.0000', '', '4.0000', NULL, 1, 'pc', '28.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6977, 690, 2646, '15816669', 'GLADE PAPER AIR FRESHNER', 'standard', NULL, '7.5000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6978, 690, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6979, 690, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6980, 690, 1875, '7612797163689', 'FLOTAC TABS 75MG 20S', 'standard', NULL, '3.6000', '3.6000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '3.6000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6981, 690, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6982, 690, 2091, '11166394', 'CA-C 1000 SANDOZ', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6983, 690, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6984, 690, 2674, '7470263', 'LEMSIP COLD & FLU 5\'S', 'standard', NULL, '6.5000', '6.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '6.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6985, 691, 2541, '39996904', 'DEMACOT CREAM', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6986, 691, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6987, 691, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6988, 691, 2052, '6186000077724', 'TENDRINA BOBY LOTION 250ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6989, 691, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6990, 691, 1407, '001', 'GIVERS POWER CAPS(140)', 'standard', NULL, '22.5000', '22.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '22.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6991, 691, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6992, 691, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6993, 691, 2108, '85249693', 'ARFAN 20/120MG', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6994, 691, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6995, 691, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6996, 691, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6997, 691, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6998, 691, 2011, '6948031103014', 'VIP TOOTHBRUSH', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6999, 691, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7000, 691, 2459, '26218313', 'ENAMYCIN SUS (ECL)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7001, 691, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7002, 691, 2612, '94895079', 'OMEGA OIL 50ML', 'standard', NULL, '10.0000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '10.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7003, 691, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7004, 692, 1759, '5017848251049', 'BELLS OLIVE  OIL 70ML ORIGINAL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7005, 693, 1941, 'PR-654', 'Genti Gds11369', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7006, 693, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7007, 693, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7008, 693, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7009, 693, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7010, 694, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7011, 694, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7012, 694, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7013, 694, 1632, '5024874030630', 'VALUPAK VITE 4001U', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7014, 694, 2344, '08199601', 'FOLIGROW TONIC', 'standard', NULL, '24.5000', '24.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '24.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7015, 694, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7016, 694, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7017, 694, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7018, 694, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7019, 694, 2351, '81129325', 'COARTEM 12\'S', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7020, 694, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7021, 694, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7022, 694, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '6.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7023, 694, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7024, 694, 1702, '8906045432580', 'BONAPLEX SYR 200ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7025, 694, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7026, 694, 1857, '6033000270320', 'BX SYR S/S', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7027, 694, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7028, 694, 2351, '81129325', 'COARTEM 12\'S', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7029, 694, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7030, 694, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7031, 694, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7032, 694, 2581, '6006118000202', 'CIPROBAY 500', 'standard', NULL, '122.0000', '122.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '122.0000', '', '122.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7033, 694, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7034, 695, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7035, 695, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7036, 695, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7037, 695, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7038, 695, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7039, 695, 2333, '81610561', 'CIPROFLOXACIN SUSP (XIN-A)', 'standard', NULL, '43.5000', '43.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.5000', '', '43.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7040, 695, 2822, '17958616', 'TYLENOL COMBO', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7041, 695, 2602, '86780065', 'CLOVES ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7042, 695, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7043, 695, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7044, 695, 2309, '23002945', 'Permoxyl caps 500mg', 'standard', NULL, '2.6000', '2.6000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '2.6000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7045, 696, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7046, 696, 2049, '6181100329162', 'BIOSKIN CREAM  MEDIUM', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7047, 696, 2593, '8850769013252', 'GINSOMIN CAPS', 'standard', NULL, '19.0000', '19.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '19.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7048, 696, 2341, '67208590', 'NEXCOFER CAPS', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7049, 696, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7050, 696, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7051, 696, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7052, 696, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7053, 696, 1755, 'PR-468', 'STOPKOF EXPT( CARBOCISTEINE)5?ULT 100ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7054, 696, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7055, 696, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7056, 696, 1985, '6186000077038', 'QUEEN ELISABETH COCOA BUTTER CREAM 125ML', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7057, 696, 1326, 'PR-39', 'DERMIRON PLUS CREAM', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7058, 696, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7059, 696, 2440, '37439736', 'PEPSODENT TOOTHPASTE B/S', 'standard', NULL, '7.5000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7060, 697, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7061, 697, 2822, '17958616', 'TYLENOL COMBO', 'standard', NULL, '4.0000', '4.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '4.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7062, 697, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7063, 697, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7064, 697, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7065, 697, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7066, 697, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7067, 697, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7068, 697, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7069, 697, 2866, '6922049789736', 'CALCIUM/IRON/ZINC CHEWABLE TABLETS', 'standard', NULL, '1.5000', '1.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '1.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7070, 697, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7071, 697, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7072, 697, 2907, '78214441', 'LUMATRONA SUSP 60ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7073, 698, 2437, '44857984', 'APTAMIL BABY MILK', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '100.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7074, 699, 1521, 'PR-234', 'PAINGAYCAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7075, 699, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7076, 699, 2381, '72472860', 'ENACEF SUSP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7077, 699, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7078, 699, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7079, 699, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7080, 699, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7081, 699, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7082, 699, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7083, 699, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7084, 699, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7085, 699, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7086, 699, 1657, '5013548102087', 'MEDICATED CHARCOAL', 'standard', NULL, '0.6000', '0.6000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.2000', '', '0.6000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7087, 699, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '4.0000', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7088, 699, 1406, '16564749', 'GIVERS KOO CAPS(l40)', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7089, 699, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7090, 699, 2859, '57412085', 'PELODIUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7091, 699, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7092, 699, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.2000', '', '0.6000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7093, 699, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7094, 699, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7095, 699, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7096, 699, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7097, 699, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7098, 699, 2623, '01976331', 'BENDROFLUZIDE 2.5MG UK CRESCENT', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7099, 700, 1585, 'PR-298', 'ZUBES CHILDREN', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7100, 700, 2726, '79072570', 'SANA NASAL DROP 10ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7101, 700, 2864, '58170295', 'PARA DENK 250MG SUPP', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7102, 700, 1578, 'PR-291', 'SAMALIN LOZENGES', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7103, 700, 2277, '71311341', 'ZUBES TABLETS ', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7104, 700, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7105, 700, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7106, 700, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7107, 700, 2857, '12087740', 'KAMAGRA 50', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7108, 700, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7109, 701, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7110, 701, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '1.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7111, 701, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7112, 701, 2092, '69091614', 'GLUCOSE C L/P', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7113, 701, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7114, 701, 2389, '78098233', 'ALKA SELTZER 20\'S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7115, 701, 2649, '19814758', 'ZITHROMAX SUSP', 'standard', NULL, '95.0000', '95.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '95.0000', '', '95.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7116, 701, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', 'standard', NULL, '32.0000', '32.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '64.0000', '', '32.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7117, 701, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '25.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7118, 701, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7119, 701, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7120, 701, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7121, 702, 2132, '4005900579614', 'NIVEA BODY LOTION 400ML', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7122, 702, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '14.0000', '14.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '14.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7123, 702, 2614, '96562826', 'WELLMAN CAPS', 'standard', NULL, '71.0000', '71.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '71.0000', '', '71.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7124, 702, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7125, 703, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7126, 703, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7127, 703, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7128, 703, 2633, '36871243', 'GANA BALM', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7129, 703, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7130, 704, 2307, '07147099', 'ZITHROMAX 250MG', 'standard', NULL, '170.0000', '170.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '510.0000', '', '170.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7131, 705, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7132, 705, 2948, '18028058', 'PREGNANCY TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7133, 705, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7134, 705, 2061, '96762855', 'ZYMAX CAPS 500MG', 'standard', NULL, '15.0000', '15.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '15.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7135, 705, 2262, '69085595', 'LENOR CONTRACEPTIVE', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7136, 705, 2859, '57412085', 'PELODIUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7137, 705, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7138, 705, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '6.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7139, 705, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7140, 705, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7141, 705, 1702, '8906045432580', 'BONAPLEX SYR 200ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7142, 705, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7143, 705, 2393, '25300648', 'BOAFO OINT', 'standard', NULL, '5.0000', '5.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7144, 705, 2188, '8964000577431', 'ARGAN OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7145, 705, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7146, 705, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '3.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7147, 705, 2618, '72760937', 'BUSCOMED TAB 10MG', 'standard', NULL, '5.5000', '5.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '5.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7148, 705, 1668, '8906016831572', 'Acidom Caps', 'standard', NULL, '18.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7149, 705, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7150, 705, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7151, 705, 2617, '33457681', 'NIFEDI-DENK 20MG', 'standard', NULL, '6.0000', '6.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7152, 705, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7153, 705, 2336, '74912018', 'ATENOLOL 50MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7154, 705, 2252, '08741188', 'FLUREST TABS', 'standard', NULL, '12.5000', '12.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7155, 705, 1704, '5060033711873', 'CYPRODINE SYR', 'standard', NULL, '35.5000', '35.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '35.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7156, 705, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7157, 705, 1401, 'PR-114', 'EKURO BEWU', 'standard', NULL, '4.0000', '4.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7158, 706, 1567, 'PR-280', 'BRENEX SYRUP', 'standard', NULL, '17.5000', '17.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7159, 707, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '3.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7160, 708, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', 'standard', NULL, '10.0000', '10.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7161, 708, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7162, 708, 2166, '6036000078514', 'ULCERPLEX HERBAL', 'standard', NULL, '7.5000', '7.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7163, 708, 1817, 'PR-530', 'TRES-ORIX 100MILS S/S', 'standard', NULL, '12.5000', '12.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7164, 708, 2628, '92643129', 'ADOM NATURAL MAN MIXTURE', 'standard', NULL, '16.5000', '16.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7165, 709, 1967, '5023497400615', 'SALAMOL CFC INHALER', 'standard', NULL, '26.0000', '26.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7166, 710, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7167, 710, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7168, 710, 1856, 'PR-569', 'KOFFEX SYR ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7169, 710, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7170, 710, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7171, 710, 2545, '82780299', 'DREZ POWDER 10G', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7172, 710, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7173, 710, 2679, '42097030', 'PEVISONE CREAM', 'standard', NULL, '43.0000', '43.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7174, 710, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', 'standard', NULL, '26.0000', '26.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7175, 710, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7176, 710, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7177, 710, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7178, 710, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.2000', '', '0.6000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7179, 710, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7180, 710, 1708, 'PR-421', 'MEDGLOBIN SYR', 'standard', NULL, '28.0000', '28.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7181, 710, 1567, 'PR-280', 'BRENEX SYRUP', 'standard', NULL, '17.5000', '17.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7182, 710, 1642, '6001135507628', 'BENYLIN DRY  COUGH SYR 100ML', 'standard', NULL, '41.0000', '41.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '41.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7183, 710, 2227, '6033000082992', 'CERELAC TIN RICE', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7184, 710, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7185, 710, 2445, '08969985', 'ADULT DIAPER', 'standard', NULL, '5.0000', '5.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '5.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7186, 710, 2516, '60491534', 'TENDRINA CREAM B/S', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7187, 710, 2261, '2112345602905', 'TIGER SPRAY', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7188, 710, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '4.0000', '4.0000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '4.0000', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7189, 710, 2236, '6033000270108', 'EFPAC JNR', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7190, 711, 2411, '13740723', 'GEBEDOL FORTE TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7191, 711, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '24.0000', '24.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7192, 711, 2967, '73607781', 'HONEY MEADOW 250ML', 'standard', NULL, '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7193, 711, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7194, 711, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7195, 711, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7196, 711, 1941, 'PR-654', 'Genti Gds11369', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7197, 711, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7198, 711, 1780, '5021265220076', 'FEROGLOBIN CAPS', 'standard', NULL, '47.0000', '47.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7199, 711, 1714, '5024874016771', 'VALPAK VITAMIN C500MG CHEWABLE', 'standard', NULL, '22.0000', '22.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7200, 711, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7201, 711, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7202, 711, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7203, 711, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7204, 712, 2411, '13740723', 'GEBEDOL FORTE TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7205, 712, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '24.0000', '24.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7206, 712, 2967, '73607781', 'HONEY MEADOW 250ML', 'standard', NULL, '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7207, 712, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7208, 712, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7209, 712, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7210, 712, 1941, 'PR-654', 'Genti Gds11369', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7211, 712, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7212, 712, 1780, '5021265220076', 'FEROGLOBIN CAPS', 'standard', NULL, '47.0000', '47.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7213, 712, 1714, '5024874016771', 'VALPAK VITAMIN C500MG CHEWABLE', 'standard', NULL, '22.0000', '22.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7214, 712, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7215, 712, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7216, 712, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7217, 712, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7218, 713, 1874, 'PR-587', 'DICNAC 75 SR(DICLOFENAC)', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7219, 713, 2345, '37407616', 'PONSTAN CAPS 250MG', 'standard', NULL, '10.5000', '10.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7220, 713, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', 'standard', NULL, '37.0000', '37.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '37.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7221, 713, 2460, '07910647', 'EVECARE TAB', 'standard', NULL, '43.0000', '43.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7222, 713, 2362, '63796869', 'ZINNAT 500MG', 'standard', NULL, '12.0000', '12.0000', '20.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '240.0000', '', '12.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7223, 713, 2477, '98577401', 'SESAME SEED', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7224, 713, 2763, '91369587', 'FLAXSEED', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7225, 713, 2478, '10567518', 'MUSTARD SEED', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7226, 713, 2825, '09140818', 'FACE MASK PACK', 'standard', NULL, '25.0000', '25.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '25.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7227, 713, 2549, '07128035', 'GILLETTE RAZOR', 'standard', NULL, '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7228, 713, 2822, '17958616', 'TYLENOL COMBO', 'standard', NULL, '4.0000', '4.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7229, 713, 2772, '70208100', 'CAFEGOT TAB', 'standard', NULL, '22.0000', '22.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7230, 713, 2858, '54574718', 'PREG TEST CASSETTE', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7231, 713, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7232, 713, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.5000', '6.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7233, 713, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7234, 713, 2299, '8904107900961', 'DICLOLEX GEL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7235, 714, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7236, 714, 1557, 'PR-270', 'SECLEAR  EYE DROP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7237, 714, 1766, 'PR-479', 'HIST AZINE SYRUP 60ML', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7238, 714, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7239, 714, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7240, 714, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7241, 714, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7242, 714, 1353, '5060085540254', 'SELEVITE TABS', 'standard', NULL, '27.0000', '27.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7243, 714, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7244, 714, 1966, '9556564303336', 'FIESTA CONDOM DOTTED', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7245, 715, 2823, '78074241', 'IBEX CAPS', 'standard', NULL, '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7246, 715, 1382, 'PR-95', 'ZULU EXTRA', 'standard', NULL, '5.5000', '5.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7247, 715, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7248, 715, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7249, 715, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7250, 715, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7251, 716, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7252, 716, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7253, 716, 1904, 'PR-617', 'RhIZIN Tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7254, 716, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', 'standard', NULL, '6.5000', '6.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7255, 716, 1521, 'PR-234', 'PAINGAYCAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7256, 716, 1489, '6938058600108', 'SAMOCID(SKIN AND NAIL)', 'standard', NULL, '37.0000', '37.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '37.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7257, 716, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7258, 716, 2229, '7501058625922', 'LACTOGEN 2', 'standard', NULL, '28.0000', '28.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7259, 716, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7260, 716, 2959, '18835366', 'YAZZ PANTY LINER', 'standard', NULL, '6.5000', '6.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7261, 716, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7262, 716, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7263, 716, 1702, '8906045432580', 'BONAPLEX SYR 200ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7264, 716, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7265, 716, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7266, 717, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7267, 717, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7268, 718, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7269, 718, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7270, 718, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7271, 718, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7272, 718, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7273, 719, 2761, '15043236', 'LEXOFEN PLUS TAB', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7274, 720, 2633, '36871243', 'GANA BALM', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7275, 721, 1422, 'PR-135', 'PROSTACURE TEA (32)', 'standard', NULL, '28.0000', '28.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7276, 721, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.3000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7277, 721, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7278, 721, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7279, 721, 2761, '15043236', 'LEXOFEN PLUS TAB', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7280, 721, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7281, 721, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7282, 721, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7283, 721, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7284, 721, 2331, '22131552', 'IMODIYM CAPS 2MG 6\'S', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7285, 721, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7286, 721, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7287, 721, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7288, 721, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7289, 721, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7290, 721, 2251, '8901138500573', 'BONNISAN SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7291, 721, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7292, 721, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7293, 721, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7294, 721, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7295, 721, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '3.8300', '3.8300', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.8300', '', '3.8300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7296, 721, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7297, 721, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7298, 721, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7299, 721, 1677, '8902546578543', 'LUEX BABY COUGH', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7300, 722, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7301, 722, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7302, 722, 2823, '78074241', 'IBEX CAPS', 'standard', NULL, '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7303, 722, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', 'standard', NULL, '19.5000', '19.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7304, 722, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7305, 722, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7306, 723, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7307, 723, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7308, 723, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7309, 723, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', 'standard', NULL, '37.0000', '37.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '37.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7310, 723, 2251, '8901138500573', 'BONNISAN SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7311, 723, 2924, '29806174', 'STARWIN MILK OF MAGNESIA 120ML', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7312, 723, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', 'standard', NULL, '38.0000', '38.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '228.0000', '', '38.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7313, 723, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7314, 723, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7315, 723, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7316, 723, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7317, 723, 2604, '43079266', 'COA MIXTURE', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '120.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7318, 723, 2574, '24484092', 'DULCOLAX TABS 5MG 20\'S', 'standard', NULL, '1.5000', '1.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '1.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7319, 723, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7320, 723, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.6000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7321, 723, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7322, 723, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.6000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7323, 723, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7324, 723, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7325, 723, 2942, '53692521', 'LETACAM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7326, 723, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '0.5000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7327, 723, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7328, 723, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7329, 723, 2876, '19595752', 'TUMERIC TRANSPARENT SOAP', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7330, 723, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7331, 723, 2445, '08969985', 'ADULT DIAPER', 'standard', NULL, '5.0000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '5.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7332, 723, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7333, 724, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7334, 724, 1969, '8906016833507', 'CARTEF TAB 24   20/120', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7335, 724, 1731, 'PR-444', 'DAKTARIN CREAM 15G', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7336, 724, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7337, 724, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '1.5000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7338, 724, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7339, 724, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7340, 724, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7341, 724, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7342, 724, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7343, 724, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7344, 724, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7345, 724, 2381, '72472860', 'ENACEF SUSP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7346, 724, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '3.8300', '3.8300', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.8300', '', '3.8300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7347, 724, 2073, '59185019', 'DOMI 30', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7348, 725, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7349, 725, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '3.8300', '3.8300', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.8300', '', '3.8300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7350, 726, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '3.8300', '3.8300', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.8300', '', '3.8300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7351, 727, 1954, '87246804', 'COLDRID TAB', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7352, 727, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7353, 727, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7354, 727, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', 'standard', NULL, '9.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7355, 727, 2727, '76580073', 'PARA TAB 30\' EXETER', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7356, 727, 1637, '4031571068959', 'DICLO DENK 100MG TAB', 'standard', NULL, '14.0000', '14.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7357, 727, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7358, 727, 2973, '43393257', 'ALKA SELTZER 10.S', 'standard', NULL, '5.6000', '5.6000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.6000', '', '5.6000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7359, 727, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7360, 727, 1430, 'PR-143', 'SOLAK MIXTURE(25)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7361, 727, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', 'standard', NULL, '7.1700', '7.1700', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.1700', '', '7.1700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7362, 727, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7363, 727, 1805, 'PR-518', 'SAMALIN ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7364, 727, 2281, '087450449108', 'TYLENOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '4.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7365, 727, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '11.5000', '11.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '11.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7366, 727, 2544, '85585070', 'NEXCOFER SYR L/S', 'standard', NULL, '9.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7367, 727, 2730, '70096024', 'ENAFEN (IBUPROFEN TAB 400MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7368, 727, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7369, 727, 1881, '5021265232062', 'PREGNACARE BREAST FEEDING UK', 'standard', NULL, '138.5000', '138.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '138.5000', '', '138.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7370, 727, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7371, 728, 1464, '9502930974921', 'SENSONDYN ORIGINAL 75ML', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7372, 728, 1632, '5024874030630', 'VALUPAK VITE 4001U', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7373, 728, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7374, 728, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7375, 728, 1884, 'PR-597', 'POLYFER SYR (200ML)', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7376, 728, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7377, 728, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7378, 728, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7379, 728, 2825, '09140818', 'FACE MASK PACK', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7380, 728, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7381, 728, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '3.9000', '3.9000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '3.9000', NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7382, 728, 1440, 'PR-153', 'VICTORY GARLIC', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7383, 728, 1445, 'PR-158', 'Iburex Caps c013D002', 'standard', NULL, '3.5000', '3.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '3.5000', NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7384, 728, 2299, '8904107900961', 'DICLOLEX GEL', 'standard', 0, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7385, 728, 2251, '8901138500573', 'BONNISAN SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7386, 728, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7387, 728, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7388, 728, 2561, '65996534', 'MAGNESUIM CAPSULES', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '80.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7389, 728, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7390, 728, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', 'standard', NULL, '37.0000', '37.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '37.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7391, 728, 2462, '03669885', 'WELLBABY DROP', 'standard', NULL, '62.0000', '62.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '62.0000', '', '62.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7392, 728, 2708, '5012616291791', 'PHILIPS MILK OF MAGNESIA', 'standard', NULL, '45.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7393, 728, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7394, 728, 2168, '8901082004356', 'APTIZOOOM', 'standard', NULL, '39.0000', '39.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '39.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7395, 728, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '12.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7396, 728, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7397, 728, 1762, 'PR-475', 'KIDIVITE MULTIVITAMIN DROPS 25ML', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7398, 728, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7399, 728, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7400, 728, 2263, '6036000090417', 'LEVON 2', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7401, 728, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7402, 728, 2942, '53692521', 'LETACAM CAPS', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7403, 728, 1992, '6033000171719', 'KLEANZ SANITIZER 100ML', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7404, 728, 2283, '8906009232225', 'LOFNAC TAB 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7405, 728, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7406, 728, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '6.0000', NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7407, 729, 2626, '10089309', 'OSTECARE TABS INDIA', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7408, 729, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', 'standard', NULL, '7.1000', '7.1000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '71.0000', '', '7.1000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7409, 729, 1559, 'PR-272', 'SIRDALUD 4MG', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7410, 729, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7411, 729, 1306, 'PR-19', 'DOMI 10: TAB', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7412, 729, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7413, 729, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7414, 729, 1943, 'PR-656', 'Kofof Adult Lo12D002', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7415, 729, 1954, '87246804', 'COLDRID TAB', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7416, 729, 2056, '26049852', 'ESSENTIAL EMBROCATION (LIQUID ROBB) 27ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7417, 729, 1426, '6034600108426', 'ROOTER LIFE', 'standard', NULL, '47.5000', '47.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '47.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7418, 729, 2018, '6001159111351', 'BIO OIL MEDIUM 125ML', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7419, 729, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7420, 729, 1562, 'PR-275', 'SULPHUR OINT.', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7421, 729, 2346, '68048014', 'CALAMINE OINT', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7422, 729, 2525, '8850722212760', 'GOATMILK SOAP', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7423, 729, 2876, '19595752', 'TUMERIC TRANSPARENT SOAP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7424, 729, 1731, 'PR-444', 'DAKTARIN CREAM 15G', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7425, 729, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7426, 729, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7427, 729, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7428, 730, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7429, 730, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7430, 730, 2381, '72472860', 'ENACEF SUSP', 'standard', NULL, '16.0000', '16.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '16.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7431, 730, 2266, '8906046070682', 'KIDIVITE SYR L/S', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7432, 730, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7433, 730, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7434, 730, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', 'standard', NULL, '33.0000', '33.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7435, 730, 1805, 'PR-518', 'SAMALIN ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7436, 730, 1632, '5024874030630', 'VALUPAK VITE 4001U', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7437, 730, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7438, 731, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7439, 731, 1943, 'PR-656', 'Kofof Adult Lo12D002', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7440, 731, 1954, '87246804', 'COLDRID TAB', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7441, 731, 2056, '26049852', 'ESSENTIAL EMBROCATION (LIQUID ROBB) 27ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7442, 731, 1426, '6034600108426', 'ROOTER LIFE', 'standard', NULL, '47.5000', '47.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '47.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7443, 731, 2018, '6001159111351', 'BIO OIL MEDIUM 125ML', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7444, 731, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7445, 731, 1562, 'PR-275', 'SULPHUR OINT.', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7446, 731, 2346, '68048014', 'CALAMINE OINT', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7447, 731, 2876, '19595752', 'TUMERIC TRANSPARENT SOAP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7448, 731, 1731, 'PR-444', 'DAKTARIN CREAM 15G', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7449, 731, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7450, 731, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7451, 731, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7452, 731, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7453, 731, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7454, 731, 2467, '97164110', 'LISINOPRIL 20MG TAB UK', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7455, 731, 2483, '90693662', 'THYME LEAVES', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7456, 731, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7457, 731, 2386, '92175949', 'TETRACYCLINE EYE OINT 5G', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7458, 731, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.2500', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7459, 731, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7460, 731, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.9000', '', '0.3000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7461, 731, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7462, 731, 2663, '58928731', 'QUINNE MALERIA SYRUP', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7463, 731, 1358, '011', 'LUEX CHILDREN CHESTY COUGH', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7464, 731, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7465, 731, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7466, 731, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7467, 732, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7468, 733, 1991, '6181100234244', 'PARADISE POWDER', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7469, 733, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7470, 733, 1418, 'PR-131', 'MADAM CATERINE', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7471, 733, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7472, 733, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7473, 733, 2617, '33457681', 'NIFEDI-DENK 20MG', 'standard', NULL, '6.0000', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '6.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7474, 733, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7475, 733, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7476, 733, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7477, 733, 2263, '6036000090417', 'LEVON 2', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7478, 733, 1964, '8906011289897', 'V-FIRM', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7479, 733, 2940, '42955737', 'DIPHEX COUGH SYRP', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7480, 733, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7481, 733, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7482, 733, 1536, '8901040245197', 'AXACEF S00MG 10\'S', 'standard', NULL, '5.0000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '5.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7483, 733, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7484, 733, 2854, '44570580', 'LORATADINE 10MG  TEVA', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7485, 733, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7486, 733, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7487, 733, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7488, 733, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7489, 733, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7490, 733, 1430, 'PR-143', 'SOLAK MIXTURE(25)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7491, 734, 1711, 'PR-424', 'CIROTAMIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7492, 735, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7493, 735, 2950, '98068395', 'CHLORAMPHENICOL (FICHLOR)', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7494, 735, 2730, '70096024', 'ENAFEN (IBUPROFEN TAB 400MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7495, 735, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7496, 735, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7497, 735, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7498, 735, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '1.3000', '1.3000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '1.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7499, 735, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', 'standard', NULL, '27.0000', '27.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7500, 735, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7501, 735, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7502, 735, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7503, 735, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7504, 735, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7505, 735, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7506, 735, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7507, 735, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7508, 735, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7509, 735, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7510, 735, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7511, 735, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7512, 735, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7513, 736, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', 'standard', NULL, '7.0000', '7.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '140.0000', '', '7.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7514, 736, 1686, '8901082006-81', 'ALKA-5 SYR', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7515, 736, 2091, '11166394', 'CA-C 1000 SANDOZ', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7516, 736, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', 'standard', NULL, '9.0000', '9.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '9.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7517, 736, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7518, 736, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7519, 736, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7520, 736, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7521, 736, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7522, 736, 2298, '11840983', 'DREZ OINTMENT 10G S/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7523, 736, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7524, 737, 2546, '11973520', 'NOSTAMINE E/N DROPS', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7525, 737, 2730, '70096024', 'ENAFEN (IBUPROFEN TAB 400MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7526, 738, 2307, '07147099', 'ZITHROMAX 250MG', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '170.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7527, 738, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '3.9000', '3.9000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '3.9000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7528, 739, 2351, '81129325', 'COARTEM 12\'S', 'standard', NULL, '24.0000', '24.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7529, 739, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7530, 739, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7531, 740, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7532, 740, 2627, '47630599', 'ATORVASTATIN 10MG', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7533, 740, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7534, 740, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7535, 740, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7536, 740, 2677, '55662189', 'ONE TOUCH SELECT PLUS METER', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '300.0000', '', '300.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7537, 740, 2608, '57349245', 'CELLGEVITY', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '120.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7538, 740, 2413, '72302134', 'LETAVIN 125MG', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7539, 740, 1326, 'PR-39', 'DERMIRON PLUS CREAM', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7540, 740, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7541, 740, 1322, 'PR-35', 'BADRUF CREAM 30MG', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7542, 740, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7543, 740, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7544, 740, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7545, 740, 1527, '8904159609416', 'PREGASAFE 75MG TAB', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7546, 740, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7547, 740, 2157, '13804928', 'GVITHER INJ', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7548, 740, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7549, 740, 2892, '97440547', 'JET INHALER LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7550, 740, 2251, '8901138500573', 'BONNISAN SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7551, 740, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', 'standard', NULL, '45.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7552, 740, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7553, 740, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '1.3000', '1.3000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '1.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7554, 740, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7555, 740, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7556, 740, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7557, 740, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7558, 740, 1394, 'PR-107', 'AGBEVE TONIC(30)', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7559, 740, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7560, 740, 2484, '00708902', 'PUMPKIN SEED', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7561, 740, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7562, 740, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7563, 741, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7564, 741, 1780, '5021265220076', 'FEROGLOBIN CAPS', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7565, 741, 1711, 'PR-424', 'CIROTAMIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7566, 741, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '11.5000', '11.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '11.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7567, 742, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7568, 742, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7569, 742, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7570, 742, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7571, 742, 1859, '8901138502942', 'PILEX TAB', 'standard', NULL, '32.0000', '32.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7572, 742, 2582, '81054441', 'AZILEX SUSP', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7573, 742, 2836, '18640990', 'WRIST SUPPORT', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7574, 742, 2249, '22244269', 'EXPECT SEED', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7575, 742, 1968, '5019781012206', 'VITAMIN E HEALTH AID', 'standard', NULL, '73.0000', '73.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '73.0000', '', '73.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7576, 742, 1660, '5034593050901', 'NEOVITA CAP', 'standard', NULL, '70.0000', '70.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '70.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7577, 742, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7578, 742, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7579, 742, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7580, 742, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7581, 742, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.2500', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7582, 742, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7583, 742, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7584, 742, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7585, 742, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7586, 742, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7587, 742, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7588, 742, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7589, 742, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7590, 742, 2940, '42955737', 'DIPHEX COUGH SYRP', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7591, 742, 2975, '25893453', 'EASY CHECK OVULATION TEST KIT', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7592, 742, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7593, 742, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7594, 742, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7595, 742, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7596, 742, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7597, 742, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7598, 742, 1439, 'PR-152', 'VICTAGO s s', 'standard', NULL, '1.3000', '1.3000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3000', '', '1.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7599, 742, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7600, 742, 1449, 'PR-162', 'Wormee 4 tab wr036', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7601, 742, 1314, 'PR-27', 'WORMBASE SUSP', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7602, 743, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7603, 743, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7604, 743, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7605, 743, 2761, '15043236', 'LEXOFEN PLUS TAB', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7606, 743, 2823, '78074241', 'IBEX CAPS', 'standard', NULL, '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7607, 743, 2193, '8964000114216', 'ROSEMARY OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7608, 743, 1855, 'PR-568', 'IBUCAP S/S 200S', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7609, 743, 1338, 'PR-51', 'COTTON WOOL 1 00G', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7610, 743, 1642, '6001135507628', 'BENYLIN DRY  COUGH SYR 100ML', 'standard', NULL, '41.0000', '41.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '41.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7611, 743, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7612, 743, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', 'standard', NULL, '2.2000', '2.2000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '2.2000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7613, 743, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7614, 743, 1382, 'PR-95', 'ZULU EXTRA', 'standard', NULL, '5.5000', '5.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7615, 743, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7616, 743, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7617, 743, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7618, 743, 2707, '54201128', 'HYDROLYTE LEMON', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7619, 743, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '1.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7620, 743, 1554, 'PR-267', 'COTRI SUS (M&G) SEPTRIN', 'standard', NULL, '4.5000', '4.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7621, 743, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', 'standard', NULL, '15.5000', '15.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '15.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7622, 743, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7623, 743, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', 'standard', NULL, '7.0000', '7.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7624, 743, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7625, 743, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7626, 743, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', 'standard', NULL, '1.5000', '1.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7627, 743, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7628, 743, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7629, 743, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7630, 743, 2974, '33602978', 'EASY CHECK EARLY PREGNANCY TEST', 'standard', NULL, '8.0000', '8.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7631, 743, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7632, 743, 2760, '71647290', 'HAYZINE TAB', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7633, 743, 1536, '8901040245197', 'AXACEF S00MG 10\'S', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7634, 743, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7635, 743, 2491, '57627875', 'BELLS VITAMIN C', 'standard', NULL, '16.0000', '16.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '16.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7636, 743, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.5000', '6.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7637, 743, 2273, '04120489', 'RHIZIN SYRP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7638, 743, 2288, '44100235', 'FLUXAMOX SUSP 100ML', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7639, 743, 2238, '5021265223350', 'PERFECTIL PLATINUM', 'standard', NULL, '51.0000', '51.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '204.0000', '', '51.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7640, 743, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7641, 743, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7642, 743, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7643, 743, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7644, 743, 2316, '59549986', 'SMA 1 BABY FOOD', 'standard', NULL, '48.0000', '48.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7645, 743, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7646, 743, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7647, 743, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.5000', '12.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7648, 743, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7649, 743, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7650, 743, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7651, 743, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7652, 743, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '27.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7653, 743, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7654, 743, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', 'standard', NULL, '4.0000', '4.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7655, 743, 2722, '88455380', 'AZITEX TAB  ', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7656, 743, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7657, 744, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7658, 744, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7659, 744, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7660, 744, 2761, '15043236', 'LEXOFEN PLUS TAB', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7661, 744, 2823, '78074241', 'IBEX CAPS', 'standard', NULL, '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7662, 744, 2193, '8964000114216', 'ROSEMARY OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7663, 744, 1855, 'PR-568', 'IBUCAP S/S 200S', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7664, 744, 1338, 'PR-51', 'COTTON WOOL 1 00G', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7665, 744, 1642, '6001135507628', 'BENYLIN DRY  COUGH SYR 100ML', 'standard', NULL, '41.0000', '41.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '41.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7666, 744, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7667, 744, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', 'standard', NULL, '2.2000', '2.2000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '2.2000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7668, 744, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7669, 744, 1382, 'PR-95', 'ZULU EXTRA', 'standard', NULL, '5.5000', '5.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7670, 744, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7671, 744, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7672, 744, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7673, 744, 2707, '54201128', 'HYDROLYTE LEMON', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7674, 744, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '1.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7675, 744, 1554, 'PR-267', 'COTRI SUS (M&G) SEPTRIN', 'standard', NULL, '4.5000', '4.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7676, 744, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', 'standard', NULL, '15.5000', '15.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '15.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7677, 744, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7678, 744, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', 'standard', NULL, '7.0000', '7.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7679, 744, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7680, 744, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7681, 744, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', 'standard', NULL, '1.5000', '1.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7682, 744, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7683, 744, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7684, 744, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7685, 744, 2974, '33602978', 'EASY CHECK EARLY PREGNANCY TEST', 'standard', NULL, '8.0000', '8.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7686, 744, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7687, 744, 2760, '71647290', 'HAYZINE TAB', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7688, 744, 1536, '8901040245197', 'AXACEF S00MG 10\'S', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7689, 744, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7690, 744, 2491, '57627875', 'BELLS VITAMIN C', 'standard', NULL, '16.0000', '16.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '16.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7691, 744, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.5000', '6.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7692, 744, 2273, '04120489', 'RHIZIN SYRP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7693, 744, 2288, '44100235', 'FLUXAMOX SUSP 100ML', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7694, 744, 2238, '5021265223350', 'PERFECTIL PLATINUM', 'standard', NULL, '51.0000', '51.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '204.0000', '', '51.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7695, 744, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7696, 744, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7697, 744, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7698, 744, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7699, 744, 2316, '59549986', 'SMA 1 BABY FOOD', 'standard', NULL, '48.0000', '48.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7700, 744, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7701, 744, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7702, 744, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.5000', '12.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7703, 744, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7704, 744, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7705, 744, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7706, 744, 2318, '02898540', 'FACE MASK', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7707, 744, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '27.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7708, 744, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7709, 744, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', 'standard', NULL, '4.0000', '4.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7710, 744, 2722, '88455380', 'AZITEX TAB  ', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7711, 744, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7712, 745, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7713, 745, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7714, 745, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7715, 745, 2568, '92928217', 'YOVANNY LOZ', 'standard', NULL, '0.2500', '0.2500', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.2500', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7716, 745, 2604, '43079266', 'COA MIXTURE', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '120.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7717, 745, 2859, '57412085', 'PELODIUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7718, 745, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7719, 745, 2459, '26218313', 'ENAMYCIN SUS (ECL)', 'standard', NULL, '7.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7720, 745, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7721, 745, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7722, 745, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '4.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7723, 745, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '11.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '11.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7724, 746, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7725, 746, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7726, 747, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7727, 747, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7728, 747, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7729, 747, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '1.3000', '1.3000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '1.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7730, 747, 2095, '83888513', 'LETAMOL ELIXIR 125ML  LETAP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7731, 748, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7732, 748, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7733, 748, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7734, 748, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '1.3000', '1.3000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '1.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7735, 748, 2095, '83888513', 'LETAMOL ELIXIR 125ML  LETAP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7736, 748, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7737, 748, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7738, 748, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7739, 748, 1694, 'PR-407', 'LEENASYR', 'standard', NULL, '10.0000', '10.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7740, 748, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7741, 748, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7742, 748, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7743, 748, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7744, 748, 2739, '67011430', 'MYCOVIN TABLETS 125MG', 'standard', NULL, '2.2000', '2.2000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.4000', '', '2.2000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7745, 748, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7746, 748, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7747, 748, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7748, 748, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7749, 748, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', 'standard', NULL, '18.5000', '18.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7750, 748, 2266, '8906046070682', 'KIDIVITE SYR L/S', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7751, 748, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '0.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7752, 748, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '17.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7753, 748, 1954, '87246804', 'COLDRID TAB', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7754, 748, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7755, 748, 1381, 'PR-94', ' GOLDY FORTE DS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7756, 748, 1521, 'PR-234', 'PAINGAYCAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7757, 748, 1401, 'PR-114', 'EKURO BEWU', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7758, 749, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7759, 750, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7760, 750, 2361, '93787462', 'ASMANOL TABS 200', 'standard', NULL, '0.6000', '0.6000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.4000', '', '0.6000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7761, 750, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7762, 751, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7763, 752, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '9.0000', '9.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7764, 752, 1424, '6036000070709', 'PROSTAT 60', 'standard', NULL, '39.5000', '39.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '39.5000', '', '39.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7765, 752, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.5000', '6.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7766, 753, 2277, '71311341', 'ZUBES TABLETS ', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7767, 753, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7768, 754, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7769, 754, 2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', 'standard', NULL, '2.5000', '2.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '2.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7770, 755, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7771, 756, 1859, '8901138502942', 'PILEX TAB', 'standard', NULL, '32.0000', '32.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7772, 756, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7773, 756, 2455, '07137762', 'AMITRIPTYLINE 25MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7774, 756, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7775, 756, 2650, '58359784', 'DICNAC 75 SR', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7776, 756, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7777, 756, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7778, 757, 1649, '6161102003536', 'ZUBES EXPECTORANT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7779, 757, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7780, 758, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7781, 758, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '1.3000', '1.3000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '1.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7782, 758, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7783, 758, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7784, 758, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7785, 759, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7786, 759, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7787, 759, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '15.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '1.5000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7788, 759, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7789, 759, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '15.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '1.5000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7790, 759, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7791, 759, 1673, 'PR-386', 'DOXY CAPS (ESKAY)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7792, 759, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7793, 760, 2266, '8906046070682', 'KIDIVITE SYR L/S', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7794, 760, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7795, 761, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7796, 761, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7797, 761, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7798, 761, 2638, '71491998', 'SUDOCREAM 60G S/S', 'standard', NULL, '26.0000', '26.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7799, 762, 2772, '70208100', 'CAFEGOT TAB', 'standard', NULL, '22.0000', '22.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7800, 762, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.5000', '6.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7801, 762, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7802, 762, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7803, 762, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '3.8300', '3.8300', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.8300', '', '3.8300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7804, 762, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', 'standard', NULL, '33.0000', '33.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '33.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7805, 763, 2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7806, 763, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7807, 764, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7808, 765, 2288, '44100235', 'FLUXAMOX SUSP 100ML', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7809, 766, 1338, 'PR-51', 'COTTON WOOL 1 00G', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7810, 766, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7811, 766, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7812, 766, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7813, 766, 1542, '8902502108920', 'INFAV OINT', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7814, 766, 2744, '48964254', 'LAVESTEN VAG PESS', 'standard', NULL, '13.5000', '13.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7815, 766, 2152, '6034000189179', 'ADOM W&G MIX', 'standard', NULL, '14.0000', '14.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7816, 767, 2163, '94064304', 'IMAX DELAY SPRAY', 'standard', NULL, '26.0000', '26.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7817, 767, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7818, 767, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7819, 768, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7820, 768, 2768, '31007297', 'AMOXYL CAPS 250 (ESKAY)', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7821, 768, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7822, 769, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '4.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7823, 769, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '26.0000', '26.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7824, 769, 2485, '40177526', 'GOLDEN RAISEN', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7825, 769, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7826, 769, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7827, 769, 1578, 'PR-291', 'SAMALIN LOZENGES', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7828, 769, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7829, 769, 2673, '52626423', 'LISINOPRIL 10MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7830, 769, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '2.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7831, 769, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7832, 769, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7833, 769, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7834, 769, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7835, 769, 2504, '61281286', 'MISTARD', 'standard', NULL, '44.0000', '44.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '44.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7836, 769, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7837, 769, 2030, '00974156', 'JRA CREAM SMALL MEDIUM', 'standard', NULL, '14.0000', '14.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7838, 769, 2691, '57477708', 'STICK ROLL ON S/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7839, 769, 1581, 'PR-294', 'TOUCH AND GO', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7840, 769, 2413, '72302134', 'LETAVIN 125MG', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7841, 769, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7842, 769, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', 'standard', NULL, '26.0000', '26.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7843, 769, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7844, 769, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7845, 770, 2729, '08313778', 'KEFEN EXTRA 10MG TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7846, 770, 2777, '97856697', 'MMT SUSP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7847, 770, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7848, 771, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7849, 771, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '5.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7850, 771, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7851, 771, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7852, 771, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', 'standard', NULL, '6.5000', '6.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7853, 771, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7854, 771, 2294, '44448916', 'PENICILLIN OINTMENT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7855, 771, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7856, 771, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7857, 771, 1701, 'PR-414', 'HEPTOPEP SYR', 'standard', NULL, '19.5000', '19.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7858, 771, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', 'standard', NULL, '16.0000', '16.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '16.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7859, 772, 1811, 'PR-524', 'VERMOX SUSP', 'standard', NULL, '19.5000', '19.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7860, 772, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7861, 772, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7862, 772, 2979, '74644667', 'NIVEA SPRAY 200ML', 'standard', NULL, '17.5000', '17.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7863, 772, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7864, 772, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7865, 773, 2497, '26571538', 'CALPOl 6+', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7866, 774, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', 'standard', NULL, '2.2000', '2.2000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.4000', '', '2.2000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7867, 774, 2108, '85249693', 'ARFAN 20/120MG', 'standard', NULL, '6.5000', '6.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7868, 774, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7869, 774, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.2000', '', '0.6000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7870, 774, 1512, 'PR-225', 'CIPAC EYE ROP', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7871, 774, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7872, 775, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7873, 776, 1521, 'PR-234', 'PAINGAYCAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7874, 777, 2405, '40815002', 'GLOVES', 'standard', NULL, '1.6000', '1.6000', '12.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.2000', '', '1.6000', NULL, 1, 'pc', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7875, 777, 2444, '73221630', 'SOFTCARE BABY WIPES', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7876, 777, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7877, 777, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7878, 777, 1943, 'PR-656', 'Kofof Adult Lo12D002', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7879, 777, 1864, 'PR-577', 'VIROL BLOOD TONIC', 'standard', NULL, '8.0000', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7880, 777, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7881, 777, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7882, 777, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7883, 777, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7884, 777, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7885, 777, 2862, '97602687', 'TYPHOID TEST', 'standard', NULL, '10.0000', '10.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '10.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7886, 777, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7887, 777, 1585, 'PR-298', 'ZUBES CHILDREN', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7888, 777, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7889, 777, 2582, '81054441', 'AZILEX SUSP', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7890, 777, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7891, 777, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7892, 777, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7893, 777, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7894, 777, 2511, '81055477', 'DUROL 300ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7895, 777, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7896, 777, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7897, 777, 2497, '26571538', 'CALPOl 6+', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7898, 777, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7899, 777, 1430, 'PR-143', 'SOLAK MIXTURE(25)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7900, 777, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7901, 777, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7902, 777, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7903, 777, 2445, '08969985', 'ADULT DIAPER', 'standard', NULL, '5.0000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '5.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7904, 777, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7905, 777, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7906, 777, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7907, 777, 2036, '4005900088062', 'NIVEA ROLL ON 50ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7908, 777, 2808, '5017007012498', 'LEVOFLOXACIN 500MG TEVA', 'standard', NULL, '51.0000', '51.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '102.0000', '', '51.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7909, 777, 1561, 'PR-274', 'SPORANOX CAPS', 'standard', NULL, '35.5000', '35.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '35.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7910, 777, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', 'standard', NULL, '33.0000', '33.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '132.0000', '', '33.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7911, 777, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7912, 777, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7913, 777, 2810, '44204486', 'L MONTUS', 'standard', NULL, '2.9000', '2.9000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '2.9000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7914, 777, 1668, '8906016831572', 'Acidom Caps', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7915, 777, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7916, 777, 2816, '72412730', 'MOTILUM TAB', 'standard', NULL, '1.0000', '1.0000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '1.0000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7917, 777, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7918, 778, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7919, 778, 1394, 'PR-107', 'AGBEVE TONIC(30)', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7920, 778, 2541, '39996904', 'DEMACOT CREAM', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7921, 778, 1402, 'PR-115', 'ERNEST OINT(200)', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7922, 779, 2768, '31007297', 'AMOXYL CAPS 250 (ESKAY)', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7923, 780, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '4.5000', NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7924, 780, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7925, 780, 2485, '40177526', 'GOLDEN RAISEN', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7926, 780, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7927, 780, 1578, 'PR-291', 'SAMALIN LOZENGES', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7928, 780, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7929, 780, 2673, '52626423', 'LISINOPRIL 10MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7930, 780, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7931, 780, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7932, 780, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7933, 780, 2136, '39315036', 'ALEVE', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7934, 780, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7935, 780, 2504, '61281286', 'MISTARD', 'standard', NULL, '44.0000', '44.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '44.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7936, 780, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7937, 780, 2031, '5137136225191', 'JRA CREAM SMALL 40G', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7938, 780, 2030, '00974156', 'JRA CREAM SMALL MEDIUM', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7939, 780, 2691, '57477708', 'STICK ROLL ON S/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7940, 780, 1581, 'PR-294', 'TOUCH AND GO', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7941, 780, 2413, '72302134', 'LETAVIN 125MG', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7942, 780, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7943, 780, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7944, 780, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7945, 780, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7946, 781, 1967, '5023497400615', 'SALAMOL CFC INHALER', 'standard', NULL, '26.0000', '26.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7947, 781, 2491, '57627875', 'BELLS VITAMIN C', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7948, 781, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7949, 781, 1691, 'PR-404', 'JARIFAN 2 SYR', 'standard', NULL, '13.5000', '13.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7950, 781, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7951, 781, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7952, 781, 2986, '39982987', 'PANACIN TAB', 'standard', NULL, '1.0000', '1.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7953, 781, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7954, 781, 2294, '44448916', 'PENICILLIN OINTMENT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7955, 781, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7956, 781, 1753, 'PR-466', 'LIVERTONE JUNIOR SYRUP 125ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7957, 781, 2739, '67011430', 'MYCOVIN TABLETS 125MG', 'standard', NULL, '2.2000', '2.2000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.8000', '', '2.2000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7958, 781, 1401, 'PR-114', 'EKURO BEWU', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7959, 781, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7960, 781, 2231, '7501058633927', 'NAN 2', 'standard', NULL, '36.0000', '36.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7961, 781, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7962, 781, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7963, 781, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7964, 781, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7965, 781, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7966, 781, 2103, '77332390', 'LETAMOX TABLET 500MG 500MG', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7967, 781, 1420, 'PR-133', 'NAZO', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7968, 781, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7969, 781, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7970, 781, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7971, 781, 1412, 'PR-125', 'KINGDOM GARLIC BITTERS', 'standard', NULL, '18.5000', '18.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7972, 781, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7973, 781, 1305, 'PR-18', 'BASEKOF SYR', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7974, 781, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7975, 782, 2346, '68048014', 'CALAMINE OINT', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7976, 782, 1562, 'PR-275', 'SULPHUR OINT.', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7977, 782, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7978, 782, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7979, 783, 2998, '20603397', 'ZIRTEK 10MG', 'standard', NULL, '4.9000', '4.9000', '7.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '34.3000', '', '4.9000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7980, 784, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7981, 785, 2219, '8964000734674', 'PEPPERMINT OIL 40ML', 'standard', NULL, '18.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7982, 785, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7983, 785, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7984, 785, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7985, 785, 1328, 'PR-41', 'HIGH ELASTIC CREPE BANDAGE 4\"', 'standard', NULL, '4.5000', '4.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7986, 785, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7987, 785, 1407, '001', 'GIVERS POWER CAPS(140)', 'standard', NULL, '22.5000', '22.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '22.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7988, 785, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '7.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '1.0000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7989, 785, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7990, 785, 1329, 'PR-42', 'ZINC OXIDE PLASTER ROLL 41CHS', 'standard', NULL, '5.5000', '5.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7991, 785, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7992, 785, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7993, 785, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7994, 785, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7995, 785, 2344, '08199601', 'FOLIGROW TONIC', 'standard', NULL, '24.5000', '24.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '24.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7996, 785, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7997, 785, 2892, '97440547', 'JET INHALER LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7998, 785, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7999, 785, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8000, 785, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', 'standard', NULL, '7.1700', '7.1700', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.1700', '', '7.1700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8001, 785, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', 'standard', NULL, '15.5000', '15.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8002, 785, 2647, '65619135', 'SOFTCARE  DIAPER BIG', 'standard', NULL, '40.0000', '40.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '40.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8003, 785, 2437, '44857984', 'APTAMIL BABY MILK', 'standard', NULL, '100.0000', '100.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '100.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8004, 785, 2225, '6033000082985', 'CERELAC TIN WHEAT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8005, 785, 1521, 'PR-234', 'PAINGAYCAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8006, 785, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8007, 785, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '46.0000', '46.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8008, 785, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8009, 785, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8010, 785, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8011, 785, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8012, 785, 2974, '33602978', 'EASY CHECK EARLY PREGNANCY TEST', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8013, 785, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8014, 785, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8015, 785, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8016, 785, 1632, '5024874030630', 'VALUPAK VITE 4001U', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8017, 785, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8018, 785, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8019, 785, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8020, 786, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8021, 786, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8022, 786, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8023, 786, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '9.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8024, 786, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8025, 786, 1637, '4031571068959', 'DICLO DENK 100MG TAB', 'standard', NULL, '14.0000', '14.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8026, 786, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8027, 787, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8028, 787, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8029, 787, 2154, '8410179200927', 'BORGES S/S  125ML', 'standard', NULL, '14.5000', '14.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8030, 787, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8031, 787, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8032, 788, 2089, '39725135', 'POLYGEL SUSP 200ML', 'standard', NULL, '9.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8033, 788, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8034, 788, 2252, '08741188', 'FLUREST TABS', 'standard', NULL, '12.5000', '12.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8035, 788, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8036, 789, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8037, 789, 2316, '59549986', 'SMA 1 BABY FOOD', 'standard', NULL, '48.0000', '48.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', '48.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8038, 789, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8039, 789, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8040, 789, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8041, 789, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8042, 789, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8043, 789, 2974, '33602978', 'EASY CHECK EARLY PREGNANCY TEST', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8044, 789, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '36.0000', '36.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8045, 789, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8046, 789, 2106, '26940098', 'XPEL SUSPENSION 20ML', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8047, 789, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8048, 789, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8049, 789, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8050, 789, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8051, 790, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8052, 790, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8053, 790, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8054, 790, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8055, 791, 1426, '6034600108426', 'ROOTER LIFE', 'standard', NULL, '47.5000', '47.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '47.5000', '', '47.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8056, 791, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8057, 792, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8058, 793, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8059, 793, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8060, 793, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8061, 793, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8062, 794, 2936, '30787578', 'MALIN ADULT COUGH', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8063, 794, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8064, 794, 2244, '96089977', 'MAGACID SYRUP 200ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8065, 795, 1986, '6181100323658', 'SIVODERM CREAM', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8066, 795, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8067, 795, 2350, '58123990', 'COARTEM 6\'S', 'standard', NULL, '13.5000', '13.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8068, 795, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8069, 795, 2032, '8859178707738', 'TOP COUNTRY ROLL ON 80ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8070, 795, 2759, '56334949', 'SHALCIP TAB', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8071, 795, 2435, '31684073', 'ORAL B TOOTHPASTE', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8072, 795, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8073, 795, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8074, 795, 2892, '97440547', 'JET INHALER LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8075, 795, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8076, 795, 1488, '8902292005744', 'EPIDERM CREAM 30G LIS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8077, 795, 1517, 'PR-230', 'NEOCORT EYE DROP', 'standard', NULL, '31.0000', '31.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '31.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8078, 795, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '0.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8079, 795, 1953, '56415263', 'STAGYL TABS', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8080, 795, 1637, '4031571068959', 'DICLO DENK 100MG TAB', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8081, 795, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8082, 795, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8083, 795, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8084, 795, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8085, 795, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8086, 795, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8087, 795, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8088, 795, 1856, 'PR-569', 'KOFFEX SYR ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8089, 795, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8090, 795, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8091, 796, 1306, 'PR-19', 'DOMI 10: TAB', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8092, 796, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '4.0000', '4.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8093, 796, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8094, 796, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8095, 796, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8096, 796, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8097, 796, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '21.0000', '21.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '21.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8098, 796, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8099, 796, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8100, 796, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8101, 797, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8102, 797, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8103, 797, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8104, 797, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8105, 797, 2974, '33602978', 'EASY CHECK EARLY PREGNANCY TEST', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8106, 797, 2636, '86196755', 'KIDIMIN SYR', 'standard', NULL, '10.5000', '10.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8107, 797, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8108, 798, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.5000', '20.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.5000', '', '20.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8109, 798, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8110, 798, 1691, 'PR-404', 'JARIFAN 2 SYR', 'standard', NULL, '13.5000', '13.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8111, 798, 1649, '6161102003536', 'ZUBES EXPECTORANT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8112, 798, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8113, 798, 2409, '86934998', 'PROMETHAZINE SYR 60ML', 'standard', NULL, '4.0000', '4.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8114, 798, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8115, 798, 2354, '93872260', 'COLDRILIF SYR', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8116, 798, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8117, 798, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', 'standard', NULL, '6.5000', '6.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8118, 799, 1423, '6036000115455', 'PROSTACURE X', 'standard', NULL, '33.0000', '33.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8119, 799, 2296, '48633360', 'DREZ SOLUTION B/S', 'standard', NULL, '18.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8120, 799, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8121, 800, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8122, 800, 2694, '59710964', 'ZINC OXIDE PLASTER 1\'\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8123, 800, 1335, 'PR-48', 'GAUSE BANDAGE 61CH', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8124, 800, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8125, 800, 2827, '4103040122452', 'BABY SEBAMED  BODY LOTION', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8126, 800, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8127, 800, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8128, 800, 2582, '81054441', 'AZILEX SUSP', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8129, 800, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8130, 800, 2923, '67740529', 'BELLS CHN COUGH SYR', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8131, 800, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8132, 800, 2140, '9556100104335', 'FLUCOR NIGHT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8133, 800, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8134, 800, 1817, 'PR-530', 'TRES-ORIX 100MILS S/S', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8135, 800, 2633, '36871243', 'GANA BALM', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8136, 800, 2389, '78098233', 'ALKA SELTZER 20\'S', 'standard', NULL, '4.5000', '4.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '4.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8137, 800, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8138, 800, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8139, 800, 2101, '56160077', 'LETAFEN SUSPENSION 100ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8140, 800, 2411, '13740723', 'GEBEDOL FORTE TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8141, 800, 1427, '003', 'ROOTER TYTONIC', 'standard', NULL, '20.5000', '20.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.5000', '', '20.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8142, 800, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8143, 801, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8144, 801, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8145, 801, 2543, '89430673', 'SECURE CONTRACEPTIVE', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8146, 801, 2777, '97856697', 'MMT SUSP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8147, 801, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8148, 801, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8149, 802, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8150, 802, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8151, 802, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8152, 803, 2108, '85249693', 'ARFAN 20/120MG', 'standard', NULL, '6.5000', '6.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8153, 804, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8154, 804, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', 'standard', NULL, '27.0000', '27.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8155, 804, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8156, 804, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8157, 804, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8158, 805, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8159, 805, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8160, 805, 1306, 'PR-19', 'DOMI 10: TAB', 'standard', NULL, '3.0000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8161, 805, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8162, 805, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8163, 805, 1530, '4031571064159', 'METFORMIN DENK 1G', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8164, 805, 1521, 'PR-234', 'PAINGAYCAP', 'standard', NULL, '3.5000', '3.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '3.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8165, 805, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8166, 805, 2859, '57412085', 'PELODIUM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8167, 805, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8168, 805, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8169, 805, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8170, 805, 2546, '11973520', 'NOSTAMINE E/N DROPS', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8171, 805, 2810, '44204486', 'L MONTUS', 'standard', NULL, '2.9000', '2.9000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '2.9000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8172, 805, 1510, '009', 'CIPROLEX EYE & EAR DROP', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8173, 805, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8174, 805, 2491, '57627875', 'BELLS VITAMIN C', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8175, 805, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8176, 805, 1537, 'PR-250', 'VITANE SYR', 'standard', NULL, '53.0000', '53.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '53.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8177, 805, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '46.0000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8178, 805, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', 'standard', NULL, '33.0000', '33.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '66.0000', '', '33.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8179, 805, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8180, 805, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8181, 805, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8182, 806, 2290, '5024874020938', 'VALUPAK FOLIC ACID 30\'S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8183, 806, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8184, 806, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8185, 806, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8186, 806, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8187, 806, 2251, '8901138500573', 'BONNISAN SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8188, 806, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8189, 806, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8190, 806, 2313, '83991627', 'ENTRACIN 300', 'standard', NULL, '12.0000', '12.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '12.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8191, 806, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8192, 806, 2288, '44100235', 'FLUXAMOX SUSP 100ML', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8193, 806, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8194, 806, 1557, 'PR-270', 'SECLEAR  EYE DROP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8195, 806, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8196, 806, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8197, 806, 2995, '32309749', 'NAT B CAPS', 'standard', NULL, '52.5000', '52.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '52.5000', '', '52.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8198, 807, 1859, '8901138502942', 'PILEX TAB', 'standard', NULL, '32.0000', '32.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8199, 807, 2283, '8906009232225', 'LOFNAC TAB 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8200, 807, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8201, 807, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8202, 807, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8203, 807, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', 'standard', NULL, '9.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8204, 808, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.5000', '6.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8205, 809, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8206, 809, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8207, 809, 1751, 'PR-464', 'METRO-Z TABS 20', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8208, 809, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8209, 810, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8210, 811, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8211, 811, 2236, '6033000270108', 'EFPAC JNR', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8212, 811, 2108, '85249693', 'ARFAN 20/120MG', 'standard', NULL, '6.5000', '6.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8213, 811, 2917, '02413027', 'FLEMEX ADULT SYRUP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8214, 811, 2990, '71484949', 'ENTRAMOL 500 TAB', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8215, 811, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8216, 811, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8217, 811, 1721, 'PR-434', 'AZITEX(AZITHROMYCIN) SUSP. 200MG /5ML 15ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8218, 811, 1595, 'PR-308', 'BEEHIVE COUGH SYR', 'standard', NULL, '28.0000', '28.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8219, 811, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8220, 811, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '3.8300', '3.8300', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.8300', '', '3.8300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8221, 811, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8222, 811, 2491, '57627875', 'BELLS VITAMIN C', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8223, 811, 2283, '8906009232225', 'LOFNAC TAB 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8224, 811, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8225, 811, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8226, 812, 2772, '70208100', 'CAFEGOT TAB', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8227, 812, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8228, 812, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8229, 812, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8230, 812, 2264, '78116631', 'LUBRIMAX JELLY 50G', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8231, 812, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8232, 812, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8233, 812, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8234, 812, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8235, 812, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8236, 812, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8237, 812, 2245, '77795384', 'MAGACID TABLETS', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8238, 812, 2491, '57627875', 'BELLS VITAMIN C', 'standard', NULL, '16.0000', '16.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '16.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8239, 812, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8240, 812, 2236, '6033000270108', 'EFPAC JNR', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8241, 812, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '0.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8242, 812, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8243, 813, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8244, 813, 2706, '44071026', 'GASTRONE SYRUP 200ML', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8245, 813, 1374, 'PR-87', 'TEGRETOL CR 400MG', 'standard', NULL, '26.0000', '26.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '26.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8246, 814, 2084, '24569550', 'PRE-MECO', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8247, 814, 1677, '8902546578543', 'LUEX BABY COUGH', 'standard', NULL, '11.0000', '11.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8248, 815, 2063, '28182783', 'NEFLUCON (FLUCONAZOLE) CAP 150', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8249, 815, 1868, 'PR-581', 'CIPRO TAB 500MG (SHALCIP TAB)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8250, 815, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8251, 815, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8252, 815, 1824, '8901315201910', 'TAGERA FORTE TABS', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8253, 816, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '52.5000', '', '10.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8254, 817, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8255, 818, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8256, 818, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '18.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8257, 818, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8258, 818, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8259, 818, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8260, 818, 2990, '71484949', 'ENTRAMOL 500 TAB', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8261, 818, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8262, 819, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8263, 819, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8264, 819, 2294, '44448916', 'PENICILLIN OINTMENT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8265, 819, 2298, '11840983', 'DREZ OINTMENT 10G S/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8266, 820, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8267, 820, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8268, 820, 2294, '44448916', 'PENICILLIN OINTMENT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8269, 820, 2298, '11840983', 'DREZ OINTMENT 10G S/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8270, 820, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '1.3000', '1.3000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '1.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8271, 821, 2893, '66615924', 'FISHERMAN\'S FRIEND', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8272, 821, 2405, '40815002', 'GLOVES', 'standard', NULL, '1.6000', '1.6000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '1.6000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8273, 821, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8274, 821, 2075, '91642667', 'X\'FERON SYR 200ML', 'standard', NULL, '9.5000', '9.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.5000', '', '9.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8275, 821, 2642, '23201636', 'SOFTCARE DIAPER', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8276, 821, 1400, 'PR-113', 'DIAGELLETS 500ML(24)', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8277, 821, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8278, 821, 2359, '66115662', 'LOSAR-DENK 50MG TAB', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8279, 821, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8280, 821, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '21.0000', '21.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8281, 821, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8282, 821, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8283, 821, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '8.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8284, 821, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8285, 821, 2403, '84832683', 'LIMZER CAPS 30\'', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8286, 821, 2244, '96089977', 'MAGACID SYRUP 200ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8287, 822, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8288, 822, 2669, '24220016', 'POLYGYNAX PESS', 'standard', NULL, '32.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8289, 822, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8290, 823, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8291, 823, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8292, 823, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8293, 823, 1462, '8904008413690', 'OVACARE TABS', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8294, 823, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8295, 823, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8296, 823, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8297, 823, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8298, 823, 1644, '3574661091075', 'BENYLIN INFANT SYR', 'standard', NULL, '45.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8299, 823, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8300, 823, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8301, 823, 2958, '18073468', 'WELCHS TOFFEE', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8302, 823, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8303, 823, 2806, '51671546', 'DETTOL SOAP BIG', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8304, 824, 2307, '07147099', 'ZITHROMAX 250MG', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '170.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8305, 824, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8306, 824, 2557, '86393917', 'METOCLOPRAMIDE', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8307, 824, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8308, 824, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8309, 824, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '1.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8310, 824, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8311, 825, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '11.5000', '11.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '11.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8312, 825, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '46.0000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8313, 825, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8314, 825, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8315, 825, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8316, 825, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '11.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '11.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8317, 825, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8318, 825, 1856, 'PR-569', 'KOFFEX SYR ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8319, 825, 1584, '5060806420162', 'PROMAN DRINK 250ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8320, 826, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8321, 826, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8322, 826, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8323, 826, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8324, 827, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.6000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8325, 827, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8326, 827, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8327, 827, 1810, 'PR-523', 'VISCOF EXPECTORANT', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8328, 827, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '18.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8329, 827, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8330, 827, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8331, 827, 2950, '98068395', 'CHLORAMPHENICOL (FICHLOR)', 'standard', NULL, '3.0000', '3.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8332, 827, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8333, 827, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8334, 827, 2495, '19113194', 'CANDID V3', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8335, 827, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8336, 827, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8337, 827, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8338, 827, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8339, 827, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8340, 827, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8341, 827, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8342, 827, 2574, '24484092', 'DULCOLAX TABS 5MG 20\'S', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8343, 827, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8344, 827, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8345, 827, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.3000', '', '0.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8346, 827, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8347, 827, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8348, 827, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8349, 827, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8350, 827, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', 'standard', NULL, '2.2000', '2.2000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.2000', '', '2.2000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8351, 827, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8352, 827, 2989, '30747371', 'ALUMINIUM HYDRO TAB (M&G)', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8353, 827, 2943, '94222566', 'MIST EXPECT SEED', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8354, 827, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8355, 827, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8356, 827, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8357, 827, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8358, 827, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8359, 827, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8360, 827, 2729, '08313778', 'KEFEN EXTRA 10MG TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8361, 827, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8362, 827, 1788, 'PR-501', 'KOFFEX SYR CHILD EXP', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8363, 828, 2612, '94895079', 'OMEGA OIL 50ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8364, 828, 1382, 'PR-95', 'ZULU EXTRA', 'standard', NULL, '5.5000', '5.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8365, 828, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8366, 828, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8367, 828, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8368, 828, 2381, '72472860', 'ENACEF SUSP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8369, 828, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8370, 828, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8371, 829, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8372, 829, 2754, '10737671', 'PLASTER STRIPS 100\'S', 'standard', NULL, '0.5000', '0.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8373, 829, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8374, 829, 2990, '71484949', 'ENTRAMOL 500 TAB', 'standard', NULL, '1.5000', '1.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8375, 829, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8376, 830, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', 'standard', NULL, '2.5000', '2.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '2.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8377, 830, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8378, 831, 2678, '32692312', 'NAPROSYN EC 500MG UK', 'standard', NULL, '48.0000', '48.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '96.0000', '', '48.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8379, 831, 1353, '5060085540254', 'SELEVITE TABS', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8380, 831, 1498, 'PR-211', 'PAIN OFF TAB', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8381, 831, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8382, 831, 1741, '5017007601289', 'SUDOCREAM 125G', 'standard', NULL, '33.5000', '33.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.5000', '', '33.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8383, 831, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8384, 831, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8385, 831, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '4.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8386, 831, 1772, 'PR-485', 'WORMPLEX SUSP.', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8387, 831, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8388, 831, 2413, '72302134', 'LETAVIN 125MG', 'standard', NULL, '1.5000', '1.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '1.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8389, 831, 2642, '23201636', 'SOFTCARE DIAPER', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8390, 831, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8391, 831, 1495, '8904107901401', 'MYCOLEX POWDER', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8392, 831, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8393, 831, 2527, '655295237350', 'MACA POWDER (DR HERBALIST)', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8394, 831, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8395, 831, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8396, 831, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8397, 831, 1610, '8904107900909', 'MYCOLEX-3 CREAM', 'standard', NULL, '21.0000', '21.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8398, 831, 1512, 'PR-225', 'CIPAC EYE ROP', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8399, 831, 2697, '72051764', 'BAY LEAVES', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8400, 831, 2108, '85249693', 'ARFAN 20/120MG', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8401, 831, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8402, 831, 2842, '8904185508110', 'TOBVITAL', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8403, 831, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8404, 831, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8405, 831, 2618, '72760937', 'BUSCOMED TAB 10MG', 'standard', NULL, '5.5000', '5.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '5.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8406, 831, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8407, 831, 2926, '21772628', 'OMEPRAZOLE (DR REDDY\'S)', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8408, 832, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8409, 832, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8410, 832, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8411, 832, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8412, 832, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8413, 832, 2893, '66615924', 'FISHERMAN\'S FRIEND', 'standard', NULL, '8.0000', '8.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8414, 832, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8415, 833, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8416, 834, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.3000', '', '0.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8417, 834, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8418, 834, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8419, 834, 1908, 'PR-621', 'Magacid tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8420, 834, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8421, 834, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8422, 834, 2102, '12180621', 'METRONIDAZOLE SUSP 100ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8423, 834, 2722, '88455380', 'AZITEX TAB  ', 'standard', NULL, '12.0000', '12.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '12.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8424, 834, 1864, 'PR-577', 'VIROL BLOOD TONIC', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8425, 835, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8426, 835, 2247, '29226629', 'TRISILICATE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8427, 835, 1791, '8904107900992', 'LEXSPORIN POWDER 10G', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8428, 835, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8429, 835, 2893, '66615924', 'FISHERMAN\'S FRIEND', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8430, 835, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8431, 835, 2872, '32128165', 'TUMERIC POWDER 300GM', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8432, 835, 1433, 'PR-146', 'TIME HERBAL MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8433, 835, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8434, 835, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8435, 835, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8436, 835, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8437, 835, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8438, 835, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8439, 835, 1663, '5021265221523', 'PREGNACARE PLUS', 'standard', NULL, '129.0000', '129.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '129.0000', '', '129.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8440, 835, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8441, 835, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8442, 835, 2022, '69436145', 'CHOCHO CREAM', 'standard', NULL, '4.5000', '4.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8443, 835, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8444, 835, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8445, 835, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8446, 835, 2056, '26049852', 'ESSENTIAL EMBROCATION (LIQUID ROBB) 27ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8447, 835, 2646, '15816669', 'GLADE PAPER AIR FRESHNER', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8448, 835, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8449, 835, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8450, 835, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8451, 835, 2154, '8410179200927', 'BORGES S/S  125ML', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8452, 835, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8453, 835, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8454, 836, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8455, 836, 2642, '23201636', 'SOFTCARE DIAPER', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8456, 836, 2102, '12180621', 'METRONIDAZOLE SUSP 100ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8457, 836, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8458, 836, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8459, 836, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8460, 836, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', 'standard', NULL, '2.5000', '2.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8461, 836, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8462, 836, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8463, 836, 2352, '84404614', ' TADOL (TRAMADOL CAPS 50MG KRAKA)', 'standard', NULL, '26.0000', '26.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8464, 836, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8465, 836, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8466, 836, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8467, 836, 2945, '07580425', 'CIPROLEX EYE OINTMENT', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8468, 836, 1381, 'PR-94', ' GOLDY FORTE DS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8469, 836, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8470, 836, 2754, '10737671', 'PLASTER STRIPS 100\'S', 'standard', NULL, '0.5000', '0.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8471, 836, 2263, '6036000090417', 'LEVON 2', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8472, 836, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8473, 836, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8474, 836, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8475, 837, 2778, '035046004323', 'COQ10 100MG CAPS (WINDML)', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '120.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8476, 837, 2484, '00708902', 'PUMPKIN SEED', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8477, 838, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8478, 838, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8479, 838, 2071, '20773440', 'GRISEOFULVIN', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8480, 838, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '1.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8481, 838, 2679, '42097030', 'PEVISONE CREAM', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8482, 838, 1489, '6938058600108', 'SAMOCID(SKIN AND NAIL)', 'standard', NULL, '37.0000', '37.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '37.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8483, 838, 1326, 'PR-39', 'DERMIRON PLUS CREAM', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8484, 838, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8485, 838, 2807, '80774399', 'FAMI CARE KID BRUSH', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8486, 838, 2011, '6948031103014', 'VIP TOOTHBRUSH', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8487, 838, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8488, 838, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8489, 838, 2942, '53692521', 'LETACAM CAPS', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8490, 838, 1478, '8906087940128', 'IMPRESSER CAPS', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8491, 838, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8492, 838, 2208, '8964000114049', 'CASTOR OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8493, 838, 2219, '8964000734674', 'PEPPERMINT OIL 40ML', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8494, 838, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8495, 838, 2187, '8964000577981', 'TEA TREE OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8496, 838, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8497, 839, 2864, '58170295', 'PARA DENK 250MG SUPP', 'standard', NULL, '2.0000', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8498, 839, 2732, '47378626', 'KY JELLY 50ML', 'standard', NULL, '44.0000', '44.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '44.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8499, 839, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8500, 839, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8501, 839, 1908, 'PR-621', 'Magacid tablet', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8502, 839, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8503, 839, 1780, '5021265220076', 'FEROGLOBIN CAPS', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8504, 839, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8505, 840, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8506, 840, 2600, '5011417566800', 'LEMSIP COUGH SYR 180ML UK', 'standard', NULL, '74.5000', '74.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '74.5000', '', '74.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8507, 841, 1967, '5023497400615', 'SALAMOL CFC INHALER', 'standard', NULL, '26.0000', '26.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8508, 841, 1536, '8901040245197', 'AXACEF S00MG 10\'S', 'standard', NULL, '5.0000', '5.0000', '14.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '5.0000', NULL, 1, 'pc', '14.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8509, 841, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8510, 841, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8511, 841, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8512, 841, 2823, '78074241', 'IBEX CAPS', 'standard', NULL, '7.5000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8513, 841, 1431, 'PR-144', 'SPANISH GARLIC MIXTURE(30)', 'standard', NULL, '14.0000', '14.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8514, 841, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8515, 841, 2152, '6034000189179', 'ADOM W&G MIX', 'standard', NULL, '14.0000', '14.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8516, 841, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8517, 841, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8518, 841, 1381, 'PR-94', ' GOLDY FORTE DS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8519, 841, 2073, '59185019', 'DOMI 30', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8520, 841, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8521, 841, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8522, 842, 2344, '08199601', 'FOLIGROW TONIC', 'standard', NULL, '24.5000', '24.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '24.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8523, 842, 1433, 'PR-146', 'TIME HERBAL MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8524, 842, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8525, 842, 2603, '17379642', 'VITAGO', 'standard', NULL, '1.3000', '1.3000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3000', '', '1.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8526, 842, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8527, 842, 2029, '5137136225115', 'JRA CREAM MEDIUM 120G', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8528, 842, 2444, '73221630', 'SOFTCARE BABY WIPES', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8529, 842, 1441, '2150546225301', 'X DRIVE CAPS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8530, 842, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', 'standard', NULL, '0.5000', '0.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '0.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8531, 842, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8532, 842, 2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', 'standard', NULL, '2.5000', '2.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8533, 842, 1512, 'PR-225', 'CIPAC EYE ROP', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8534, 842, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8535, 842, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8536, 842, 2623, '01976331', 'BENDROFLUZIDE 2.5MG UK CRESCENT', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8537, 842, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8538, 843, 1945, 'PR-658', 'LUFART SUSP', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8539, 843, 2344, '08199601', 'FOLIGROW TONIC', 'standard', NULL, '24.5000', '24.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '24.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8540, 844, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8541, 844, 2732, '47378626', 'KY JELLY 50ML', 'standard', NULL, '44.0000', '44.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '44.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8542, 844, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8543, 845, 1422, 'PR-135', 'PROSTACURE TEA (32)', 'standard', NULL, '28.0000', '28.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8544, 845, 1423, '6036000115455', 'PROSTACURE X', 'standard', NULL, '33.0000', '33.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8545, 845, 1404, 'PR-117', 'GBEDEMAH Garlic bitters', 'standard', NULL, '12.0000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8546, 845, 1312, 'PR-25', 'MILK OF MAGNESIA S/S', 'standard', NULL, '8.5000', '8.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8547, 845, 2286, '91011834', 'FLUXAMOX CAPS 200', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8548, 845, 2286, '91011834', 'FLUXAMOX CAPS 200', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8549, 845, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '7.5000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8550, 845, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8551, 845, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8552, 845, 1928, '8906009234090', 'LOFNAC GEL GLF143', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8553, 845, 2286, '91011834', 'FLUXAMOX CAPS 200', 'standard', NULL, '6.0000', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '6.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8554, 845, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', 'standard', NULL, '2.0000', '2.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '2.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8555, 845, 2547, '30290939', 'VISCOF S SYR', 'standard', NULL, '11.5000', '11.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '11.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8556, 845, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8557, 845, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8558, 845, 1967, '5023497400615', 'SALAMOL CFC INHALER', 'standard', NULL, '26.0000', '26.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8559, 846, 2817, '45511010', 'ROBAXIN TAB', 'standard', NULL, '2.5000', '2.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8560, 846, 2866, '6922049789736', 'CALCIUM/IRON/ZINC CHEWABLE TABLETS', 'standard', NULL, '1.5000', '1.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '1.5000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8561, 846, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8562, 847, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8563, 847, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8564, 847, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8565, 847, 2108, '85249693', 'ARFAN 20/120MG', 'standard', NULL, '6.5000', '6.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8566, 847, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8567, 848, 2989, '30747371', 'ALUMINIUM HYDRO TAB (M&G)', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8568, 848, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8569, 848, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8570, 849, 1527, '8904159609416', 'PREGASAFE 75MG TAB', 'standard', NULL, '17.5000', '17.5000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '52.5000', '', '17.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8571, 849, 1322, 'PR-35', 'BADRUF CREAM 30MG', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8572, 849, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8573, 849, 2241, '47790994', 'METRONIDAZOLE TAB 400 UK', 'standard', NULL, '9.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8574, 849, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8575, 849, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8576, 849, 2979, '74644667', 'NIVEA SPRAY 200ML', 'standard', NULL, '17.5000', '17.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8577, 849, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8578, 850, 1609, '8904107900893', 'MYCOLEX CREAM 20G', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8579, 850, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8580, 851, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8581, 851, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8582, 852, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8583, 852, 1406, '16564749', 'GIVERS KOO CAPS(l40)', 'standard', NULL, '23.0000', '23.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8584, 852, 1864, 'PR-577', 'VIROL BLOOD TONIC', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8585, 852, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8586, 852, 1381, 'PR-94', ' GOLDY FORTE DS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8587, 852, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8588, 852, 2943, '94222566', 'MIST EXPECT SEED', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8589, 852, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8590, 852, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8591, 852, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8592, 853, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8593, 853, 2971, '36770680', 'JOHNSON BABY SOAP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8594, 853, 1616, 'PR-329', 'GACET SUPP 250MG', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8595, 853, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8596, 853, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8597, 853, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8598, 853, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8599, 853, 1741, '5017007601289', 'SUDOCREAM 125G', 'standard', NULL, '33.5000', '33.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.5000', '', '33.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8600, 853, 2548, '54581009', 'ZINCOVIT DROP', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8601, 853, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8602, 853, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '2.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8603, 853, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6900', '', '0.6900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8604, 853, 2460, '07910647', 'EVECARE TAB', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8605, 853, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8606, 853, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8607, 853, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8608, 853, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '3.8300', '3.8300', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.8300', '', '3.8300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8609, 853, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8610, 853, 2307, '07147099', 'ZITHROMAX 250MG', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '170.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8611, 853, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8612, 853, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8613, 853, 1686, '8901082006-81', 'ALKA-5 SYR', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8614, 853, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8615, 853, 2518, '51929198', 'TAVANIC 500MG', 'standard', NULL, '154.0000', '154.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '154.0000', '', '154.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8616, 853, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8617, 853, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8618, 853, 2473, '12094351', 'RIGHT GUARD SPRAY', 'standard', NULL, '15.0000', '15.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '15.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8619, 853, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', 'standard', NULL, '39.0000', '39.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '39.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8620, 853, 1376, '7640153082107', 'IXYLO-MEPHA 0.05%', 'standard', NULL, '55.5000', '55.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '55.5000', '', '55.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8621, 853, 3013, '60394518', 'INOXIME TAB 200MG', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8622, 853, 1810, 'PR-523', 'VISCOF EXPECTORANT', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8623, 854, 2548, '54581009', 'ZINCOVIT DROP', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8624, 855, 1677, '8902546578543', 'LUEX BABY COUGH', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8625, 855, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8626, 855, 1654, '8904091117703', 'RELCER GEL', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8627, 855, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8628, 855, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8629, 855, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8630, 855, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.5000', '6.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8631, 856, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8632, 856, 2942, '53692521', 'LETACAM CAPS', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8633, 856, 2759, '56334949', 'SHALCIP TAB', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8634, 856, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8635, 856, 2459, '26218313', 'ENAMYCIN SUS (ECL)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8636, 856, 1704, '5060033711873', 'CYPRODINE SYR', 'standard', NULL, '35.5000', '35.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.5000', '', '35.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8637, 856, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8638, 856, 2548, '54581009', 'ZINCOVIT DROP', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8639, 856, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8640, 856, 2325, '68025873', 'ALWAYS PAD MAX', 'standard', NULL, '7.5000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8641, 856, 2324, '16521609', 'ALWAYS PAD DOUBLE MAX', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8642, 856, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8643, 856, 2810, '44204486', 'L MONTUS', 'standard', NULL, '2.9000', '2.9000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '2.9000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8644, 856, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', 'standard', NULL, '39.0000', '39.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '39.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8645, 856, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8646, 856, 1439, 'PR-152', 'VICTAGO s s', 'standard', NULL, '1.3000', '1.3000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3000', '', '1.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8647, 856, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8648, 856, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8649, 856, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8650, 856, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8651, 856, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', 'standard', NULL, '2.5000', '2.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8652, 856, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8653, 857, 2545, '82780299', 'DREZ POWDER 10G', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8654, 857, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8655, 857, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8656, 857, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8657, 857, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8658, 857, 2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8659, 857, 2244, '96089977', 'MAGACID SYRUP 200ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8660, 857, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8661, 857, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8662, 858, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8663, 858, 2545, '82780299', 'DREZ POWDER 10G', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8664, 858, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8665, 858, 2864, '58170295', 'PARA DENK 250MG SUPP', 'standard', NULL, '2.0000', '2.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8666, 858, 3018, '27169206', 'PARA SYR EXETER', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8667, 858, 1643, '6001135505433', 'BENYLIN ORIGINAL', 'standard', NULL, '53.0000', '53.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '53.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8668, 859, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8669, 859, 2294, '44448916', 'PENICILLIN OINTMENT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8670, 859, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8671, 859, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8672, 859, 1757, 'PR-470', 'PERMOXYL (AMOX\'LIN ) SUSP 100ML', 'standard', NULL, '6.0000', '6.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8673, 859, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8674, 859, 2351, '81129325', 'COARTEM 12\'S', 'standard', NULL, '24.0000', '24.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '24.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8675, 859, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8676, 860, 1376, '7640153082107', 'IXYLO-MEPHA 0.05%', 'standard', NULL, '55.5000', '55.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '111.0000', '', '55.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8677, 861, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8678, 862, 1616, 'PR-329', 'GACET SUPP 250MG', 'standard', NULL, '7.5000', '7.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8679, 863, 1805, 'PR-518', 'SAMALIN ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8680, 863, 1654, '8904091117703', 'RELCER GEL', 'standard', NULL, '12.0000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8681, 863, 2411, '13740723', 'GEBEDOL FORTE TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8682, 863, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8683, 863, 2262, '69085595', 'LENOR CONTRACEPTIVE', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8684, 864, 2411, '13740723', 'GEBEDOL FORTE TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8685, 865, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8686, 865, 2273, '04120489', 'RHIZIN SYRP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8687, 865, 2546, '11973520', 'NOSTAMINE E/N DROPS', 'standard', NULL, '16.0000', '16.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8688, 865, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8689, 866, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8690, 867, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '47.0000', '47.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8691, 868, 2612, '94895079', 'OMEGA OIL 50ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8692, 868, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '1.3000', '1.3000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '1.3000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8693, 868, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', 'standard', NULL, '33.0000', '33.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8694, 868, 1767, 'PR-480', 'CETRIZAN TABLETS 10MG 20\'', 'standard', NULL, '6.5000', '6.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8695, 868, 2936, '30787578', 'MALIN ADULT COUGH', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8696, 868, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8697, 868, 1640, 'PR-353', 'HISTAZINE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8698, 868, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8699, 868, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '5.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8700, 868, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8701, 868, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8702, 868, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8703, 868, 2992, '39433029', 'PANADOL TAB PLAIN', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8704, 868, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8705, 869, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8706, 869, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8707, 869, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8708, 869, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8709, 869, 2862, '97602687', 'TYPHOID TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8710, 869, 1537, 'PR-250', 'VITANE SYR', 'standard', NULL, '51.0000', '51.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '51.0000', '', '51.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8711, 869, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8712, 869, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8713, 869, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8714, 869, 2254, '8901040258036', 'BIOFERON SYRUP', 'standard', NULL, '27.0000', '27.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8715, 869, 2255, '8901040258050', 'BIOFERON CAPS', 'standard', NULL, '24.0000', '24.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8716, 869, 2604, '43079266', 'COA MIXTURE', 'standard', NULL, '120.0000', '120.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '120.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8717, 869, 2678, '32692312', 'NAPROSYN EC 500MG UK', 'standard', NULL, '48.0000', '48.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8718, 869, 2573, '11557669', 'MASADA', 'standard', NULL, '12.5000', '12.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8719, 869, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8720, 869, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8721, 869, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8722, 869, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8723, 869, 2992, '39433029', 'PANADOL TAB PLAIN', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8724, 869, 2072, '41512770', 'ZINVITE CAPS', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8725, 869, 2642, '23201636', 'SOFTCARE DIAPER', 'standard', NULL, '12.0000', '12.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8726, 869, 2539, '39255568', 'THERMOMETER DIGITAL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8727, 869, 2358, '32893309', 'LOSAR-DENK 100MG', 'standard', NULL, '18.0000', '18.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '18.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8728, 869, 1688, 'PR-401', 'ZINCOVIT TAB', 'standard', NULL, '24.5000', '24.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '24.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8729, 869, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8730, 869, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8731, 869, 1632, '5024874030630', 'VALUPAK VITE 4001U', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8732, 869, 2862, '97602687', 'TYPHOID TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8733, 869, 1457, '5026143998344', 'ALPHA FOLIC ACID', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8734, 869, 1456, '5026143702088', 'ALPHA VITAMIN C TABS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8735, 870, 1852, 'PR-565', 'EYECOPEN ACPS 30?S', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8736, 870, 2283, '8906009232225', 'LOFNAC TAB 100MG', 'standard', NULL, '2.0000', '2.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8737, 870, 2624, '71356473', 'POLAR ICE', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8738, 870, 1706, 'PR-419', 'PROCOLD SYR 100ml', 'standard', NULL, '16.0000', '16.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8739, 870, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8740, 870, 1852, 'PR-565', 'EYECOPEN ACPS 30?S', 'standard', NULL, '7.0000', '7.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8741, 870, 2989, '30747371', 'ALUMINIUM HYDRO TAB (M&G)', 'standard', NULL, '1.0000', '1.0000', '6.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8742, 870, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8743, 871, 2607, '65744915', 'maalox sachets', 'standard', NULL, '1.7000', '1.7000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.7000', '', '1.7000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8744, 871, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8745, 871, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8746, 871, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8747, 871, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8748, 871, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8749, 872, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8750, 872, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8751, 872, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '21.0000', '21.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8752, 872, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8753, 872, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8754, 872, 2274, '55192131', 'STOPKOFF EXP CHN', 'standard', NULL, '6.5000', '6.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8755, 872, 2410, '22266640', 'CARTEF SUSP 60ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8756, 873, 1941, 'PR-654', 'Genti Gds11369', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8757, 873, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8758, 873, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8759, 873, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8760, 873, 3018, '27169206', 'PARA SYR EXETER', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8761, 873, 2224, '6033000086150', 'CERELAC TIN BISCUITY WITH MILK', 'standard', NULL, '16.0000', '16.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '64.0000', '', '16.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8762, 873, 2142, '5021265223855', 'WELLBABY ', 'standard', NULL, '76.0000', '76.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '76.0000', '', '76.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8763, 873, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8764, 873, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8765, 873, 2348, '70645774', 'LYNUX OINT', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8766, 873, 2251, '8901138500573', 'BONNISAN SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8767, 873, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8768, 873, 2940, '42955737', 'DIPHEX COUGH SYRP', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8769, 873, 1643, '6001135505433', 'BENYLIN ORIGINAL', 'standard', NULL, '53.0000', '53.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '53.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8770, 873, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8771, 873, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8772, 873, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8773, 873, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '29.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '174.0000', '', '6.0000', NULL, 1, 'pc', '29.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8774, 873, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8775, 874, 1377, '5000158062139', 'BONJELA ADULT', 'standard', NULL, '45.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8776, 875, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.3000', '', '0.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8777, 875, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8778, 875, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8779, 875, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.7000', '0.7000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.8000', '', '0.7000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8780, 875, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8781, 875, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8782, 875, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8783, 875, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8784, 876, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8785, 876, 2513, '35471802', 'HONEY 1L', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '50.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8786, 876, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '18.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8787, 876, 2796, '087701407864', 'HEALTHY EYES (GOOD NEIGHBOR PHARM)', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '60.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8788, 876, 2787, '030768006761', 'FOLATE FOLIC ACID (SUNDOWN)', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8789, 876, 2971, '36770680', 'JOHNSON BABY SOAP', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8790, 877, 2228, '7501058625915', 'LACTOGEN  1', 'standard', NULL, '28.0000', '28.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8791, 877, 2253, '6221045010159', 'ACTIFED TAB', 'standard', NULL, '12.0000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8792, 877, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', 'standard', NULL, '33.0000', '33.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8793, 877, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8794, 877, 2760, '71647290', 'HAYZINE TAB', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8795, 877, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8796, 877, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8797, 877, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8798, 877, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8799, 877, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8800, 877, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8801, 877, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8802, 877, 2491, '57627875', 'BELLS VITAMIN C', 'standard', NULL, '16.0000', '16.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8803, 877, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '47.0000', '47.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8804, 878, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8805, 879, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8806, 880, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8807, 881, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8808, 881, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8809, 881, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '4.0000', '4.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8810, 881, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8811, 881, 1868, 'PR-581', 'CIPRO TAB 500MG (SHALCIP TAB)', 'standard', NULL, '5.0000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '5.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8812, 881, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8813, 881, 2453, '3410766', 'MONA SOAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8814, 881, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', 'standard', NULL, '2.6000', '2.6000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.6000', '', '2.6000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8815, 881, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8816, 882, 2459, '26218313', 'ENAMYCIN SUS (ECL)', 'standard', NULL, '7.0000', '7.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8817, 882, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8818, 882, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8819, 882, 1755, 'PR-468', 'STOPKOF EXPT( CARBOCISTEINE)5?ULT 100ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8820, 882, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8821, 882, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8822, 882, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8823, 882, 1856, 'PR-569', 'KOFFEX SYR ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8824, 882, 1381, 'PR-94', ' GOLDY FORTE DS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8825, 882, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8826, 882, 2061, '96762855', 'ZYMAX CAPS 500MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8827, 882, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8828, 882, 2168, '8901082004356', 'APTIZOOOM', 'standard', NULL, '39.0000', '39.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '39.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8829, 882, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8830, 882, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8831, 882, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.6000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8832, 882, 2706, '44071026', 'GASTRONE SYRUP 200ML', 'standard', NULL, '9.0000', '9.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8833, 882, 2403, '84832683', 'LIMZER CAPS 30\'', 'standard', NULL, '24.0000', '24.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8834, 882, 2334, '99769153', 'CROMAX-2 EYE DROP', 'standard', NULL, '21.0000', '21.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8835, 882, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '1.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8836, 883, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8837, 883, 2949, '91005439', 'LOFNAC BALM', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8838, 883, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', 'standard', NULL, '2.5000', '2.5000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.5000', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8839, 883, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8840, 883, 1690, '6001176457883', 'DUROL TONIC 200ML', 'standard', NULL, '8.5000', '8.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '8.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8841, 883, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8842, 883, 2411, '13740723', 'GEBEDOL FORTE TAB', 'standard', NULL, '2.0000', '2.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '2.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8843, 883, 2405, '40815002', 'GLOVES', 'standard', NULL, '1.6000', '1.6000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.2000', '', '1.6000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8844, 883, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8845, 883, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8846, 883, 1527, '8904159609416', 'PREGASAFE 75MG TAB', 'standard', NULL, '17.5000', '17.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '105.0000', '', '17.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8847, 883, 2920, '95187029', 'VIT BCO STRONG (KAKA)', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8848, 883, 2412, '17935935', 'GLIBINIL CAPS 5MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8849, 883, 2143, '4005292004916', 'GERMANY VIT C', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8850, 883, 1336, 'PR-49', 'RUBBING ALCOHOL -MUL TITI', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8851, 883, 1969, '8906016833507', 'CARTEF TAB 24   20/120', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8852, 883, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8853, 883, 1966, '9556564303336', 'FIESTA CONDOM DOTTED', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8854, 883, 2633, '36871243', 'GANA BALM', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8855, 883, 1318, '5017848248049', 'MENTHOX SYR ADULT', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8856, 883, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8857, 883, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8858, 883, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8859, 883, 1816, 'PR-529', 'TRES-ORIX L/S 250ML', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8860, 883, 2544, '85585070', 'NEXCOFER SYR L/S', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8861, 883, 1599, 'PR-312', 'RONZOLE 20MG CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8862, 883, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8863, 883, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8864, 883, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8865, 883, 1512, 'PR-225', 'CIPAC EYE ROP', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8866, 883, 2331, '22131552', 'IMODIYM CAPS 2MG 6\'S', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8867, 884, 1525, '5000158063907', 'LEMSIP SACHETS 5\'S', 'standard', NULL, '6.5000', '6.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '6.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8868, 884, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8869, 884, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8870, 884, 1440, 'PR-153', 'VICTORY GARLIC', 'standard', NULL, '13.0000', '13.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8871, 885, 1649, '6161102003536', 'ZUBES EXPECTORANT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8872, 886, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8873, 886, 3018, '27169206', 'PARA SYR EXETER', 'standard', NULL, '6.5000', '6.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8874, 886, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '3.8300', '3.8300', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.8300', '', '3.8300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8875, 886, 1702, '8906045432580', 'BONAPLEX SYR 200ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8876, 886, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8877, 886, 2449, '73407261', 'DETTOL SOAP SMALL', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8878, 886, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8879, 886, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8880, 887, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8881, 888, 2650, '58359784', 'DICNAC 75 SR', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8882, 889, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8883, 889, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', 'standard', NULL, '33.0000', '33.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8884, 889, 2344, '08199601', 'FOLIGROW TONIC', 'standard', NULL, '24.5000', '24.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '24.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8885, 890, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8886, 891, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '11.0000', '11.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '11.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8887, 891, 2727, '76580073', 'PARA TAB 30\' EXETER', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8888, 891, 2917, '02413027', 'FLEMEX ADULT SYRUP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8889, 891, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8890, 891, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8891, 892, 2964, '65893205', 'LUCOZADE BOTTLE S/S', 'standard', NULL, '9.0000', '9.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '9.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8892, 892, 3012, '2568423', 'POLYGEL SYR 120ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8893, 893, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8894, 893, 2061, '96762855', 'ZYMAX CAPS 500MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8895, 893, 2730, '70096024', 'ENAFEN (IBUPROFEN TAB 400MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8896, 893, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8897, 894, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '11.0000', '11.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '11.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8898, 895, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8899, 895, 2297, '46332629', 'DREZ SOLUTION S/S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8900, 895, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8901, 896, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8902, 897, 2067, '86457170', 'X\'FERON CAPS', 'standard', NULL, '6.4700', '6.4700', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.4700', '', '6.4700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8903, 897, 1585, 'PR-298', 'ZUBES CHILDREN', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8904, 897, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8905, 897, 1521, 'PR-234', 'PAINGAYCAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8906, 897, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8907, 897, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8908, 897, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8909, 897, 2270, '64645876', 'MIST POT CIT', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8910, 897, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8911, 897, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8912, 897, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8913, 897, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8914, 897, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '3.8300', '3.8300', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.8300', '', '3.8300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8915, 897, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8916, 897, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8917, 897, 1975, '6186000077410', 'EVERSHEEN LOTION MEDIUM 500ML', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8918, 897, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8919, 897, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8920, 897, 2309, '23002945', 'Permoxyl caps 500mg', 'standard', NULL, '2.6000', '2.6000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.4000', '', '2.6000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8921, 897, 1654, '8904091117703', 'RELCER GEL', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8922, 897, 1599, 'PR-312', 'RONZOLE 20MG CAPS', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8923, 897, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8924, 897, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8925, 897, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8926, 897, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6900', '', '0.6900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8927, 897, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8928, 897, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8929, 898, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8930, 898, 1419, '5024389122233', 'MIGHTY POWER SYS LS', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8931, 898, 1507, '002', 'SEFLOX EYE/EAR DROP', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8932, 898, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8933, 898, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8934, 898, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '3.8300', '3.8300', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.8300', '', '3.8300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8935, 898, 2055, '34197416', 'ACTILIFE MUITIVITAMINS', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8936, 898, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '6.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8937, 898, 2814, '5060623371074', 'CLOPIDOGREL 75MG  TORRENT PHARMA', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8938, 899, 2387, '00790319', 'NORMAL TEARS EYE DROP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8939, 899, 1401, 'PR-114', 'EKURO BEWU', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8940, 899, 2945, '07580425', 'CIPROLEX EYE OINTMENT', 'standard', NULL, '12.0000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8941, 899, 1420, 'PR-133', 'NAZO', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8942, 899, 1330, 'PR-43', 'HIGH ELASTIC CREPE BANDAGE 3\"', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8943, 899, 2753, '76555932', 'CREPE BANDAGE 6\'', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8944, 899, 1423, '6036000115455', 'PROSTACURE X', 'standard', NULL, '33.0000', '33.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8945, 899, 1314, 'PR-27', 'WORMBASE SUSP', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8946, 900, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8947, 900, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8948, 900, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8949, 901, 1433, 'PR-146', 'TIME HERBAL MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8950, 901, 1322, 'PR-35', 'BADRUF CREAM 30MG', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8951, 901, 2449, '73407261', 'DETTOL SOAP SMALL', 'standard', NULL, '7.0000', '7.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8952, 901, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8953, 901, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8954, 901, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8955, 901, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.2000', '', '0.6000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8956, 901, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8957, 902, 2286, '91011834', 'FLUXAMOX CAPS 200', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8958, 903, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8959, 903, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8960, 903, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8961, 903, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8962, 903, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8963, 903, 1715, 'PR-428', 'SALOCOLD SYRUP', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8964, 903, 2266, '8906046070682', 'KIDIVITE SYR L/S', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8965, 903, 2072, '41512770', 'ZINVITE CAPS', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8966, 903, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8967, 903, 1311, 'PR-24', 'MARTINS LIVER SALT (ORANGE)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8968, 903, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8969, 903, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8970, 903, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8971, 903, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8972, 904, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '21.0000', '21.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8973, 904, 1702, '8906045432580', 'BONAPLEX SYR 200ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8974, 904, 3018, '27169206', 'PARA SYR EXETER', 'standard', NULL, '6.5000', '6.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8975, 905, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8976, 905, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8977, 906, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8978, 906, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8979, 907, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8980, 907, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8981, 907, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8982, 908, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8983, 908, 1643, '6001135505433', 'BENYLIN ORIGINAL', 'standard', NULL, '53.0000', '53.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '53.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8984, 908, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8985, 908, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8986, 908, 1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8987, 908, 1715, 'PR-428', 'SALOCOLD SYRUP', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8988, 908, 1762, 'PR-475', 'KIDIVITE MULTIVITAMIN DROPS 25ML', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8989, 908, 2710, '09217360', 'AUGMENTIN SUSP 457MG', 'standard', NULL, '53.0000', '53.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '53.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8990, 908, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8991, 908, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8992, 908, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8993, 908, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8994, 908, 2992, '39433029', 'PANADOL TAB PLAIN', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8995, 908, 1999, '6971044950313', 'YAZZ PAD', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8996, 908, 2811, '02080207', 'MERCY CREAM', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8997, 909, 1661, 'PR-374', 'JOINTFLEX PLUS TABS 30\'5', 'standard', NULL, '42.0000', '42.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8998, 910, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8999, 911, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', 'standard', NULL, '7.1700', '7.1700', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.1700', '', '7.1700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9000, 911, 1908, 'PR-621', 'Magacid tablet', 'standard', NULL, '1.0000', '1.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9001, 911, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9002, 911, 2187, '8964000577981', 'TEA TREE OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9003, 911, 1800, '3582910081050', 'RHINATHIOL 2% INFANT 125ML (PINK)', 'standard', NULL, '27.0000', '27.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9004, 911, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9005, 911, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9006, 911, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9007, 911, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '4.0000', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9008, 911, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9009, 911, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9010, 911, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9011, 911, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '9.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9012, 911, 2166, '6036000078514', 'ULCERPLEX HERBAL', 'standard', NULL, '7.5000', '7.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9013, 911, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9014, 911, 1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', 'standard', NULL, '34.0000', '34.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9015, 911, 2810, '44204486', 'L MONTUS', 'standard', NULL, '2.9000', '2.9000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '2.9000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9016, 911, 2876, '19595752', 'TUMERIC TRANSPARENT SOAP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9017, 911, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9018, 911, 2457, '33345179', 'PILIEF TABS', 'standard', NULL, '32.0000', '32.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9019, 911, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9020, 911, 2307, '07147099', 'ZITHROMAX 250MG', 'standard', NULL, '170.0000', '170.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '340.0000', '', '170.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9021, 911, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9022, 911, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9023, 911, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9024, 911, 1702, '8906045432580', 'BONAPLEX SYR 200ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9025, 911, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9026, 911, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9027, 911, 2652, '49336316', 'ADOM TONIC', 'standard', NULL, '16.5000', '16.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9028, 911, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9029, 911, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9030, 911, 2893, '66615924', 'FISHERMAN\'S FRIEND', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9031, 912, 2262, '69085595', 'LENOR CONTRACEPTIVE', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9032, 912, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9033, 912, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '1.3000', '1.3000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '1.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9034, 912, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9035, 912, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9036, 912, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9037, 912, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9038, 912, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9039, 912, 1531, 'PR-244', 'CLOXA CAP 250MG (LETAP)', 'standard', NULL, '1.5000', '1.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9040, 912, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9041, 912, 2277, '71311341', 'ZUBES TABLETS ', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9042, 912, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9043, 912, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9044, 912, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9045, 912, 2354, '93872260', 'COLDRILIF SYR', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9046, 912, 1690, '6001176457883', 'DUROL TONIC 200ML', 'standard', NULL, '8.5000', '8.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9047, 912, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9048, 912, 2920, '95187029', 'VIT BCO STRONG (KAKA)', 'standard', NULL, '29.0000', '29.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9049, 912, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9050, 912, 1394, 'PR-107', 'AGBEVE TONIC(30)', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9051, 912, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.7000', '0.7000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.8000', '', '0.7000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9052, 912, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9053, 912, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9054, 912, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9055, 912, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9056, 912, 2130, '4005808837335', 'NIVEA SPRAY 250ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9057, 912, 2981, '81503059', 'NIVEA FACE CARES', 'standard', NULL, '34.0000', '34.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '34.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9058, 912, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9059, 912, 2760, '71647290', 'HAYZINE TAB', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9060, 912, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9061, 913, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '6.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9062, 913, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9063, 913, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9064, 913, 1811, 'PR-524', 'VERMOX SUSP', 'standard', NULL, '19.5000', '19.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9065, 913, 2409, '86934998', 'PROMETHAZINE SYR 60ML', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9066, 913, 2108, '85249693', 'ARFAN 20/120MG', 'standard', NULL, '6.5000', '6.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9067, 913, 1512, 'PR-225', 'CIPAC EYE ROP', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9068, 913, 2411, '13740723', 'GEBEDOL FORTE TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9069, 913, 1950, '00809113', 'Haemoglobpin B12 Syrup 200ml', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9070, 913, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9071, 913, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9072, 913, 1844, 'PR-557', 'LETAP AMPICLOX', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9073, 914, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9074, 914, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9075, 914, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9076, 914, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9077, 914, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9078, 914, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9079, 915, 2252, '08741188', 'FLUREST TABS', 'standard', NULL, '12.5000', '12.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9080, 915, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '2.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9081, 915, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9082, 915, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '20.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9083, 915, 2633, '36871243', 'GANA BALM', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9084, 915, 1524, 'PR-237', 'MALARIA SELF TEST KITS', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9085, 915, 1483, '5011501040131', 'DEEP HEAT RUB 67G', 'standard', NULL, '29.0000', '29.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9086, 915, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9087, 916, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9088, 917, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9089, 918, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9090, 918, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9091, 918, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9092, 918, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9093, 918, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9094, 918, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9095, 918, 1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9096, 918, 1463, '5010123715175', 'EUTHYMOO TOOTHPASTE', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9097, 918, 2542, '5021265223800', 'WELLKID CHEWABLE TAB', 'standard', NULL, '78.5000', '78.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '78.5000', '', '78.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9098, 918, 2507, '57385161', 'WELLTEEN HER', 'standard', NULL, '45.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9099, 918, 2968, '59467858', 'HONEY MEADOW 500ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9100, 918, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9101, 918, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9102, 918, 2484, '00708902', 'PUMPKIN SEED', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9103, 918, 2763, '91369587', 'FLAXSEED', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9104, 918, 2070, '014', 'CHLO EYE ', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9105, 918, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9106, 918, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9107, 918, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9108, 918, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9109, 918, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9110, 918, 2049, '6181100329162', 'BIOSKIN CREAM  MEDIUM', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9111, 918, 1845, 'PR-558', 'MENTHODEX L/S SYRUP', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9112, 918, 2151, '05077634', 'TOMAC MIX', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9113, 919, 2989, '30747371', 'ALUMINIUM HYDRO TAB (M&G)', 'standard', NULL, '1.0000', '1.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9114, 919, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9115, 919, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9116, 919, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9117, 919, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '47.0000', '47.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9118, 919, 2345, '37407616', 'PONSTAN CAPS 250MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9119, 919, 2777, '97856697', 'MMT SUSP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9120, 919, 1308, '5012617005687', 'FOLIC ACID 5MG OVAL', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9121, 919, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9122, 919, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9123, 919, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.3000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9124, 919, 1381, 'PR-94', ' GOLDY FORTE DS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9125, 919, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9126, 919, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9127, 919, 3034, '33733514', 'ARABA BAZAN', 'standard', NULL, '23.0000', '23.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9128, 920, 1908, 'PR-621', 'Magacid tablet', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9129, 920, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9130, 920, 2842, '8904185508110', 'TOBVITAL', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9131, 920, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9132, 920, 1401, 'PR-114', 'EKURO BEWU', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9133, 920, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9134, 921, 1510, '009', 'CIPROLEX EYE & EAR DROP', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9135, 921, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9136, 921, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9137, 922, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9138, 923, 1604, 'PR-317', 'AUGMENTIN 1G', 'standard', NULL, '51.5000', '51.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '103.0000', '', '51.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9139, 924, 1697, '8904023403058', 'APETI SYRUP-GEO', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9140, 924, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9141, 925, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9142, 926, 1431, 'PR-144', 'SPANISH GARLIC MIXTURE(30)', 'standard', NULL, '14.0000', '14.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9143, 926, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9144, 926, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9145, 926, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9146, 926, 3002, '94707960', 'FLEMEX CHILD SYR', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9147, 926, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', 'standard', NULL, '2.6000', '2.6000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.2000', '', '2.6000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9148, 926, 1864, 'PR-577', 'VIROL BLOOD TONIC', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9149, 926, 3012, '2568423', 'POLYGEL SYR 120ML', 'standard', NULL, '6.5000', '6.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9150, 927, 2950, '98068395', 'CHLORAMPHENICOL (FICHLOR)', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9151, 927, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', 'standard', NULL, '1.5000', '1.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9152, 927, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9153, 928, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', 'standard', NULL, '15.5000', '15.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9154, 928, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9155, 929, 1780, '5021265220076', 'FEROGLOBIN CAPS', 'standard', NULL, '47.0000', '47.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9156, 930, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9157, 930, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9158, 930, 2244, '96089977', 'MAGACID SYRUP 200ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9159, 931, 1654, '8904091117703', 'RELCER GEL', 'standard', NULL, '12.0000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9160, 931, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9161, 932, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '1.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9162, 932, 1591, '5017123328022', 'FUROSEMIDE 20MG TAB (CRESCENT)', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9163, 932, 2422, '92383380', 'POWER ZONE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9164, 932, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9165, 932, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9166, 932, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9167, 932, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9168, 932, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9169, 932, 1780, '5021265220076', 'FEROGLOBIN CAPS', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9170, 932, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9171, 932, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9172, 932, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9173, 932, 1671, '3838989529642', 'CIPRINOL TAB 500MG', 'standard', NULL, '5.5000', '5.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '5.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9174, 932, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9175, 932, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9176, 932, 2813, '48335635', 'JOINTACE', 'standard', NULL, '68.0000', '68.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '68.0000', '', '68.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9177, 932, 2817, '45511010', 'ROBAXIN TAB', 'standard', NULL, '2.5000', '2.5000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '2.5000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9178, 932, 3006, '29763683', 'OSTEOCARE TAB INDIA', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9179, 933, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9180, 933, 1695, '8908002671971', 'APETAMIN SYR', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9181, 934, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9182, 934, 1692, 'PR-405', 'DEXORANGE TONIC', 'standard', NULL, '13.5000', '13.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9183, 934, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9184, 934, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9185, 934, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9186, 935, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9187, 935, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9188, 936, 1481, '5011501040520', 'DEEP HEAT SPRAY 150ML', 'standard', NULL, '33.0000', '33.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9189, 936, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9190, 936, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9191, 937, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9192, 937, 2245, '77795384', 'MAGACID TABLETS', 'standard', NULL, '1.0000', '1.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '1.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9193, 937, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9194, 938, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', 'standard', NULL, '39.0000', '39.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '39.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9195, 938, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9196, 938, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9197, 938, 2061, '96762855', 'ZYMAX CAPS 500MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9198, 938, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9199, 938, 1791, '8904107900992', 'LEXSPORIN POWDER 10G', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9200, 938, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9201, 938, 2965, '86540789', 'LUCOZADE CAN', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9202, 938, 1303, 'PR-16', 'BASE BOOM JELLY', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9203, 938, 2967, '73607781', 'HONEY MEADOW 250ML', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9204, 938, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9205, 938, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9206, 938, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9207, 938, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9208, 938, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', 'standard', NULL, '2.5000', '2.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9209, 938, 1599, 'PR-312', 'RONZOLE 20MG CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9210, 938, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9211, 938, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3800', '', '0.6900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9212, 938, 1433, 'PR-146', 'TIME HERBAL MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9213, 938, 2331, '22131552', 'IMODIYM CAPS 2MG 6\'S', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9214, 938, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9215, 938, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9216, 938, 2714, '46288090', 'MENTOS FRESH ACTIO GUM', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9217, 939, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.7000', '0.7000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.7000', '', '0.7000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9218, 939, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9219, 939, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9220, 940, 1813, '5000124439750', 'VENTOLIN INHALER ORG EVOHALER', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9221, 940, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9222, 940, 2974, '33602978', 'EASY CHECK EARLY PREGNANCY TEST', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9223, 940, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9224, 940, 2307, '07147099', 'ZITHROMAX 250MG', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '170.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9225, 940, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9226, 940, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9227, 940, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9228, 940, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9229, 940, 2244, '96089977', 'MAGACID SYRUP 200ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9230, 940, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9231, 941, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9232, 941, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9233, 941, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9234, 941, 1695, '8908002671971', 'APETAMIN SYR', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9235, 941, 1781, 'PR-494', 'CAPS POLYFER', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9236, 941, 2459, '26218313', 'ENAMYCIN SUS (ECL)', 'standard', NULL, '7.5000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9237, 941, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 'standard', NULL, '24.0000', '24.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9238, 941, 1642, '6001135507628', 'BENYLIN DRY  COUGH SYR 100ML', 'standard', NULL, '41.0000', '41.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '41.0000', '', '41.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9239, 941, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9240, 941, 3006, '29763683', 'OSTEOCARE TAB INDIA', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9241, 941, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '2.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9242, 941, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9243, 941, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '3.9000', '3.9000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '3.9000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9244, 941, 2999, '72534299', 'ALPHA GARLIC CAPS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9245, 941, 2103, '77332390', 'LETAMOX TABLET 500MG 500MG', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9246, 941, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9247, 941, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9248, 941, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.2000', '', '0.3000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9249, 941, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9250, 941, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '0.5000', '0.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9251, 941, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9252, 941, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9253, 941, 1510, '009', 'CIPROLEX EYE & EAR DROP', 'standard', NULL, '12.0000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9254, 941, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '4.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9255, 941, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9256, 941, 2989, '30747371', 'ALUMINIUM HYDRO TAB (M&G)', 'standard', NULL, '1.0000', '1.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9257, 941, 1308, '5012617005687', 'FOLIC ACID 5MG OVAL', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9258, 941, 2760, '71647290', 'HAYZINE TAB', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9259, 941, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', 'standard', NULL, '1.5000', '1.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9260, 942, 2545, '82780299', 'DREZ POWDER 10G', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9261, 942, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9262, 942, 2995, '32309749', 'NAT B CAPS', 'standard', NULL, '52.5000', '52.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '52.5000', '', '52.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9263, 942, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9264, 943, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9265, 943, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9266, 943, 2252, '08741188', 'FLUREST TABS', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9267, 943, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9268, 943, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9269, 943, 2825, '09140818', 'FACE MASK PACK', 'standard', NULL, '10.5600', '10.5600', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5600', '', '10.5600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9270, 943, 2405, '40815002', 'GLOVES', 'standard', NULL, '1.6000', '1.6000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.8000', '', '1.6000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9271, 943, 1550, '18904083810480', 'GYNOMYCOLEX PESS', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9272, 943, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9273, 943, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9274, 943, 2270, '64645876', 'MIST POT CIT', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9275, 943, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '1.3000', '1.3000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '1.3000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9276, 943, 1873, '8902396010644', 'METROLEX  F JUNIOR SYRUP', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9277, 943, 1554, 'PR-267', 'COTRI SUS (M&G) SEPTRIN', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9278, 943, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9279, 943, 1613, 'PR-326', 'GYPRON SYR', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9280, 943, 1946, '92115303', 'Ascorbin  Syrup 100ml', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9281, 943, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9282, 943, 1440, 'PR-153', 'VICTORY GARLIC', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9283, 943, 1431, 'PR-144', 'SPANISH GARLIC MIXTURE(30)', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9284, 943, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9285, 944, 1420, 'PR-133', 'NAZO', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9286, 944, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9287, 945, 2640, '08457216', 'GLUCO NAF D (DANNEX)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9288, 946, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9289, 946, 1557, 'PR-270', 'SECLEAR  EYE DROP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9290, 946, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9291, 946, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.9000', '', '0.3000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9292, 947, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9293, 947, 2734, '24454054', 'SECNIDAZOLE TAB IG (LAVINA)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9294, 947, 2728, '93373985', 'DICLOFEN TABS 50G', 'standard', NULL, '1.5000', '1.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9295, 947, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9296, 947, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9297, 947, 1872, 'PR-585', 'METROLEX F TABLETS 21?s', 'standard', NULL, '12.0000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9298, 947, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9299, 947, 2393, '25300648', 'BOAFO OINT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9300, 947, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '3.9000', '3.9000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '3.9000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9301, 947, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9302, 947, 1371, '5017353504760', 'PARACETAMOL TABS -UK 16\'S', 'standard', NULL, '7.5000', '7.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9303, 947, 2347, '27404535', 'SALICYLIC ACID OINT', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9304, 948, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9305, 948, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9306, 948, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9307, 949, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9308, 950, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '21.0000', '21.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9309, 950, 1668, '8906016831572', 'Acidom Caps', 'standard', NULL, '18.0000', '18.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9310, 950, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9311, 950, 2624, '71356473', 'POLAR ICE', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9312, 950, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9313, 950, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9314, 950, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9315, 950, 2435, '31684073', 'ORAL B TOOTHPASTE', 'standard', NULL, '7.0000', '7.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9316, 951, 1595, 'PR-308', 'BEEHIVE COUGH SYR', 'standard', NULL, '28.0000', '28.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9317, 951, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9318, 951, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.5000', '2.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9319, 952, 2088, '09422816', 'LETALIN EXPECTORANT SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9320, 952, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9321, 952, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9322, 952, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9323, 952, 1941, 'PR-654', 'Genti Gds11369', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9324, 952, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '21.0000', '21.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9325, 952, 1655, '3582910014812', 'MAALOX PLUS SUSP. 180ML (SANOFI)', 'standard', NULL, '45.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9326, 952, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9327, 952, 1987, '6181100323665', 'SIVODERM POWDER', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9328, 952, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9329, 952, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '0.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9330, 952, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '0.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9331, 952, 1626, '306420072116', 'VITAFOL CAP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9332, 952, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9333, 952, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9334, 952, 3017, '67524547', 'BASECOLD SYR', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9335, 952, 1961, '6164004605037', 'OTRIVIN CHILDREN NASAL DROPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9336, 952, 2548, '54581009', 'ZINCOVIT DROP', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9337, 952, 2321, '80141429', 'MIST F.A.C', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9338, 952, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.3000', '', '0.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9339, 952, 1489, '6938058600108', 'SAMOCID(SKIN AND NAIL)', 'standard', NULL, '37.0000', '37.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '37.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9340, 952, 2144, '4316268448895', 'PROLIFE  VITC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9341, 952, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9342, 952, 1917, 'PR-630', 'ASPANOL JUNIOR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9343, 952, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9344, 952, 2236, '6033000270108', 'EFPAC JNR', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9345, 952, 2345, '37407616', 'PONSTAN CAPS 250MG', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9346, 952, 1695, '8908002671971', 'APETAMIN SYR', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9347, 953, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '24.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '2.0000', NULL, 1, 'pc', '24.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9348, 954, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9349, 954, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9350, 954, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9351, 954, 1805, 'PR-518', 'SAMALIN ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9352, 954, 2942, '53692521', 'LETACAM CAPS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9353, 954, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.3000', '', '0.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9354, 954, 1735, 'PR-448', 'EXFORGE TABS (10/160)MG 28', 'standard', NULL, '6.0000', '6.0000', '14.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '84.0000', '', '6.0000', NULL, 1, 'pc', '14.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9355, 954, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9356, 954, 2604, '43079266', 'COA MIXTURE', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '120.0000', '', '120.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9357, 954, 1730, 'PR-443', 'DAKTACORT CREAM 15G', 'standard', NULL, '32.0000', '32.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.0000', '', '32.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9358, 954, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', '15.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9359, 954, 2810, '44204486', 'L MONTUS', 'standard', NULL, '2.9000', '2.9000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '2.9000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9360, 954, 2030, '00974156', 'JRA CREAM SMALL MEDIUM', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9361, 954, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9362, 954, 1864, 'PR-577', 'VIROL BLOOD TONIC', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9363, 954, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '6.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9364, 954, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9365, 954, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9366, 955, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9367, 955, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', 'standard', NULL, '2.2000', '2.2000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.2000', '', '2.2000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9368, 955, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.5000', '2.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9369, 955, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9370, 955, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9371, 955, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9372, 955, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9373, 955, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9374, 955, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9375, 955, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9376, 955, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.6000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9377, 955, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9378, 955, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9379, 955, 2985, '92371428', 'FLAGYL SUSP 200ML', 'standard', NULL, '37.0000', '37.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '37.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9380, 955, 2251, '8901138500573', 'BONNISAN SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9381, 955, 2989, '30747371', 'ALUMINIUM HYDRO TAB (M&G)', 'standard', NULL, '1.0000', '1.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9382, 955, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9383, 955, 2739, '67011430', 'MYCOVIN TABLETS 125MG', 'standard', NULL, '2.2000', '2.2000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.2000', '', '2.2000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9384, 955, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', 'standard', NULL, '2.2000', '2.2000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.6000', '', '2.2000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9385, 955, 1680, 'PR-393', 'BELLA COUGH MIXTURE', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9386, 955, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9387, 955, 1557, 'PR-270', 'SECLEAR  EYE DROP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9388, 955, 1512, 'PR-225', 'CIPAC EYE ROP', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9389, 956, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9390, 956, 2177, '8964000577448', 'JOJOBA OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9391, 956, 2173, '8964000267202', 'GRAPESEED OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9392, 956, 2199, '8964000390658', 'ROSE OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9393, 956, 2634, '20074246', 'COTTON SKIN ESSENTIALS/ORGANIC', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9394, 956, 2240, '5000198522501', 'PIRITON SYR', 'standard', NULL, '49.0000', '49.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '49.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9395, 956, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '1.3000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9396, 956, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9397, 956, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9398, 956, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9399, 956, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9400, 956, 1340, 'PR-53', 'COTTON WOOL 50G', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9401, 956, 2408, '5011501009398', 'DEEP HEAT OINT 15G', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9402, 956, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9403, 956, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9404, 957, 2459, '26218313', 'ENAMYCIN SUS (ECL)', 'standard', NULL, '7.5000', '7.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9405, 957, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9406, 957, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9407, 958, 2600, '5011417566800', 'LEMSIP COUGH SYR 180ML UK', 'standard', NULL, '74.5000', '74.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '74.5000', '', '74.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9408, 958, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9409, 959, 1536, '8901040245197', 'AXACEF S00MG 10\'S', 'standard', NULL, '5.0000', '5.0000', '14.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '5.0000', NULL, 1, 'pc', '14.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9410, 959, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.5000', '16.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9411, 959, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', NULL, '3.8300', '3.8300', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.8300', '', '3.8300', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9412, 959, 1779, 'PR-492', 'BISACODYL [GEO] 1000\'S', 'standard', NULL, '1.0000', '1.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '1.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9413, 959, 2459, '26218313', 'ENAMYCIN SUS (ECL)', 'standard', NULL, '7.5000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9414, 959, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', 'standard', NULL, '33.0000', '33.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9415, 959, 2492, '51417644', 'NIZORAL SHAMPOO', 'standard', NULL, '30.0000', '30.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9416, 959, 1702, '8906045432580', 'BONAPLEX SYR 200ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9417, 959, 2309, '23002945', 'Permoxyl caps 500mg', 'standard', NULL, '2.6000', '2.6000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.6000', '', '2.6000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9418, 959, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9419, 959, 3026, '94515456', 'YAZZ TOOTH BRUSH', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9420, 959, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', 'standard', NULL, '10.0000', '10.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9421, 959, 1661, 'PR-374', 'JOINTFLEX PLUS TABS 30\'5', 'standard', NULL, '42.0000', '42.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9422, 959, 3006, '29763683', 'OSTEOCARE TAB INDIA', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9423, 959, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9424, 959, 3018, '27169206', 'PARA SYR EXETER', 'standard', NULL, '6.5000', '6.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9425, 959, 2350, '58123990', 'COARTEM 6\'S', 'standard', NULL, '13.5000', '13.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9426, 959, 1702, '8906045432580', 'BONAPLEX SYR 200ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9427, 959, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9428, 959, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9429, 959, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9430, 959, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.3000', '', '0.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9431, 959, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '1.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9432, 959, 2546, '11973520', 'NOSTAMINE E/N DROPS', 'standard', NULL, '16.0000', '16.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9433, 959, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9434, 959, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9435, 959, 1662, '3400970000913', 'IDEOS ~', 'standard', NULL, '69.0000', '69.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '69.0000', '', '69.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9436, 959, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', 'standard', NULL, '29.0000', '29.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9437, 959, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9438, 959, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9439, 960, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9440, 960, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9441, 960, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9442, 960, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9443, 960, 2706, '44071026', 'GASTRONE SYRUP 200ML', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9444, 960, 1657, '5013548102087', 'MEDICATED CHARCOAL', 'standard', NULL, '0.6000', '0.6000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.4000', '', '0.6000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9445, 960, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9446, 960, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9447, 960, 2025, '8992929754008', 'MOSQUITO REPPELLENT 100ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9448, 960, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '1.3000', '1.3000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '1.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9449, 960, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9450, 960, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9451, 960, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9452, 960, 2255, '8901040258050', 'BIOFERON CAPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9453, 960, 2313, '83991627', 'ENTRACIN 300', 'standard', NULL, '12.0000', '12.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '12.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9454, 960, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9455, 960, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9456, 960, 1393, 'PR-106', 'AGBEVE PHEVER( 30)', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9457, 960, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9458, 960, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9459, 960, 2618, '72760937', 'BUSCOMED TAB 10MG', 'standard', NULL, '5.5000', '5.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '5.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9460, 960, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9461, 960, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9462, 960, 1866, 'PR-579', 'CETAPOL PM 120/12.5MG/5ML', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9463, 960, 2710, '09217360', 'AUGMENTIN SUSP 457MG', 'standard', NULL, '53.0000', '53.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '53.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9464, 961, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9465, 961, 2992, '39433029', 'PANADOL TAB PLAIN', 'standard', NULL, '3.5000', '3.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '3.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9466, 961, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9467, 961, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9468, 962, 2670, '18984546', 'ASPIRIN TABS GEO', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9469, 962, 1946, '92115303', 'Ascorbin  Syrup 100ml', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9470, 962, 1599, 'PR-312', 'RONZOLE 20MG CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9471, 962, 2908, '78138195', 'MAGACID FASTMELT', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9472, 962, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9473, 963, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9474, 964, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9475, 964, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9476, 965, 2283, '8906009232225', 'LOFNAC TAB 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9477, 965, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9478, 965, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9479, 965, 2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', 'standard', NULL, '2.5000', '2.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9480, 965, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.4000', '', '0.6000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9481, 966, 1643, '6001135505433', 'BENYLIN ORIGINAL', 'standard', NULL, '53.0000', '53.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '53.0000', '', '53.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9482, 966, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9483, 966, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', 'standard', NULL, '33.0000', '33.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9484, 966, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9485, 966, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9486, 966, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9487, 966, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9488, 966, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9489, 966, 2777, '97856697', 'MMT SUSP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9490, 967, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9491, 968, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9492, 968, 1649, '6161102003536', 'ZUBES EXPECTORANT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9493, 968, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9494, 968, 2226, '6033000086358', 'CERELAC TIN MAIZE', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9495, 968, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9496, 968, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9497, 968, 2270, '64645876', 'MIST POT CIT', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9498, 968, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9499, 968, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9500, 968, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9501, 968, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9502, 968, 2244, '96089977', 'MAGACID SYRUP 200ML', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9503, 968, 2955, '51481408', 'LONART TAB 24\'S', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9504, 968, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9505, 968, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9506, 968, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9507, 968, 2265, '5014502000807', 'MINAMINO SYRUP M/S', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9508, 968, 2928, '36920821', 'FISH OIL (MAJOR)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '100.0000', '', '100.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9509, 968, 1373, '1227808', 'TEGRETOL CR 200MG', 'standard', NULL, '10.5000', '10.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '31.5000', '', '10.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9510, 968, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9511, 968, 2408, '5011501009398', 'DEEP HEAT OINT 15G', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9512, 968, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9513, 968, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', 'standard', NULL, '2.6000', '2.6000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '2.6000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9514, 968, 1796, 'PR-509', 'SEPTRIN SY MG', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9515, 969, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9516, 969, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9517, 969, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9518, 969, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', 'standard', NULL, '29.0000', '29.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9519, 969, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9520, 969, 2989, '30747371', 'ALUMINIUM HYDRO TAB (M&G)', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9521, 969, 1473, '5056338341617', 'HOT WATER BOTTLE (JACKET)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9522, 969, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9523, 970, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '3.9000', '3.9000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '78.0000', '', '3.9000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9524, 970, 1687, '4031571063787', 'FLUCONAZOLE (DENK)', 'standard', NULL, '15.5000', '15.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '31.0000', '', '15.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9525, 970, 1824, '8901315201910', 'TAGERA FORTE TABS', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9526, 970, 1550, '18904083810480', 'GYNOMYCOLEX PESS', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9527, 970, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9528, 970, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9529, 970, 2847, '13076232', 'SILVER BIRD', 'standard', NULL, '18.0000', '18.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '54.0000', '', '18.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9530, 970, 2393, '25300648', 'BOAFO OINT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9531, 970, 1952, '5021265221004', 'MENOPACE CAP(UK)', 'standard', NULL, '49.0000', '49.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '49.0000', '', '49.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9532, 970, 2132, '4005900579614', 'NIVEA BODY LOTION 400ML', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9533, 970, 2686, '011111051249', 'DOVE MEN CARE BODY CARE', 'standard', NULL, '45.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9534, 970, 2522, '02869770', 'CAMEL ANTISEPTIC LIQUID 125ML', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9535, 970, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '20.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9536, 970, 2403, '84832683', 'LIMZER CAPS 30\'', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9537, 970, 2390, '76253920', 'NEXIUM 10 SACHET', 'standard', NULL, '9.0000', '9.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '9.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9538, 970, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9539, 970, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9540, 971, 2650, '58359784', 'DICNAC 75 SR', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9541, 971, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9542, 971, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '1.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9543, 971, 2263, '6036000090417', 'LEVON 2', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9544, 971, 2286, '91011834', 'FLUXAMOX CAPS 200', 'standard', NULL, '6.0000', '6.0000', '12.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '6.0000', NULL, 1, 'pc', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9545, 971, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9546, 971, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', 'standard', NULL, '2.5000', '2.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9547, 971, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9548, 971, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9549, 971, 2255, '8901040258050', 'BIOFERON CAPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9550, 971, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9551, 971, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9552, 971, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9553, 971, 1409, 'PR-122', 'IMBOOST', 'standard', NULL, '17.5000', '17.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9554, 971, 1805, 'PR-518', 'SAMALIN ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9555, 971, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9556, 971, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9557, 971, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9558, 971, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9559, 971, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.7600', '', '0.6900', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9560, 972, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9561, 972, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9562, 972, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9563, 972, 1541, '8902502106421', 'INFA V PESS', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9564, 972, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9565, 972, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9566, 972, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9567, 972, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9568, 973, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9569, 973, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9570, 974, 2471, '81093795', 'LITTLE REMEDIES GRIPE WATER', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9571, 974, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9572, 975, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9573, 975, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9574, 975, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9575, 975, 2733, '55537393', 'COTTON WOOL 200G', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9576, 975, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9577, 976, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9578, 976, 2974, '33602978', 'EASY CHECK EARLY PREGNANCY TEST', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9579, 977, 2547, '30290939', 'VISCOF S SYR', 'standard', NULL, '11.5000', '11.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '11.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9580, 977, 3037, '02744503', 'LORATADINE (CLARITINE) SYRUP 100ML', 'standard', NULL, '62.0000', '62.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '62.0000', '', '62.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9581, 977, 1609, '8904107900893', 'MYCOLEX CREAM 20G', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9582, 977, 2277, '71311341', 'ZUBES TABLETS ', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9583, 977, 2303, '5024655004072', 'TRANEXAMIC ACID 500MG', 'standard', NULL, '21.5000', '21.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.5000', '', '21.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9584, 977, 2344, '08199601', 'FOLIGROW TONIC', 'standard', NULL, '24.5000', '24.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '24.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9585, 977, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9586, 977, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9587, 977, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9588, 977, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '7.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '1.5000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9589, 977, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '3.9000', '3.9000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '3.9000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9590, 977, 1550, '18904083810480', 'GYNOMYCOLEX PESS', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9591, 977, 1379, 'PR-92', 'DIFLUCAN CAPS', 'standard', NULL, '110.0000', '110.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '110.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9592, 977, 2934, '74475924', 'O YES FEMINNE WASH 60ML', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9593, 977, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9594, 977, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.7000', '0.7000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.4000', '', '0.7000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9595, 977, 2825, '09140818', 'FACE MASK PACK', 'standard', NULL, '10.5600', '10.5600', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5600', '', '10.5600', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9596, 977, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '3.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9597, 977, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9598, 977, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9599, 977, 2143, '4005292004916', 'GERMANY VIT C', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9600, 978, 2558, '12419923', 'OVULATION TEST KIT', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9601, 978, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9602, 978, 2108, '85249693', 'ARFAN 20/120MG', 'standard', NULL, '6.5000', '6.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9603, 978, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9604, 978, 1367, 'PR-80', 'PROXIMEXA 500MG TABS 10X1', 'standard', NULL, '7.0000', '7.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '7.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9605, 978, 2061, '96762855', 'ZYMAX CAPS 500MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9606, 978, 1953, '56415263', 'STAGYL TABS', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9607, 978, 2378, '08590643', 'VENE CAPS', 'standard', NULL, '23.5000', '23.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '23.5000', '', '23.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9608, 978, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9609, 978, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '2.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9610, 978, 1497, 'PR-210', 'JARIFAN 2 CAPS', 'standard', NULL, '15.0000', '15.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9611, 978, 2281, '087450449108', 'TYLENOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9612, 978, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.6000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9613, 978, 1577, 'PR-290', 'MALIN LOZ', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9614, 978, 1825, 'PR-538', ' ASCORYL SYRUP VITAMIN C M/G', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9615, 978, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9616, 978, 2083, '0114', 'CO-TRIMAZOLE  TAB  SEPTRIM (LETAP) ', 'standard', NULL, '1.0000', '1.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9617, 978, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9618, 978, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9619, 979, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9620, 979, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9621, 979, 2305, '18430069', 'NO-SPA 40MG S/S 20\'S', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9622, 979, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9623, 979, 1677, '8902546578543', 'LUEX BABY COUGH', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9624, 980, 1942, 'PR-655', 'Klovinal Pess Kiadrozi', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9625, 980, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9626, 980, 2305, '18430069', 'NO-SPA 40MG S/S 20\'S', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9627, 980, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9628, 980, 1677, '8902546578543', 'LUEX BABY COUGH', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9629, 981, 2760, '71647290', 'HAYZINE TAB', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9630, 981, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9631, 981, 1528, '4031571020445', 'METFORMIN DENK S00MG', 'standard', NULL, '6.0000', '6.0000', '8.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '6.0000', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9632, 982, 1780, '5021265220076', 'FEROGLOBIN CAPS', 'standard', NULL, '47.0000', '47.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9633, 982, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.5000', '2.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9634, 982, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9635, 982, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', 'standard', NULL, '2.6000', '2.6000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '2.6000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9636, 983, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9637, 983, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '21.0000', '21.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9638, 983, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9639, 984, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9640, 984, 1805, 'PR-518', 'SAMALIN ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9641, 985, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9642, 985, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9643, 985, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9644, 985, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9645, 985, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9646, 985, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9647, 985, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.3000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9648, 985, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9649, 985, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9650, 985, 1536, '8901040245197', 'AXACEF S00MG 10\'S', 'standard', NULL, '5.0000', '5.0000', '14.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '70.0000', '', '5.0000', NULL, 1, 'pc', '14.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9651, 985, 2061, '96762855', 'ZYMAX CAPS 500MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9652, 985, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9653, 985, 1433, 'PR-146', 'TIME HERBAL MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9654, 985, 2029, '5137136225115', 'JRA CREAM MEDIUM 120G', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9655, 985, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', 'standard', NULL, '8.0000', '8.0000', '16.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '128.0000', '', '8.0000', NULL, 1, 'pc', '16.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9656, 985, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9657, 985, 2967, '73607781', 'HONEY MEADOW 250ML', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9658, 985, 2294, '44448916', 'PENICILLIN OINTMENT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9659, 985, 2876, '19595752', 'TUMERIC TRANSPARENT SOAP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9660, 985, 1713, 'PR-426', 'STRETCH GO', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9661, 985, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9662, 985, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9663, 985, 2514, '98091900', 'TOMBROWN 500G', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9664, 985, 1722, 'PR-435', 'CLOTRIMAZOLE CREAM 1 G', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9665, 985, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9666, 985, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9667, 985, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9668, 985, 1626, '306420072116', 'VITAFOL CAP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9669, 985, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9670, 985, 2618, '72760937', 'BUSCOMED TAB 10MG', 'standard', NULL, '5.5000', '5.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '5.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9671, 985, 1603, 'PR-316', 'AUGMENTIN TAB 625MG', 'standard', NULL, '78.5000', '78.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '78.5000', '', '78.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9672, 985, 2291, '8904091112401', 'CANDIBIOTICS EAR DROPS 5ML', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9673, 985, 1637, '4031571068959', 'DICLO DENK 100MG TAB', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9674, 985, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9675, 985, 2701, '89135402', 'GAVISCON DOUBLE ACTION LIQ', 'standard', NULL, '42.0000', '42.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '42.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9676, 985, 2365, '37620765', 'CLARITHROMYCIN 500MG B-CLAR', 'standard', NULL, '2.0000', '2.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '2.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9677, 985, 2618, '72760937', 'BUSCOMED TAB 10MG', 'standard', NULL, '5.5000', '5.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '5.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9678, 985, 2309, '23002945', 'Permoxyl caps 500mg', 'standard', NULL, '2.6000', '2.6000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.8000', '', '2.6000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9679, 985, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '11.0000', '11.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '11.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9680, 985, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9681, 985, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9682, 985, 1811, 'PR-524', 'VERMOX SUSP', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9683, 986, 2402, '16734039', 'NANA ADJEI', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9684, 986, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9685, 986, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9686, 986, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9687, 986, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9688, 986, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9689, 986, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9690, 986, 1663, '5021265221523', 'PREGNACARE PLUS', 'standard', NULL, '129.0000', '129.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '129.0000', '', '129.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9691, 987, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9692, 987, 1805, 'PR-518', 'SAMALIN ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9693, 987, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9694, 988, 2263, '6036000090417', 'LEVON 2', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9695, 988, 2005, '6926160704036', 'LILY ROSS TOOTHBRUSH HARD', 'standard', NULL, '3.5000', '3.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '3.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9696, 988, 1377, '5000158062139', 'BONJELA ADULT', 'standard', NULL, '45.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9697, 988, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', 'standard', NULL, '2.5000', '2.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '2.5000', NULL, 1, 'pc', '6.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9698, 988, 1456, '5026143702088', 'ALPHA VITAMIN C TABS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9699, 988, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '18.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9700, 988, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', 'standard', 0, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '40.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9701, 988, 1678, '5051562019400', 'TIXYLIX BABY COUGH SYR', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9702, 988, 1715, 'PR-428', 'SALOCOLD SYRUP', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9703, 988, 1455, 'PR-168', 'Gacet125MP KIACK006', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9704, 989, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '6.0000', '6.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9705, 989, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9706, 989, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9707, 989, 2749, '09707467', 'COARTEM 18\'S TAB', 'standard', NULL, '27.0000', '27.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9708, 989, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9709, 989, 1876, '6164004605044', 'OTRIVINE (ADULTS) DROPS 0.1%', 'standard', NULL, '34.5000', '34.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '34.5000', '', '34.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9710, 989, 1610, '8904107900909', 'MYCOLEX-3 CREAM', 'standard', NULL, '21.0000', '21.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9711, 989, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9712, 989, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9713, 989, 2414, '85111706', 'AMLODIPINE 5MG', 'standard', NULL, '5.0000', '5.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '5.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9714, 989, 1478, '8906087940128', 'IMPRESSER CAPS', 'standard', NULL, '28.0000', '28.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9715, 989, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9716, 989, 2487, '22129068', 'ALMOND SEED', 'standard', NULL, '30.0000', '30.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9717, 989, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9718, 989, 2643, '51795551', 'VOLTIC WATER S/S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9719, 989, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9720, 989, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9721, 989, 2056, '26049852', 'ESSENTIAL EMBROCATION (LIQUID ROBB) 27ML', 'standard', NULL, '7.5000', '7.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '7.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9722, 989, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9723, 989, 2548, '54581009', 'ZINCOVIT DROP', 'standard', NULL, '9.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9724, 989, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '2.0000', '2.0000', '6.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '2.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9725, 989, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9726, 989, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '0.6900', '', '0.6900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9727, 990, 2555, '51064259', 'CARBAMAZEPINE 200MG', 'standard', NULL, '5.0000', '5.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '5.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9728, 990, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9729, 990, 1810, 'PR-523', 'VISCOF EXPECTORANT', 'standard', NULL, '11.0000', '11.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9730, 990, 2061, '96762855', 'ZYMAX CAPS 500MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9731, 990, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9732, 990, 1695, '8908002671971', 'APETAMIN SYR', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9733, 991, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9734, 991, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9735, 991, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9736, 991, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9737, 991, 2760, '71647290', 'HAYZINE TAB', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9738, 991, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '11.0000', '11.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9739, 992, 1805, 'PR-518', 'SAMALIN ADULT', 'standard', NULL, '6.0000', '6.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9740, 992, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9741, 993, 2545, '82780299', 'DREZ POWDER 10G', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9742, 993, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9743, 993, 2907, '78214441', 'LUMATRONA SUSP 60ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9744, 993, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9745, 994, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '10.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9746, 994, 2448, '42222157', 'IMPERIAL LEATHER SOAP B/S', 'standard', NULL, '7.5000', '7.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9747, 994, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9748, 994, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9749, 995, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '2.5000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9750, 995, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9751, 995, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9752, 995, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9753, 996, 2232, '25430404', 'AMOKISKLAV 1000MG', 'standard', NULL, '40.0000', '40.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '40.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9754, 996, 2908, '78138195', 'MAGACID FASTMELT', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9755, 997, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9756, 997, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9757, 997, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '2.0000', '2.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9758, 998, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.9000', '', '0.3000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9759, 998, 1696, 'PR-409', 'CYFEN SYR', 'standard', NULL, '13.5000', '13.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9760, 998, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9761, 999, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9762, 999, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9763, 999, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9764, 1000, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9765, 1001, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9766, 1001, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9767, 1002, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9768, 1002, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9769, 1002, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9770, 1003, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9771, 1003, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9772, 1003, 2760, '71647290', 'HAYZINE TAB', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9773, 1004, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9774, 1005, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9775, 1005, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9776, 1005, 2309, '23002945', 'Permoxyl caps 500mg', 'standard', NULL, '2.6000', '2.6000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.6000', '', '2.6000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9777, 1005, 2926, '21772628', 'OMEPRAZOLE (DR REDDY\'S)', 'standard', NULL, '26.0000', '26.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '52.0000', '', '26.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9778, 1005, 1780, '5021265220076', 'FEROGLOBIN CAPS', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9779, 1005, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9780, 1005, 1411, '6036000038952', 'JOY VIKIL', 'standard', NULL, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9781, 1005, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9782, 1005, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9783, 1005, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9784, 1005, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9785, 1005, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9786, 1005, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9787, 1005, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5100', '0.5100', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0200', '', '0.5100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9788, 1005, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9789, 1005, 2011, '6948031103014', 'VIP TOOTHBRUSH', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9790, 1005, 1429, 'PR-142', 'SIBI WOMEN CAPS(100)', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9791, 1006, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9792, 1006, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9793, 1006, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9794, 1006, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9795, 1006, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9796, 1006, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '1.3000', '1.3000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '1.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9797, 1006, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9798, 1006, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9799, 1007, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9800, 1007, 2232, '25430404', 'AMOKISKLAV 1000MG', 'standard', NULL, '40.0000', '40.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '40.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9801, 1007, 1521, 'PR-234', 'PAINGAYCAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9802, 1008, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9803, 1008, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', 'standard', NULL, '2.6000', '2.6000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.2000', '', '2.6000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9804, 1009, 2825, '09140818', 'FACE MASK PACKS', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9805, 1009, 1840, 'PR-553', 'B COMPLEX B/P LP', 'standard', NULL, '0.3000', '0.3000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.3000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9806, 1009, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9807, 1009, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9808, 1009, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9809, 1009, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9810, 1009, 1577, 'PR-290', 'MALIN LOZ', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9811, 1009, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9812, 1009, 2345, '37407616', 'PONSTAN CAPS 250MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9813, 1009, 2297, '46332629', 'DREZ SOLUTION S/S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9814, 1009, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9815, 1009, 2294, '44448916', 'PENICILLIN OINTMENT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9816, 1009, 2313, '83991627', 'ENTRACIN 300', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9817, 1009, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9818, 1009, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9819, 1009, 2071, '20773440', 'GRISEOFULVIN', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9820, 1009, 1407, '001', 'GIVERS POWER CAPS(140)', 'standard', NULL, '22.5000', '22.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '22.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9821, 1009, 1406, '16564749', 'GIVERS KOO CAPS(l40)', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9822, 1009, 2259, '72759006', 'DRAGON SPRAY', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9823, 1009, 2281, '087450449108', 'TYLENOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9824, 1009, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9825, 1009, 1992, '6033000171719', 'KLEANZ SANITIZER 100ML', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9826, 1009, 1993, '6033000330710', 'KLEANZ SANITIZER 50ML', 'standard', NULL, '3.5000', '3.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '3.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9827, 1009, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9828, 1009, 2252, '08741188', 'FLUREST TABS', 'standard', NULL, '13.5000', '13.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9829, 1009, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9830, 1009, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9831, 1010, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9832, 1010, 2514, '98091900', 'TOMBROWN 500G', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9833, 1011, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9834, 1012, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '20.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '3.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9835, 1012, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9836, 1012, 2350, '58123990', 'COARTEM 6\'S', 'standard', NULL, '14.0000', '14.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9837, 1012, 2541, '39996904', 'DEMACOT CREAM', 'standard', NULL, '13.5000', '13.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9838, 1012, 3045, '00432970', 'CETRIZAN SYRUP 60ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9839, 1012, 2085, '35811477', 'PARA DENK 125MG', 'standard', NULL, '2.0000', '2.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9840, 1012, 1753, 'PR-466', 'LIVERTONE JUNIOR SYRUP 125ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9841, 1012, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5100', '0.5100', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0400', '', '0.5100', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9842, 1012, 2546, '11973520', 'NOSTAMINE E/N DROPS', 'standard', NULL, '16.0000', '16.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9843, 1012, 2760, '71647290', 'HAYZINE TAB', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9844, 1012, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.5000', '2.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9845, 1012, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9846, 1012, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9847, 1012, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9848, 1012, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9849, 1012, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9850, 1012, 1559, 'PR-272', 'SIRDALUD 4MG', 'standard', NULL, '30.0000', '30.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9851, 1012, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '3.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9852, 1012, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9853, 1012, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9854, 1013, 2920, '95187029', 'VIT BCO STRONG (KAKA)', 'standard', NULL, '29.0000', '29.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9855, 1014, 2277, '71311341', 'ZUBES TABLETS ', 'standard', NULL, '1.0000', '1.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9856, 1014, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', 'standard', NULL, '2.2000', '2.2000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.2000', '', '2.2000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9857, 1014, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9858, 1014, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9859, 1014, 2242, '69633989', 'METAGYL TAB 200 MG', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9860, 1014, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9861, 1014, 1390, 'PR-103', '_ADUTW I MWAA BITTERS ( 2 5)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9862, 1014, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '1.3000', '1.3000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '1.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9863, 1014, 2061, '96762855', 'ZYMAX CAPS 500MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9864, 1015, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9865, 1016, 2405, '40815002', 'GLOVES', 'standard', NULL, '1.6000', '1.6000', '50.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '80.0000', '', '1.6000', NULL, 1, 'pc', '50.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9866, 1017, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '5.0000', '5.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9867, 1017, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9868, 1017, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9869, 1018, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', 'standard', NULL, '2.2000', '2.2000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.4000', '', '2.2000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9870, 1018, 1435, 'PR-148', 'TINATETT VENECARE 75O0ML', 'standard', NULL, '30.0000', '30.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '30.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9871, 1018, 1966, '9556564303336', 'FIESTA CONDOM DOTTED', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9872, 1019, 2470, '63996135', 'VENTOLIN NEBULES 5MG', 'standard', NULL, '12.0000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '12.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9873, 1020, 2284, '8906009232232', 'LOFNAC-P TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9874, 1020, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9875, 1020, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.5000', '2.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9876, 1020, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9877, 1020, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9878, 1020, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9879, 1020, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.5000', '8.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9880, 1021, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9881, 1021, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9882, 1021, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9883, 1022, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9884, 1022, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9885, 1022, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.5000', '8.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9886, 1022, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9887, 1022, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9888, 1022, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9889, 1023, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', 'standard', NULL, '2.5000', '2.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9890, 1024, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9891, 1024, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9892, 1024, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9893, 1024, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9894, 1024, 1551, '5021691032076', 'LEVOTHYROXINE TAB 50MG (MERC PHARMA)', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9895, 1024, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9896, 1024, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9897, 1024, 1554, 'PR-267', 'COTRI SUS (M&G) SEPTRIN', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9898, 1024, 2096, '90371186', 'LETAVIT SYRUP 125ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9899, 1024, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9900, 1024, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9901, 1024, 2822, '17958616', 'TYLENOL COMBO', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9902, 1024, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9903, 1024, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9904, 1024, 2470, '63996135', 'VENTOLIN NEBULES 5MG', 'standard', NULL, '12.0000', '12.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '12.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9905, 1024, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9906, 1024, 2466, '574992', 'ZINCOFER CAPS', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9907, 1024, 1810, 'PR-523', 'VISCOF EXPECTORANT', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9908, 1024, 1402, 'PR-115', 'ERNEST OINT(200)', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9909, 1024, 1402, 'PR-115', 'ERNEST OINT(200)', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9910, 1024, 2108, '85249693', 'ARFAN 20/120MG', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9911, 1024, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9912, 1025, 2296, '48633360', 'DREZ SOLUTION B/S', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9913, 1025, 1484, '8470007006244', 'SILVER DERMA CREAM 50G', 'standard', NULL, '38.0000', '38.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '38.0000', '', '38.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9914, 1025, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9915, 1025, 1334, 'PR-47', 'GAUSE BANDAGE 41CH', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9916, 1025, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9917, 1025, 2101, '56160077', 'LETAFEN SUSPENSION 100ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9918, 1025, 2588, '20381609', 'NORMAL SALINE INFUSSION', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9919, 1026, 1332, 'PR-45', 'ZINC OXIDE PLATER ROLL 31CH', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9920, 1027, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9921, 1027, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9922, 1027, 2858, '54574718', 'PREG TEST CASSETTE', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9923, 1027, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '52.5000', '', '10.5000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9924, 1027, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9925, 1027, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '0.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9926, 1027, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9927, 1027, 2602, '86780065', 'CLOVES ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9928, 1027, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9929, 1027, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9930, 1027, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9931, 1028, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9932, 1029, 1577, 'PR-290', 'MALIN LOZ', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9933, 1029, 2357, '22168350', 'LADINAS PICT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9934, 1029, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9935, 1029, 2255, '8901040258050', 'BIOFERON CAPS', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9936, 1029, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9937, 1029, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9938, 1029, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9939, 1029, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9940, 1029, 1543, '4031571066740', 'CLOTRI DENK CREAM', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9941, 1030, 2444, '73221630', 'SOFTCARE BABY WIPES', 'standard', NULL, '9.0000', '9.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9942, 1030, 1855, 'PR-568', 'IBUCAP S/S 200S', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9943, 1030, 1856, 'PR-569', 'KOFFEX SYR ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9944, 1031, 1708, 'PR-421', 'MEDGLOBIN SYR', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9945, 1031, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9946, 1031, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9947, 1032, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9948, 1032, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9949, 1033, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9950, 1033, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9951, 1033, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9952, 1033, 2108, '85249693', 'ARFAN 20/120MG', 'standard', NULL, '6.5000', '6.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9953, 1033, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9954, 1033, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9955, 1033, 1856, 'PR-569', 'KOFFEX SYR ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9956, 1033, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9957, 1033, 2760, '71647290', 'HAYZINE TAB', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9958, 1033, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9959, 1033, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9960, 1033, 1710, 'PR-423', 'PRONALIN ADULT', 'standard', NULL, '4.5000', '4.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9961, 1033, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9962, 1033, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9963, 1033, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5100', '0.5100', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5300', '', '0.5100', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9964, 1033, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9965, 1033, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9966, 1033, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9967, 1033, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9968, 1033, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9969, 1033, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.5000', '8.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '8.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9970, 1033, 1619, 'PR-332', 'KLINDA300MG', 'standard', NULL, '13.0000', '13.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9971, 1033, 2143, '4005292004916', 'GERMANY VIT C', 'standard', NULL, '18.0000', '18.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9972, 1033, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9973, 1033, 2011, '6948031103014', 'VIP TOOTHBRUSH', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9974, 1033, 3041, '14432869', 'DORCO RAZORS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9975, 1034, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9976, 1034, 1499, 'PR-212', 'RAPINOL', 'standard', NULL, '0.6000', '0.6000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.2000', '', '0.6000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9977, 1034, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9978, 1034, 2236, '6033000270108', 'EFPAC JNR', 'standard', NULL, '8.0000', '8.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9979, 1034, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9980, 1034, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9981, 1035, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9982, 1035, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9983, 1036, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9984, 1036, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9985, 1036, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9986, 1036, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9987, 1036, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9988, 1036, 2673, '52626423', 'LISINOPRIL 10MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9989, 1036, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9990, 1036, 2154, '8410179200927', 'BORGES S/S  125ML', 'standard', NULL, '14.5000', '14.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9991, 1037, 2277, '71311341', 'ZUBES TABLETS ', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9992, 1037, 1510, '009', 'CIPROLEX EYE & EAR DROP', 'standard', NULL, '12.0000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9993, 1037, 1844, 'PR-557', 'LETAP AMPICLOX', 'standard', NULL, '2.0000', '2.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9994, 1037, 2558, '12419923', 'OVULATION TEST KIT', 'standard', NULL, '10.0000', '10.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9995, 1038, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9996, 1038, 2309, '23002945', 'Permoxyl caps 500mg', 'standard', NULL, '2.6000', '2.6000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.2000', '', '2.6000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9997, 1038, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9998, 1038, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9999, 1038, 1805, 'PR-518', 'SAMALIN ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10000, 1038, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '8.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10001, 1038, 2766, '95455611', 'LUBRIMAX JELLY 70G', 'standard', NULL, '21.0000', '21.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10002, 1038, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10003, 1038, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10004, 1038, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10005, 1038, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10006, 1038, 2295, '89259508', 'AMOXYCILLIN CAPS 250 MG LETAP', 'standard', NULL, '1.5000', '1.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10007, 1038, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10008, 1038, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10009, 1039, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10010, 1039, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10011, 1039, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10012, 1039, 2681, '40460725', 'DECATYLEN LONENGES 20\'S', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10013, 1039, 2363, '25326446', 'WELLMAN DRINK', 'standard', NULL, '9.0000', '9.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '9.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10014, 1039, 1502, '8850769018998', 'GOFEX400MG', 'standard', 0, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10015, 1039, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10016, 1039, 1712, 'PR-425', 'ATORVASTATIN 20MG TAB', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10017, 1039, 2533, '049022979109', 'APRICOT SCRUB', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10018, 1039, 2876, '19595752', 'TUMERIC TRANSPARENT SOAP', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10019, 1039, 2262, '69085595', 'LENOR CONTRACEPTIVE', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10020, 1039, 2315, '34300059', 'PARA LOCAL', 'standard', 0, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10021, 1039, 2265, '5014502000807', 'MINAMINO SYRUP M/S', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10022, 1039, 2313, '83991627', 'ENTRACIN 300', 'standard', NULL, '12.0000', '12.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '12.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10023, 1039, 1731, 'PR-444', 'DAKTARIN CREAM 15G', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10024, 1039, 1452, 'PR-165', 'Tobufon 400 T002e001', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10025, 1039, 1336, 'PR-49', 'RUBBING ALCOHOL -MUL TITI', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10026, 1039, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', 'standard', 0, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10027, 1039, 2296, '48633360', 'DREZ SOLUTION B/S', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10028, 1039, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10029, 1039, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10030, 1039, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10031, 1039, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10032, 1039, 2636, '86196755', 'KIDIMIN SYR', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10033, 1039, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10034, 1039, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10035, 1039, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10036, 1039, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10037, 1039, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', 'standard', NULL, '39.5000', '39.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.5000', '', '39.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10038, 1039, 1401, 'PR-114', 'EKURO BEWU', 'standard', NULL, '4.0000', '4.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10039, 1039, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10040, 1039, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '2.0000', NULL, 1, 'pc', '8.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10041, 1039, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '0.5000', NULL, 1, 'pc', '9.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10042, 1039, 1707, 'PR-420', 'MEDGLOBIN CAPS', 'standard', 0, '34.0000', '34.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '34.0000', '', '34.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10043, 1039, 1900, 'PR-613', 'Cefruate 500', 'standard', NULL, '3.3000', '3.3000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '3.3000', NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10044, 1039, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10045, 1039, 1636, '4031571069116', 'VIT-B DENK', 'standard', NULL, '13.0000', '13.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '13.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10046, 1039, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '15.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '1.5000', NULL, 1, 'pc', '15.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10047, 1039, 2574, '24484092', 'DULCOLAX TABS 5MG 20\'S', 'standard', NULL, '1.5000', '1.5000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '1.5000', NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10048, 1039, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10049, 1039, 1680, 'PR-393', 'BELLA COUGH MIXTURE', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10050, 1039, 2288, '44100235', 'FLUXAMOX SUSP 100ML', 'standard', NULL, '11.0000', '11.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '11.0000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10051, 1039, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', 'standard', NULL, '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10052, 1039, 1680, 'PR-393', 'BELLA COUGH MIXTURE', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10053, 1039, 1473, '5056338341617', 'HOT WATER BOTTLE (JACKET)', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10054, 1039, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10055, 1039, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10056, 1039, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10057, 1039, 1760, 'PR-473', 'PREDNISOLONE TAB  5MG 500\'', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10058, 1039, 1780, '5021265220076', 'FEROGLOBIN CAPS', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10059, 1039, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10060, 1039, 1379, 'PR-92', 'DIFLUCAN CAPS', 'standard', NULL, '110.0000', '110.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', '110.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10061, 1039, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', 'standard', NULL, '1.5800', '1.5800', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5800', '', '1.5800', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10062, 1039, 2211, '8964000736371', 'COCONUT OIL 60ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10063, 1039, 2360, '04076969', 'ASMADRIN TABS', 'standard', 0, '0.6000', '0.6000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6000', '', '0.6000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10064, 1039, 2620, '10026169042122', 'BODY SPLASH (COCONUT FANTASY)', 'standard', NULL, '23.0000', '23.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10065, 1039, 2923, '67740529', 'BELLS CHN COUGH SYR', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10066, 1039, 1946, '92115303', 'Ascorbin  Syrup 100ml', 'standard', 0, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10067, 1039, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', 0, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10068, 1039, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10069, 1039, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10070, 1039, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10071, 1039, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10072, 1039, 1532, 'PR-245', 'AMPICILLIN 250MG CAPS (LETAP)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10073, 1039, 1333, 'PR-46', 'GAUSE BANDAGE 31CH', 'standard', 0, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10074, 1039, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '1.2000', NULL, 1, 'pc', '10.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10075, 1039, 1447, '8906081306418', 'Herbal Lofnac HLB001', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10076, 1039, 2772, '70208100', 'CAFEGOT TAB', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10077, 1039, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10078, 1039, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10079, 1039, 1596, 'PR-309', 'SALINE NASAL DROPS (LOCAL)', 'standard', 0, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10080, 1040, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10081, 1040, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10082, 1040, 2616, '98204323', 'NIFEDI-DENK 10MG', 'standard', NULL, '4.0000', '4.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10083, 1040, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10084, 1040, 2777, '97856697', 'MMT SUSP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10085, 1040, 2445, '08969985', 'ADULT DIAPER', 'standard', NULL, '5.0000', '5.0000', '8.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '5.0000', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10086, 1040, 2602, '86780065', 'CLOVES ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10087, 1040, 2992, '39433029', 'PANADOL TAB PLAIN', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10088, 1040, 1993, '6033000330710', 'KLEANZ SANITIZER 50ML', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10089, 1040, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10090, 1040, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10091, 1040, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10092, 1040, 1338, 'PR-51', 'COTTON WOOL 1 00G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10093, 1040, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10094, 1040, 2073, '59185019', 'DOMI 30', 'standard', NULL, '3.0000', '3.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10095, 1040, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '1.3000', '1.3000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '1.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10096, 1040, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10097, 1041, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10098, 1041, 2693, '8904091102211', 'SUPIRONCIN OMITMENT', 'standard', NULL, '33.0000', '33.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '33.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10099, 1041, 2286, '91011834', 'FLUXAMOX CAPS 200', 'standard', NULL, '6.0000', '6.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10100, 1041, 2760, '71647290', 'HAYZINE TAB', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10101, 1041, 2458, '03757380', 'VALUPAK FOLIC ACID 90\'s', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10102, 1041, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10103, 1041, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10104, 1041, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '7.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '1.0000', NULL, 1, 'pc', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10105, 1041, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10106, 1041, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10107, 1041, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10108, 1041, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10109, 1041, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10110, 1041, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10111, 1041, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10112, 1041, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10113, 1041, 1369, 'PR-82', 'NAPROX EC TABS ECL', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10114, 1041, 3006, '29763683', 'OSTEOCARE TAB INDIA', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10115, 1041, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10116, 1041, 1758, 'PR-471', 'PREGNACARE (19) CAPS 30', 'standard', NULL, '55.0000', '55.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '55.0000', '', '55.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10117, 1041, 1306, 'PR-19', 'DOMI 10: TAB', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10118, 1041, 2094, '68563120', 'COUGH & COLD 100ML CHILD CARE', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10119, 1041, 3005, '06203049', 'OSTEOCARE SYR INDIA', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10120, 1041, 2731, '73085575', 'LAVINAC (DICLOFENAC) GEL 30G', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10121, 1041, 2940, '42955737', 'DIPHEX COUGH SYRP', 'standard', NULL, '8.5000', '8.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10122, 1041, 3045, '00432970', 'CETRIZAN SYRUP 60ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10123, 1041, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10124, 1042, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10125, 1042, 2344, '08199601', 'FOLIGROW TONIC', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10126, 1042, 2358, '32893309', 'LOSAR-DENK 100MG', 'standard', NULL, '18.0000', '18.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '18.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10127, 1042, 2868, '34068126', 'ATENOLOL 100MG  TEVA', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10128, 1042, 2623, '01976331', 'BENDROFLUZIDE 2.5MG UK CRESCENT', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10129, 1042, 2161, '58683972', 'GLYCERINE B/S', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10130, 1042, 2012, '46653631', 'DETTOL ANTISEPTIC 165ML', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10131, 1043, 1986, '6181100323658', 'SIVODERM CREAM', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10132, 1043, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10133, 1044, 3044, '49228950', 'DIAZEPAM TABS 5MG', 'standard', NULL, '0.5000', '0.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10134, 1044, 1322, 'PR-35', 'BADRUF CREAM 30MG', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10135, 1044, 2156, '10421120', 'LEENA CAPS', 'standard', NULL, '4.5000', '4.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10136, 1044, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10137, 1044, 1654, '8904091117703', 'RELCER GEL', 'standard', NULL, '12.0000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10138, 1044, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10139, 1044, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10140, 1044, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10141, 1044, 2104, '44677443', 'DYNWELL TABLETS', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10142, 1044, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10143, 1044, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10144, 1044, 2284, '8906009232232', 'LOFNAC-P TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10145, 1044, 1557, 'PR-270', 'SECLEAR  EYE DROP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10146, 1044, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10147, 1044, 2277, '71311341', 'ZUBES TABLETS ', 'standard', NULL, '1.0000', '1.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10148, 1044, 1805, 'PR-518', 'SAMALIN ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10149, 1044, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10150, 1044, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5100', '0.5100', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0200', '', '0.5100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10151, 1044, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '1.3000', '1.3000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '1.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10152, 1044, 1673, 'PR-386', 'DOXY CAPS (ESKAY)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10153, 1045, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10154, 1045, 2403, '84832683', 'LIMZER CAPS 30\'', 'standard', NULL, '24.0000', '24.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '24.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10155, 1045, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10156, 1045, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10157, 1045, 2390, '76253920', 'NEXIUM 10 SACHET', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10158, 1045, 2556, '59713806', 'VERNA WATER  0.5L SMALL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10159, 1045, 2527, '655295237350', 'MACA POWDER (DR HERBALIST)', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10160, 1045, 1338, 'PR-51', 'COTTON WOOL 1 00G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10161, 1045, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10162, 1045, 1459, 'PR-172', 'ZINNAT SUSP 125MG/100ML', 'standard', NULL, '104.0000', '104.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '104.0000', '', '104.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10163, 1045, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10164, 1045, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10165, 1045, 2715, '61261096', 'CASTOR OIL 70ML BELLS', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10166, 1045, 1962, '5021265224128', 'VISIONANCE UK', 'standard', NULL, '42.5000', '42.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '85.0000', '', '42.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10167, 1045, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10168, 1045, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.6900', '', '0.6900', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10169, 1045, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10170, 1045, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10171, 1045, 3009, '25462573', 'B CO STRONG KRIKA ORIGINAL', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10172, 1045, 1336, 'PR-49', 'RUBBING ALCOHOL -MUL TITI', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10173, 1045, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10174, 1045, 2251, '8901138500573', 'BONNISAN SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10175, 1045, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5100', '0.5100', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0200', '', '0.5100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10176, 1046, 2445, '08969985', 'ADULT DIAPER', 'standard', NULL, '5.0000', '5.0000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '5.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10177, 1046, 1680, 'PR-393', 'BELLA COUGH MIXTURE', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10178, 1046, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10179, 1046, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10180, 1047, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '47.0000', '47.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10181, 1047, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10182, 1047, 1428, 'PR-141', 'SIBI MEN CAPS(l00)', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10183, 1047, 1387, '6034000189100', 'ADOM KOKO CAPS (100)', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10184, 1047, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10185, 1047, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10186, 1047, 1338, 'PR-51', 'COTTON WOOL 1 00G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10187, 1047, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10188, 1047, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '20.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '3.0000', NULL, 1, 'pc', '20.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10189, 1047, 1824, '8901315201910', 'TAGERA FORTE TABS', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10190, 1047, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10191, 1047, 2618, '72760937', 'BUSCOMED TAB 10MG', 'standard', NULL, '5.5000', '5.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '5.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10192, 1047, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10193, 1047, 2486, '46475252', 'CINNAMON STICKS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10194, 1047, 2411, '13740723', 'GEBEDOL FORTE TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10195, 1048, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10196, 1048, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10197, 1048, 1381, 'PR-94', ' GOLDY FORTE DS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10198, 1048, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10199, 1048, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10200, 1048, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10201, 1048, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10202, 1048, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10203, 1049, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.7000', '0.7000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.7000', '', '0.7000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10204, 1050, 1407, '001', 'GIVERS POWER CAPS(140)', 'standard', NULL, '22.5000', '22.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.5000', '', '22.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10205, 1050, 2263, '6036000090417', 'LEVON 2', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10206, 1050, 1668, '8906016831572', 'Acidom Caps', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10207, 1050, 2010, '6229060356009', 'PEPSODENT TOOTHBRUSH', 'standard', NULL, '1.5800', '1.5800', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5800', '', '1.5800', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10208, 1050, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10209, 1050, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10210, 1050, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10211, 1050, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10212, 1050, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10213, 1050, 1706, 'PR-419', 'PROCOLD SYR 100ml', 'standard', NULL, '20.5000', '20.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.5000', '', '20.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10214, 1050, 2163, '94064304', 'IMAX DELAY SPRAY', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10215, 1050, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10216, 1050, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10217, 1051, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '11.0000', '11.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', '11.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10218, 1052, 1386, '6156000046105', 'ABONIK BALM (48)', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10219, 1052, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10220, 1052, 1531, 'PR-244', 'CLOXA CAP 250MG (LETAP)', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10221, 1052, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10222, 1052, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10223, 1052, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10224, 1052, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10225, 1052, 2990, '71484949', 'ENTRAMOL 500 TAB', 'standard', NULL, '1.5000', '1.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10226, 1052, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10227, 1052, 2609, '48137025', 'ABYVITA TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10228, 1052, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.5000', '2.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10229, 1052, 1601, '8904091100316', 'CANDIDERM CREAM 15MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10230, 1052, 3045, '00432970', 'CETRIZAN SYRUP 60ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10231, 1052, 2940, '42955737', 'DIPHEX COUGH SYRP', 'standard', NULL, '8.5000', '8.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10232, 1052, 2491, '57627875', 'BELLS VITAMIN C', 'standard', NULL, '16.5000', '16.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10233, 1052, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10234, 1053, 1827, 'PR-540', 'SYRINGES & NEES 2MLS', 'standard', NULL, '0.3000', '0.3000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.2000', '', '0.3000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10235, 1053, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10236, 1053, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10237, 1053, 1307, 'PR-20', 'FENBASE EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10238, 1053, 1608, 'PR-321', 'CETAPOL SUS (PHYTO)', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10239, 1053, 2415, '70550564', 'GLUCOSE CHECK (SUGAR)', 'standard', NULL, '7.0000', '7.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '7.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10240, 1053, 1698, 'PR-411', 'ODYMIN SYR', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10241, 1053, 2305, '18430069', 'NO-SPA 40MG S/S 20\'S', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10242, 1053, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10243, 1053, 2678, '32692312', 'NAPROSYN EC 500MG UK', 'standard', NULL, '48.0000', '48.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10244, 1053, 2260, '29581054', 'DRAGON TABS', 'standard', NULL, '6.0000', '6.0000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', '6.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10245, 1053, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10246, 1053, 1748, 'PR-461', 'FERROUS SULPHATE TABS 500\'ECL', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10247, 1053, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.4000', '', '1.2000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10248, 1053, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5100', '0.5100', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0200', '', '0.5100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10249, 1053, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10250, 1053, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.2000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10251, 1053, 1822, 'PR-535', 'TOT?HEMA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10252, 1054, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10253, 1055, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10254, 1055, 2307, '07147099', 'ZITHROMAX 250MG', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '170.0000', '', '170.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10255, 1055, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10256, 1055, 2541, '39996904', 'DEMACOT CREAM', 'standard', NULL, '13.5000', '13.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10257, 1055, 2877, '63666165', 'TUMERIC TRANSPARENT SOAP 75G', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10258, 1055, 2234, '96361375', 'AMOKISKLAV 228MG SYRUP', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10259, 1055, 1302, 'PR-15', 'BASE COLD SYR', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10260, 1055, 2483, '90693662', 'THYME LEAVES', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10261, 1055, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10262, 1055, 2247, '29226629', 'TRISILICATE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10263, 1055, 1641, '5000158100954', 'STREPSILS ORANGE lonzenges VIT C 36\'', 'standard', NULL, '1.3000', '1.3000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3000', '', '1.3000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10264, 1055, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10265, 1055, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10266, 1055, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', 'standard', NULL, '39.5000', '39.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.5000', '', '39.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10267, 1055, 2670, '18984546', 'ASPIRIN TABS GEO', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10268, 1055, 2876, '19595752', 'TUMERIC TRANSPARENT SOAP', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10269, 1055, 2877, '63666165', 'TUMERIC TRANSPARENT SOAP 75G', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10270, 1055, 2602, '86780065', 'CLOVES ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10271, 1055, 2855, '71871067', 'ESURO WISA', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10272, 1055, 1647, 'PR-360', 'AMCOF JUNIOR SYR', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10273, 1055, 1941, 'PR-654', 'Genti Gds11369', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10274, 1055, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10275, 1056, 2466, '574992', 'ZINCOFER CAPS', 'standard', NULL, '18.5000', '18.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10276, 1056, 2979, '74644667', 'NIVEA SPRAY 200ML', 'standard', NULL, '17.5000', '17.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '17.5000', '', '17.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10277, 1056, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10278, 1056, 2101, '56160077', 'LETAFEN SUSPENSION 100ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10279, 1056, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10280, 1056, 2740, '63100500', 'OMEXET (OMEPRAZOLE) CAPS 20MG', 'standard', NULL, '12.0000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10281, 1056, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10282, 1056, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10283, 1056, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10284, 1056, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10285, 1056, 3040, '41228459', 'ADUSA HERBAL CAPS', 'standard', NULL, '18.0000', '18.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10286, 1056, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10287, 1056, 1928, '8906009234090', 'LOFNAC GEL GLF143', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10288, 1056, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10289, 1056, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10290, 1056, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10291, 1056, 2235, '62877108', 'AMOKISKLAV 457MG SUSP', 'standard', NULL, '25.0000', '25.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10292, 1056, 2699, '85601099', 'CHOCOLATE M/S', 'standard', NULL, '4.5000', '4.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10293, 1056, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10294, 1056, 1605, 'PR-318', 'AUGMENTIN SUSP 228MG', 'standard', NULL, '39.0000', '39.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '39.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10295, 1056, 2650, '58359784', 'DICNAC 75 SR', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10296, 1056, 2491, '57627875', 'BELLS VITAMIN C', 'standard', NULL, '16.5000', '16.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10297, 1056, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '21.0000', '21.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10298, 1056, 2777, '97856697', 'MMT SUSP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10299, 1056, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10300, 1056, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10301, 1056, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10302, 1056, 1557, 'PR-270', 'SECLEAR  EYE DROP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10303, 1057, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10304, 1057, 2236, '6033000270108', 'EFPAC JNR', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10305, 1057, 2224, '6033000086150', 'CERELAC TIN BISCUITY WITH MILK', 'standard', NULL, '16.0000', '16.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10306, 1057, 2289, '01037338', 'FOLIC ACID LETAP', 'standard', NULL, '0.5000', '0.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10307, 1058, 1504, '3838989585259', 'NAKLOFEN DUO CAPS 75MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10308, 1059, 2729, '08313778', 'KEFEN EXTRA 10MG TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10309, 1059, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10310, 1059, 3029, '62617189', 'ASCORYL PLUS SYR 125ML', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10311, 1059, 1743, 'PR-456', 'BABY COUGH ?LINTUS 125ML', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10312, 1059, 1314, 'PR-27', 'WORMBASE SUSP', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10313, 1059, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '46.0000', '46.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10314, 1059, 1586, '5012616173004', 'ABIDEC DROP', 'standard', NULL, '65.0000', '65.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '65.0000', '', '65.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10315, 1059, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10316, 1059, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '11.0000', '11.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10317, 1060, 1592, '5021265231102', 'FEROGLOBIN SYR', 'standard', NULL, '47.0000', '47.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '47.0000', '', '47.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10318, 1061, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', 'standard', NULL, '2.5000', '2.5000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10319, 1061, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10320, 1062, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10321, 1063, 2229, '7501058625922', 'LACTOGEN 2', 'standard', NULL, '28.0000', '28.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10322, 1064, 1639, 'PR-352', 'EPHEDRINE NASAL DROP (MAJOR)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10323, 1065, 2177, '8964000577448', 'JOJOBA OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10324, 1065, 2197, '8964000114186', 'LINSEED OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10325, 1065, 2460, '07910647', 'EVECARE TAB', 'standard', NULL, '43.0000', '43.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '43.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10326, 1065, 2239, '5021265226085', 'PERFECTIL SKIN HAIR NAIL', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10327, 1065, 2602, '86780065', 'CLOVES ', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10328, 1065, 1410, 'PR-123', 'JOY OINT S/S(200)', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10329, 1065, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10330, 1065, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10331, 1065, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10332, 1065, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10333, 1065, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10334, 1065, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10335, 1065, 2445, '08969985', 'ADULT DIAPER', 'standard', NULL, '5.0000', '5.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '50.0000', '', '5.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10336, 1065, 2344, '08199601', 'FOLIGROW TONIC', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10337, 1065, 2489, '83942978', 'ACICLOVIR CREAM 10G', 'standard', NULL, '83.0000', '83.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '83.0000', '', '83.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10338, 1065, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10339, 1065, 1487, '8902292000893', 'KETAZOL CREAM', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10340, 1065, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10341, 1065, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10342, 1065, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10343, 1065, 1649, '6161102003536', 'ZUBES EXPECTORANT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10344, 1066, 1765, 'PR-478', 'METHYLATED SPIRIT 200ML', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10345, 1066, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10346, 1066, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.5000', '2.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10347, 1067, 2108, '85249693', 'ARFAN 20/120MG', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10348, 1067, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '4.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10349, 1067, 1609, '8904107900893', 'MYCOLEX CREAM 20G', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10350, 1067, 2331, '22131552', 'IMODIUM CAPS 2MG 6\'S', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10351, 1067, 3018, '27169206', 'PARA SYR EXETER', 'standard', NULL, '6.5000', '6.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '6.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10352, 1067, 1624, '5021265221424', 'IMMUNACE CAPS ORIGINAL', 'standard', NULL, '39.0000', '39.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.0000', '', '39.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10353, 1067, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10354, 1067, 2459, '26218313', 'ENAMYCIN SUS (ECL)', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10355, 1067, 2272, '8904008420469', 'CONGESTYL TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10356, 1067, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', 'standard', NULL, '39.5000', '39.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.5000', '', '39.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10357, 1067, 2858, '54574718', 'PREG TEST CASSETTE', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10358, 1067, 1551, '5021691032076', 'LEVOTHYROXINE TAB 50MG (MERC PHARMA)', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10359, 1068, 2062, '01665566', 'ZYMAX SUSP', 'standard', NULL, '12.0000', '12.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10360, 1068, 2094, '68563120', 'COUGH & COLD 100ML CHILD CARE', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10361, 1069, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10362, 1069, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10363, 1069, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10364, 1069, 1986, '6181100323658', 'SIVODERM CREAM', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10365, 1069, 2413, '72302134', 'LETAVIN 125MG', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10366, 1069, 1401, 'PR-114', 'EKURO BEWU', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10367, 1069, 1521, 'PR-234', 'PAINGAYCAP', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10368, 1069, 1505, '890388500021', 'NEO HYCOLEX EYE DROP5ML', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10369, 1069, 1541, '8902502106421', 'INFA V PESS', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10370, 1069, 1573, '5997001360170', 'POSTINOR ORIGINAL', 'standard', NULL, '32.5000', '32.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '32.5000', '', '32.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10371, 1069, 1884, 'PR-597', 'POLYFER SYR (200ML)', 'standard', NULL, '6.7700', '6.7700', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.7700', '', '6.7700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10372, 1069, 2864, '58170295', 'PARA DENK 250MG SUPP', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10373, 1069, 2283, '8906009232225', 'LOFNAC TAB 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10374, 1069, 1452, 'PR-165', 'Tobufon 400 T002e001', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10375, 1069, 1751, 'PR-464', 'METRO-Z TABS 20', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10376, 1069, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', 'standard', NULL, '2.6000', '2.6000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.6000', '', '2.6000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10377, 1069, 1450, 'PR-163', 'Lofnac 100 supp WABG035', 'standard', NULL, '1.2000', '1.2000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.4000', '', '1.2000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10378, 1069, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.7000', '0.7000', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.3000', '', '0.7000', NULL, 1, 'pc', '9.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10379, 1069, 2908, '78138195', 'MAGACID FASTMELT', 'standard', NULL, '0.5000', '0.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '0.5000', '', '0.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10380, 1069, 2305, '18430069', 'NO-SPA 40MG S/S 20\'S', 'standard', NULL, '9.0000', '9.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '9.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10381, 1069, 1688, 'PR-401', 'ZINCOVIT TAB', 'standard', NULL, '24.5000', '24.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.5000', '', '24.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10382, 1069, 2366, '5017023371', 'AMLODIPINE 10 MG (TEVA)', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10383, 1069, 2359, '66115662', 'LOSAR-DENK 50MG TAB', 'standard', NULL, '11.0000', '11.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '11.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10384, 1069, 2416, '42362525', 'VOLTIC WATER M/S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10385, 1069, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10386, 1069, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10387, 1069, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10388, 1069, 2378, '08590643', 'VENE CAPS', 'standard', NULL, '23.5000', '23.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '70.5000', '', '23.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10389, 1069, 2024, '6001087357050', 'VASELINE LOTION INTENSIVE CARE 400ML', 'standard', NULL, '18.5000', '18.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.5000', '', '18.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10390, 1069, 1391, '6036000005930', 'ADUWUMWAA CAPS (240)', 'standard', NULL, '14.5000', '14.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.5000', '', '14.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10391, 1069, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5100', '0.5100', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.1000', '', '0.5100', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10392, 1070, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', 'standard', NULL, '37.0000', '37.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '37.0000', '', '37.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10393, 1070, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10394, 1070, 1704, '5060033711873', 'CYPRODINE SYR', 'standard', NULL, '36.0000', '36.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10395, 1070, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10396, 1070, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.5000', '2.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10397, 1070, 2465, '13163480', 'CORORANGE SYR', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10398, 1070, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10399, 1070, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10400, 1070, 2989, '30747371', 'ALUMINIUM HYDRO TAB (M&G)', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10401, 1070, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10402, 1070, 1338, 'PR-51', 'COTTON WOOL 1 00G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10403, 1070, 1313, 'PR-26', 'J.V  WORMBASE 400 TAB', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10404, 1070, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10405, 1070, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10406, 1070, 2097, '70572709', 'MACRAFOLIN SYRUP 125ML', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10407, 1070, 2268, '8906009235561', 'BG-GLUTAMIN PLUS', 'standard', NULL, '10.0000', '10.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10408, 1070, 1871, '3838989599843', 'DORETA TAB 37.5MG/325MG', 'standard', NULL, '3.0000', '3.0000', '5.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '3.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10409, 1070, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10410, 1070, 2990, '71484949', 'ENTRAMOL 500 TAB', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10411, 1070, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10412, 1071, 1572, 'PR-285', 'EZIPEN TABS 100MG 30\'', 'standard', NULL, '2.5000', '2.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10413, 1071, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5100', '0.5100', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0200', '', '0.5100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10414, 1071, 2086, '06489706', 'METAGYL SUSP', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10415, 1071, 2706, '44071026', 'GASTRONE SYRUP 200ML', 'standard', NULL, '9.0000', '9.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10416, 1071, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10417, 1072, 2811, '02080207', 'MERCY CREAM', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10418, 1073, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10419, 1073, 1388, 'PR-101', 'ADOM KOKO SYP(20)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10420, 1073, 2256, '41965129', 'ZINCOFER SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10421, 1073, 2951, '98935572', 'LETAMOL TAB', 'standard', NULL, '0.5000', '0.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '0.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10422, 1073, 1695, '8908002671971', 'APETAMIN SYR', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10423, 1073, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10424, 1073, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10425, 1073, 1314, 'PR-27', 'WORMBASE SUSP', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10426, 1073, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5100', '0.5100', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '0.5100', '', '0.5100', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10427, 1073, 2990, '71484949', 'ENTRAMOL 500 TAB', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10428, 1073, 2284, '8906009232232', 'LOFNAC-P TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10429, 1073, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '14.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '98.0000', '', '7.0000', NULL, 1, 'pc', '14.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10430, 1073, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10431, 1073, 2775, '40792038', 'LEXSPORIN OINTMENT', 'standard', NULL, '25.0000', '25.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10432, 1073, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10433, 1073, 1410, 'PR-123', 'JOY OINT S/S(200)', 'standard', NULL, '3.5000', '3.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10434, 1073, 2225, '6033000082985', 'CERELAC TIN WHEAT', 'standard', NULL, '16.0000', '16.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10435, 1073, 1851, '8901138100629', 'KOFLET SYRUP 100ML', 'standard', NULL, '16.5000', '16.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10436, 1073, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10437, 1073, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.5000', '2.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10438, 1073, 2020, '97365815', 'FUNBACT CREAM', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10439, 1073, 2923, '67740529', 'BELLS CHN COUGH SYR', 'standard', NULL, '15.0000', '15.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10440, 1073, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '2.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10441, 1073, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10442, 1073, 1673, 'PR-386', 'DOXY CAPS (ESKAY)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10443, 1073, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '26.0000', '26.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10444, 1073, 2353, '63376348', 'HAEMOGLOBIN SYR M&G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10445, 1073, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10446, 1073, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10447, 1073, 1309, 'PR-22', 'GENTBASE EYE/EAR DROP', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10448, 1073, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10449, 1073, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.5000', '2.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10450, 1073, 2503, '85844262', 'LISTERINE MOUTH WASH 250 ML', 'standard', NULL, '18.0000', '18.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10451, 1073, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.5000', '2.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10452, 1074, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10453, 1074, 1667, '5011831076695', 'ROUGH RIDER CONDOM', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10454, 1074, 1910, 'PR-623', 'Apc 10 x 10', 'standard', NULL, '1.5000', '1.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10455, 1074, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5100', '0.5100', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0200', '', '0.5100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10456, 1074, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10457, 1074, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10458, 1074, 1809, 'PR-522', 'VISCOF D SY', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10459, 1074, 2557, '86393917', 'METOCLOPRAMIDE', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10460, 1074, 2772, '70208100', 'CAFEGOT TAB', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10461, 1074, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5100', '0.5100', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0200', '', '0.5100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10462, 1074, 2640, '08457216', 'GLUCO NAF D (DANNEX)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10463, 1074, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10464, 1074, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', 'standard', NULL, '39.5000', '39.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '39.5000', '', '39.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10465, 1074, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10466, 1074, 1306, 'PR-19', 'DOMI 10: TAB', 'standard', NULL, '3.0000', '3.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10467, 1074, 2633, '36871243', 'GANA BALM', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10468, 1074, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10469, 1074, 2360, '04076969', 'ASMADRIN TABS', 'standard', NULL, '0.6900', '0.6900', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.3800', '', '0.6900', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10470, 1074, 1783, '3838957899715', 'NIFECARD XL 30MG 30\'S', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10471, 1074, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '5.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '1.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10472, 1074, 1763, 'PR-476', 'HYDROGEN PEROXIDE 200ML ECL', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10473, 1074, 2271, '9556100104342', 'FLUCOR DAY', 'standard', NULL, '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', '16.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10474, 1074, 2972, '13709725', 'BENYLIN 4 FLU SPRAY 100ML', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10475, 1074, 1368, '8906046131499', 'JET INHALER N\'PKT-(12S)', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10476, 1074, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10477, 1074, 1999, '6971044950313', 'YAZZ PAD', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10478, 1074, 2283, '8906009232225', 'LOFNAC TAB 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10479, 1074, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10480, 1074, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10481, 1074, 2915, '21109477', 'ASPIRIN CARDIO 100MG', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10482, 1075, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10483, 1075, 2108, '85249693', 'ARFAN 20/120MG', 'standard', NULL, '6.5000', '6.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10484, 1075, 2236, '6033000270108', 'EFPAC JNR', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10485, 1075, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10486, 1075, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10487, 1075, 2288, '44100235', 'FLUXAMOX SUSP 100ML', 'standard', NULL, '11.0000', '11.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10488, 1075, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10489, 1075, 1704, '5060033711873', 'CYPRODINE SYR', 'standard', NULL, '36.0000', '36.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10490, 1075, 2454, '52651792', 'KAMACLOX MOUTH WASH 300ML', 'standard', NULL, '11.5000', '11.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '11.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10491, 1075, 2256, '41965129', 'ZINCOFER SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10492, 1075, 1507, '002', 'SEFLOX EYE/EAR DROP', 'standard', NULL, '7.5000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10493, 1075, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10494, 1075, 2284, '8906009232232', 'LOFNAC-P TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10495, 1075, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10496, 1075, 1306, 'PR-19', 'DOMI 10: TAB', 'standard', NULL, '3.0000', '3.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10497, 1075, 3018, '27169206', 'PARA SYR EXETER', 'standard', NULL, '6.5000', '6.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10498, 1076, 3067, '21042084', 'ESKAZEPAM TAB ( DIAZEPAM) 5MG', 'standard', NULL, '1.0000', '1.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10499, 1077, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10500, 1077, 2022, '69436145', 'CHOCHO CREAM', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10501, 1077, 2679, '42097030', 'PEVISONE CREAM', 'standard', NULL, '44.0000', '44.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '44.0000', '', '44.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10502, 1077, 2286, '91011834', 'FLUXAMOX CAPS 200', 'standard', NULL, '6.0000', '6.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '6.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10503, 1077, 1346, '5054563076281', 'PIRITON TABS 30\'8 ORIGINAL', 'standard', NULL, '1.5000', '1.5000', '9.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '1.5000', NULL, 1, 'pc', '9.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10504, 1077, 1812, 'PR-525', 'VERMOX TABS', 'standard', NULL, '10.5000', '10.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10505, 1077, 1807, '124', 'VOLTFAST  50MG[POWER]30\'S', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10506, 1077, 1331, 'PR-44', 'ZINC OXIDE PLATER ROLL 2\'1CH', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10507, 1078, 2633, '36871243', 'GANA BALM', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10508, 1078, 1756, 'PR-469', 'FLUXACIN  CAPS  500MG (ALU ALU) 200\'', 'standard', NULL, '6.5000', '6.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '6.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10509, 1078, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10510, 1078, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '1.3000', '1.3000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '1.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10511, 1078, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10512, 1079, 1646, 'PR-359', 'AMCOF BABY', 'standard', NULL, '7.5000', '7.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10513, 1079, 1434, 'PR-147', 'TINATETT MALAKARE S00ML (25)', 'standard', NULL, '23.0000', '23.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '23.0000', '', '23.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10514, 1079, 1337, 'PR-50', 'SPIRIT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10515, 1079, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10516, 1079, 1785, 'PR-498', 'NUGEL SUSPENSION 200MLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10517, 1079, 2237, '6033000270061', 'EFPAC TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10518, 1079, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10519, 1079, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10520, 1079, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5100', '0.5100', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0400', '', '0.5100', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10521, 1079, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10522, 1079, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10523, 1079, 1310, 'PR-23', 'MARTIN LIVER SALT (LEMON)', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10524, 1079, 2768, '31007297', 'AMOXYL CAPS 250 (ESKAY)', 'standard', NULL, '1.5000', '1.5000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '1.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10525, 1079, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10526, 1079, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10527, 1079, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '1.5000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10528, 1079, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10529, 1079, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10530, 1079, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '5.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10531, 1079, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10532, 1079, 1844, 'PR-557', 'LETAP AMPICLOX', 'standard', NULL, '2.0000', '2.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10533, 1079, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '1.3000', '1.3000', '10.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '1.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10534, 1079, 1689, 'PR-402', 'ZINCOVIT SYR', 'standard', NULL, '17.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10535, 1079, 2991, '46377274', 'ZINTAB 10MG', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10536, 1080, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10537, 1080, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10538, 1081, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10539, 1081, 3068, '18022517', 'VIT FORTE VITAMIN C & ZINC', 'standard', NULL, '18.0000', '18.0000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '18.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10540, 1081, 1728, '5036631004075', 'ASHTON & PARSONS TEETHING POWDER', 'standard', NULL, '2.5000', '2.5000', '8.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '2.5000', NULL, 1, 'pc', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10541, 1081, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10542, 1081, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10543, 1081, 1637, '4031571068959', 'DICLO DENK 100MG TAB', 'standard', NULL, '14.0000', '14.0000', '3.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '42.0000', '', '14.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10544, 1081, 2690, '834576006223', 'DERMASIL BODY WASH SHOWER GEL', 'standard', NULL, '22.0000', '22.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10545, 1081, 2419, '03336179', 'MR  MUSCLE', 'standard', NULL, '18.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10546, 1081, 2296, '48633360', 'DREZ SOLUTION B/S', 'standard', NULL, '18.0000', '18.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10547, 1081, 1621, '8851447000021', 'MARK 2 INHALER', 'standard', NULL, '9.0000', '9.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10548, 1081, 2283, '8906009232225', 'LOFNAC TAB 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10549, 1081, 2247, '29226629', 'TRISILICATE SYR', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10550, 1081, 2063, '28182783', 'NEFLUCON (FLUCONAZOLE) CAP 150', 'standard', NULL, '3.5000', '3.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '3.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10551, 1081, 2821, '27504285', 'COLDRILIF CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10552, 1081, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10553, 1081, 1779, 'PR-492', 'BISACODYL [GEO] 1000\'S', 'standard', NULL, '1.0000', '1.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10554, 1081, 1666, '9556564303350', 'FIESTA CONDOM ALL NIGHT', 'standard', NULL, '3.5000', '3.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.5000', '', '3.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10555, 1081, 1620, '8906009230061', 'COMIT 50MG', 'standard', NULL, '4.0000', '4.0000', '4.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '4.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10556, 1081, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10557, 1081, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10558, 1082, 1708, 'PR-421', 'MEDGLOBIN SYR', 'standard', NULL, '28.0000', '28.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10559, 1082, 2279, '6161105661986', 'PANADOL EXTRA', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10560, 1082, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10561, 1082, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10562, 1082, 2739, '67011430', 'MYCOVIN TABLETS 125MG', 'standard', NULL, '2.2000', '2.2000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.2000', '', '2.2000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10563, 1082, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', 'standard', NULL, '1.5000', '1.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10564, 1082, 1945, 'PR-658', 'LUFART SUSP', 'standard', NULL, '12.5000', '12.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10565, 1082, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10566, 1082, 2284, '8906009232232', 'LOFNAC-P TAB', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10567, 1082, 1420, 'PR-133', 'NAZO', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10568, 1082, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10569, 1082, 1629, 'PR-342', 'GEN-M SUSP', 'standard', NULL, '21.0000', '21.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '21.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10570, 1082, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10571, 1082, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10572, 1082, 2740, '63100500', 'OMEXET (OMEPRAZOLE) CAPS 20MG', 'standard', NULL, '12.0000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10573, 1082, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10574, 1082, 2379, '98167111', 'COLODIUM CAPS', 'standard', NULL, '2.5000', '2.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10575, 1082, 1828, 'PR-541', 'SUPER APETI TABS (GEO)', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10576, 1083, 2655, '06401154', 'CHOCOLATE B/S', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10577, 1083, 2342, '62530607', 'DICLO DENK RECTAL SUPPOSITRY', 'standard', NULL, '2.5000', '2.5000', '15.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '37.5000', '', '2.5000', NULL, 1, 'pc', '15.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10578, 1083, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10579, 1084, 2982, '70783681', 'SURE ROLL ON', 'standard', NULL, '8.0000', '8.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10580, 1084, 2037, '96125700', 'SURE  DEO SPRAY 250ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10581, 1084, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10582, 1084, 1590, 'PR-303', 'CHLORAM CAP (LETAP)', 'standard', NULL, '2.2000', '2.2000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '2.2000', '', '2.2000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10583, 1084, 1854, 'PR-567', 'IBUCAP L/S 20X20', 'standard', NULL, '3.5000', '3.5000', '2.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '3.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10584, 1084, 2293, '03010667', 'PENICILLIN V 125MG TABS', 'standard', NULL, '2.0000', '2.0000', '5.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '2.0000', NULL, 1, 'pc', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10585, 1085, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10586, 1085, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10587, 1085, 1309, 'PR-22', 'GENTBASE EYE/EAR DROP', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10588, 1085, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10589, 1085, 1945, 'PR-658', 'LUFART SUSP', 'standard', NULL, '12.5000', '12.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10590, 1085, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10591, 1085, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10592, 1085, 1574, '5017123055164', 'PARA 500MG CAPS 100\' (CRESCENT)', 'standard', NULL, '2.5000', '2.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10593, 1085, 1598, 'PR-311', 'GO COUGH SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10594, 1085, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10595, 1085, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10596, 1085, 1672, '890388500076', 'CIPRO DENK 500MG', 'standard', NULL, '4.0000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10597, 1085, 2105, '11898104', 'DOXYCYCLINE 100MG', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10598, 1085, 1824, '8901315201910', 'TAGERA FORTE TABS', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10599, 1085, 1385, 'PR-98', 'AZIS TABS. 500MG', 'standard', NULL, '8.5000', '8.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.5000', '', '8.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10600, 1085, 1326, 'PR-39', 'DERMIRON PLUS CREAM', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10601, 1085, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10602, 1085, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10603, 1085, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10604, 1085, 1502, '8850769018998', 'GOFEX400MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10605, 1085, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10606, 1085, 1518, '5012617017147', 'SOLUBLE ASPIRIN 75MG', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10607, 1085, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10608, 1085, 1328, 'PR-41', 'HIGH ELASTIC CREPE BANDAGE 4\"', 'standard', NULL, '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', '4.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10609, 1085, 2584, '53094861', 'ROSESHIP OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10610, 1085, 2877, '63666165', 'TUMERIC TRANSPARENT SOAP 75G', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10611, 1085, 1637, '4031571068959', 'DICLO DENK 100MG TAB', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10612, 1085, 2858, '54574718', 'PREG TEST CASSETTE', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10613, 1085, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10614, 1085, 2592, '42909881', 'Zentel Suspension ', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10615, 1086, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10616, 1087, 1493, 'PR-206', 'GV PAINT', 'standard', NULL, '3.0000', '3.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10617, 1088, 2285, '85310856', 'COARTEM 80/480 TABS', 'standard', NULL, '48.0000', '48.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '48.0000', '', '48.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10618, 1088, 1618, '8901645060997', 'AZILEX 250MG CAPS', 'standard', NULL, '16.0000', '16.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10619, 1088, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10620, 1088, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10621, 1088, 1637, '4031571068959', 'DICLO DENK 100MG TAB', 'standard', NULL, '14.0000', '14.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10622, 1089, 1584, '5060806420162', 'PROMAN DRINK 250ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10623, 1089, 2704, '24774325', 'SENSODYNE DEEP CLEAN GEL', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10624, 1089, 3013, '60394518', 'INOXIME TAB 200MG', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10625, 1089, 2135, '42431074', 'POSTINOR LOCAL', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10626, 1089, 1860, '8901138150891', 'PILEX OINTMENT', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10627, 1089, 1824, '8901315201910', 'TAGERA FORTE TABS', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10628, 1090, 3085, '86140157', 'APPLE CIDER VINEGER B/S', 'standard', NULL, '72.0000', '72.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '72.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10629, 1090, 2209, '8964000267295', 'TURMERIC OIL', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10630, 1090, 2061, '96762855', 'ZYMAX CAPS 500MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10631, 1091, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', 'standard', NULL, '19.5000', '19.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10632, 1091, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5100', '0.5100', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0200', '', '0.5100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10633, 1091, 1947, '73002504', 'Dynwell 200ML  Syrup', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10634, 1091, 2818, '79267101', 'VALUPAK EVINING PRIMROSE', 'standard', NULL, '19.0000', '19.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.0000', '', '19.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10635, 1091, 1519, 'PR-232', 'ZULU TAB 10', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10636, 1091, 1342, '8906056840992', 'CARTEF -DS 80/480 TAB', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10637, 1091, 1867, 'PR-580', 'CIPROLEX TABS 500MG 10?S', 'standard', NULL, '1.3000', '1.3000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '1.3000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10638, 1091, 2317, '74536436', 'HEMANI HERBAL TEA', 'standard', NULL, '18.0000', '18.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '18.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10639, 1091, 1440, 'PR-153', 'VICTORY GARLIC', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10640, 1091, 1782, 'PR-495', 'B CO STORNG (EXETER) 60', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10641, 1091, 1846, '5017848248032', 'MENTHODEX S/S SYRUP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10642, 1091, 2398, '83807653', 'KINGDOM GINSENG CAPS', 'standard', NULL, '20.0000', '20.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '20.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10643, 1091, 1818, 'PR-531', 'TEETHING MIXTURE BELLS', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10644, 1091, 1771, 'PR-484', 'STOPKOF COLD & CATARRH TAB ', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10645, 1091, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10646, 1091, 2995, '32309749', 'NAT B CAPS', 'standard', NULL, '52.5000', '52.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '52.5000', '', '52.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10647, 1091, 1523, 'PR-236', 'EASY STEP ONE PREG. TEST KIT', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10648, 1092, 2327, '66319646', 'MR Q', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10649, 1092, 2167, '6166', 'GEBEDOL EXTRA', 'standard', NULL, '3.0000', '3.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '3.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10650, 1092, 2060, '54947392', 'PARACETAMOL TAB LOCAL', 'standard', NULL, '0.5000', '0.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10651, 1092, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10652, 1092, 1761, 'PR-474', 'OMECET CAPS 100', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10653, 1092, 2759, '56334949', 'SHALCIP TAB', 'standard', NULL, '5.5000', '5.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10654, 1092, 2270, '64645876', 'MIST POT CIT', 'standard', NULL, '4.0000', '4.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10655, 1092, 1557, 'PR-270', 'SECLEAR  EYE DROP', 'standard', NULL, '10.5000', '10.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10656, 1092, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10657, 1092, 1856, 'PR-569', 'KOFFEX SYR ADULT', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10658, 1092, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10659, 1092, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10660, 1092, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10661, 1092, 2280, '8995858999991', 'PROCOLD TABS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10662, 1092, 1721, 'PR-434', 'AZITEX(AZITHROMYCIN) SUSP. 200MG /5ML 15ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10663, 1092, 2086, '06489706', 'METAGYL SUSP', 'standard', NULL, '6.0000', '6.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10664, 1093, 1675, '3582910078265', 'FLAGENTYL 500MG TAB', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10665, 1093, 1338, 'PR-51', 'COTTON WOOL 1 00G', 'standard', NULL, '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10666, 1093, 1494, 'PR-207', 'METHYLATED SPIRIT 125ML(ECL)', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10667, 1094, 2648, '61024738', 'COLGATE FOR KIDS', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10668, 1094, 2807, '80774399', 'FAMI CARE KID BRUSH', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10669, 1094, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10670, 1094, 2649, '19814758', 'ZITHROMAX SUSP', 'standard', NULL, '95.0000', '95.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '95.0000', '', '95.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10671, 1094, 1349, '5010123722708', 'CALPOL SYR 2+', 'standard', NULL, '46.0000', '46.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '46.0000', '', '46.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10672, 1095, 1617, 'PR-330', 'ENTRAMOL 125MG SUPP', 'standard', NULL, '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10673, 1096, 1606, 'PR-319', 'CLOMID 50MG (BRUNO)', 'standard', NULL, '6.0000', '6.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '60.0000', '', '6.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10674, 1096, 2038, '8710908559204', 'DOVE DEO SPRAY 250 ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10675, 1096, 2059, '5050796002899', 'HEAVEN SCENT BOBY CREAM 500ML', 'standard', NULL, '15.0000', '15.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10676, 1097, 2506, '46924578', 'EPANOL SYR', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10677, 1097, 2109, '94342778', 'ASCORBIN TABS LETAP', 'standard', NULL, '1.5000', '1.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '1.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10678, 1097, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10679, 1097, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10680, 1098, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '2.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10681, 1098, 2829, '48254984', 'AZOMAX TAB 500MG (AZITHROMYCIN)', 'standard', NULL, '39.5000', '39.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '79.0000', '', '39.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10682, 1098, 2145, '4000987008118', 'AMOS VIT C', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10683, 1099, 2226, '6033000086358', 'CERELAC TIN MAIZE', 'standard', NULL, '17.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10684, 1099, 2068, '79519848', 'LUFART DS', 'standard', NULL, '17.0000', '17.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', '17.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10685, 1099, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '3.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10686, 1099, 1381, 'PR-94', ' GOLDY FORTE DS', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10687, 1099, 1727, 'PR-440', 'AVOMINE TABS 25MG 10\'', 'standard', NULL, '2.6000', '2.6000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.2000', '', '2.6000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10688, 1099, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10689, 1099, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.5000', '2.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10690, 1099, 2809, '57353674', 'LONGRICH TOOTHPASTE', 'standard', NULL, '35.0000', '35.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10691, 1099, 2027, '60018915', 'VASELINE CREAM SMALL 100ML', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10692, 1099, 2521, '99271826', 'CAMEL LIQUID ANTISEPTIC 250ML', 'standard', NULL, '14.0000', '14.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10693, 1099, 1704, '5060033711873', 'CYPRODINE SYR', 'standard', NULL, '36.0000', '36.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10694, 1099, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10695, 1099, 1884, 'PR-597', 'POLYFER SYR (200ML)', 'standard', NULL, '6.7700', '6.7700', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.7700', '', '6.7700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10696, 1099, 1314, 'PR-27', 'WORMBASE SUSP', 'standard', NULL, '4.0000', '4.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '4.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10697, 1099, 1746, 'PR-459', 'NESBEN(ALBENDAZOLE) TABS 200MG 2\'', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10698, 1099, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', 'standard', NULL, '19.5000', '19.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', '19.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10699, 1099, 1945, 'PR-658', 'LUFART SUSP', 'standard', NULL, '12.5000', '12.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.5000', '', '12.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10700, 1099, 2381, '72472860', 'ENACEF SUSP', 'standard', NULL, '16.0000', '16.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10701, 1099, 2220, '850006000012', 'ABC VITAMIN C ZINC SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10702, 1099, 2862, '97602687', 'TYPHOID TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10703, 1099, 2320, '10865525', 'MALARIA TEST', 'standard', NULL, '10.0000', '10.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10704, 1099, 2916, '85432536', 'LONART DS TAB', 'standard', NULL, '20.0000', '20.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10705, 1099, 2769, '46431524', 'FLUCLOXACILLIN CAPS LETAP', 'standard', NULL, '2.5000', '2.5000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '2.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10706, 1100, 2673, '52626423', 'LISINOPRIL 10MG', 'standard', NULL, '15.0000', '15.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', '15.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10707, 1100, 1928, '8906009234090', 'LOFNAC GEL GLF143', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10708, 1100, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '1.0000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10709, 1100, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10710, 1100, 2660, '84556664', 'ANDREWS LIVER SALT', 'standard', NULL, '1.0000', '1.0000', '2.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10711, 1100, 2384, '23740960', 'NO 10 LIVER SALT ORANGE', 'standard', NULL, '0.7000', '0.7000', '4.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.8000', '', '0.7000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10712, 1100, 2544, '85585070', 'NEXCOFER SYR L/S', 'standard', NULL, '9.0000', '9.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10713, 1100, 2221, '4022679118301', ' EASYLIFE  EFFERVESCENT VIT C 1000MG + ZINC', 'standard', NULL, '25.0000', '25.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '25.0000', '', '25.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10714, 1100, 3018, '27169206', 'PARA SYR EXETER', 'standard', NULL, '6.5000', '6.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10715, 1100, 2169, '97038500', 'GEBEDOL', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10716, 1100, 2286, '91011834', 'FLUXAMOX CAPS 200', 'standard', NULL, '6.0000', '6.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '18.0000', '', '6.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10717, 1100, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10718, 1100, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '26.0000', '26.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10719, 1100, 1721, 'PR-434', 'AZITEX(AZITHROMYCIN) SUSP. 200MG /5ML 15ML', 'standard', NULL, '12.0000', '12.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '12.0000', '', '12.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10720, 1101, 2772, '70208100', 'CAFEGOT TAB', 'standard', NULL, '22.0000', '22.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '22.0000', '', '22.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10721, 1101, 2514, '98091900', 'TOMBROWN 500G', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10722, 1101, 1736, 'PR-449', 'GALVUS MET (50/1000)MG TABS 60\'', 'standard', NULL, '38.0000', '38.0000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '228.0000', '', '38.0000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10723, 1101, 1618, '8901645060997', 'AZILEX 250MG CAPS', 'standard', NULL, '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', '16.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10724, 1101, 2582, '81054441', 'AZILEX SUSP', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '30.0000', '', '30.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10725, 1101, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10726, 1101, 1432, '2546546415413', 'TAABEA MIX(25)', 'standard', NULL, '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', '13.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10727, 1101, 1863, '6033000270368', 'CITRO-C 250S 100MG', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10728, 1101, 1612, 'PR-325', 'GYPRONE PLUS TABS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10729, 1101, 2233, '45473068', 'AMOKISKLAV 625MG', 'standard', NULL, '27.0000', '27.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '27.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10730, 1101, 1819, 'PR-532', 'TEETHING MIXTURE (ECL)', 'standard', NULL, '7.1700', '7.1700', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.1700', '', '7.1700', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10731, 1101, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '4.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10732, 1101, 2618, '72760937', 'BUSCOMED TAB 10MG', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10733, 1101, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10734, 1101, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10735, 1101, 1841, 'PR-554', 'MULTIV B/P L/S [L/P]', 'standard', NULL, '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '0.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10736, 1101, 1744, '5060033712139', 'CYPRODINE CAPS 30\'S', 'standard', NULL, '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', '36.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10737, 1101, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5100', '0.5100', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0200', '', '0.5100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10738, 1101, 1638, 'PR-351', 'DALACIN C 300MG 16\'5 (PHZER)', 'standard', NULL, '8.0000', '8.0000', '16.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '128.0000', '', '8.0000', NULL, 1, 'pc', '16.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10739, 1101, 1637, '4031571068959', 'DICLO DENK 100MG TAB', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10740, 1101, 1905, 'PR-618', 'ANTASIL', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10741, 1101, 1644, '3574661091075', 'BENYLIN INFANT SYR', 'standard', NULL, '45.0000', '45.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '45.0000', '', '45.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10742, 1101, 1700, '8904008410187', 'BECOATIN SYR', 'standard', NULL, '11.0000', '11.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.0000', '', '11.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10743, 1101, 2886, '94600524', 'EXTRA VIRGIN OIL HEANI', 'standard', NULL, '35.0000', '35.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '35.0000', '', '35.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10744, 1101, 2023, '6001087011143', 'VASELINE LOTION  COCOA GLOW 400ML', 'standard', NULL, '19.8000', '19.8000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '19.8000', '', '19.8000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10745, 1101, 2534, '754604502834', 'NEEM FACIAL PRODUCT', 'standard', NULL, '28.0000', '28.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '28.0000', '', '28.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10746, 1101, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '4.5000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10747, 1101, 1670, '006', 'CIPROLEX TZ TAB 14\'5', 'standard', NULL, '26.0000', '26.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '26.0000', '', '26.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10748, 1101, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10749, 1101, 2618, '72760937', 'BUSCOMED TAB 10MG', 'standard', NULL, '5.5000', '5.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.5000', '', '5.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10750, 1101, 2309, '23002945', 'Permoxyl caps 500mg', 'standard', NULL, '2.6000', '2.6000', '4.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.4000', '', '2.6000', NULL, 1, 'pc', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10751, 1101, 1888, 'PR-601', ' NUGEL O SUSPENSION', 'standard', NULL, '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '20.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10752, 1101, 2355, '04052064', 'CELEBREX 200MG 10\'S S/S', 'standard', NULL, '7.2000', '7.2000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '72.0000', '', '7.2000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10753, 1101, 2250, '98457863', 'AUNTIE MARY GRIPE WATER', 'standard', NULL, '10.0000', '10.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', '10.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10754, 1101, 2992, '39433029', 'PANADOL TAB PLAIN', 'standard', NULL, '3.5000', '3.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '3.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10755, 1101, 1912, 'PR-625', 'KWIK ACTION', 'standard', NULL, '1.0000', '1.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '1.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10756, 1101, 2248, '06376451', 'MIST SIENNACO SYR', 'standard', NULL, '4.0000', '4.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', '4.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10757, 1101, 1533, 'PR-246', 'AMOXYL S00MG CAPS (ESKAY) MAXMOX', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10758, 1101, 1546, '5010724531044', 'ANUSOL SUPP 12\'S', 'standard', NULL, '4.0000', '4.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '40.0000', '', '4.0000', NULL, 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10759, 1101, 2163, '94064304', 'IMAX DELAY SPRAY', 'standard', NULL, '29.0000', '29.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '29.0000', '', '29.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10760, 1102, 3002, '94707960', 'FLEMEX CHILD SYR', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10761, 1103, 1839, 'PR-552', 'TEEDAR SYRUP', 'standard', NULL, '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', '8.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10762, 1104, 1501, '8906046931860', 'RONFIT FORTE CAPS', 'standard', NULL, '3.0000', '3.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '3.0000', '', '3.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10763, 1104, 2275, '10665944', 'PARA TAB (EXETER) 100\'S', 'standard', NULL, '1.5000', '1.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', '1.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10764, 1105, 3067, '21042084', 'ESKAZEPAM TAB ( DIAZEPAM) 5MG', 'standard', NULL, '1.0000', '1.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10765, 1106, 2459, '26218313', 'ENAMYCIN SUS (ECL)', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10766, 1106, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', 'standard', NULL, '4.5000', '4.5000', '6.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '27.0000', '', '4.5000', NULL, 1, 'pc', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10767, 1106, 1787, 'PR-500', 'ZINTAB 20MG (1000\'S)', 'standard', NULL, '2.0000', '2.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10768, 1106, 1837, 'PR-550', 'ORS PLAIN DANNEX', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', '1.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10769, 1106, 1651, 'PR-364', 'ZENTEL TAB 200MG', 'standard', NULL, '10.5000', '10.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', '10.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10770, 1106, 3046, '45723019', 'SALINE NASAL DROP 0.90 10ML', 'standard', NULL, '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', '7.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10771, 1106, 1529, '8901040207157', 'DYMOL TAB', 'standard', NULL, '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10772, 1106, 1425, '6034600108402', 'ROOTER MIXTURE (12)', 'standard', NULL, '9.0000', '9.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '9.0000', '', '9.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10773, 1106, 2315, '34300059', 'PARA LOCAL', 'standard', NULL, '0.5100', '0.5100', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0200', '', '0.5100', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10774, 1106, 2303, '5024655004072', 'TRANEXAMIC ACID 500MG', 'standard', NULL, '21.5000', '21.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '43.0000', '', '21.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10775, 1106, 1637, '4031571068959', 'DICLO DENK 100MG TAB', 'standard', NULL, '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', '14.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10776, 1106, 1602, 'PR-315', 'LYDIA POSTPILL', 'standard', NULL, '10.0000', '10.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', '10.0000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10777, 1107, 1372, 'PR-85', 'PARACETAMOL TAB 32\'S', 'standard', NULL, '10.5000', '10.5000', '2.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '21.0000', '', '10.5000', NULL, 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10778, 1107, 1788, 'PR-501', 'KOFFEX SYR CHILD EXP', 'standard', NULL, '6.0000', '6.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '6.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10779, 1107, 2441, '82095661', 'COLGATE HERBAL TOOTHPASTE', 'standard', NULL, '6.5000', '6.5000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', '6.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10780, 1108, 3338, '1484', 'KWIK ACTION', 'standard', NULL, '0.0000', '0.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '0.0000', '', '0.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10781, 1109, 3728, '1874', 'BASEBOOM JELLY', 'standard', NULL, '0.0000', '0.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '0.0000', '', '0.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10782, 1109, 4988, '3134', 'WELCHS DRINK', 'standard', NULL, '0.0000', '0.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '0.0000', '', '0.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10783, 1109, 3174, '1320', 'ZINCOVIT TAB', 'standard', NULL, '0.0000', '0.0000', '1.0000', 1, '0.0000', NULL, '', NULL, '0.0000', '0.0000', '', '0.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10784, 1110, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10785, 1110, 1674, '8901645060911', 'MYCOSTAT 150MG CAPS', 'standard', NULL, '5.0000', '5.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', '5.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10786, 1110, 1935, '8906046130058', 'STREPTOL LOZ S/S /SOOTHING STROBIN  L0Z s/s ', 'standard', NULL, '2.0000', '2.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.0000', '', '2.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10787, 1110, 1339, 'PR-52', 'COTTON WOOL 25G', 'standard', NULL, '2.5000', '2.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '2.5000', '', '2.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10788, 1110, 2252, '08741188', 'FLUREST TABS', 'standard', NULL, '13.5000', '13.5000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '13.5000', '', '13.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10789, 1111, 1665, 'PR-378', 'KISS CONDOM', 'standard', NULL, '2.0000', '2.0000', '3.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', '2.0000', NULL, 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10790, 1112, 1831, '8902336201026', 'SURFAZ SN CREAM L/S', 'standard', NULL, '11.5000', '11.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '11.5000', '', '11.5000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10791, 1112, 2302, '98009399', 'WORMPLEX 400', 'standard', NULL, '7.0000', '7.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.0000', '', '7.0000', NULL, 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);


#
# 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=1113 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 (16, '2021-04-12 16:30:56', 'SALE/POS2021/04/0016', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '39.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '39.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 9, 1, '39.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7bcf8c0fb201e3e098ec61c23080b24c321897fb47a8874803d636e0e2ac2321', NULL, NULL, NULL, NULL, 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 (17, '2021-04-12 16:35:48', 'SALE/POS2021/04/0017', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '7.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '7.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b8e429597907ba951903be82e30b4b33d96e6d24328bab11e71d811d74382b4b', NULL, NULL, NULL, NULL, 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 (18, '2021-04-12 16:38:39', 'SALE/POS2021/04/0018', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '1.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '1.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0f400a05aa284e1993de35def62f1bc5439c4763bf3585311e396b1617b9f591', NULL, NULL, NULL, NULL, 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 (19, '2021-04-12 19:18:05', 'SALE/POS2021/04/0019', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '74.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '74.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 11, 1, '74.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd3551b6137b28d1f970a5feff64fc3a7fbc176bd1e332311617b421e652e75d7', NULL, NULL, NULL, NULL, 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 (20, '2021-04-13 11:45:33', 'SALE/POS2021/04/0020', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '24.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '24.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '840f1847821ca00117f1352453eaaa7aa18aad7337e28852847a585351e1464b', NULL, NULL, NULL, NULL, 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 (21, '2021-04-13 17:58:30', 'SALE/POS2021/04/0021', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '68.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '68.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '68.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '83ad6b05d703bdf2bd00bb8949e1b74c5ba9ff4c8a82b28e637d439a58d20adf', NULL, NULL, NULL, NULL, 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 (22, '2021-04-13 17:59:05', 'SALE/POS2021/04/0022', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '30.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '30.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c6055aa841bba5d6d9d610334ebd0392fdc74bbd724553eb301bc2a6c6efe128', NULL, NULL, NULL, NULL, 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 (23, '2021-04-13 18:12:55', 'SALE/POS2021/04/0023', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '33.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '33.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '33.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b07ac3baed8a3a69dad0093cb522c090f45d5df32244aafe1edc3ae07bb0a56b', NULL, NULL, NULL, NULL, 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 (24, '2021-04-13 18:18:22', 'SALE/POS2021/04/0024', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '42.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '42.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '42.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '15b8342b789f76ad829ed8c1d4f88e504c47a5e35639f67bd07990115edb4739', NULL, NULL, NULL, NULL, 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 (25, '2021-04-13 18:33:31', 'SALE/POS2021/04/0025', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '39.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '39.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '39.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6975987077e976f0464f047b96ce182f003913b9b1cb7ce104456c30567c3427', NULL, NULL, NULL, NULL, 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 (26, '2021-04-13 20:48:52', 'SALE/POS2021/04/0026', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '78.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '78.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '78.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f0f236774e0ea47829462b30b8cc2c6119a47b4cc320cfe2ef396f93c270443f', NULL, NULL, NULL, NULL, 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 (27, '2021-04-13 21:19:03', 'SALE/POS2021/04/0027', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '20.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '20.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '589acb261bb84b4d52d768e1574ed89af255448b56d9b61644cfb4d28b5fa7e7', NULL, NULL, NULL, NULL, 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 (28, '2021-04-13 21:32:56', 'SALE/POS2021/04/0028', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '31.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '31.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '31.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '81635a65b0fe269f6df912b0b03aaa9bee2fe9199dbede76b33d0ca02eeb6986', NULL, NULL, NULL, NULL, 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 (29, '2021-04-13 21:35:46', 'SALE/POS2021/04/0029', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '14.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '14.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '14.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2cbd7265bfa28cd8a192880302cffe0c3e1e1b1faa7b4d24fb87317516d46e0c', NULL, NULL, NULL, NULL, 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 (30, '2021-04-13 21:37:20', 'SALE/POS2021/04/0030', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '47.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '47.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bac9bbc065a99c420caad98e579274d366cf25d822a38cea516c0f1da02d88ef', NULL, NULL, NULL, NULL, 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 (31, '2021-04-14 13:06:05', 'SALE/POS2021/04/0031', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '31.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '31.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 14, 1, '31.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c7093c8765761fbb6b72647d8600302a506e76135b1687544d6759a335ea47b9', NULL, NULL, NULL, NULL, 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 (32, '2021-04-14 15:25:00', 'SALE/POS2021/04/0032', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '10.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '95eae9939f6d2db8add0df512ff66fc5d7f24e628a76644ffd3b968bc61f1d61', NULL, NULL, NULL, NULL, 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 (33, '2021-04-14 16:04:10', 'SALE/POS2021/04/0033', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '59.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '59.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '59.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fa857b1ca83400b7cd4940cedaff4a7321973e6c831b346f74a0e96815ae20af', NULL, NULL, NULL, NULL, 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 (34, '2021-04-14 16:20:38', 'SALE/POS2021/04/0034', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '37.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '37.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '37.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eb8cf40e5b19074d3196b2c4bd5089df9eb038ae8420d340d9a47a79be4c212c', NULL, NULL, NULL, NULL, 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 (35, '2021-04-14 18:48:14', 'SALE/POS2021/04/0035', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '42.7600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '42.7600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '42.7600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '56123ba396416cd4de1da7473da3c4976dabc102324c4c23bd16de98d65d75e3', NULL, NULL, NULL, NULL, 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, '2021-04-14 19:10:46', 'SALE/POS2021/04/0036', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '20.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '20.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fcdda2990ac05da55aeac6f76a675197ef61ee5c833fa49243092f87cf8511e1', NULL, NULL, NULL, NULL, 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, '2021-04-14 20:17:49', 'SALE/POS2021/04/0037', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '22.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '22.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c01226d78aaea6114012794b144d8c1586a511da5dadd45c32f9011b112be63', NULL, NULL, NULL, NULL, 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 (38, '2021-04-14 20:21:11', 'SALE/POS2021/04/0038', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '46.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '46.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 7, 1, '46.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '44f0ad892acbb735a1f7665969798a0a5cd1fc0d3244c310c0e7613d852d47c8', NULL, NULL, NULL, NULL, 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, '2021-04-14 20:38:30', 'SALE/POS2021/04/0039', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '13.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c119755829730fc9d0af3fc387dbdc68530e1d8edace103d59b67db15edbb6e1', NULL, NULL, NULL, NULL, 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, '2021-04-14 20:39:35', 'SALE/POS2021/04/0040', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '10.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9e8fef3ff8669e44ba41b19c07e6a6cc9754e958d69336558594480d927420e8', NULL, NULL, NULL, NULL, 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, '2021-04-14 21:33:54', 'SALE/POS2021/04/0041', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '20.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '20.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e9306a4801ecc312ba99f96487343d4795d0e0dde1b713c3a3ccf49b1341cc36', NULL, NULL, NULL, NULL, 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, '2021-04-14 21:44:17', 'SALE/POS2021/04/0042', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '49.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '49.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '49.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '036bf53e48135c8e735fe51c0093486ac504e6018732613228fb17961e4ff7a8', NULL, NULL, NULL, NULL, 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, '2021-04-15 11:22:37', 'SALE/POS2021/04/0043', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '7.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '7.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '80f69163ab0e08d7645478eced97ace7c82fb16bc56357f00f72bedcb134b0f3', NULL, NULL, NULL, NULL, 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, '2021-04-15 12:14:45', 'SALE/POS2021/04/0044', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '200.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 55, 1, '200.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '471a09ee031723639134ae0595ac549df3531e504a8340c41a7717ea42f311df', NULL, NULL, NULL, NULL, 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, '2021-04-15 15:48:25', 'SALE/POS2021/04/0045', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '66.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '66.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 20, 1, '66.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '109b49c61e0aad6c9e1a1729db68cec889637146951523d9ff69a2bddb05f634', NULL, NULL, NULL, NULL, 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, '2021-04-15 15:55:38', 'SALE/POS2021/04/0046', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '8.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '8.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e60b4fac565f2ce99a5b06f6e9369966a2bc728a99f627f3fee4fa0a9f92a5df', NULL, NULL, NULL, NULL, 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, '2021-04-15 17:11:51', 'SALE/POS2021/04/0047', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '33.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '33.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '33.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bbf5d6266d35909e39335d234ce5ed0accd6357fe013f5700a10a1016777a8f1', NULL, NULL, NULL, NULL, 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, '2021-04-15 17:54:32', 'SALE/POS2021/04/0048', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '23.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '23.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '23.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bc7d79a98d940c7b4746ff98b395eb9e696fb89638518e1930f1947d43c8d17c', NULL, NULL, NULL, NULL, 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, '2021-04-15 17:57:45', 'SALE/POS2021/04/0049', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '13.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '13.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '22564b6af5143f5d10554ee4b39eef00374343886c871dba6794ffcb4339916b', NULL, NULL, NULL, NULL, 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, '2021-04-15 18:05:57', 'SALE/POS2021/04/0050', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '73.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '73.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 6, 1, '73.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '101953132772587066d9d813bc64040c0f1a04d475ded893bd4068e61ea741c2', NULL, NULL, NULL, NULL, 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, '2021-04-15 19:23:59', 'SALE/POS2021/04/0051', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4beae71f65248ee636b43fa3aa7b3801e8eca90a3768a3f758ccc69918c37c7', NULL, NULL, NULL, NULL, 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, '2021-04-15 19:47:03', 'SALE/POS2021/04/0052', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '46.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '46.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 16, 1, '46.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7918db75b71e2d195e679c8b653d59c0b359eb568de1644bad8716400eee413e', NULL, NULL, NULL, NULL, 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, '2021-04-15 20:20:31', 'SALE/POS2021/04/0053', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '24.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '24.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '16a5c174b4f286cb7cd4caeca81e8da3f85c1a798704738360c1d9ed837717ad', NULL, NULL, NULL, NULL, 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, '2021-04-15 20:32:23', 'SALE/POS2021/04/0054', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '37.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '37.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 6, 1, '37.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '41969ad2b785025589a72e92f67912b2f39974061d1283069eff1a3e83c9a8c3', NULL, NULL, NULL, NULL, 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, '2021-04-15 20:55:07', 'SALE/POS2021/04/0055', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '67.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '67.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '67.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d477806289d8109c5203f5c80987a208591ebed0fff24f20fef99c29f235190', NULL, NULL, NULL, NULL, 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, '2021-04-15 20:59:29', 'SALE/POS2021/04/0056', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a4a9b126ccff0a5c7843af1bbc6961b87c334529b2ba963bbc1389ee56694fb3', NULL, NULL, NULL, NULL, 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, '2021-04-16 10:44:26', 'SALE/POS2021/04/0057', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '75.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '75.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '75.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'de7c93c84d15eeb99eba27ff5e53f3ba76cd4bfd25803eeb46e74732960d4f2c', NULL, NULL, NULL, NULL, 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, '2021-04-16 10:46:22', 'SALE/POS2021/04/0058', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '141.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '141.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '141.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e4e6eedc28d2b2b383e407070f32223e979977322744747b3f05aabc2dca4b53', NULL, NULL, NULL, NULL, 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, '2021-04-16 10:56:32', 'SALE/POS2021/04/0059', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '56.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '56.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '56.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '89e48ae3ced86ef675f33f5f2c1c2faa7250d16aa9b105e68ab0f88d78ae5aaf', NULL, NULL, NULL, NULL, 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, '2021-04-16 11:05:32', 'SALE/POS2021/04/0060', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b1959a25ae469739aad3b7a8ee921282d6122064a631bd53a7ea4e9354c1a27c', NULL, NULL, NULL, NULL, 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, '2021-04-16 11:59:37', 'SALE/POS2021/04/0061', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '443a690ce5c845e5a153c68e81124c4e43a4fbf9fa39f5b4f574ceb1ed9c61fa', NULL, NULL, NULL, NULL, 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, '2021-04-16 12:25:37', 'SALE/POS2021/04/0062', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '8.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '8.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f28ac522c6ff79a8db834436dcf50ebe1589fff7a31ce2375beb494febebc9ec', NULL, NULL, NULL, NULL, 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, '2021-04-16 16:21:47', 'SALE/POS2021/04/0063', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '14.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '14.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '14.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8fa87e9473c2b8936c6701505522b050df8cd40fb1c569331603fa705565a340', NULL, NULL, NULL, NULL, 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, '2021-04-16 17:52:08', 'SALE/POS2021/04/0064', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '24.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '24.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b348f389e764f2287f4fddb906eda9be63fbabd26184c9b4f86b4cf32f9fbbd1', NULL, NULL, NULL, NULL, 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, '2021-04-16 18:08:35', 'SALE/POS2021/04/0065', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '22.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '22.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3d0d3de4b3228e8caa22291be8f37819ed40ff45db121def77d0d789f61e8dd5', NULL, NULL, NULL, NULL, 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, '2021-04-16 18:11:35', 'SALE/POS2021/04/0066', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '14.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '14.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '14.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c89079182c9bf679c3f87bdd4fe74299db291c8ee05cbc40d088974f210ffa83', NULL, NULL, NULL, NULL, 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, '2021-04-16 18:27:51', 'SALE/POS2021/04/0067', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '6.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '6.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01e906b92a2c4e0c0a5c42cdc09c0c1c31698fc260884d4b9e1098c1e634b84e', NULL, NULL, NULL, NULL, 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, '2021-04-16 18:31:55', 'SALE/POS2021/04/0068', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '12.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '12.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c5169dec943a93f688e22b1619ac08ac94bd68da6a7d6b4aa2dc086bd6afbb3', NULL, NULL, NULL, NULL, 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, '2021-04-16 20:25:02', 'SALE/POS2021/04/0069', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '98.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '98.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 16, 1, '98.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6ed2752b469a0514ffecfc16a2279038d0f5e7f229247f33337dc3be4013d8a', NULL, NULL, NULL, NULL, 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, '2021-04-16 20:29:12', 'SALE/POS2021/04/0070', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '28.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '28.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'edaf404ace1ececc580718cec725f81147c4f35d3f4ab808d4712e390414ddc6', NULL, NULL, NULL, NULL, 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, '2021-04-16 21:56:51', 'SALE/POS2021/04/0071', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b356920d91ad9cd643b5a6277b6b5a2057cdb5b536ae3fd92f7d4d4f5b3dde7b', NULL, NULL, NULL, NULL, 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, '2021-04-16 22:17:39', 'SALE/POS2021/04/0072', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '116.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '116.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '116.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e162b0a9f2525d0f3023f358515831d9107c3b340019a9ad2f6982d3c2d940a8', NULL, NULL, NULL, NULL, 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, '2021-04-17 16:01:38', 'SALE/POS2021/04/0073', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '387.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '387.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 53, 1, '387.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f9c4c6698ce96322aeb2f810eaba0871650035d6f4d5f885d405db2b66e574d5', NULL, NULL, NULL, NULL, 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, '2021-04-17 18:06:05', 'SALE/POS2021/04/0074', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '200.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '200.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd5a67a4e99489c90a995b570f1cc3f83845518b512a1c6a6d3eda34b377afdbc', NULL, NULL, NULL, NULL, 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, '2021-04-17 19:23:54', 'SALE/POS2021/04/0075', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '181.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '181.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 12, 1, '181.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f79d5592709c876b5edaa21c242dbd1f46842d765276f2d28bd1bba7567a3e20', NULL, NULL, NULL, NULL, 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, '2021-04-17 21:44:37', 'SALE/POS2021/04/0076', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '36.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '36.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 14, 1, '36.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5cde93a7bc427d71a5ca4cd9347e369997835a74be1360061e9554e2118593c8', NULL, NULL, NULL, NULL, 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, '2021-04-17 21:53:09', 'SALE/POS2021/04/0077', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '24.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '24.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '282e62db05f75d2bbbfcc7f95866362c8820d2a082cac39ca799a3a39c03d58c', NULL, NULL, NULL, NULL, 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, '2021-04-18 18:03:02', 'SALE/POS2021/04/0078', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '118.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '118.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 21, 1, '118.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '42d9fae6821672a7c5742f51bf26ea5a5efd33b800c9b5c7cfaa23be4032409b', NULL, NULL, NULL, NULL, 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, '2021-04-18 18:49:51', 'SALE/POS2021/04/0079', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '19.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '19.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '55394f5308418e2a8f459f9e63d6afda965a42670eadc48f6b54a579e071a36b', NULL, NULL, NULL, NULL, 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, '2021-04-18 18:51:09', 'SALE/POS2021/04/0080', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '8.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '8.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1eff5f0ebf034f84a2d434fbd9d06327ca41be3eea61df6fe7008a8482400ebb', NULL, NULL, NULL, NULL, 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, '2021-04-18 20:21:13', 'SALE/POS2021/04/0081', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '146.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '146.4000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 11, 1, '146.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0b36cecb415135b8a893de592b7cdc47f6143c9408604d6bf394d9d960ed2685', NULL, NULL, NULL, NULL, 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, '2021-04-18 20:50:24', 'SALE/POS2021/04/0082', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '7.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 7, 1, '7.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1bfd15b9963c15f932a67edd5b874d8a0a21874f3603f892d6a8b48c59e988bb', NULL, NULL, NULL, NULL, 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, '2021-04-18 21:31:08', 'SALE/POS2021/04/0083', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5b46aa196addad219721071106f217aad941b37211a30ba0dabda1aa8ab19221', NULL, NULL, NULL, NULL, 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, '2021-04-18 21:32:37', 'SALE/POS2021/04/0084', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '19.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '19.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9fcf250b78100c744ab1c47210516b93c2157f84e8aa1ca91cdfed75ce24e005', NULL, NULL, NULL, NULL, 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, '2021-04-18 22:08:20', 'SALE/POS2021/04/0085', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '78.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '78.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '78.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4af6dfe7c6d4865421bc1b78b6a01818ffc58f6729389c8ea893c8a06a97ff7e', NULL, NULL, NULL, NULL, 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, '2021-04-19 14:55:58', 'SALE/POS2021/04/0086', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '186.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '186.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 24, 1, '186.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ab3d1d4b28510a8a683667bf7f7033761d6899ec8fccfcadf84ee55e65ccfd05', NULL, NULL, NULL, NULL, 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, '2021-04-19 18:37:43', 'SALE/POS2021/04/0087', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '131.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '131.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 12, 1, '131.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'decdb531997cb680d43d88dda28818379fc822845f25a850dd354f4cb8dcd47b', NULL, NULL, NULL, NULL, 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, '2021-04-19 21:11:17', 'SALE/POS2021/04/0088', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '11.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '11.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c0df80caad417a08ecb93fc5a5fc4958d66f0693330b8c012aeb7c45a9418d8', NULL, NULL, NULL, NULL, 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, '2021-04-19 21:25:38', 'SALE/POS2021/04/0089', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '184.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '184.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 24, 1, '184.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '92e8b2230fa808c421ff7ed4565bde209ed16d534c4dff2d5e5cfcc8b30212a4', NULL, NULL, NULL, NULL, 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 (90, '2021-04-20 14:53:18', 'SALE/POS2021/04/0090', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '79.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '79.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 15, 1, '79.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7778047ea1047d7898493c8788f7ad5550c3679180588b3ee9e8ee6628d3abb7', NULL, NULL, NULL, NULL, 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 (91, '2021-04-20 18:11:29', 'SALE/POS2021/04/0091', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '118.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '118.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '118.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '091ccb0493e5f3615d9775b7d49dda9ee12842afc81d3fcaa1353da630523dc2', NULL, NULL, NULL, NULL, 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, '2021-04-20 19:14:23', 'SALE/POS2021/04/0092', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '19.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '19.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0f88a28d8a3f85dcafb3e4367af339fffd801b9f4718136287e803614f9a4481', NULL, NULL, NULL, NULL, 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, '2021-04-20 19:15:28', 'SALE/POS2021/04/0093', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '1.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '1.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a4c9aa1960a4c0e7d0767855ec6f21290f69eb56e94686289acbc4597343322f', NULL, NULL, NULL, NULL, 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 (94, '2021-04-20 20:10:42', 'SALE/POS2021/04/0094', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '279.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '279.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 28, 1, '279.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ce670dca123b138f0d3b9af14bd48f1ddd28b541dbec729110bc0fe82f4d81c0', NULL, NULL, NULL, NULL, 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, '2021-04-20 20:32:12', 'SALE/POS2021/04/0095', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '203.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '203.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '203.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2b848dbc2997fc6585121a44194849f348b50dbed63f8757612e40abc01b9ce3', NULL, NULL, NULL, NULL, 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 (96, '2021-04-20 22:03:44', 'SALE/POS2021/04/0096', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '151.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '151.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 23, 1, '151.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a14cd699bc9b613126258cf077dbad92768127e15aa9b5ebd2856ec9eec441c9', NULL, NULL, NULL, NULL, 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, '2021-04-21 13:20:05', 'SALE/POS2021/04/0097', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '147.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '147.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 39, 1, '147.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2bb20d2ad05c5dec43a17c20ecd556990b9ee391144d8d1fc37516bb6e871919', NULL, NULL, NULL, NULL, 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, '2021-04-21 14:48:46', 'SALE/POS2021/04/0098', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '49.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '49.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '49.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dd33ebad7cc107f1b57b8be633e7004b79dd377697e18259bcc8662c4357d4d7', NULL, NULL, NULL, NULL, 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, '2021-04-22 08:12:06', 'SALE/POS2021/04/0099', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '8.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '8.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd3fa545c3e7c3545a671094b53e58d4586d4744830eb462fd3bf97ee9a063ae7', NULL, NULL, NULL, NULL, 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 (118, '2021-04-22 13:22:48', 'SALE/POS2021/04/0100', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '92.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '92.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 15, 1, '92.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ef79da5f1b18ef0785da9ba92c0fadd7d7e8fd435164d622e82ef97fcadef9a8', NULL, NULL, NULL, NULL, 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, '2021-04-22 14:38:11', 'SALE/POS2021/04/0101', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '7.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '7.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6eeb73841db28b375e83409ef724c1b8ab16ba92d5801121aca3c1740823e527', NULL, NULL, NULL, NULL, 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, '2021-04-22 17:27:49', 'SALE/POS2021/04/0102', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '15.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '15.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '97cff5694c9c6a8679211c52ab013a09690c4af3d78e4f0159f45af9847e73df', NULL, NULL, NULL, NULL, 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, '2021-04-22 19:48:13', 'SALE/POS2021/04/0103', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '2.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '2.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f12e6261380061141a7070321180e9bbb96d210a8557e1045968492f5f1812d3', NULL, NULL, NULL, NULL, 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 (124, '2021-04-22 19:58:35', 'SALE/POS2021/04/0104', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '339.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '339.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 29, 1, '339.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10812a9a04e4cbe83d2deadcce8e0ab336c11613fdee17d96fa02b7087ee5a4b', NULL, NULL, NULL, NULL, 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, '2021-04-22 21:29:03', 'SALE/POS2021/04/0105', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '204.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '204.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 7, 1, '204.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2379e403f052ee656c35547ca4a638f8445288f060f90e816d7b85c25172eba3', NULL, NULL, NULL, NULL, 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, '2021-04-22 21:34:46', 'SALE/POS2021/04/0106', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '29.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '29.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '29.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ecae831260f938ad25fcf6e3c76aae30ca6ee9b8a47af2f7ad224c136688ee6b', NULL, NULL, NULL, NULL, 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, '2021-04-22 21:40:25', 'SALE/POS2021/04/0107', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '6.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '6.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8267bfb0a6d018017acf51fda3aafcea114ed68c88593d2329155a32a36f2376', NULL, NULL, NULL, NULL, 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, '2021-04-23 09:16:21', 'SALE/POS2021/04/0108', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '161.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '161.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '161.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '778d4c2824866feece3d052b344c88df8a15826fe80763a5fc67e1fff62f6adb', NULL, NULL, NULL, NULL, 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, '2021-04-23 09:48:40', 'SALE/POS2021/04/0109', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '12.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '12.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '26cfea97f9f0fdf40ac258b2724c4db8855c0cff20f46f2103ce1f29b1c17937', NULL, NULL, NULL, NULL, 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, '2021-04-23 11:44:05', 'SALE/POS2021/04/0110', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '28.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '28.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4b22f85e53fb95d282cb70f9cb41e84b5f4ab5cafea674a57c40fef03ba0d7e', NULL, NULL, NULL, NULL, 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, '2021-04-23 15:16:02', 'SALE/POS2021/04/0111', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '24.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '24.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6bc42e516a45f08bdf65af415b7d16ce1b42b7fc26fee9818c5eebba6bfb1f1f', NULL, NULL, NULL, NULL, 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, '2021-04-23 16:50:21', 'SALE/POS2021/04/0112', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '38.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '38.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '38.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ebfabd9564cbaf6498cb2b2eb7d3c19a6daa382a5f40e241c7c91e0723299bb8', NULL, NULL, NULL, NULL, 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, '2021-04-23 17:40:26', 'SALE/POS2021/04/0113', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '217.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '217.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 7, 1, '217.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '58f8698c908c5e9f4e16ce1c83e558730e00d9fd9338f87e027371d476625e5b', NULL, NULL, NULL, NULL, 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, '2021-04-23 20:44:13', 'SALE/POS2021/04/0114', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '199.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '199.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 26, 1, '199.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd2c1dcff6590fc93f725ee658b00978ad8a31f50bd4f8c7ddb8f3da14280f5c5', NULL, NULL, NULL, NULL, 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, '2021-04-23 21:11:47', 'SALE/POS2021/04/0115', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '129.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '129.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 13, 1, '129.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6cb014189312804eec19c976d599a1c717d6a3f2ee2758eead18d6d38921b426', NULL, NULL, NULL, NULL, 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, '2021-04-23 21:52:49', 'SALE/POS2021/04/0116', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '117.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '117.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '117.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3aa5fd2f6a1f3f5517354c5dc1b4e3f161f64766da47f7f4ca963c168313fbab', NULL, NULL, NULL, NULL, 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, '2021-04-23 21:59:59', 'SALE/POS2021/04/0117', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '11.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '11.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e588afe9cd998e8ed6540e95bdcccd4e5394555b218744e7f1b894de103e01e7', NULL, NULL, NULL, NULL, 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, '2021-04-24 10:33:21', 'SALE/POS2021/04/0118', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '460.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '460.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 33, 1, '460.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0a1c9bda58a742459c3c674d6c7108025a0f2ba03500cb0cebe9d913bf7b7769', NULL, NULL, NULL, NULL, 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 (139, '2021-04-24 11:49:53', 'SALE/POS2021/04/0119', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '63.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '63.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '63.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e716d16d3a4480096a6e9232be917e60bdcd657f3a14446ee751206422dea8e5', NULL, NULL, NULL, NULL, 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, '2021-04-24 12:31:20', 'SALE/POS2021/04/0120', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '52.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '52.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 6, 1, '52.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '79d0ded9f09cea9abe35f16d4f4be6dd65b6ca599126d0e3cd9d3608914710e6', NULL, NULL, NULL, NULL, 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, '2021-04-24 15:16:05', 'SALE/POS2021/04/0121', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '67.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '67.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '67.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7182530e13a81bf1aecc07c9e998028194a2a8b116f5c25678da118f9790a3b6', NULL, NULL, NULL, NULL, 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, '2021-04-24 15:25:39', 'SALE/POS2021/04/0122', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'afa4952e88518bd1a71f892d0272a9074ce6b00d9dcfc7e70241581088b97eba', NULL, NULL, NULL, NULL, 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, '2021-04-24 16:45:34', 'SALE/POS2021/04/0123', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '39.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '39.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 11, 1, '39.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4a392314e514c8c2d6be7efe08fabf0681d275a010cce15bbf8678087f41fc13', NULL, NULL, NULL, NULL, 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, '2021-04-24 19:08:48', 'SALE/POS2021/04/0124', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '216.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '216.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 27, 1, '216.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c9c402288d31a9abf878fa6691e8394535d74238f73045049368ae6fdc60bb23', NULL, NULL, NULL, NULL, 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, '2021-04-24 22:04:58', 'SALE/POS2021/04/0125', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '170.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '170.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 27, 1, '170.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1cb751a0549bb5818bf417d4b464b54be75d80a49740e3734eee7e2bfc075d47', NULL, NULL, NULL, NULL, 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, '2021-04-25 19:04:33', 'SALE/POS2021/04/0126', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '312.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '312.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 49, 1, '312.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e851907cadc44c98be83f7c14e6bb22de84f01e230c4b2b4272f738dcdb56cd', NULL, NULL, NULL, NULL, 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, '2021-04-25 20:02:18', 'SALE/POS2021/04/0127', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '12.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '12.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c201428e9f06c94ff4b7b812e374046be52d1fd0beac2538cf996967911b9316', NULL, NULL, NULL, NULL, 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, '2021-04-25 20:05:24', 'SALE/POS2021/04/0128', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '1.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '1.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0269dd286c8018ed68ce1562f8b942d233f1afb03d6f4b5e5ffb1dbc34a4621c', NULL, NULL, NULL, NULL, 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, '2021-04-25 20:08:39', 'SALE/POS2021/04/0129', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '18.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '18.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f96bce91182e9cc224e1983159315d7fb3bea5c5e56fed32b82d4f9f4f777bf1', NULL, NULL, NULL, NULL, 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, '2021-04-25 20:09:20', 'SALE/POS2021/04/0130', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '18.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '18.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'be7aecfb77ad8630207533c5fdd727125b3953d28e0d518fc7555953936b15ed', NULL, NULL, NULL, NULL, 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, '2021-04-25 20:09:43', 'SALE/POS2021/04/0131', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '9.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '9.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '06a89ca1eb4239103bbde2019f26cd5da48214f5c6b6621a6c2acdf3bd8e3701', NULL, NULL, NULL, NULL, 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, '2021-04-25 20:10:34', 'SALE/POS2021/04/0132', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '4.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '4.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ad74756a67b47375d7aa1b28702c0205d106e77cb14e0b60816d1b9dd2253350', NULL, NULL, NULL, NULL, 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, '2021-04-25 20:10:57', 'SALE/POS2021/04/0133', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '8.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '8.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '546e6f23691c0e0ae7bf2ec4146306e2930c8386b2f7e86c6869dfed21640c8b', NULL, NULL, NULL, NULL, 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, '2021-04-25 20:11:16', 'SALE/POS2021/04/0134', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '18.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '18.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b8ba7ec419a4d66c189a547a707c2b7cdcb9a9680981c67c89876b85f320d280', NULL, NULL, NULL, NULL, 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, '2021-04-25 20:11:36', 'SALE/POS2021/04/0135', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '6.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '6.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '87597e0298b5345fe909a3a5d7f008214227c415a516016a038745090ae89d6c', NULL, NULL, NULL, NULL, 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, '2021-04-25 20:11:53', 'SALE/POS2021/04/0136', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '9.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '9.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a877583a904178af60db189505d82d6ff59911396f90659ef6c0d44487b14961', NULL, NULL, NULL, NULL, 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, '2021-04-25 20:12:39', 'SALE/POS2021/04/0137', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '36.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '36.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '36.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b5bef2b688851aa1c20ed8f404f7c229c314e0a6a89dec5aebd8bcb1f7d64c4e', NULL, NULL, NULL, NULL, 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, '2021-04-25 20:17:34', 'SALE/POS2021/04/0138', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '13.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '13.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eb86542420a7378c5aba8a027e31948e46843ee338c54a1c413ae46327886a23', NULL, NULL, NULL, NULL, 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, '2021-04-25 20:26:43', 'SALE/POS2021/04/0139', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '12.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '12.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '44419efcecedd7bc45791a1d96928a3f4b6a018129f56528361f3076c28b94a2', NULL, NULL, NULL, NULL, 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, '2021-04-25 20:26:53', 'SALE/POS2021/04/0140', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '12.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '12.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cf9e770a6c809eae26321b90182fba8281b5fc0cc8d0b7e264b8bad5931569d4', NULL, NULL, NULL, NULL, 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, '2021-04-25 20:28:14', 'SALE/POS2021/04/0141', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '30.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '30.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7f297a572b867b994d78ed05debab83fc04655dba07e6eb4742735108ab6c6d3', NULL, NULL, NULL, NULL, 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, '2021-04-25 20:41:18', 'SALE/POS2021/04/0142', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '32.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '32.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '32.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '595ea271b485461d8ed75a0852c053c591c1270d312a46132722fb44375ce16b', NULL, NULL, NULL, NULL, 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-04-25 21:17:33', 'SALE/POS2021/04/0143', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '21.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '21.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '21.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f58d1ed662a17a408b24b33aac838c7e5805b9698296bb606e4ec60c9dbe49b5', NULL, NULL, NULL, NULL, 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-04-25 21:25:43', 'SALE/POS2021/04/0144', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '2.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '2.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ef35727b156ba81823bcaf1a7c8197a23ea1936ad94f644f3218e4ec9b9c0d1', NULL, NULL, NULL, NULL, 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-04-26 15:10:15', 'SALE/POS2021/04/0145', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '105.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '105.9000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 18, 1, '105.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '36454b412799f3af6920695975ab56d28e86f61710d48bb7763f23b73226856e', NULL, NULL, NULL, NULL, 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 (174, '2021-04-26 19:22:15', 'SALE/POS2021/04/0146', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '43.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '43.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '43.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '79a352efdfb8bf69f37d802980083bb5ed5c0c40ccba99075238939b5cdf6547', NULL, NULL, NULL, NULL, 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 (175, '2021-04-26 20:27:22', 'SALE/POS2021/04/0147', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '164.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '164.6800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 24, 1, '164.6800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7746b1f1407773155b9c286e490ecdd4e46d3d0646945feb9e662d46cf67e09a', NULL, NULL, NULL, NULL, 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 (176, '2021-04-26 21:51:42', 'SALE/POS2021/04/0148', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '102.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '102.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '102.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ae9af1251a467636e5b06bf14608e8b7532f112aa89e160f007a23322b91253c', NULL, NULL, NULL, NULL, 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 (177, '2021-04-28 20:26:11', 'SALE/POS2021/04/0149', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '138.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '138.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 22, 1, '138.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60345402e0ad50cf4d28b1d7d87c477c8fdeb8df4b523e37d1dc8cc1370e6cdf', NULL, NULL, NULL, NULL, 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 (178, '2021-04-29 14:31:47', 'SALE/POS2021/04/0150', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '118.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '118.7000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 55, 1, '118.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '48947b02da3dd9ad3fa5efca71cf681bc277353551ee44fb6d04eae12068308f', NULL, NULL, NULL, NULL, 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 (179, '2021-04-29 20:44:48', 'SALE/POS2021/04/0151', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '250.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 23, 1, '250.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0284087a25be02ae07cfe5b770db7d7508f84ffde66960d1ee2409082a9cefaa', NULL, NULL, NULL, NULL, 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 (180, '2021-04-29 21:56:32', 'SALE/POS2021/04/0152', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '77.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '77.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 15, 1, '77.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f1d71cd1c355f35fbdf16b017a8cd40bc92f41cfc1be1e730cd9e8f6cd4cc250', NULL, NULL, NULL, NULL, 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 (181, '2021-04-30 13:49:13', 'SALE/POS2021/04/0153', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '122.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '122.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '122.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '557725d29cf00b567b84f443863f4f543f5eb507f7dc3dd3340e36c70afe4b46', NULL, NULL, NULL, NULL, 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 (182, '2021-04-30 14:14:13', 'SALE/POS2021/04/0154', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '24.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '24.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c1670f0c7147a21d86d796adcf601a693a91a401118d9ff2242b5b9fd403e1d2', NULL, NULL, NULL, NULL, 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 (183, '2021-04-30 16:21:08', 'SALE/POS2021/04/0155', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '20.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '20.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd88f3f7031337e53b6c75aab2f38dfc984f39bfbf8a4300b70afe57465752de0', NULL, NULL, NULL, NULL, 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 (184, '2021-04-30 19:19:05', 'SALE/POS2021/04/0156', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '325.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '325.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 41, 1, '325.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01c8f6099ba6a1e836cc39e24b3241676d1c790260091701e8a019e7dd55473e', NULL, NULL, NULL, NULL, 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 (185, '2021-04-30 21:47:40', 'SALE/POS2021/04/0157', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '433.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '433.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 42, 1, '433.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c13e977abc308ca36a01c2cd816a3904f32584b8cd4d4bc611f95e39ba0884c', NULL, NULL, NULL, NULL, 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 (186, '2021-05-01 10:57:11', 'SALE/POS2021/05/0158', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '138.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '138.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 23, 1, '138.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '95d0f57dcdaf14df169dc1e130e522e4a36de50e0530094a3acd082f217b52fa', NULL, NULL, NULL, NULL, 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 (187, '2021-05-01 14:26:51', 'SALE/POS2021/05/0159', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '91eff701313765fac5a9ba7af9dc572331d63125ff8555a2e41add3b598963b7', NULL, NULL, NULL, NULL, 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 (188, '2021-05-01 15:33:33', 'SALE/POS2021/05/0160', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '20.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '20.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ce0ae492d55005eb69416c2b1c2d696be53d916edcc4aa43eaab54996a2d7750', NULL, NULL, NULL, NULL, 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 (189, '2021-05-01 15:55:55', 'SALE/POS2021/05/0161', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '8.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '8.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '360fb619c1d56f019c98cb8d0f21ea170cc8d68609e8d62458209535b44c3477', NULL, NULL, NULL, NULL, 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 (190, '2021-05-01 16:36:08', 'SALE/POS2021/05/0162', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '2.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '2.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '852cda44e3029c9440fa4dd502172a710b8587a009b4270c5be982ffff05f349', NULL, NULL, NULL, NULL, 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 (191, '2021-05-01 16:47:31', 'SALE/POS2021/05/0163', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '33.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '33.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '33.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '572773654d2ff8eec7c047097672589d8f1bc2fc0964e831acf800d5c4d9ee17', NULL, NULL, NULL, NULL, 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 (192, '2021-05-01 20:38:37', 'SALE/POS2021/05/0164', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '113.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '113.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 18, 1, '113.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ba3d97143451cc5ff24ad8481ddbc75b8ee2736ae3630e351c3f0db14fab5f3', NULL, NULL, NULL, NULL, 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 (193, '2021-05-01 21:37:46', 'SALE/POS2021/05/0165', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '17.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '17.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c32ea2712faaebbf7b3f5a610aa8520863c5a31f812bc5d1752c06243b3dbd3', NULL, NULL, NULL, NULL, 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 (194, '2021-05-01 21:41:51', 'SALE/POS2021/05/0166', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '53.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '53.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 9, 1, '53.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3040760f47a8175a20df4a178c581aec1c5ff00694aff2cfec1a311d8644e6d7', NULL, NULL, NULL, NULL, 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 (195, '2021-05-01 22:12:04', 'SALE/POS2021/05/0167', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '28.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '28.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2781127b15361958470f6692eb286a6917e163600ae8427d68425476f6955f3b', NULL, NULL, NULL, NULL, 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 (196, '2021-05-02 20:03:16', 'SALE/POS2021/05/0168', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '223.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '223.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 17, 1, '223.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1b09847ae4a64cee0d4d042ddb044f8073c0f7d76db8a35b1210d5b93abcbf13', NULL, NULL, NULL, NULL, 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 (197, '2021-05-02 21:51:51', 'SALE/POS2021/05/0169', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '25.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '25.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 12, 1, '25.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1677a9f1c68a79800f6eae745228c93da8cd510e53405b828023dcf754fc270a', NULL, NULL, NULL, NULL, 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 (198, '2021-05-03 14:43:40', 'SALE/POS2021/05/0170', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '289.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '289.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 27, 1, '289.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '96e8d84b17e3825d11a9741e244b9b268e646588ee458820a227ff2d3f848ce4', NULL, NULL, NULL, NULL, 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 (199, '2021-05-03 15:17:18', 'SALE/POS2021/05/0171', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '42.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '42.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '42.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '894b9859fc44fb9b3b495f0fb44405c527d25103ebd5f3eca56411d4e41cefe3', NULL, NULL, NULL, NULL, 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 (200, '2021-05-03 16:57:49', 'SALE/POS2021/05/0172', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '7.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '7.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9920b93b0b653ceaddd5e37a0086250e766496bf84d8dd58437c6da1ed235ac5', NULL, NULL, NULL, NULL, 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 (201, '2021-05-03 17:15:15', 'SALE/POS2021/05/0173', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '43.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '43.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '43.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '126e4ddf21dcdb14d0a386739d2f7cf3d354995aaa2f50ec98f986753e5de035', NULL, NULL, NULL, NULL, 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 (202, '2021-05-04 14:44:16', 'SALE/POS2021/05/0174', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '312.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '312.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 28, 1, '312.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f8934ed937c9d365b615b442f82169e8ef0692adccdefb66ade61fdc0558ad67', NULL, NULL, NULL, NULL, 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 (203, '2021-05-04 18:38:07', 'SALE/POS2021/05/0175', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '156.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '156.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 21, 1, '156.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b62ee63ee47a591e4a55484a3b629a9bcb99896b12807dde1992d6b01bc3a224', NULL, NULL, NULL, NULL, 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 (204, '2021-05-05 15:01:52', 'SALE/POS2021/05/0176', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '376.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '376.9000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 49, 1, '376.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec598c51a335bbfa87a65a9cf38abeecaa3c1a0f0c70e10130c30b3dc92ba25d', NULL, NULL, NULL, NULL, 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 (205, '2021-05-05 19:30:38', 'SALE/POS2021/05/0177', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '358.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '358.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 35, 1, '358.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec65afb87cba44ca02d45fae9c2d0e49dffbcc18ebb285e233aad72525f54160', NULL, NULL, NULL, NULL, 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 (206, '2021-05-05 20:53:31', 'SALE/POS2021/05/0178', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '144.2500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '144.2500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 36, 1, '144.2500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1375ae89fe32ba69c0ca9670193301019475c9f517d5a66348ff1f29c702f199', NULL, NULL, NULL, NULL, 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 (207, '2021-05-05 21:32:01', 'SALE/POS2021/05/0179', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '68.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '68.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 8, 1, '68.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '69eba6e69550e9245d8b851e44306c653642ac51f20512743feded2fad107619', NULL, NULL, NULL, NULL, 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 (208, '2021-05-05 21:56:25', 'SALE/POS2021/05/0180', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '75.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '75.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '75.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '17274a9ce7d1a71b1c3b7567fab86ba3f825ba6c13fd244735212e97fc656bc4', NULL, NULL, NULL, NULL, 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 (209, '2021-05-06 14:12:22', 'SALE/POS2021/05/0181', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '180.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '180.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 14, 1, '180.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e75e7c6704bf98f5c194a273f0a9bc08591d7123e0d2c0f26036dd02e477e81a', NULL, NULL, NULL, NULL, 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 (210, '2021-05-06 15:19:10', 'SALE/POS2021/05/0182', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '82.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '82.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 7, 1, '82.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f00ccd3d0a44051690549efbcd02faf9fd4888b587c51b8920672f2367aae6fd', NULL, NULL, NULL, NULL, 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 (211, '2021-05-06 19:24:48', 'SALE/POS2021/05/0183', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '394.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '394.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 50, 1, '394.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e827e5fa8a02ab3b98f9ae110d91965bc1950adcfff1666b5955f82f7e1f1a01', NULL, NULL, NULL, NULL, 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 (212, '2021-05-07 16:40:05', 'SALE/POS2021/05/0184', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '78.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '78.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '78.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1b8ef4afca4ff9abf4de28cc2db47e65af5f92c7f64c88599cbc6ee38f5d5bb3', NULL, NULL, NULL, NULL, 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 (213, '2021-05-07 19:57:48', 'SALE/POS2021/05/0185', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '557.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '557.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 47, 1, '557.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '38166282879c13bb1303dd5ef6b395517a7fa6888b2f706109aad7e899247d01', NULL, NULL, NULL, NULL, 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 (214, '2021-05-07 21:33:36', 'SALE/POS2021/05/0186', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '64.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '64.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '64.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cca85f11bb53234cd7fe63b39316f80c1be8104ccb16a2a4c69c5dff15cd19dc', NULL, NULL, NULL, NULL, 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 (215, '2021-05-07 21:51:39', 'SALE/POS2021/05/0187', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '51.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '51.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '51.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8fed287a994d8b9d5a5a086f77a626f227459362b6026748025ae1d1b0fa2795', NULL, NULL, NULL, NULL, 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 (216, '2021-05-08 14:32:01', 'SALE/POS2021/05/0188', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '65.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '65.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 12, 1, '65.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b1698f6d59f2cb57d91b97403ca38903a85cb76af0cfa9edfce6a9f6a002590b', NULL, NULL, NULL, NULL, 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 (217, '2021-05-08 15:33:26', 'SALE/POS2021/05/0189', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '23.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '23.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '23.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4a383fba5fe0406f3289683e9dd0ddd8780d0db09a466856508372e8002e044', NULL, NULL, NULL, NULL, 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 (218, '2021-05-08 19:52:36', 'SALE/POS2021/05/0190', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '314.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '314.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 46, 1, '314.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed0d8e7626630370327e6431cddef7943e8e2376f5e6e1644e17b0029242f30f', NULL, NULL, NULL, NULL, 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 (219, '2021-05-08 21:10:14', 'SALE/POS2021/05/0191', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '101.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '101.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 15, 1, '101.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '294376da1d08bcc5555a69dee77e57f481cbfb108173cf43a25c4fad4a4c2aec', NULL, NULL, NULL, NULL, 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 (220, '2021-05-08 21:16:55', 'SALE/POS2021/05/0192', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '32521728f4fac04c70ba9bbdf2ecd78035108e55bfb4d5afcc8a0b0220cf25e2', NULL, NULL, NULL, NULL, 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 (221, '2021-05-08 22:14:14', 'SALE/POS2021/05/0193', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '113.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '113.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 9, 1, '113.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bb9e9c36672659abb0e609a845a3fb476ab02bbf42eb2a6a8ab819b0dde17ae8', NULL, NULL, NULL, NULL, 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 (222, '2021-05-09 20:41:43', 'SALE/POS2021/05/0194', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '363.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '363.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 43, 1, '363.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b1d1d6474dc1a26a7cd813f335e1f0103f26e453744393620cf3d01ed4d0aa7e', NULL, NULL, NULL, NULL, 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 (223, '2021-05-09 20:44:52', 'SALE/POS2021/05/0195', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '23.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '23.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '23.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '86e96458c1c53129a272f778d01f8ec8d7b5af1379d485da63dd8468ffd5e8fe', NULL, NULL, NULL, NULL, 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 (224, '2021-05-09 21:30:59', 'SALE/POS2021/05/0196', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '21.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '21.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 16, 1, '21.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd1ac271f80bf777d831f4fd986d8c63b1d7c14c9089e7271c1720b095db597f5', NULL, NULL, NULL, NULL, 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 (225, '2021-05-09 21:38:14', 'SALE/POS2021/05/0197', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '37.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '37.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '37.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ece84ce882a228455440671f0f97913d0eee93d72b501eb0d6d079fc18ea8ee2', NULL, NULL, NULL, NULL, 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 (226, '2021-05-09 21:58:36', 'SALE/POS2021/05/0198', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '20.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '20.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '82c031052c45cc30afe1235546af54f40f52de3ea703e5c693d7a5af01b28f74', NULL, NULL, NULL, NULL, 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 (227, '2021-05-10 14:01:30', 'SALE/POS2021/05/0199', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '354.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '354.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 34, 1, '354.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8880f3878c2de0cd569ecfd3ed9640cd257a1af90c9f22385e227542d69aeefd', NULL, NULL, NULL, NULL, 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 (228, '2021-05-10 14:03:00', 'SALE/POS2021/05/0200', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '354.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '354.3000', 'completed', 'paid', 0, NULL, 7, 3, '2021-05-13 20:42:19', 34, 1, '354.3000', 252, '0.0000', '0', 'SR2021/05/0001', NULL, '-354.3000', '0.0000', NULL, 0, 0, NULL, NULL, 'e22f22a08b0ef41de9fdf37714755497e4da60f08978f846eff02e59fce1259e', NULL, NULL, NULL, NULL, 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 (229, '2021-05-10 14:48:04', 'SALE/POS2021/05/0201', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '31.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '31.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '31.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8cad33c197253649cb0d7f381fd5565f6ec242df61877e132f609708db2f9131', NULL, NULL, NULL, NULL, 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 (230, '2021-05-10 15:05:17', 'SALE/POS2021/05/0202', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '15.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '15.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5f08972f3295eba0e81639f57a963fd9a2cfbb565ebfc1d6083fcc2aad2286e1', NULL, NULL, NULL, NULL, 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 (231, '2021-05-10 19:25:32', 'SALE/POS2021/05/0203', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '74.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '74.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 9, 1, '74.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cf547e36783540910e027967e7a1c5dd047c0aa6a7ce7037cf3884b0d302bbc8', NULL, NULL, NULL, NULL, 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 (232, '2021-05-10 19:29:16', 'SALE/POS2021/05/0204', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '156.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '156.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 14, 1, '156.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd960163172d504e131f23b5ecd62614670cb678887c91b49d366d66d173130f', NULL, NULL, NULL, NULL, 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 (233, '2021-05-10 19:36:45', 'SALE/POS2021/05/0205', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '158.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '158.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '158.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '85045de38b4e1654576dfa57121d7d5e29b0106232d2046dd02f9729b3365a7f', NULL, NULL, NULL, NULL, 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 (234, '2021-05-10 20:50:12', 'SALE/POS2021/05/0206', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '116.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '116.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 9, 1, '116.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28c7203e7227e079d9a84eba10946be5f0c88ade95a794e899fc0b6ffd69b02a', NULL, NULL, NULL, NULL, 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 (235, '2021-05-10 21:44:50', 'SALE/POS2021/05/0207', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '37.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '37.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '37.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd146560ff9b7df1e7733089276ef1e5b156e5b30a3b4d2d192928610ebd71e7', NULL, NULL, NULL, NULL, 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 (236, '2021-05-10 21:57:14', 'SALE/POS2021/05/0208', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '9.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '9.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b8e9542739294ff87aa7c48008ebba7d1aa8aff3d2ed6c8d947acdf4e14fd599', NULL, NULL, NULL, NULL, 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 (237, '2021-05-11 13:50:34', 'SALE/POS2021/05/0209', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '221.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '221.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 32, 1, '221.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3799b7ff2ab7fc44d097481d5e296c38fcb6640ef84c8fafd834ee805d4cd45b', NULL, NULL, NULL, NULL, 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 (238, '2021-05-11 14:40:20', 'SALE/POS2021/05/0210', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '97.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '97.5000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 5, 1, '97.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3561931984372294074a6db785f1292bdcfab8d77fb06d2c054575334c2ad021', NULL, NULL, NULL, NULL, 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 (239, '2021-05-11 19:56:35', 'SALE/POS2021/05/0211', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '281.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '281.8000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 30, 1, '281.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c4b042c50a4e353711c054dd1fddb6f6ad9508ffbfd69c5fe8c525cba06bfaa2', NULL, NULL, NULL, NULL, 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 (240, '2021-05-11 21:29:46', 'SALE/POS2021/05/0212', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '65.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '65.5000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 10, 1, '65.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14325c5a87896dc7d4e1063e304d51a79f6b311b1d2ba28645dfea394e047afb', NULL, NULL, NULL, NULL, 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 (241, '2021-05-11 22:03:08', 'SALE/POS2021/05/0213', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '77.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '77.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 4, 1, '77.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'acf8dd9eef45de4c5ed485081b8ed9b0bc89a463439d0107b25fd39e316e2020', NULL, NULL, NULL, NULL, 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 (242, '2021-05-12 14:37:00', 'SALE/POS2021/05/0214', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '200.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.7000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 44, 1, '200.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba66c064d63ee1417c40a015cf600d33e29ab704ea091ef12c67d3bcee961a72', NULL, NULL, NULL, NULL, 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 (243, '2021-05-12 14:52:26', 'SALE/POS2021/05/0215', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '60.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.7000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 11, 1, '60.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e10478f41dfc2bc7f9a968c0d5dad91d18ff7899a07d27fd15c13154395dd43f', NULL, NULL, NULL, NULL, 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 (244, '2021-05-12 18:56:24', 'SALE/POS2021/05/0216', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '126.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '126.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 12, 1, '126.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0fb4661292058446618c624fb0492aebd40c8c1778e12f367706f6f2fdfe6881', NULL, NULL, NULL, NULL, 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 (245, '2021-05-12 21:35:09', 'SALE/POS2021/05/0217', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '342.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '342.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 35, 1, '342.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5d651095d77f76c7c4fe29b0b75d24bf1c82ee3d538e043db818075db716da40', NULL, NULL, NULL, NULL, 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 (246, '2021-05-12 21:53:55', 'SALE/POS2021/05/0218', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '36.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '36.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 17, 1, '36.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc604e0f8453535192ea555356af2140277bdc451ca43ae62f93c18397a557b4', NULL, NULL, NULL, NULL, 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 (247, '2021-05-12 08:36:00', 'STELLA 12/5/2021 SALES OMISSIONS', 21, 'FMMS PHAR ACY', 3, 'Commandos', 4, '', '', '56.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '56.5000', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 7, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '88f6b65a675bf7bdf75c8e0d8783a908b2892c616826bf06417fa52546dbd443', NULL, NULL, NULL, NULL, 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 (248, '2021-05-13 13:57:53', 'SALE/POS2021/05/0219', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '374.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '374.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 39, 1, '374.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2f51b732d0fc0c7081cb44cc228b964812e7131aae321c4d8edf5b1d78f5dfb8', NULL, NULL, NULL, NULL, 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 (249, '2021-05-13 14:37:02', 'SALE/POS2021/05/0220', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '2.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '2.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ee9b07b14954f483f0c9954408845a7744f947732a492f54eb6a30fcc589f4c0', NULL, NULL, NULL, NULL, 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 (250, '2021-05-13 14:38:28', 'SALE/POS2021/05/0221', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '15.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '15.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '30750b421feb0ed567731c67991b308c6693f05776407c1ec4265d32766a03fb', NULL, NULL, NULL, NULL, 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 (251, '2021-05-13 19:56:33', 'SALE/POS2021/05/0222', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '492.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '492.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 83, 1, '492.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c34419393177cf63c8c0fb52593db24dce45a641c421f5cb043c4509a455ff50', NULL, NULL, NULL, NULL, 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 (252, '2021-05-13 20:35:00', 'SALE/POS2021/05/0200', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', NULL, '-354.3000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '-354.3000', 'returned', 'paid', NULL, NULL, 3, NULL, NULL, NULL, 1, '0.0000', NULL, '0.0000', '0', 'SR2021/05/0001', 228, '0.0000', NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 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 (253, '2021-05-13 20:54:27', 'SALE/POS2021/05/0223', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '299.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '299.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 26, 1, '299.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '72e01ccefc99bb72aa5ae39dfd9a5252b4d65c921e667d1cb2f64eaf9bf9669f', NULL, NULL, NULL, NULL, 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 (254, '2021-05-13 21:30:44', 'SALE/POS2021/05/0224', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '-354.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '-354.3000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, -34, 1, '-354.3000', 255, '0.0000', NULL, 'SR2021/05/0001', NULL, '354.3000', '0.0000', NULL, 0, 0, NULL, NULL, 'ee5abc1e34d7dbdb778905ed98add62be1bffe9bf393e92b31b7138ac0efe3a9', NULL, NULL, NULL, NULL, 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 (255, '2021-05-13 21:25:00', 'SALE/POS2021/05/0224', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', NULL, '354.3000', '0.0000', NULL, '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '354.3000', 'returned', 'due', NULL, NULL, 3, NULL, NULL, NULL, 1, '0.0000', NULL, '0.0000', '0', 'SR2021/05/0001', 254, '0.0000', NULL, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 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 (256, '2021-05-13 22:15:36', 'SALE/POS2021/05/0225', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '167.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '167.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 28, 1, '167.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e495b9bb6d9a383136ea48284a56cdf28d0d493b97535f5985554b79ae2d4fb1', NULL, NULL, NULL, NULL, 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 (257, '2021-05-14 16:54:17', 'SALE/POS2021/05/0226', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '197.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '197.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 29, 1, '197.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f884736ddeef908ad38cc7159ffa3fd48440682979a12bb8998f3d382f69ad1e', NULL, NULL, NULL, NULL, 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 (258, '2021-05-14 17:00:24', 'SALE/POS2021/05/0227', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '11.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '11.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4f9d9f042cf29953b9986a23b6b5117870d6508585756e5b02aa39a3b245ce01', NULL, NULL, NULL, NULL, 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 (259, '2021-05-14 19:51:43', 'SALE/POS2021/05/0228', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '223.7500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '223.7500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 35, 1, '223.7500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dd9773496b1e74069e094a0b82afc877979a8f55303aa37cccf4b474cdafad40', NULL, NULL, NULL, NULL, 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 (260, '2021-05-14 20:38:07', 'SALE/POS2021/05/0229', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '44.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '44.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 12, 1, '44.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '23b117c021b3c74cab6dcf025adf60474b2b7d7d0dff287df689210ec6b17647', NULL, NULL, NULL, NULL, 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 (261, '2021-05-14 21:51:11', 'SALE/POS2021/05/0230', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '283.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '283.0000', 'completed', 'due', 0, NULL, 6, NULL, NULL, 18, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a75773b7c8b65157c2bb918b5ea377c7d39d6570ded86f323a22260d2c6896d3', NULL, NULL, NULL, NULL, 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 (262, '2021-05-15 13:23:31', 'SALE/POS2021/05/0231', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '351.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '351.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 24, 1, '351.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '825dba4a09a4930c35cc1029c59f43271bad9d0ab5a76015c51bd0a6874dfdaa', NULL, NULL, NULL, NULL, 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 (263, '2021-05-15 14:24:03', 'SALE/POS2021/05/0232', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '26.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '26.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '26.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '53f424d06571dbc68e534c7d656f28ec3e0e2ebd25510293548a7e823bcd339b', NULL, NULL, NULL, NULL, 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 (264, '2021-05-15 14:55:44', 'SALE/POS2021/05/0233', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '179.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '179.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 15, 1, '179.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '97bf0c58a200c41bfe81870488d54ab7e8f43d26fcffefe691bc3c8c70da0981', NULL, NULL, NULL, NULL, 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 (265, '2021-05-15 15:01:51', 'SALE/POS2021/05/0234', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '20.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '20.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '70d7b9de1ad0e4b430a75102269604e86b5877920696839ad574b80f677b192c', NULL, NULL, NULL, NULL, 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 (266, '2021-05-15 15:20:03', 'SALE/POS2021/05/0235', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '51.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '51.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '51.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '534e1bb2964c2da1438cd61bc804fc039f3003cb9192795aa284b2d58ec44865', NULL, NULL, NULL, NULL, 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 (267, '2021-05-15 16:13:03', 'SALE/POS2021/05/0236', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '3.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '3.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7caad3bca2e20b482529e5be4683713aa001b6a3a908fc5d55040574ae4be92b', NULL, NULL, NULL, NULL, 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 (268, '2021-05-15 18:32:06', 'SALE/POS2021/05/0237', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '478.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '478.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 30, 1, '478.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ad2522e85af77b094f5b5050c01fcf38ec1a757b9c2ff2c45ced4a5e4e1b3629', NULL, NULL, NULL, NULL, 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 (269, '2021-05-15 20:19:13', 'SALE/POS2021/05/0238', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '366.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '366.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 33, 1, '366.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5cbf5a75bdf75f158eae18238a3837af092ada7b2063f959a488eacee2e164de', NULL, NULL, NULL, NULL, 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 (270, '2021-05-15 22:05:17', 'SALE/POS2021/05/0239', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '90.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '90.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '39b823c5f43ff9e10eb2abbc08cf4ea091fc5fc2ad72a61a2d00694fa36ce66b', NULL, NULL, NULL, NULL, 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 (271, '2021-05-16 18:46:17', 'SALE/POS2021/05/0240', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '47.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '47.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0975762b7c6c26dbf78f1941967b4679d4749bfd50c3f88152a4d96ca65fffaf', NULL, NULL, NULL, NULL, 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 (272, '2021-05-16 18:54:33', 'SALE/POS2021/05/0241', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '275.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '275.4000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 31, 1, '275.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b316583872900c9dc4bcf04d2cced3bccb43f60bd05bc145888d7955441b54e0', NULL, NULL, NULL, NULL, 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 (273, '2021-05-16 21:31:56', 'SALE/POS2021/05/0242', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '85.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '85.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 7, 1, '85.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '69ee292002cf009699b9da2bafa2ccbc7524ce70c03ce290a732dd7b85cff5e8', NULL, NULL, NULL, NULL, 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 (274, '2021-05-17 10:53:03', 'SALE/POS2021/05/0243', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '68.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '68.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '68.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '92756f215c329634310379ef9bcdcf220d708f56545935bb90cb2edcbb05225d', NULL, NULL, NULL, NULL, 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 (275, '2021-05-17 15:00:11', 'SALE/POS2021/05/0244', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '221.9500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '221.9500', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 35, 1, '221.9500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4337b0cdd8d66135f460b5ae08cc1026be343499f2b7d719197c8d2cf7efdda5', NULL, NULL, NULL, NULL, 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 (276, '2021-05-17 19:28:08', 'SALE/POS2021/05/0245', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '344.8500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '344.8500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 24, 1, '344.8500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e0ef140181c60ffd287c27cea11d8d3e7ec4867e20a658d55a2d2f7b92872850', NULL, NULL, NULL, NULL, 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 (277, '2021-05-17 19:51:27', 'SALE/POS2021/05/0246', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '277.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '277.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 53, 1, '277.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '36735b1d3cbc9519d4dd48126d29bcd7cfd3fa403ba078de1b6770d044d56d2e', NULL, NULL, NULL, NULL, 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 (278, '2021-05-17 20:24:04', 'SALE/POS2021/05/0247', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '109.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '109.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 8, 1, '109.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec75b328faf91a1596b2737f0e926907cd0f032b91b615822472427296ca1dd9', NULL, NULL, NULL, NULL, 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 (279, '2021-05-17 20:51:41', 'SALE/POS2021/05/0248', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '33.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '33.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '33.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '67ab7318a5f1329478c1afc5be77cbfaa2ee29b7faab123dd11c14976483e55f', NULL, NULL, NULL, NULL, 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 (280, '2021-05-17 20:52:14', 'SALE/POS2021/05/0249', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '4.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '4.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f166627a02df9c5d8d818234f0592c1c06e1e6e72752dc2a2218bc01e24b90fb', NULL, NULL, NULL, NULL, 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 (281, '2021-05-17 20:59:32', 'SALE/POS2021/05/0250', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '52.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '52.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '52.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e74037247c0762c7205852e707181843a01d623531a83b08da281ccf5b53be2d', NULL, NULL, NULL, NULL, 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 (282, '2021-05-17 21:02:54', 'SALE/POS2021/05/0251', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '14.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '14.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '14.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '37b12b3d1b748f3a8e241aa98ccf372cd379a77c69df33cedbf273c698db8209', NULL, NULL, NULL, NULL, 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 (283, '2021-05-17 21:53:19', 'SALE/POS2021/05/0252', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '18.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '18.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f624459eafbed6896202a177d73908f7cbb76ef9d625a0e1fe11edc72a683ea3', NULL, NULL, NULL, NULL, 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 (284, '2021-05-18 15:09:58', 'SALE/POS2021/05/0253', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '214.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '214.2000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 39, 1, '214.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd1662ae3346d2d10eccd43d9efddf55417acf047e80a6117f457954118dcbb2c', NULL, NULL, NULL, NULL, 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 (285, '2021-05-18 15:12:18', 'SALE/POS2021/05/0254', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '1.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '1.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c2e49d51eb50df41404fc2701f9370f6b8c7050ed1692070c1316bda2f8b9b19', NULL, NULL, NULL, NULL, 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 (286, '2021-05-18 16:47:57', 'SALE/POS2021/05/0255', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '12.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '12.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c31ed2fc4fd03104b7cad7d6cb747df6ada52701527311ff718869cb2517702', NULL, NULL, NULL, NULL, 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 (287, '2021-05-18 16:49:31', 'SALE/POS2021/05/0256', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fe76629b261b791c537c0084e649cefa44c4bd137af019727fd64a159cff4e18', NULL, NULL, NULL, NULL, 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 (288, '2021-05-18 17:55:51', 'SALE/POS2021/05/0257', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '240.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '240.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '240.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '04099ed0b7befa616c6060b226a88c4d566e049fa7502a4f399f5cd19f196673', NULL, NULL, NULL, NULL, 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 (289, '2021-05-18 19:18:36', 'SALE/POS2021/05/0258', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '302.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '302.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 41, 1, '302.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4681bbd650be6f01397e6e8c53d956728514c17a9802715b803d1519e3111562', NULL, NULL, NULL, NULL, 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 (290, '2021-05-18 21:11:53', 'SALE/POS2021/05/0259', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '135.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '135.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 19, 1, '135.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fba4e53271d19afc70a39884256c50cacc6b7b9375ed4f67b649eda69499db11', NULL, NULL, NULL, NULL, 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 (291, '2021-05-18 22:15:26', 'SALE/POS2021/05/0260', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '191.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '191.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 11, 1, '191.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01c4e9de76b0fefae878228bcb58842ec6e5cccf65fc9289dfd420cbf97f2bc7', NULL, NULL, NULL, NULL, 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 (292, '2021-05-19 15:05:59', 'SALE/POS2021/05/0261', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '117.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '117.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 11, 1, '117.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c5883912a7d4534bca87907cb548f8803925ec64abab2f0754df9013518588ad', NULL, NULL, NULL, NULL, 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 (293, '2021-05-19 18:42:21', 'SALE/POS2021/05/0262', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '114.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '114.3800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 18, 1, '114.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '35a6ff695193e8f5cd303b05db722d8dac9be18041991e5050dc3bf2742bb441', NULL, NULL, NULL, NULL, 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 (294, '2021-05-19 19:55:34', 'SALE/POS2021/05/0263', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '174.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '174.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '174.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ab15aff9a8a8ef560292912cc196421c3896fcd307b90c48e050b14024cade41', NULL, NULL, NULL, NULL, 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 (295, '2021-05-19 20:03:18', 'SALE/POS2021/05/0264', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '25.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '25.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '25.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76292e33b825106d4bbf8ab6702fb0f83ccf49485d5bc4d48f0078bd37efe6ad', NULL, NULL, NULL, NULL, 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 (296, '2021-05-19 20:10:52', 'SALE/POS2021/05/0265', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0a47c33a07e1d1451a231c56ee968a306362bea0babdd033310ebabae508cb35', NULL, NULL, NULL, NULL, 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 (297, '2021-05-19 21:52:07', 'SALE/POS2021/05/0266', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '41.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '41.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 8, 1, '41.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a6e187ba562cf9141af33d7e97276f4498b7ab62eda568bd26aef33a3e62d87', NULL, NULL, NULL, NULL, 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 (298, '2021-05-19 21:53:00', 'SALE/POS2021/05/0267', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9e8f9469f0147fccc6645003a427d36861d1b11840ff429d4b87519bde38885f', NULL, NULL, NULL, NULL, 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 (299, '2021-05-19 10:02:00', 'STELLA ADD BENDRO 2.5 CRESENT', 21, 'FMMS PHAR ACY', 3, 'Commandos', 2, '', '', '5.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.5000', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 1, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'f2e4d03d706e8cfa145854d77530dcca0381ecc7b3027d3b3d5ba322bb10e9b9', NULL, NULL, NULL, NULL, 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 (300, '2021-05-20 14:17:38', 'SALE/POS2021/05/0268', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '273.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '273.4000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 35, 1, '273.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a8cb502c8deb4bf11632084c30adf6712826cc34e2c53579a57f93c5789928a3', NULL, NULL, NULL, NULL, 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 (301, '2021-05-20 15:07:14', 'SALE/POS2021/05/0269', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '35.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '35.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '35.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd3784358604cd2473ca1e19242f11b0dd5760a8f681c4cd75fc5df3d7dbdb7c2', NULL, NULL, NULL, NULL, 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 (302, '2021-05-20 15:13:29', 'SALE/POS2021/05/0270', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '204.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '204.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '204.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '94e360b1241dc82461fbed9fef1019cea2d14512ab39805fcaef64f54cb28d6c', NULL, NULL, NULL, NULL, 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 (303, '2021-05-20 17:51:13', 'SALE/POS2021/05/0271', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '290.0500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '290.0500', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 48, 1, '290.0500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'baee217d259cac88254fe09f2b904d7bf5d8cabaf956ea841d98fca153eae375', NULL, NULL, NULL, NULL, 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 (304, '2021-05-20 19:37:08', 'SALE/POS2021/05/0272', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '191.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '191.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 35, 1, '191.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3d9fb7e556e33ba905cdf34e6a3b2a331d77b5c162bc9bae54f0be2467fb85fa', NULL, NULL, NULL, NULL, 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 (305, '2021-05-20 20:26:17', 'SALE/POS2021/05/0273', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '219.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '219.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 55, 1, '219.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a8c62c75d10b33c4557c515c15d225b75feeec047c2cfff1e13827b3219dd6ab', NULL, NULL, NULL, NULL, 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 (306, '2021-05-20 20:30:47', 'SALE/POS2021/05/0274', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '2.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '2.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '627e6d58f0ce1ebb4cc52f30e3cdc9459ba5c11d40bf81fc455044e1f21224e1', NULL, NULL, NULL, NULL, 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 (307, '2021-05-20 20:46:28', 'SALE/POS2021/05/0275', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '44.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '44.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '44.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c2be8cca08ef2e7934830b3823fed4315d4f1f77e7b266c673a4c6c7eb40df5a', NULL, NULL, NULL, NULL, 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 (308, '2021-05-20 20:48:22', 'SALE/POS2021/05/0276', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '78.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '78.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 28, 1, '78.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '34c2c36ab2c8e1df2801b32d65438d19c9afad6f360e251fa6fc1c0472b16f4d', NULL, NULL, NULL, NULL, 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 (309, '2021-05-20 21:53:50', 'SALE/POS2021/05/0277', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b7a187171aa6252f2d72ba8134360ad031b560eb85cde849148f8486c8f65465', NULL, NULL, NULL, NULL, 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 (310, '2021-05-21 16:29:53', 'SALE/POS2021/05/0278', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '205.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '205.3800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 38, 1, '205.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '294404d4b27f9e74185171f255cca9f22ca455e8aebd59c53d1b31f3bd5b8ab7', NULL, NULL, NULL, NULL, 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 (311, '2021-05-21 20:24:42', 'SALE/POS2021/05/0279', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '504.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '504.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 29, 1, '504.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a857fb4e5b6f82b2f62832d11b219705220fe3563ad69e993a319fe8a3f9d5e4', NULL, NULL, NULL, NULL, 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 (312, '2021-05-21 20:25:39', 'SALE/POS2021/05/0280', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '55.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '55.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '55.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e1e3cb072e2d893bfe4d77ed2108b3561d684ee35ed832e8a35f92606f8630e', NULL, NULL, NULL, NULL, 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 (313, '2021-05-21 20:39:59', 'SALE/POS2021/05/0281', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '23.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '23.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '23.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8daf3b1e4448fe69578482e152e7acb20144ab8d677be00d7e62fbfc06b00f29', NULL, NULL, NULL, NULL, 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 (314, '2021-05-21 21:08:56', 'SALE/POS2021/05/0282', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '194.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '194.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '194.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3ef0a2fcd63c3f6903138d4d40d786c8fb91129ab7dc0e8b262fc0bbad3d431d', NULL, NULL, NULL, NULL, 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 (315, '2021-05-21 21:52:25', 'SALE/POS2021/05/0283', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '51.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '51.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 14, 1, '51.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f9d1230b244dfe081a8496140edcb7e1897e1f9299137cd82402728c9ef84fdf', NULL, NULL, NULL, NULL, 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 (316, '2021-05-22 11:00:04', 'SALE/POS2021/05/0284', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '220.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '220.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 30, 1, '220.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '72e2cc3fbb0c328729b269e42776f5d90c9b4f824ff608add4c333d21e2e9625', NULL, NULL, NULL, NULL, 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 (317, '2021-05-22 12:30:24', 'SALE/POS2021/05/0285', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '46.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '46.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '46.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4eeee37701625bec70b530d9476756238bc1cef2d52a39c161a8405be1a3724c', NULL, NULL, NULL, NULL, 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 (318, '2021-05-22 14:08:16', 'SALE/POS2021/05/0286', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '46.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '46.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '46.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd2be32f3162b723c062bf1c220fd41d1981ee1f826abfac48d1b5ab981f90c97', NULL, NULL, NULL, NULL, 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 (319, '2021-05-22 18:28:00', 'SALE/POS2021/05/0287', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '299.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '299.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 50, 1, '299.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7960401c97f34f0e6a4403710c6f309ad0cdce0efa189bdffecece72fe0ca5b8', NULL, NULL, NULL, NULL, 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 (320, '2021-05-22 20:23:07', 'SALE/POS2021/05/0288', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '113.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '113.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 32, 1, '113.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b3a7b68b423ec7d766896adbd10993de196273af893b9d33a8248884e63964a0', NULL, NULL, NULL, NULL, 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 (321, '2021-05-22 20:57:38', 'SALE/POS2021/05/0289', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '73.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '73.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '73.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1a2c2d35676984722856aeec4e01c1f9b3243e58453b0e8cfb328371d7aedbd4', NULL, NULL, NULL, NULL, 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 (322, '2021-05-22 21:30:32', 'SALE/POS2021/05/0290', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '13.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '13.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9c1a91a45d1e3658d10810ad667a467af7943ebc2c983e77a06a97f15f5c4a10', NULL, NULL, NULL, NULL, 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 (323, '2021-05-22 21:56:17', 'SALE/POS2021/05/0291', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '75.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '75.4000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '75.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '15c5775c636afa723cf1a6adb42caf30103d72cc7cbdb113007df79d92255fc4', NULL, NULL, NULL, NULL, 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 (324, '2021-05-23 19:43:03', 'SALE/POS2021/05/0292', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '476.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '476.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 137, 1, '476.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e5412f7ade13df57afa0e9ff288111c70f300409837629fc01f109cca54a6f37', NULL, NULL, NULL, NULL, 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 (325, '2021-05-23 20:48:52', 'SALE/POS2021/05/0293', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '127.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '127.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 31, 1, '127.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6d6b33586112335b19ee370fe942a50b3848c06e1a084cf48818534b8c61613d', NULL, NULL, NULL, NULL, 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 (326, '2021-05-23 21:13:13', 'SALE/POS2021/05/0294', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '37.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '37.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '37.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '974d46311a5de1df3355e4e3b76143b8a966279d55ba66fa7fec67f3e14ee90b', NULL, NULL, NULL, NULL, 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 (327, '2021-05-24 19:58:16', 'SALE/POS2021/05/0295', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '246.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '246.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 134, 1, '246.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76edb5a7a738d73f1115154b6ee60e87a2699a3dbd53e7acac5f4fe928ebc257', NULL, NULL, NULL, NULL, 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 (328, '2021-05-24 20:37:40', 'SALE/POS2021/05/0296', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '298.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '298.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 20, 1, '298.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bad3c89a35e9eefee7f805279f5b7bcf8804519234b6aa37ae4249f5b4124d3f', NULL, NULL, NULL, NULL, 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 (329, '2021-05-24 21:13:30', 'SALE/POS2021/05/0297', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '218.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '218.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 23, 1, '218.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd0d784c713ecfb124249a6c505d6b72cf6df96f80e62524771965465a8287668', NULL, NULL, NULL, NULL, 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 (330, '2021-05-24 22:04:19', 'SALE/POS2021/05/0298', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '112.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '112.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 9, 1, '112.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c8d4a2ec150edd4e64a56f1cd7f04dd8f044124715f0457491c295028278bf8b', NULL, NULL, NULL, NULL, 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 (331, '2021-05-24 00:41:00', 'STELLA', 21, 'FMMS PHAR ACY', 3, 'Commandos', 2, '', '', '136.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '136.0000', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 105, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '28760e4cede39ed0ec8986d232c70b8e06088b25efd0f60fa765b3d8af14c740', NULL, NULL, NULL, NULL, 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 (332, '2021-05-24 00:48:00', 'STELLA', 21, 'FMMS PHAR ACY', 3, 'Commandos', 2, '', '', '454.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '454.2000', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 45, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '2deece0ae5eef82706075305a97a776ba1ea6e2e415d80086f1840640d09db3d', NULL, NULL, NULL, NULL, 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 (333, '2021-05-25 14:15:58', 'SALE/POS2021/05/0299', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '87.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '87.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 14, 1, '87.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b99ccc730bae0abd534fa06884b33f912dc307574e4bc2fdcab14b2703929a22', NULL, NULL, NULL, NULL, 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 (334, '2021-05-25 17:52:31', 'SALE/POS2021/05/0300', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '318.5800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '318.5800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 44, 1, '318.5800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a6c328a2276e6946409013ed13a4f61bab55104e6295227e182b0f9e3dd4d7c', NULL, NULL, NULL, NULL, 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 (335, '2021-05-25 20:13:43', 'SALE/POS2021/05/0301', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '178.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '178.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 30, 1, '178.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd1d1163da92da7f773ad2f6ca953b4a41d923e74f752f8104c412dd8e739e915', NULL, NULL, NULL, NULL, 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 (336, '2021-05-25 20:27:36', 'SALE/POS2021/05/0302', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '353.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '353.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 17, 1, '353.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '45da1ca75c02d6a29892b1722b1472397d87e676892814efb4bf30d415f2bd62', NULL, NULL, NULL, NULL, 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 (337, '2021-05-25 20:51:53', 'SALE/POS2021/05/0303', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '197.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '197.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '197.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fc3182d5b5e6a66574b45a23b1ae9400db5953459db0c3bcab99caac182cb299', NULL, NULL, NULL, NULL, 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 (338, '2021-05-25 21:10:41', 'SALE/POS2021/05/0304', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '26.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '26.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '26.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec6c833dec1077225643db665843cd6547f14fc63b3344c2939879a654ac0e6c', NULL, NULL, NULL, NULL, 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 (339, '2021-05-25 21:17:36', 'SALE/POS2021/05/0305', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b69d7b286309798b35adca2d1de60a0c937e7df46bd26837446955796db7d1d1', NULL, NULL, NULL, NULL, 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 (340, '2021-05-25 21:19:51', 'SALE/POS2021/05/0306', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '30.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '30.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '290002c3981f836f7f345b5113127d36b3092ef45501b3caf8b0686b385147b5', NULL, NULL, NULL, NULL, 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 (341, '2021-05-25 21:57:54', 'SALE/POS2021/05/0307', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '104.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '104.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 20, 1, '104.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '825ffb593109f9041f8e0bedae1ad7e5ae0ffbba62599a533b5bd7c37fa361c7', NULL, NULL, NULL, NULL, 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 (342, '2021-05-26 10:44:28', 'SALE/POS2021/05/0308', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '160.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.3500', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 16, 1, '160.3500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd5a4938e9fa8fc85cef75c210a4e4f2381e55a2bd7230fd60d3aa654c26b62f', NULL, NULL, NULL, NULL, 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 (343, '2021-05-26 15:33:55', 'SALE/POS2021/05/0309', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '76.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '76.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 11, 1, '76.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f30299a9eb53a22de111466a2acb6d4b96aa10b1b977cda8646a2139af7a3c6', NULL, NULL, NULL, NULL, 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 (344, '2021-05-26 20:43:24', 'SALE/POS2021/05/0310', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '368.3500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '368.3500', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 70, 1, '368.3500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dba0db055cfa6f97dfd0f0a6346276719fac36d1c49ba3e9994ebd9f3d4b8e1b', NULL, NULL, NULL, NULL, 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 (345, '2021-05-26 21:49:54', 'SALE/POS2021/05/0311', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '244.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '244.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 35, 1, '244.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '20e00177c522fb6ba2eac17694c85e69b6c2ab03ac563feb044898ae0277e5bd', NULL, NULL, NULL, NULL, 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 (346, '2021-05-26 22:36:31', 'SALE/POS2021/05/0312', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '37.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '37.0000', 'completed', 'paid', 0, NULL, 4, NULL, NULL, 10, 1, '37.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f74d00bf9a72108f35f5490d14d29fbc14e8962382c13756dd18ac7e2222f752', NULL, NULL, NULL, NULL, 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 (347, '2021-05-27 16:00:39', 'SALE/POS2021/05/0313', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '240.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '240.8000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 16, 1, '240.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f5e18852dd48a371c1028927b8c7b4343f9208ed0b774b76356ef5e8a9669928', NULL, NULL, NULL, NULL, 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 (348, '2021-05-27 16:26:32', 'SALE/POS2021/05/0314', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '5.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.5000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 1, 1, '5.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e34a165f2fab954a0d22ad18a9f3f96e6fb1747a06a39e4b1e7a87c4e4a95802', NULL, NULL, NULL, NULL, 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 (349, '2021-05-27 16:31:05', 'SALE/POS2021/05/0315', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '36.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '36.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 1, 1, '36.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b2fdd25e5802afcfbcad64747fef8d2f0c6dabc4b58e9918a370db295a54a186', NULL, NULL, NULL, NULL, 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 (350, '2021-05-27 20:17:16', 'SALE/POS2021/05/0316', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '47.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 14, 1, '47.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4897a990dbfe88ac8c503607f8be67a2e11e9844b9509d8537ba8920fa03f404', NULL, NULL, NULL, NULL, 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 (351, '2021-05-27 20:24:53', 'SALE/POS2021/05/0317', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '493.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '493.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 39, 1, '493.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5f1effd394046006f0bfb209ea3b9e0ad1606bfaaf05c1a6dc863218a76f2c21', NULL, NULL, NULL, NULL, 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 (352, '2021-05-27 20:26:16', 'SALE/POS2021/05/0318', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '82.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '82.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '82.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1277fcea278915da6e719db3d8711f6b753a637f3496bf55543d00d6e5ca6d3b', NULL, NULL, NULL, NULL, 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 (353, '2021-05-27 11:00:00', 'stella sales adjustment', 21, 'FMMS PHAR ACY', 3, 'Commandos', 2, '', '', '233.2600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '233.2600', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 21, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c77422da30cbc637578b4c360b624cb2515b7a6b1a25b8e680b51784e1205633', NULL, NULL, NULL, NULL, 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 (354, '2021-05-28 17:27:05', 'SALE/POS2021/05/0319', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '70.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '70.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 21, 1, '70.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '08ef235a5b8dce7da98f627b3759d088139aebdd83fb1395a5d40244816b7e9a', NULL, NULL, NULL, NULL, 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 (355, '2021-05-28 18:23:08', 'SALE/POS2021/05/0320', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '377.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '377.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 108, 1, '377.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9eeeb51f8652d16a5650f70d75b525b89ee30247caf2c9e1b84e5d9c9b891358', NULL, NULL, NULL, NULL, 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 (356, '2021-05-28 18:43:26', 'SALE/POS2021/05/0321', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '332.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '332.3800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 44, 1, '332.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f145e798cfd31761f83916bd1a418df72f479db11ade09d796029eb194b133d1', NULL, NULL, NULL, NULL, 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 (357, '2021-05-28 21:51:34', 'SALE/POS2021/05/0322', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '18.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 10, 1, '18.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '361d9bf5e8fc017f58211cac4c5471eea6a9d6c9b333d49ca06480ca33cd41d7', NULL, NULL, NULL, NULL, 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 (358, '2021-05-28 21:53:41', 'SALE/POS2021/05/0323', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '272.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '272.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 28, 1, '272.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e4cedb99197cb351c1aba649b20493291a623e7750c46646adf583ec06cf5de3', NULL, NULL, NULL, NULL, 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 (359, '2021-05-29 13:30:11', 'SALE/POS2021/05/0324', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '541.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '541.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 63, 1, '541.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a66f457e59b7ba472c3ac84a243cbacfb248ff32024b21ee7be503c7c5f36f81', NULL, NULL, NULL, NULL, 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 (360, '2021-05-29 14:48:47', 'SALE/POS2021/05/0325', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '2.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '2.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '514d292713531fc3487fab6f8d6edb80e31d60516d66ef1662a7c7d55f6187bd', NULL, NULL, NULL, NULL, 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 (361, '2021-05-29 14:53:24', 'SALE/POS2021/05/0326', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '36.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '36.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '36.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd7f3994e683e5b78f5bf5d0d8b020dd83500119ace87f58be128ccf3fdb91ea', NULL, NULL, NULL, NULL, 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 (362, '2021-05-29 15:05:01', 'SALE/POS2021/05/0327', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '32.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '32.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '32.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8cf22bc60629d379bd4ba6a78aae1ed6f558cd9673cf2a4605aaeb70b3fad2c3', NULL, NULL, NULL, NULL, 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 (363, '2021-05-29 18:38:35', 'SALE/POS2021/05/0328', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '212.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '212.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 30, 1, '212.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0aaf87210b269a264f2887370602c4cbef44dcd51c20936bc2a8c59c726b7a9a', NULL, NULL, NULL, NULL, 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 (364, '2021-05-29 18:39:33', 'SALE/POS2021/05/0329', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '7.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '7.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d926f6540cfdf1e22f5fb531288eb93437134dd6f5e66fe408961c2e83ccbd0', NULL, NULL, NULL, NULL, 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 (365, '2021-05-29 19:57:37', 'SALE/POS2021/05/0330', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '195.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '195.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 32, 1, '195.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '86d705ab7d603ed4cba6d48d45d3f20f3d4ed77e47f6a4f88d987b55902cff9e', NULL, NULL, NULL, NULL, 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 (366, '2021-05-29 21:22:13', 'SALE/POS2021/05/0331', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '82.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '82.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 23, 1, '82.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '215c2badd56f4ba52b6331d122a52ef96d64a5936bc95371eb5e0cafb84388be', NULL, NULL, NULL, NULL, 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 (367, '2021-05-29 21:57:20', 'SALE/POS2021/05/0332', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '56.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '56.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '56.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0a79483c10a01912f5132bd082019ea584219e7b70ad10baf82e6da7f9c631fe', NULL, NULL, NULL, NULL, 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 (368, '2021-05-29 22:07:13', 'SALE/POS2021/05/0333', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '70.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '70.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '70.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7864377123cb2ef16afa6820b1703b7c1d811b0b681de657612426d84f44436b', NULL, NULL, NULL, NULL, 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 (369, '2021-05-30 18:59:40', 'SALE/POS2021/05/0334', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '530.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '530.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 76, 1, '530.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8fe7deb0df6c7e3861f3198e636c14ecaf05c051a14acaa5074b156e5ac8e4c6', NULL, NULL, NULL, NULL, 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 (370, '2021-05-30 21:36:15', 'SALE/POS2021/05/0335', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '183.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '183.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 15, 1, '183.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '971672c53700598dca67cdd726b72ad6168fe0a9c52a0e49602f977b1d2540f2', NULL, NULL, NULL, NULL, 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 (371, '2021-05-30 21:50:57', 'SALE/POS2021/05/0336', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '23.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '23.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '23.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7a87ab308c12da98be5f88e85330465a63c4d4043faa5fe982c8e99fc1d587c7', NULL, NULL, NULL, NULL, 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 (372, '2021-05-30 21:55:31', 'SALE/POS2021/05/0337', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '24.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '24.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dd7adbe928faf501ac03b8b7eb360b9c03e0fed32b68e8b8776a60dec7219189', NULL, NULL, NULL, NULL, 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 (373, '2021-05-30 23:22:00', 'SALE2021/05/0001', 21, 'FMMS PHAR ACY', 3, 'Commandos', 2, '', '', '15.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15.5000', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 2, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '86664deb82c3d447e924b1814b50f1f01fcee5fca9908a7c1927f85bec6f473d', NULL, NULL, NULL, NULL, 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 (374, '2021-05-31 14:22:12', 'SALE/POS2021/05/0338', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '368.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '368.4000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 35, 1, '368.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '932e27cfd9631622875c586a4b196d9f002a6db785223c532f7e5b8f55015149', NULL, NULL, NULL, NULL, 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 (375, '2021-05-31 14:52:41', 'SALE/POS2021/05/0339', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '2.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '2.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3d0becbe68d0474d076edb12433165a2ed01dcb5a9d6fdf2c4865e05f13aff5d', NULL, NULL, NULL, NULL, 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 (376, '2021-05-31 14:54:49', 'SALE/POS2021/05/0340', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c9b0fe9443b903ec62f7d80c41f1b45b0f1e4468404b228fda777432495902e6', NULL, NULL, NULL, NULL, 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 (377, '2021-05-31 15:20:24', 'SALE/POS2021/05/0341', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '199.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '199.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 47, 1, '199.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1b281bdaddadb875eff7851076b3d48edfba6602c37be3b55ddfa6288150e8c1', NULL, NULL, NULL, NULL, 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 (378, '2021-05-31 19:20:44', 'SALE/POS2021/05/0342', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '353.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '353.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 29, 1, '353.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d0e50f270e4565fa09568eb45ff3ef5b5deee147af05496992953196b2ce132', NULL, NULL, NULL, NULL, 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 (379, '2021-05-31 20:21:49', 'SALE/POS2021/05/0343', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '127.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '127.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 9, 1, '127.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9d89b93a7ac4e6bbb7eff2342a8be3a4d721592e9fe5de2c704b4424f74e8ffa', NULL, NULL, NULL, NULL, 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 (380, '2021-05-31 21:57:52', 'SALE/POS2021/05/0344', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '166.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '166.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 27, 1, '166.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8de53e440e8a31d04028f38f1166fc2324b7e724683fcca82ad597da332e5211', NULL, NULL, NULL, NULL, 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 (381, '2021-06-01 13:59:07', 'SALE/POS2021/06/0345', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '168.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '168.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 26, 1, '168.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6bb1c4e3915746455504a2d4903bcb118945e53da8d775b93e2ae9453c4a790', NULL, NULL, NULL, NULL, 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 (382, '2021-06-01 14:52:45', 'SALE/POS2021/06/0346', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '64.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '64.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '64.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '775c33034d39316763fda58f18063fce6dc6e080037cc7513a2a4d00e7023249', NULL, NULL, NULL, NULL, 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 (383, '2021-06-01 15:10:51', 'SALE/POS2021/06/0347', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '46.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '46.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '46.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '120fe89507aa71520ea7664a1dda941697fd237d9f7d79ab37afb77216e731a8', NULL, NULL, NULL, NULL, 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 (384, '2021-06-01 19:39:55', 'SALE/POS2021/06/0348', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '206.1900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '206.1900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 28, 1, '206.1900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd8651995b04e8ea9ad35f16887671be27ab7e3525ef3beb4bc6c5798bde8a789', NULL, NULL, NULL, NULL, 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 (385, '2021-06-01 19:46:18', 'SALE/POS2021/06/0349', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '326.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '326.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 21, 1, '326.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3baedc789504e1c01e9503b640921b7e02e5ddf1921ef97e01283ebc8861cb82', NULL, NULL, NULL, NULL, 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 (386, '2021-06-01 19:58:24', 'SALE/POS2021/06/0350', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '20.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 5, 1, '20.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b9087f6e20bfcd5bc59e9e8d750465cef4b4102cb38d98471f13e0ba773d1786', NULL, NULL, NULL, NULL, 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 (387, '2021-06-01 20:48:48', 'SALE/POS2021/06/0351', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '171.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '171.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '171.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6342ea9949dd3e74ca6074fbdf4f1826fa31f726053f341b86dc0f1a67b6645', NULL, NULL, NULL, NULL, 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 (388, '2021-06-01 22:13:16', 'SALE/POS2021/06/0352', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '78.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '78.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '78.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c9ca37454d166009a849f744b748c80d6be67f45222eef28bafec2295a4e6c3a', NULL, NULL, NULL, NULL, 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 (389, '2021-06-01 11:14:00', 'F0001/01/6/21/COM/STELLA', 21, 'FMMS PHAR ACY', 3, 'Commandos', 2, '', '', '203.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '203.0000', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 11, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'eafa86511d04e3d135d14c2cb0dd74c0fd74c3bbef15fe8ae8ebf68c385a279a', NULL, NULL, NULL, NULL, 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 (390, '2021-06-02 12:34:55', 'SALE/POS2021/06/0353', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '292.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '292.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 38, 1, '292.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1fa171e24e3ec51890c0cea4e2bf5106969b246e9c47ad87bb9374393cd3350e', NULL, NULL, NULL, NULL, 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 (391, '2021-06-02 14:39:33', 'SALE/POS2021/06/0354', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '127.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '127.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '127.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '06a1cde3e1567241b84e4d4e0d14d201d7c4c0d85e4ca484ffa758757bd705d7', NULL, NULL, NULL, NULL, 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 (392, '2021-06-02 15:03:00', 'SALE/POS2021/06/0355', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '31.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '31.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '31.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5134c7ac7f0405f35e2310c6c5a154080f189c74efaf66e0195a82e9b8e007e6', NULL, NULL, NULL, NULL, 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 (393, '2021-06-02 19:46:12', 'SALE/POS2021/06/0356', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '104.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '104.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '104.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b8a9b8d93b7ef6d85215c0f404fa02eb08d9c8121b82459fa6a65f7bfcf9713a', NULL, NULL, NULL, NULL, 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 (394, '2021-06-02 20:00:34', 'SALE/POS2021/06/0357', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '154.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '154.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 20, 1, '154.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '574e25796c71eec787490432239c3e1aefba3ca80e60f248e035661f0ce051b8', NULL, NULL, NULL, NULL, 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 (395, '2021-06-02 20:15:54', 'SALE/POS2021/06/0358', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '308.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '308.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 26, 1, '308.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6352d69214a578d78d1b5a3669aa4aaf8f0fe53cb111942f4fd3ae7b2214a496', NULL, NULL, NULL, NULL, 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 (396, '2021-06-02 20:56:19', 'SALE/POS2021/06/0359', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '223.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '223.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 25, 1, '223.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c727a40ec7b4b5271659c01f47789f184a4ece37aa618ce1556f00f5fa9aa879', NULL, NULL, NULL, NULL, 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 (397, '2021-06-02 21:30:26', 'SALE/POS2021/06/0360', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '15.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '15.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '29fe88fa4344c2c7938e2b0460692eb21879d4c928b987a45ba84ffe656493bf', NULL, NULL, NULL, NULL, 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 (398, '2021-06-02 21:31:04', 'SALE/POS2021/06/0361', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '9.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '9.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1cdffefe851b6fa7ab26b2d0646fe87c3d0033afa2749998dd6b08e941c7adee', NULL, NULL, NULL, NULL, 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 (399, '2021-06-02 21:46:35', 'SALE/POS2021/06/0362', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '103.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '103.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 11, 1, '103.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '432eb2a31e54628872efc64ba98ea1db1ea1c90b9243cec04843a4e355855cf2', NULL, NULL, NULL, NULL, 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 (400, '2021-06-02 21:55:52', 'SALE/POS2021/06/0363', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '10.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '745a49746916aca229df49022fc60e8fe2a7bd2b2cbed2b69fdd415da532b304', NULL, NULL, NULL, NULL, 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 (401, '2021-06-03 13:47:01', 'SALE/POS2021/06/0364', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '200.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 15, 1, '200.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b4581e1ba584831a8b1b15dd618da38b10aea44df82fda72d8edf0b35557fbc', NULL, NULL, NULL, NULL, 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 (402, '2021-06-03 15:47:52', 'SALE/POS2021/06/0365', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '33.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '33.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 13, 1, '33.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cfdd219db1e344ee38f8214c6ef6b8527593b787bd8035221bec0e16b356d96f', NULL, NULL, NULL, NULL, 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 (403, '2021-06-03 18:52:27', 'SALE/POS2021/06/0366', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '480.4900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '480.4900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 38, 1, '480.4900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c3eb953967e662f9075379d3b614fc2d7bd32f5b7d8e3f62a4f3b1ba288910e6', NULL, NULL, NULL, NULL, 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 (404, '2021-06-03 20:49:15', 'SALE/POS2021/06/0367', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '179.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '179.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 22, 1, '179.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '07b9a764d82f1f45590665a85ac3aff359029c02983bb8f5631cf699f53e963c', NULL, NULL, NULL, NULL, 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 (405, '2021-06-03 20:56:46', 'SALE/POS2021/06/0368', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '281.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '281.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 22, 1, '281.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '369984855b6be7662fc522d5ad0388c7d2ad24674fd816f6eac91cd288156343', NULL, NULL, NULL, NULL, 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 (406, '2021-06-03 21:51:30', 'SALE/POS2021/06/0369', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '35.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '35.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 12, 1, '35.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e51c4592e480aa3fcd05cf243f2c8883a51fc9d444cde8af469c890695b46c50', NULL, NULL, NULL, NULL, 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 (407, '2021-06-04 16:19:17', 'SALE/POS2021/06/0370', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '214.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '214.3000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 49, 1, '214.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8daf18d52691a5241b8554e86006f331f90365171aeb30a3f61b2609bbd5d129', NULL, NULL, NULL, NULL, 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 (408, '2021-06-04 19:42:21', 'SALE/POS2021/06/0371', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '46.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '46.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 11, 1, '46.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a425c24f7ed45169d74873c5b23b7578136ad92098ca3bf65d0e3737af084526', NULL, NULL, NULL, NULL, 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 (409, '2021-06-04 19:50:16', 'SALE/POS2021/06/0372', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '138.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '138.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 6, 1, '138.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '84c6228514d853cf5ade55948a2d1a3438a07593e8dea1649ff705150cd7b1b5', NULL, NULL, NULL, NULL, 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 (410, '2021-06-04 20:02:44', 'SALE/POS2021/06/0373', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '336.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '336.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 21, 1, '336.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1b4c473e5c320fd2f4bfad2171b2750d87b2f00dc1c794bebca228916ae2f0a4', NULL, NULL, NULL, NULL, 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 (411, '2021-06-04 20:07:04', 'SALE/POS2021/06/0374', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '187.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '187.5000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 29, 1, '187.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9c396842285f52d949225bfda4c26b4d408570f8baf0f80fccfbe272d0ae8ec3', NULL, NULL, NULL, NULL, 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 (412, '2021-06-04 21:22:42', 'SALE/POS2021/06/0375', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '161.1900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '161.1900', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 16, 1, '161.1900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '63ee66329472058dd589d3b39a8928101eca5a77c6adddf7224f4407c51a8e39', NULL, NULL, NULL, NULL, 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 (413, '2021-06-04 21:53:43', 'SALE/POS2021/06/0376', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '51.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '51.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 22, 1, '51.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d4b8a3f9c68a1dcc9c762cd1efa0f53f5c0f2b82394d966c08bb5e3fff08edb', NULL, NULL, NULL, NULL, 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 (414, '2021-06-05 12:37:04', 'SALE/POS2021/06/0377', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '361.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '361.9000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 40, 1, '361.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1883949bc3f87d22d77d8687cffc7400bb47a8d642837204145dd016d0039721', NULL, NULL, NULL, NULL, 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 (415, '2021-06-05 15:07:54', 'SALE/POS2021/06/0378', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 20, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8cdcf4e6434f23ff4a7fea30cd427ae6b48ee1589929660f4edcc58a63847631', NULL, NULL, NULL, NULL, 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 (416, '2021-06-05 18:52:24', 'SALE/POS2021/06/0379', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '227.6900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '227.6900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 57, 1, '227.6900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e2fc59bb5b6f1a570400e2299d32f13cb519492be2f15e87e7d255d6ef6e7dd2', NULL, NULL, NULL, NULL, 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 (417, '2021-06-05 20:19:26', 'SALE/POS2021/06/0380', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '345.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '345.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 36, 1, '345.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dcbfb7a659f25bfefcd456d18661e419df66de6c89992d29ad5cff88e47b1396', NULL, NULL, NULL, NULL, 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 (418, '2021-06-05 22:06:10', 'SALE/POS2021/06/0381', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '313.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '313.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 41, 1, '313.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '041c3d76c09b993bb32bbfcc7d1310ba4f625caa8a9429f2a7497466ddb8e39c', NULL, NULL, NULL, NULL, 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 (419, '2021-06-06 21:18:36', 'SALE/POS2021/06/0382', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '169.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '169.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 36, 1, '169.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f37d16c1c977283c437019855fab9002bce7a163ebd614fc459f8e5a0fe15b60', NULL, NULL, NULL, NULL, 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 (420, '2021-06-06 21:36:38', 'SALE/POS2021/06/0383', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '59.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '59.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '59.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9904a00f92cd317ff60ff7a34890e5d78dc404950bdb79b583f6f0af2e0ce6cd', NULL, NULL, NULL, NULL, 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 (421, '2021-06-06 21:44:58', 'SALE/POS2021/06/0384', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '18.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '18.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '565d7dcdf761c6e00f0a96cddb26a05cfd0930a1e8a3d5f4cbb62fdc1f15aaa4', NULL, NULL, NULL, NULL, 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 (422, '2021-06-06 21:46:38', 'SALE/POS2021/06/0385', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '1.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '1.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c14ef2ec2a7102ff7c5eedadb84cdc44999428f62aa4f2d5816d2633dde473b9', NULL, NULL, NULL, NULL, 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 (423, '2021-06-06 21:55:15', 'SALE/POS2021/06/0386', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '12.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '12.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4f86b822a34c3a5bf193d0a2942303b23ee434c6f1b9a7417a6cb8d5eb008611', NULL, NULL, NULL, NULL, 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 (424, '2021-06-07 14:57:44', 'SALE/POS2021/06/0387', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '116.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '116.3800', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 14, 1, '116.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0cd94918ca3c27cc99aa0e510e97be46ede77b6c6ae7aa3c743b7e0f8c776903', NULL, NULL, NULL, NULL, 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 (425, '2021-06-07 15:07:10', 'SALE/POS2021/06/0388', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '8.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '8.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9b84ac38af73a6580a310a0aa7747338fc76e6d3e770f7168e565bbb3d4cf2f3', NULL, NULL, NULL, NULL, 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 (426, '2021-06-07 20:00:31', 'SALE/POS2021/06/0389', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '628.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '628.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 50, 1, '628.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1aa90c32af52fabc44f155ec9ad6bfd68f68cbdefa72a897a9a7fc32400102c6', NULL, NULL, NULL, NULL, 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 (427, '2021-06-07 20:27:02', 'SALE/POS2021/06/0390', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '355.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '355.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 60, 1, '355.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27bce0fe7a836ade796d87f04cc1dad82615d9f3c3f1ef00a39669ff0c1ee4aa', NULL, NULL, NULL, NULL, 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 (428, '2021-06-07 21:39:45', 'SALE/POS2021/06/0391', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '155.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '155.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 34, 1, '155.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd3b234e2094b51c658743010e2d200218e8045e522e1ab11ffde660bbb91d725', NULL, NULL, NULL, NULL, 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 (429, '2021-06-07 22:14:17', 'SALE/POS2021/06/0392', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '21.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '21.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '21.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2be1e62596b9e022def07895cb4b483c1629c716e9d39029bb178f9b1c622170', NULL, NULL, NULL, NULL, 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 (430, '2021-06-08 22:04:34', 'SALE/POS2021/06/0393', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '341.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '341.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 50, 1, '341.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '23560b7cc529015705ac27bb62a9e29af13b597f97495d973a0b88a2e2a03934', NULL, NULL, NULL, NULL, 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 (431, '2021-06-08 23:11:56', 'SALE/POS2021/06/0394', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '382.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '382.5000', 'completed', 'paid', 0, NULL, 4, NULL, NULL, 28, 1, '382.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ed0da1cefa4ee8cd4764cea6d5cd1b9ef75f81defea616f6c94f5cbe7053af0', NULL, NULL, NULL, NULL, 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 (432, '2021-06-08 23:27:45', 'SALE/POS2021/06/0395', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '15.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15.0000', 'completed', 'paid', 0, NULL, 4, NULL, NULL, 1, 1, '15.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd6075386c84fcafdd87f67a38554cf27c28b90382f3d8145d77f6fe5625c484', NULL, NULL, NULL, NULL, 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 (433, '2021-06-09 13:24:01', 'SALE/POS2021/06/0396', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '453.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '453.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 42, 1, '453.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cfa31bdc76a63851ad069e82181e66cb4202abe669b54e6972169fba783237ba', NULL, NULL, NULL, NULL, 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 (434, '2021-06-09 13:25:29', 'SALE/POS2021/06/0397', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '149.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '149.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 11, 1, '149.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c306ed0b58967a790a0155ad855b7118c7143f426b5a311322b608694633c98f', NULL, NULL, NULL, NULL, 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 (435, '2021-06-09 14:24:11', 'SALE/POS2021/06/0398', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '29.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '29.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '29.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3b0e30d9ebb40d1a36b5efe45ab8f1b6b54da7250a63847f2baf64b347210fc7', NULL, NULL, NULL, NULL, 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 (436, '2021-06-09 14:33:25', 'SALE/POS2021/06/0399', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '2.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '2.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '45c5a793cbc3edcee1bfbeacc706cbe472c26a6babe1dedbf536ac605f9819e6', NULL, NULL, NULL, NULL, 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 (437, '2021-06-09 19:15:58', 'SALE/POS2021/06/0400', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '44.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '44.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '44.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8a2683c179c74fe15dec2a14086b62e265f3d05edce1fe6adba09d9906600ab7', NULL, NULL, NULL, NULL, 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 (438, '2021-06-09 21:20:09', 'SALE/POS2021/06/0401', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '470.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '470.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 28, 1, '470.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '54c11f96dd2ad6742403694ef767453b208f908464c763930a4430b7e8287583', NULL, NULL, NULL, NULL, 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 (439, '2021-06-09 21:28:58', 'SALE/POS2021/06/0402', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '423.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '423.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 32, 1, '423.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7b6924249699ffefce7f8ee9f3556c6cd1233b307520cd3c458bbadec6c998b2', NULL, NULL, NULL, NULL, 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 (440, '2021-06-10 14:16:34', 'SALE/POS2021/06/0403', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '385.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '385.2000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 41, 1, '385.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e656817172b4efe96be03a6caf12b9468f50497cb12dd12f22d5fc0ea412e50c', NULL, NULL, NULL, NULL, 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 (441, '2021-06-10 14:22:56', 'SALE/POS2021/06/0404', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '10.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f1ce9f595695825dbd6c9e7f0296d9b9134a73c269cdfed4275fa0dc13bb4c4', NULL, NULL, NULL, NULL, 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 (442, '2021-06-10 22:13:37', 'SALE/POS2021/06/0405', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '700.5700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.5700', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 78, 1, '700.5700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'feaf619a12858a151ef1fcdd3a5c20429b120fb207aeafdf31f1f86f2a0318fd', NULL, NULL, NULL, NULL, 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 (443, '2021-06-11 15:42:09', 'SALE/POS2021/06/0406', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '148.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '148.6000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 26, 1, '148.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c9f899fac06dab200c03e524a46d436a9a346211344127930de718968764d238', NULL, NULL, NULL, NULL, 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 (444, '2021-06-11 20:04:06', 'SALE/POS2021/06/0407', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '15.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 15, 1, '15.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ef95b92aaee1b7129a34c441d721b61bec09dcca4abdf4afe3f8da7775845a52', NULL, NULL, NULL, NULL, 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 (445, '2021-06-11 20:11:11', 'SALE/POS2021/06/0408', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '590.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '590.7000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 41, 1, '590.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '275ebec02e900de47d02311d4f98b5ba67cde83dc3c7ac41306728262fd1f215', NULL, NULL, NULL, NULL, 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 (446, '2021-06-11 21:48:20', 'SALE/POS2021/06/0409', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '63.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '63.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 12, 1, '63.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df2aba27c9eb9dc7612665fd0d6546e1765065e6902f43ea8a4760cce2929ed2', NULL, NULL, NULL, NULL, 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 (447, '2021-06-12 14:45:39', 'SALE/POS2021/06/0410', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '312.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '312.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 23, 1, '312.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e20086ac0166fa482ff223f9107cde2314171bc1c291a7aad99840d91dca8261', NULL, NULL, NULL, NULL, 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 (448, '2021-06-12 14:55:53', 'SALE/POS2021/06/0411', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '19.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '19.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28ab5b49c76f55d95f56efd932626cb8d38325a81b5e5ad7bd97ef611cb6f5f4', NULL, NULL, NULL, NULL, 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 (449, '2021-06-12 19:50:43', 'SALE/POS2021/06/0412', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '413.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '413.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 30, 1, '413.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd18bb099548f5604703b442671f2adc256e3b3d880016e60d4ac75db8529d673', NULL, NULL, NULL, NULL, 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 (450, '2021-06-12 19:55:48', 'SALE/POS2021/06/0413', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '234.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '234.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 31, 1, '234.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f0c35ad730ea6abe6e9c41db86107ae04f2ee5a9775f0abd8fbe76cb5200b42', NULL, NULL, NULL, NULL, 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 (451, '2021-06-12 21:32:02', 'SALE/POS2021/06/0414', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '255.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '255.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 28, 1, '255.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d85eb202865af12ddabf7ba14edfc0739f06d71005318f165ef50e507311411', NULL, NULL, NULL, NULL, 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 (452, '2021-06-12 21:56:00', 'SALE/POS2021/06/0415', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '88.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '88.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 17, 1, '88.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5aa79880a7b2d0f89957e61de104d9fb4cb3b289b459492f13487c24c50b74ee', NULL, NULL, NULL, NULL, 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 (453, '2021-06-12 21:56:23', 'SALE/POS2021/06/0416', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '2.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '2.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ef85fa491b6421cd6d4c2c90c6acf4c248ffdf4db3cacf3bee2e3e39ecf795c4', NULL, NULL, NULL, NULL, 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 (454, '2021-06-12 22:02:04', 'SALE/POS2021/06/0417', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '47.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '47.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a2a7f31ae67a6f965b2f39c3642d0c0c8ba419f91e1b52ce878bb693f9c81f09', NULL, NULL, NULL, NULL, 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 (455, '2021-06-13 21:37:18', 'SALE/POS2021/06/0418', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '526.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '526.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 73, 1, '526.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '615801f12e57de8e27694342e23eb6ec13b670d1c0214d44cdaa8a47de19cb62', NULL, NULL, NULL, NULL, 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 (456, '2021-06-13 22:03:44', 'SALE/POS2021/06/0419', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '21.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '21.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '21.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76f29a93570e2410dfb8f86911b4217b49395dcfb31f30c663d7d2ea9fbc290f', NULL, NULL, NULL, NULL, 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 (457, '2021-06-13 23:27:19', 'SALE/POS2021/06/0420', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '105.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '105.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '105.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '86b285e4f0121b988dc8f6bb785282c21190bb3ad94d2c12651653c8d018294d', NULL, NULL, NULL, NULL, 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 (458, '2021-06-14 14:09:40', 'SALE/POS2021/06/0421', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '166.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '166.9000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 26, 1, '166.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '63e786a4c45c8c2eff4ea638178b2c8a727ec6d279f8f9fa3dbed28287deebed', NULL, NULL, NULL, NULL, 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 (459, '2021-06-14 14:56:15', 'SALE/POS2021/06/0422', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '9.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '9.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '51eb4ff54503bd9d09d57217fe6f0dd75ba3df0227945c2c4687d7b070c493f4', NULL, NULL, NULL, NULL, 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 (460, '2021-06-14 21:25:25', 'SALE/POS2021/06/0423', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '35b59f7dd3ef9d48142cc98d2bf7470974221ba639f4860d1798f14b257a4d46', NULL, NULL, NULL, NULL, 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 (461, '2021-06-14 21:55:07', 'SALE/POS2021/06/0424', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '417.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '417.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 38, 1, '417.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fe4687a2f1687b0cf22fbbaef18e543fcd83f7da3d227c60234502647950a2fd', NULL, NULL, NULL, NULL, 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 (462, '2021-06-15 13:45:03', 'SALE/POS2021/06/0425', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '194.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '194.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 33, 1, '194.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6d459cfa5a03a0e09f167877aba4f4bda8a124d96164f0fda8857716c37ab71b', NULL, NULL, NULL, NULL, 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 (463, '2021-06-15 15:01:29', 'SALE/POS2021/06/0426', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '30.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 7, 1, '30.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60e8bbbd5025efbde7c615697c5d000f74818ccf4d26b39e32a4e831cc998933', NULL, NULL, NULL, NULL, 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 (464, '2021-06-15 20:14:17', 'SALE/POS2021/06/0427', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '378.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '378.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 34, 1, '378.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ea0bbd7446ee9b651c930c5c9a6b7ab95e779b3b822afbde911b17ca535331e', NULL, NULL, NULL, NULL, 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 (465, '2021-06-15 21:12:43', 'SALE/POS2021/06/0428', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '207.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '207.7000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 25, 1, '207.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c125e2d2887db27b3a4788e5b5818e6a4dd02cc025a27434843ebc67e464489', NULL, NULL, NULL, NULL, 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 (466, '2021-06-15 21:51:28', 'SALE/POS2021/06/0429', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '97.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '97.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '97.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'adb237d2dd822e837b62e49b7b384a063e2ea32a9505b4a9c460d979f50685c0', NULL, NULL, NULL, NULL, 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 (467, '2021-06-16 13:17:44', 'SALE/POS2021/06/0430', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '290.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '290.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 46, 1, '290.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e60c2d6c6aff2d6e439a7d0f98f6b949dec3165f0d15e4bddc02a2b371e9d6dd', NULL, NULL, NULL, NULL, 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 (468, '2021-06-16 14:23:54', 'SALE/POS2021/06/0431', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '51.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '51.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '51.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e004fa5c415ef6da5eb1d39d320854fe5a75931e8ea97df48e9e268eee79aaeb', NULL, NULL, NULL, NULL, 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 (469, '2021-06-16 14:25:27', 'SALE/POS2021/06/0432', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '22.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '22.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6d670a8ad3ff9bf66502c1cb24fb7fa13445cd6f3e7299434d73f36acbf1e9b2', NULL, NULL, NULL, NULL, 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 (470, '2021-06-16 14:57:11', 'SALE/POS2021/06/0433', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ae5bbd0af929f9929ed77ae0408fab55c2f6fc178adaf6a37384b7edf8e4deb', NULL, NULL, NULL, NULL, 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 (471, '2021-06-16 15:13:10', 'SALE/POS2021/06/0434', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '6.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '6.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f1fe9fe7ebfcf0ce8afc2c76b4df9390434f541ef4439fc4e097467c064ba00a', NULL, NULL, NULL, NULL, 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 (472, '2021-06-16 21:30:51', 'SALE/POS2021/06/0435', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '304.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '304.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 48, 1, '304.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'efb43ec1bbd5a79e693ea7b60f362dbea93cdf6c3483d1d6e70e62b43e69e057', NULL, NULL, NULL, NULL, 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 (473, '2021-06-16 21:58:18', 'SALE/POS2021/06/0436', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '13.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '13.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '58cbe13ec254c362d5373842c55ad961d4e670b35547aa0752473dc07365a43a', NULL, NULL, NULL, NULL, 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 (474, '2021-06-17 12:50:40', 'SALE/POS2021/06/0437', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '389.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '389.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 24, 1, '389.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c5351a7d5a67c25db3973aada1a86f0df5c614b307d214f44e645e93dd5f9422', NULL, NULL, NULL, NULL, 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 (475, '2021-06-17 15:04:31', 'SALE/POS2021/06/0438', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '14.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '14.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '14.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e3181071151b64804d9feaf2838c77310ee7a7a89fe5a8da4f2768d292ac8c15', NULL, NULL, NULL, NULL, 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 (476, '2021-06-17 19:27:45', 'SALE/POS2021/06/0439', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '18.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '18.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '925df0dff577bfb3c95ec39f8cff52a844a9a780e35f67fe200e2b5868e3b946', NULL, NULL, NULL, NULL, 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 (477, '2021-06-17 20:41:16', 'SALE/POS2021/06/0440', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '381.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '381.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 119, 1, '381.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '87542595e3d27ebfd9a1e710adea6635aa517642848702560b0030dfd0255815', NULL, NULL, NULL, NULL, 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 (478, '2021-06-17 21:37:29', 'SALE/POS2021/06/0441', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '193.3800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '193.3800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 26, 1, '193.3800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '03fd79a3d5b8c6284947798290e54afa34a638442daf288139f60b16f7331bc9', NULL, NULL, NULL, NULL, 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 (479, '2021-06-18 15:39:40', 'SALE/POS2021/06/0442', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '300.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.5000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 41, 1, '300.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14086716f665913f6c0900fdf93acb8bcb9e11ef70e5bc812c648af66c6f65ff', NULL, NULL, NULL, NULL, 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 (480, '2021-06-18 21:22:24', 'SALE/POS2021/06/0443', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '467.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '467.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 48, 1, '467.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c850770ba9cd351f0d65d8ecc370ae2610a73c1ed3c27a21db76c2c8cf8b64a', NULL, NULL, NULL, NULL, 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 (481, '2021-06-18 21:50:31', 'SALE/POS2021/06/0444', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '30.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '30.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '617fbc4c0d269d63eb4badfb44502ed3a7169053a1aaa7705741e901dac40221', NULL, NULL, NULL, NULL, 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 (482, '2021-06-19 13:45:41', 'SALE/POS2021/06/0445', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '218.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '218.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 26, 1, '218.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f9fbfb022d5a3ba15e91582956877f216ca4245593ca674b561af047a15ad9e8', NULL, NULL, NULL, NULL, 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 (483, '2021-06-19 13:59:03', 'SALE/POS2021/06/0446', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '49.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '49.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '49.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b146ec02f96974fc70cc7d152f629bc3f14744713d50d733c8ec36782afe04d7', NULL, NULL, NULL, NULL, 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 (484, '2021-06-19 15:05:16', 'SALE/POS2021/06/0447', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '3.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '3.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '92d9fcc781e2b63fa45fe2a220822e93a6d10751acb1dfdf670638bf984ab2b1', NULL, NULL, NULL, NULL, 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 (485, '2021-06-19 21:46:56', 'SALE/POS2021/06/0448', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '181.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '181.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 37, 1, '181.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8cf814d31957c93d98b145dfb09815dbe5546b21e99e66d93472ca3f7c81d943', NULL, NULL, NULL, NULL, 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 (486, '2021-06-19 21:53:52', 'SALE/POS2021/06/0449', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8f28555f47ddd88622f76d7a1c9fa86d49e89c38e0b50d4b7ac5565a3557232', NULL, NULL, NULL, NULL, 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 (487, '2021-06-19 23:42:46', 'SALE/POS2021/06/0450', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '17.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '17.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c1d1ab4b149e66d903011973f10ba5f8bbc91d694c97dde9d6b253bb80b66bd1', NULL, NULL, NULL, NULL, 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 (488, '2021-06-20 20:27:15', 'SALE/POS2021/06/0451', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '437.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '437.7000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 47, 1, '437.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '41f654762d2862417bf716bcedac9c4d4897b58d69eefdffe5a8bb5889a974af', NULL, NULL, NULL, NULL, 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 (489, '2021-06-20 21:28:23', 'SALE/POS2021/06/0452', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '102.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '102.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '102.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4311ee3f71a8f3174cf94339af4abfa6166b059e2a9e4b2ad11626ae0386d11c', NULL, NULL, NULL, NULL, 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 (490, '2021-06-21 13:34:45', 'SALE/POS2021/06/0453', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '591.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '591.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 63, 1, '591.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'de3d5913aebaf02c3b9c4d5d469e49ec713dba884ed9daf13e52e81715e7baf5', NULL, NULL, NULL, NULL, 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 (491, '2021-06-21 13:54:40', 'SALE/POS2021/06/0454', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '47.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 14, 1, '47.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f65deee11fbbc70a55637c7fabc39a724b8b012f30a688492bec3ee16e4bfdb1', NULL, NULL, NULL, NULL, 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 (492, '2021-06-21 14:32:26', 'SALE/POS2021/06/0455', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '71.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '71.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '71.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a093849f310d21d44f0f1cad0cca8633ed16b65de444ad157488ef26ed9d44e', NULL, NULL, NULL, NULL, 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 (493, '2021-06-21 15:10:04', 'SALE/POS2021/06/0456', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '17.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '17.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6847a06e1aafc9d48c1188193878025135fbc8059410de9de12cbfeaf448b465', NULL, NULL, NULL, NULL, 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 (494, '2021-06-21 18:59:26', 'SALE/POS2021/06/0457', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '321.8500', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '321.8500', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 69, 1, '321.8500', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1573de7f8a0cc62f7687f3ef325d3126141284b10283a59723cd890b8bb02daa', NULL, NULL, NULL, NULL, 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 (495, '2021-06-21 20:27:22', 'SALE/POS2021/06/0458', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '220.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '220.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 16, 1, '220.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '656449e2fbdd56881640baa459d5210592fa76a475d4ad33eded8b5491effd04', NULL, NULL, NULL, NULL, 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 (496, '2021-06-21 21:48:22', 'SALE/POS2021/06/0459', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '196.5700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '196.5700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 21, 1, '196.5700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c00b4719f9b6fe6587682c0d47e915c077373a08bc0efcf2832d2ff14218df3e', NULL, NULL, NULL, NULL, 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 (497, '2021-06-22 13:25:13', 'SALE/POS2021/06/0460', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '539.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '539.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 41, 1, '539.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd4aa3cb74f04f61264c1d0f63e7fdeeb70974631dade2af16ee9c0600a46dec2', NULL, NULL, NULL, NULL, 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 (498, '2021-06-22 13:36:28', 'SALE/POS2021/06/0461', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '972bad817e1ee61a254425d34cac504483741fc0d0ca85ae4d26ad6d4571f01c', NULL, NULL, NULL, NULL, 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 (499, '2021-06-22 14:20:35', 'SALE/POS2021/06/0462', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '265.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '265.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 32, 1, '265.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3ebe74e275049066cbc1298d68e52319b72b76327322437ec9051d617b171044', NULL, NULL, NULL, NULL, 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 (500, '2021-06-22 15:08:41', 'SALE/POS2021/06/0463', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '15.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '15.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6886e856799dec8ac66afed8ebbc5852a3a748353ce9dce9d6348e5820d52277', NULL, NULL, NULL, NULL, 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 (501, '2021-06-22 15:20:12', 'SALE/POS2021/06/0464', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '34.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '34.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '34.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd48e573864e8261386a8ed4f7327fc072b44731c43518dc66651fffdadb6cd48', NULL, NULL, NULL, NULL, 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 (502, '2021-06-22 19:22:47', 'SALE/POS2021/06/0465', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '315.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '315.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 52, 1, '315.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ae96b63300dca9f51c5acb95478b192a6985618e9bb02436c9dccedc2f7c2997', NULL, NULL, NULL, NULL, 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 (503, '2021-06-22 19:51:18', 'SALE/POS2021/06/0466', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '3.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 6, 1, '3.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '282a9adc3c4108c168529b51043af46a770eb8572ac88fc61f81bac337506b57', NULL, NULL, NULL, NULL, 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 (504, '2021-06-22 21:10:42', 'SALE/POS2021/06/0467', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '326.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '326.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 15, 1, '326.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '346d21a24f40119c28b60c07a6494fe65f0a126f4a522eaadf8afe3fe9e95e9d', NULL, NULL, NULL, NULL, 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 (505, '2021-06-22 21:50:53', 'SALE/POS2021/06/0468', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '42.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '42.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '42.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '78bd9fd3e72eb09793f96a8019a1c63947c21be9907b212ffe218de86a45cb45', NULL, NULL, NULL, NULL, 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 (506, '2021-06-23 15:20:26', 'SALE/POS2021/06/0469', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '180.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '180.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 41, 1, '180.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fdd8f9bfb85acb42e1afbaf65d87aeba7cd7e3e891dc78aba64eb4133cf864f9', NULL, NULL, NULL, NULL, 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 (507, '2021-06-23 20:45:02', 'SALE/POS2021/06/0470', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '379.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '379.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 46, 1, '379.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7317a7e2aef4982b89c5fc07f72872ab7d7ce7e1095c089923fab02f96f7691b', NULL, NULL, NULL, NULL, 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 (508, '2021-06-23 21:03:25', 'SALE/POS2021/06/0471', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '27.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '27.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '27.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7d1c81d9bfcefd5b4b077fcba83ba5c854136fbc3dd1dcfefe6dd6eb458cbdcf', NULL, NULL, NULL, NULL, 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 (509, '2021-06-23 21:04:51', 'SALE/POS2021/06/0472', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '288.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '288.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 39, 1, '288.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5807905f800e2bd5edfe393975ddfc8c982fce73f0f1f7eb2f9e704ccee301e8', NULL, NULL, NULL, NULL, 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 (510, '2021-06-23 21:42:17', 'SALE/POS2021/06/0473', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '51.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '51.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '51.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fdb077132400b1746b8c45b8a8124f961b4ef8ba0b9415bd3abaf38047b30213', NULL, NULL, NULL, NULL, 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 (511, '2021-06-23 21:45:41', 'SALE/POS2021/06/0474', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '31.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '31.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 12, 1, '31.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7aeace50b9af462bb3cf24ce004215098a1a776346767587b67e2cb34764bdf2', NULL, NULL, NULL, NULL, 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 (512, '2021-06-23 21:52:34', 'SALE/POS2021/06/0475', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '34.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '34.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '34.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd033f67d797027c5320d34165d30ebe19cb0365a1951725db4fb02c5ec130f73', NULL, NULL, NULL, NULL, 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 (513, '2021-06-24 10:41:40', 'SALE/POS2021/06/0476', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '465.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '465.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 44, 1, '465.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f70d70a1c77531014a27b8ba14338be9c4694efff0c8050b7124d07a1882501e', NULL, NULL, NULL, NULL, 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 (514, '2021-06-24 14:51:13', 'SALE/POS2021/06/0477', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '70.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '70.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '70.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'faeb5717110ba94bf5ed6f7c447d39717203024b50fccb1e8999cfdc2f411f8f', NULL, NULL, NULL, NULL, 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 (515, '2021-06-24 21:16:48', 'SALE/POS2021/06/0478', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '166.6900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '166.6900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 48, 1, '166.6900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f74cd89b99fc928b0a3054c5297f54f3e81fc371b6195a818478a9aad47acad8', NULL, NULL, NULL, NULL, 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 (516, '2021-06-24 21:43:06', 'SALE/POS2021/06/0479', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '106.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '106.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 14, 1, '106.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6de2657b47767dd81d16b0e3152b96cf368aed1eb609fb1b780eb5eab7ab7cd9', NULL, NULL, NULL, NULL, 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 (517, '2021-06-24 22:01:37', 'SALE/POS2021/06/0480', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '57.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '57.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '57.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '64b573db313af0a9e91d98ae4bb9ae92cdff7b0a3312e2bef331d684605af93a', NULL, NULL, NULL, NULL, 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 (518, '2021-06-24 22:10:03', 'SALE/POS2021/06/0481', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '96.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '96.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '96.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b3395051cf8b5e67698ef8142591d20336ca3ece709a990bd2b21db75a56f945', NULL, NULL, NULL, NULL, 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 (519, '2021-06-24 22:23:06', 'SALE/POS2021/06/0482', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '58.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '58.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 9, 1, '58.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a00b97d2e7349c80f3b20da587265445d817791070d91087d3188b7086f0218', NULL, NULL, NULL, NULL, 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 (520, '2021-06-24 10:11:00', 'stella add sales 24/6 21', 21, 'FMMS PHAR ACY', 3, 'Commandos', 2, '', '', '212.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '212.0000', 'completed', 'due', 0, NULL, 3, 3, '2021-06-25 10:30:38', 13, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a458eb22fca2901e894d65a67312293cfe423f757573dac503a5dae8ae370f4b', NULL, NULL, NULL, NULL, 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 (521, '2021-06-25 14:17:10', 'SALE/POS2021/06/0483', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '489.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '489.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 52, 1, '489.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '83a28177cd9230a70e04e79f157b562aaa16707f2f0b406e493af822c9ede2bf', NULL, NULL, NULL, NULL, 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 (522, '2021-06-25 15:21:11', 'SALE/POS2021/06/0484', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '29.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '29.5000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 6, 1, '29.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60c3867053b7c2f1c1768d73a22755f09a8beb72aa005c74c3eff72d8f26d123', NULL, NULL, NULL, NULL, 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 (523, '2021-06-25 15:25:57', 'SALE/POS2021/06/0485', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '10.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.5000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 1, 1, '10.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b7408e00fc403b869b57e34bf4fc5d91107203b68ffd3125c0fa8d2aec882b92', NULL, NULL, NULL, NULL, 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 (524, '2021-06-25 19:31:53', 'SALE/POS2021/06/0486', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '610.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '610.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 58, 1, '610.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cc954e3d35a8f01397efcafbfdd0da556f8d5167f0e47636973f7448e4029fe3', NULL, NULL, NULL, NULL, 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 (525, '2021-06-25 21:29:06', 'SALE/POS2021/06/0487', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '287.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '287.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 22, 1, '287.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c12ba3732591e780a4dd99cd55a8f688a5ac19221de2fb0b23a2e8adca38a8a5', NULL, NULL, NULL, NULL, 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 (526, '2021-06-25 21:53:49', 'SALE/POS2021/06/0488', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '13.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '13.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6f60706cf5d0ae6b3e94659fb923bbde554639ec11e50445d64669a77dcfc63', NULL, NULL, NULL, NULL, 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 (527, '2021-06-25 23:55:35', 'SALE/POS2021/06/0489', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '2.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.9000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '2.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fe0e0b3030f19be9d40f07d18e94cddf548388ef550482f41df0f172d7c330eb', NULL, NULL, NULL, NULL, 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 (528, '2021-06-25 23:56:35', 'SALE/POS2021/06/0490', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '26.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '26.1000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 9, 1, '26.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ad0ff56c432d9f21c76cf0680a7971f3d6672d5e87b9d17ddaf626fa9a63a30', NULL, NULL, NULL, NULL, 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 (529, '2021-06-26 16:50:07', 'SALE/POS2021/06/0491', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '361.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '361.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 47, 1, '361.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b3a2c9a73586e6d6ab2fb374aecc639cd1afa62aed1916790ad32ad10a7f2530', NULL, NULL, NULL, NULL, 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 (530, '2021-06-26 17:30:58', 'SALE/POS2021/06/0492', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '29.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '29.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '29.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9404472ca8952043bf1f20deed7c41b3278c04b1dafed5b6d6e4c3f926fc7b0c', NULL, NULL, NULL, NULL, 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 (531, '2021-06-26 21:20:40', 'SALE/POS2021/06/0493', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '585.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '585.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 46, 1, '585.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7a9a391140c7f530cb24dc991759b8a405ddb7d2d285dd9b3e3438b84f5b2bd7', NULL, NULL, NULL, NULL, 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 (532, '2021-06-26 21:56:41', 'SALE/POS2021/06/0494', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '124.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '124.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '124.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f9fccf7b3555cdbe3250d50ef82fd2391213e0ed4a5fd7e640b79c3edacdf19', NULL, NULL, NULL, NULL, 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 (533, '2021-06-27 18:16:10', 'SALE/POS2021/06/0495', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '355.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '355.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 42, 1, '355.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '82fa3a80ed721107de8ba0395286af1379b6f2f2d5abe92982b34f938d93c877', NULL, NULL, NULL, NULL, 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 (534, '2021-06-27 19:48:49', 'SALE/POS2021/06/0496', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '84.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '84.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 14, 1, '84.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6473056b7a744146dfd9a6bfb86e8fbfb93fab2f20b1dc5121212d9c0fdac7b5', NULL, NULL, NULL, NULL, 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 (535, '2021-06-27 20:03:39', 'SALE/POS2021/06/0497', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '73.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '73.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '73.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5804d5e2c88b13ff5e92fd842349229e15f3bea932196fdbfc144273153894a2', NULL, NULL, NULL, NULL, 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 (536, '2021-06-27 20:23:26', 'SALE/POS2021/06/0498', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '206.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '206.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 19, 1, '206.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd3373b0973daec2788189d34c106d0fa4e1d53f2ecdf73f2431858fdf64f8ed2', NULL, NULL, NULL, NULL, 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 (537, '2021-06-27 20:54:37', 'SALE/POS2021/06/0499', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '64.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '64.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 11, 1, '64.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0e53bbea860520dd17a2a97272c28707ec7bd2790ed5e138c8adbeb70497efbd', NULL, NULL, NULL, NULL, 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 (538, '2021-06-27 21:17:36', 'SALE/POS2021/06/0500', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '21.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '21.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '21.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1144396cb509d9246ec41c30b99c808a4beadd3ee5994ef40be7bb54abc81c74', NULL, NULL, NULL, NULL, 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 (539, '2021-06-27 21:44:55', 'SALE/POS2021/06/0501', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '8.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '8.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7b29494e7081a595dbb6ce30558a40bb770efa097c61ac5b47afae6cfd2af0ac', NULL, NULL, NULL, NULL, 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 (540, '2021-06-27 23:30:04', 'SALE/POS2021/06/0502', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '22.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '22.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '24c26eddcd182393242ff1c191e49df7663f0e575ddefb83c8fea26594da14c9', NULL, NULL, NULL, NULL, 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 (541, '2021-06-28 13:55:59', 'SALE/POS2021/06/0503', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '314.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '314.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 64, 1, '314.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28b767002c1af838825d26887398fbf92a7421aff952a118fa6bd70815024e04', NULL, NULL, NULL, NULL, 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 (542, '2021-06-28 15:39:50', 'SALE/POS2021/06/0504', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '105.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '105.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 12, 1, '105.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fe1ea13d8dc734982385be758529239612d697f0ccf81a1b5ac99a065657580e', NULL, NULL, NULL, NULL, 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 (543, '2021-06-28 15:47:07', 'SALE/POS2021/06/0505', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '5.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '5.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '51b35ab97288303ce9fe92f3b849e616765118701e447eff60a0add74e81b27e', NULL, NULL, NULL, NULL, 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 (544, '2021-06-28 20:39:24', 'SALE/POS2021/06/0506', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '218.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '218.4000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 29, 1, '218.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2ea141099db9b1854bd38d0dcb9f33cbf212263585c8d761e2e11d9962ce99b8', NULL, NULL, NULL, NULL, 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 (545, '2021-06-28 20:47:55', 'SALE/POS2021/06/0507', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '659.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '659.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 56, 1, '659.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cd843b9f41700f694e4f4470fc12f6c157788c5fe6dafd8d2489ce47aed9c587', NULL, NULL, NULL, NULL, 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 (546, '2021-06-28 21:44:55', 'SALE/POS2021/06/0508', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '116.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '116.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '116.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a78a5b19ec6cc85ac6418c33e48731ce57dd17538c232fe91a3f8bb0f1e232f', NULL, NULL, NULL, NULL, 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 (547, '2021-06-28 21:46:17', 'SALE/POS2021/06/0509', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '8.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '8.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a7ca9139757dd46b9b124df8687dea35d44546c7517835eb09d467be5d5d4eb3', NULL, NULL, NULL, NULL, 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 (548, '2021-06-28 21:50:20', 'SALE/POS2021/06/0510', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '6.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '6.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'be42637992a7394fbc25312e09136c0068adc054050effbf0c41472e7f7dce6f', NULL, NULL, NULL, NULL, 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 (549, '2021-06-29 15:02:23', 'SALE/POS2021/06/0511', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '1115.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1115.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 55, 1, '1115.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8cf7ab8f3862e5c720cc949855bec6870f727dc62a4720fdf394308da0f2a308', NULL, NULL, NULL, NULL, 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 (550, '2021-06-29 20:41:02', 'SALE/POS2021/06/0512', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '315.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '315.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 47, 1, '315.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '993ee26d541f01078953cd27f884bad9360d2e46a8890656eb804803444c0244', NULL, NULL, NULL, NULL, 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 (551, '2021-06-29 20:42:43', 'SALE/POS2021/06/0513', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '123.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '123.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 13, 1, '123.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '202f3de9d322f15af854010e7c888945ca14b18a86da7eb357447f178abdad63', NULL, NULL, NULL, NULL, 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 (552, '2021-06-29 21:56:01', 'SALE/POS2021/06/0514', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '118.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '118.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 9, 1, '118.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aef0653732f90938a3aaa1caf40e48be423ff0c6e70fd0fc4fffb2e31b81edd7', NULL, NULL, NULL, NULL, 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 (553, '2021-06-30 00:02:32', 'SALE/POS2021/06/0515', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '54.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '54.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 8, 1, '54.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9b333c59cbce38f2818b1b2f96e815b070d07eecd2d74dd5922063fc9b8528f3', NULL, NULL, NULL, NULL, 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 (554, '2021-06-30 00:24:37', 'SALE/POS2021/06/0516', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '25.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '25.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '25.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f5859913e6ce7eb27f5a5266eff4c17ceea1a6854f027ff2f7af726add1cc947', NULL, NULL, NULL, NULL, 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 (555, '2021-06-30 14:19:36', 'SALE/POS2021/06/0517', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '295.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '295.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 30, 1, '295.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8e6edd5c3e1b354000c1ecc77764ecc81738b71e7dbb42e183f376be37e12c94', NULL, NULL, NULL, NULL, 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 (556, '2021-06-30 15:21:44', 'SALE/POS2021/06/0518', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '277.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '277.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 20, 1, '277.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '54e5eaf3f9dc11ca52166930851013170f4a73ae1067c7a9cb7df186cda1d91e', NULL, NULL, NULL, NULL, 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 (557, '2021-06-30 20:30:42', 'SALE/POS2021/06/0519', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '761.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '761.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 88, 1, '761.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cf7dcfa437d5329dcd81c1f5c8b91a1090642df7ba9773a9c89f035815c13924', NULL, NULL, NULL, NULL, 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 (558, '2021-06-30 21:24:36', 'SALE/POS2021/06/0520', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '52.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '52.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 9, 1, '52.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '837c9c74ef36a52351bd1dd326289509e76e03782c88568a5729e7f56796c2ca', NULL, NULL, NULL, NULL, 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 (559, '2021-06-30 21:26:33', 'SALE/POS2021/06/0521', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '54.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '54.6000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 14, 1, '54.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '93b397a5c5ce7ade7865e05a06be6a7ee2cc95e536c328fef799d145f637d3e3', NULL, NULL, NULL, NULL, 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 (560, '2021-06-30 21:34:28', 'SALE/POS2021/06/0522', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '46.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '46.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '46.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6fa280d127ae987e2683f6bc80f3d839e29d6c2d3e83656ec842b686f0814672', NULL, NULL, NULL, NULL, 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 (561, '2021-06-30 21:51:00', 'SALE/POS2021/06/0523', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '36.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '36.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 15, 1, '36.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1ebb31d5e802e3e74ad27e79f295f11dd506d081151124f1fbc1024ae1308154', NULL, NULL, NULL, NULL, 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 (562, '2021-07-01 14:27:16', 'SALE/POS2021/07/0524', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '442.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '442.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 56, 1, '442.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '78894e6aa3506e46a51b3ae91c975e902917e2f449a8f9f21a272fe19ffcce7a', NULL, NULL, NULL, NULL, 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 (563, '2021-07-01 15:01:52', 'SALE/POS2021/07/0525', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0f50d0c64b0a95c4cee131a18553aca3d059aae15d038bbea81635acba5aa3a2', NULL, NULL, NULL, NULL, 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 (564, '2021-07-01 15:04:10', 'SALE/POS2021/07/0526', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '17.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '17.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7403539ef3dfb322505a63539af71f4b86f9bc479ae53a8b190b8edf7caf8a89', NULL, NULL, NULL, NULL, 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 (565, '2021-07-01 19:03:02', 'SALE/POS2021/07/0527', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '290.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '290.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 22, 1, '290.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8a01338779b98c3b480b6e73069da25b971927772779fc98d2f0af5210a840d0', NULL, NULL, NULL, NULL, 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 (566, '2021-07-01 22:53:46', 'SALE/POS2021/07/0528', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '154.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '154.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 28, 1, '154.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6afd9e9d51bb628dcc4bd5c6809ca0e9b141ae968c964814ea228c623bbb7e01', NULL, NULL, NULL, NULL, 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 (567, '2021-07-02 12:18:36', 'SALE/POS2021/07/0529', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '98.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '98.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 11, 1, '98.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cb1fd0187f6e85aa25c8616d3a6ead0bd112bb6c719b6e0fc209bc42d05bbfec', NULL, NULL, NULL, NULL, 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 (568, '2021-07-02 13:01:14', 'SALE/POS2021/07/0530', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '700.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 45, 1, '700.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b3a0dbff86c1552dbec716d405c95932349d30bdc494a37abbcf7e7c2e07aefb', NULL, NULL, NULL, NULL, 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 (569, '2021-07-02 15:50:50', 'SALE/POS2021/07/0531', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '14.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '14.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 5, 1, '14.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '63c32bbcfe043c7a09e86155408f8e0a2d4fb966a3e69d9cc083c4ae38101319', NULL, NULL, NULL, NULL, 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 (570, '2021-07-02 20:52:36', 'SALE/POS2021/07/0532', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '2.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '2.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '66b64d3334c91f911897c05b666089bdfe758d00ae746cb37c522e0b2160580b', NULL, NULL, NULL, NULL, 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 (571, '2021-07-02 20:57:05', 'SALE/POS2021/07/0533', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '34ec97a17af083cc533abadd9eb5de358e5a99430bde981860485dfb7ede0db2', NULL, NULL, NULL, NULL, 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 (572, '2021-07-02 21:10:17', 'SALE/POS2021/07/0534', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '446.1900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '446.1900', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 73, 1, '446.1900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eb378a3c9cf0bef5c416be9edfacefbc4de5486c5b2403cbed293b90349d6e18', NULL, NULL, NULL, NULL, 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 (573, '2021-07-02 21:43:55', 'SALE/POS2021/07/0535', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '104.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '104.2000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 10, 1, '104.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2cf47b7cfd1e62652004a337853c459b5e8eafcbb6c25f9f6c19183f45cc8ad0', NULL, NULL, NULL, NULL, 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 (574, '2021-07-02 21:58:34', 'SALE/POS2021/07/0536', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '802f36f746ff87f86787835464fb494afd287e1c3b77e2b8a174c488ba1ce3d9', NULL, NULL, NULL, NULL, 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 (575, '2021-07-02 22:00:56', 'SALE/POS2021/07/0537', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 11, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2319c148b60205a4dbf3cb63f8b89a9a9c79669d4ba9adc939a3dba04a6ea9c5', NULL, NULL, NULL, NULL, 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 (576, '2021-07-03 23:30:00', 'stella add sales 2/7/ 21', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '222.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '222.5000', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 14, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'bf71f24620897562a0b99fca9fd06e22d5ac8e91151cb0714c6802e32a41e87b', NULL, NULL, NULL, NULL, 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 (577, '2021-07-03 07:53:00', 'SALE2021/07/0002', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '1367.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1367.3000', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 168, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd78f20e92b31a8eabe236979f04c063a223a5d00961311dc8de35acf5fc154f6', NULL, NULL, NULL, NULL, 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 (578, '2021-07-03 09:24:00', 'sales 3/6 21', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '163.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '163.5000', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 37, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'bbe0488dfbbe079148cb046073169c68b643e2124bc3f3da4c04a7748b3132d8', NULL, NULL, NULL, NULL, 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 (579, '2021-07-04 09:38:00', '4/07/21', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '678.6900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '678.6900', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 126, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'c1e871e8f8e4bc036857ccbfacd1f58c3a9311b67f18961d158791f11b473af6', NULL, NULL, NULL, NULL, 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 (580, '2021-07-05 19:32:38', 'SALE/POS2021/07/0538', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '246.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '246.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 30, 1, '246.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '38b24849b39f08510e4158e9d0695bc39e7984405ce6decbd2fb4c6ce4e42af7', NULL, NULL, NULL, NULL, 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 (581, '2021-07-05 19:44:35', 'SALE/POS2021/07/0539', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '439.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '439.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 47, 1, '439.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c6a1f554da4e69d0de62cbe18952c61def62650339e2e67b7aac93bf55e175e8', NULL, NULL, NULL, NULL, 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 (582, '2021-07-05 21:43:06', 'SALE/POS2021/07/0540', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '335.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '335.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 56, 1, '335.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ae6e328cb1dc9acb387ff9474493894a2c24c82a25ac3af30b031ccefc1094de', NULL, NULL, NULL, NULL, 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 (583, '2021-07-05 21:48:40', 'SALE/POS2021/07/0541', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '1.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '1.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd55bb11819d18626b5cfd535d6a3c796cf6bc6b5f93d2a9f14e0fee086e6bf8c', NULL, NULL, NULL, NULL, 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 (584, '2021-07-06 15:28:54', 'SALE/POS2021/07/0542', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '206.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '206.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 31, 1, '206.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f5abc2d879733ce80b9a038e9f009359e743b3b92c90169e523ddcf5b1a2a0aa', NULL, NULL, NULL, NULL, 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 (585, '2021-07-06 18:22:33', 'SALE/POS2021/07/0543', 1, 'Walk-in Customer', 3, 'Commandos', 1, '', '', '285.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '285.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 53, 1, '285.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec11d304e5c793fdb9a3abbfff196d907d196f14da3784fc62433d24d2eeeb29', NULL, NULL, NULL, NULL, 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 (586, '2021-07-06 19:35:13', 'SALE/POS2021/07/0544', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '344.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '344.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 51, 1, '344.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '50570e5c5c93f979af21ef66c62904dcd15dc86e1a9328a4b428cfee004e4026', NULL, NULL, NULL, NULL, 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 (587, '2021-07-06 20:12:50', 'SALE/POS2021/07/0545', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '63.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '63.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 15, 1, '63.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'de6d18d7efabad33386abeea99f500dd960cde4994ad22f4f5475f827ee024c1', NULL, NULL, NULL, NULL, 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 (588, '2021-07-06 20:24:30', 'SALE/POS2021/07/0546', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '2.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '2.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '207a7f0aaea248eb91ccfa113b4dd9204dd3d356fe4188a102931e3080672c33', NULL, NULL, NULL, NULL, 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 (589, '2021-07-06 21:41:17', 'SALE/POS2021/07/0547', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '14.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '14.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 6, 1, '14.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '07a751082ed21c017a99f7048fe46af2971d8d04993c8d6987af80798d0d50f5', NULL, NULL, NULL, NULL, 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 (590, '2021-07-06 22:02:48', 'SALE/POS2021/07/0548', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '93.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '93.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 7, 1, '93.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '999e36f51d56137f3e2c3f0624febfeddfb88bf1fd955f47b7250bc7ee02536b', NULL, NULL, NULL, NULL, 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 (591, '2021-07-07 14:29:10', 'SALE/POS2021/07/0549', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '242.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '242.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 67, 1, '242.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f815e9cb2a705a4b3c342e04ad6c3848ac1c6e52a6966673f00638d81f39c17c', NULL, NULL, NULL, NULL, 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 (592, '2021-07-07 14:55:24', 'SALE/POS2021/07/0550', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '32.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '32.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '32.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7a52c2b45d84412e5e93b86ee927e309ca67b1c5fae4101f51035d9ac399a359', NULL, NULL, NULL, NULL, 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 (593, '2021-07-07 14:57:09', 'SALE/POS2021/07/0551', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '20.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '20.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8c953b6325ec44e35d7bab2fe0479309ad98684eb6fa335572040d0694da4d53', NULL, NULL, NULL, NULL, 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 (594, '2021-07-07 21:43:43', 'SALE/POS2021/07/0552', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '1247.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1247.1000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 92, 1, '1247.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f7a72691df9a75a092b91b0b2e707e7f7ce9f769920e109eb14a6c185fd8aee', NULL, NULL, NULL, NULL, 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 (595, '2021-07-07 21:44:45', 'SALE/POS2021/07/0553', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '53.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '53.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '53.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9c533d78cfc6326fe704f2c08aeee1cf1458f08ff4dbfb52f33f3f44f51ca711', NULL, NULL, NULL, NULL, 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 (596, '2021-07-07 21:51:15', 'SALE/POS2021/07/0554', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '9.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '9.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e8bce04f74e679bf5a174ff0041f24e108316fee33ded3799f656bc44d69cee', NULL, NULL, NULL, NULL, 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 (597, '2021-07-07 22:06:11', 'SALE/POS2021/07/0555', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '75.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '75.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 6, 1, '75.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '62d2c5ec71acaa093fe038e7298f907ac34b2bafc508ad3af59dc68856013986', NULL, NULL, NULL, NULL, 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 (598, '2021-07-08 12:30:20', 'SALE/POS2021/07/0556', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '408.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '408.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 15, 1, '408.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ffe9fe34fe118277299f977ceb746c1763d62b65297f06088e2201700f161f9', NULL, NULL, NULL, NULL, 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 (599, '2021-07-08 12:30:57', 'SALE/POS2021/07/0557', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '0.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '0.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02509e1f4aecc8f5db18ec8473d5c98fd5969bdc5f3e6f67d0e6d5c9fa2f1fbe', NULL, NULL, NULL, NULL, 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 (600, '2021-07-08 12:32:37', 'SALE/POS2021/07/0558', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '0.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '0.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f72988ca3e205b713d9aceed52b87af84cfedbcf91347c1798946cc8a149b513', NULL, NULL, NULL, NULL, 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 (601, '2021-07-08 12:34:25', 'SALE/POS2021/07/0559', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '0.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '0.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f1a09b40e98fd12e800953d4cb643a8f7d61a0df72595296056cc47d039efecb', NULL, NULL, NULL, NULL, 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 (602, '2021-07-08 15:06:50', 'SALE/POS2021/07/0560', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '93.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '93.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 13, 1, '93.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2c860e2f0ea3154dcbe3fdc062d68dcce1dc89371d813a4ea05ba47d2c202641', NULL, NULL, NULL, NULL, 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 (603, '2021-07-08 21:52:06', 'SALE/POS2021/07/0561', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '771.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '771.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 86, 1, '771.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28f9895897d83a4eef93600648ba8ccb0c3e080ffd99faaa1f71cb874fab2d76', NULL, NULL, NULL, NULL, 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 (604, '2021-07-08 21:52:21', 'SALE/POS2021/07/0562', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '1.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '1.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aba77d7de078d3d92fada1ef997fab477427e3df0b75872c58a858fd139e9f40', NULL, NULL, NULL, NULL, 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 (605, '2021-07-09 14:36:40', 'SALE/POS2021/07/0563', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '396.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '396.5000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 45, 1, '396.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2bb2f07579663360d1bdc527221a33c0fed716c55adfe35e7f808340ccf4f831', NULL, NULL, NULL, NULL, 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 (606, '2021-07-09 14:53:52', 'SALE/POS2021/07/0564', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '227.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '227.5000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 6, 1, '227.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f2b731bcb89abd6f5358f81f7fc06734e5e442bfa1ec4db2d344a954bb9357b3', NULL, NULL, NULL, NULL, 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 (607, '2021-07-09 15:30:04', 'SALE/POS2021/07/0565', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '48.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '48.5000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 10, 1, '48.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd087fdb9379ff6a70141549b61412c611a978c1765d99aee975ef9f1eb0e5fc1', NULL, NULL, NULL, NULL, 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 (608, '2021-07-09 19:09:50', 'SALE/POS2021/07/0566', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '226.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '226.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 21, 1, '226.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ef73fd913b9a485a98d9088114942dba3931fa6bea505ad94463b14e7a7a6f09', NULL, NULL, NULL, NULL, 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 (609, '2021-07-09 21:08:41', 'SALE/POS2021/07/0567', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '324.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '324.4000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 27, 1, '324.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e37e03a724942529b07c5b273c8c0fa79d08803e433b15658cd5250d3d3561ad', NULL, NULL, NULL, NULL, 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 (610, '2021-07-09 21:52:11', 'SALE/POS2021/07/0568', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '118.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '118.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 7, 1, '118.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ccb8e7455bcdcfd5b395f0222e6929d285199092a948f658ab5a4c9d74cb5e70', NULL, NULL, NULL, NULL, 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 (611, '2021-07-10 14:42:00', 'SALE/POS2021/07/0569', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '432.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '432.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 62, 1, '432.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f39b909a479b54a4e2db1a2a839c532267512ee6644d00a04abdfb026491779b', NULL, NULL, NULL, NULL, 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 (612, '2021-07-10 15:03:54', 'SALE/POS2021/07/0570', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '27.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '27.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '27.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a2bfe970e88f3557cfa8fde4ee4fbd8aa49515c1f633c22e4ff7f9378c398684', NULL, NULL, NULL, NULL, 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 (613, '2021-07-10 20:58:36', 'SALE/POS2021/07/0571', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '498.7900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '498.7900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 81, 1, '498.7900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '57ff2987007a748f8492fc056c5f9044608f6c81fd963986edfbe27dc0234830', NULL, NULL, NULL, NULL, 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 (614, '2021-07-10 21:51:31', 'SALE/POS2021/07/0572', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '584.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '584.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 22, 1, '584.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c2d525850a29129c537ddcd4e924de398c1bd8a39787ace4e1e5232207db257d', NULL, NULL, NULL, NULL, 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 (615, '2021-07-10 22:08:15', 'SALE/POS2021/07/0573', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '18.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '18.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3ec6c0716ec1ca777116c38586f09235ef98826593a38a5c2439dc27220874c', NULL, NULL, NULL, NULL, 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 (616, '2021-07-10 23:04:42', 'SALE/POS2021/07/0574', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '12.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '12.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1b04efb368540dc25e659754db6536c921445d75b686e9cb57da50e83488e4af', NULL, NULL, NULL, NULL, 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 (617, '2021-07-11 20:26:20', 'SALE/POS2021/07/0575', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '743.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '743.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 92, 1, '743.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '24fdb2a0891b76f5bc3938c80d0e3c6d01cb3f6d748c1a721a6486b79e69fc00', NULL, NULL, NULL, NULL, 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 (618, '2021-07-11 20:44:33', 'SALE/POS2021/07/0576', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60560ab4aa38f9214fbcf4e9fe70b6a13d4c5a1f75b820dc9a5146335111be6c', NULL, NULL, NULL, NULL, 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 (619, '2021-07-11 21:17:46', 'SALE/POS2021/07/0577', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '61.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '61.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 18, 1, '61.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0f953d5a30dc0dd75c8190225f506bb36899961f6e14fdfc671249cea0b6a329', NULL, NULL, NULL, NULL, 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 (620, '2021-07-11 21:41:10', 'SALE/POS2021/07/0578', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '455a58d646a23168e3f608d84c8cf6ebdfb02bb155fc64829995e2421e2ee49e', NULL, NULL, NULL, NULL, 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 (621, '2021-07-12 14:20:07', 'SALE/POS2021/07/0579', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '606.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '606.1000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 50, 1, '606.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '74eab73aab61d79e47b30bce796e16a0c5681643a027d7ac715450260d6795b5', NULL, NULL, NULL, NULL, 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 (622, '2021-07-12 21:08:09', 'SALE/POS2021/07/0580', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '846.4600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '846.4600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 108, 1, '846.4600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '546849484b1b98963fb82928dcdaeaab6c9f180a8d03700e0840498eed46ca01', NULL, NULL, NULL, NULL, 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 (623, '2021-07-12 21:48:18', 'SALE/POS2021/07/0581', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '74.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '74.2000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 9, 1, '74.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '06dade3b5e102584f2ae6b5de8347a5322ac0b9dd61215dd968247aa2bec6378', NULL, NULL, NULL, NULL, 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 (624, '2021-07-12 21:53:28', 'SALE/POS2021/07/0582', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '11.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '11.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '33a4a4e09f2667e71d8c15bd094062d4b1083f08c23e986da3efce34f3151a0e', NULL, NULL, NULL, NULL, 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 (625, '2021-07-12 23:18:06', 'SALE/POS2021/07/0583', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '3.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '3.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '67d50e9154a3cc1287cf5668f9653ebf3fe3c200c5b2addfd9372cd6a5f8f312', NULL, NULL, NULL, NULL, 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 (626, '2021-07-13 15:00:26', 'SALE/POS2021/07/0584', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '245.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '245.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 27, 1, '245.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7041a1e243777a20f43be33f5c2a1d84e09b9534347be76b8ab827858968125a', NULL, NULL, NULL, NULL, 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 (627, '2021-07-13 15:11:55', 'SALE/POS2021/07/0585', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '5.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '5.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0677f3ed3007bd214edfe24e924945a40eb7a61640e2f2ebca15125e7dbb6d9a', NULL, NULL, NULL, NULL, 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 (628, '2021-07-13 21:52:04', 'SALE/POS2021/07/0586', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '626.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '626.7000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 83, 1, '626.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4088fafb840c37b1a02884c95033700f3ff09c95e6025c756242f1274c0e26f7', NULL, NULL, NULL, NULL, 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 (629, '2021-07-13 21:55:07', 'SALE/POS2021/07/0587', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '3.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '3.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ce84b5d1f24300d3440b85b5738ba7c532ad03e95a729ed1c2e993d24cd44282', NULL, NULL, NULL, NULL, 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 (630, '2021-07-14 14:12:23', 'SALE/POS2021/07/0588', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '127.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '127.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 23, 1, '127.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '65fe1226f2b56d60634598c2fb694106eb5039c5aafcbdd4685675e60fc790a7', NULL, NULL, NULL, NULL, 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 (631, '2021-07-14 14:51:44', 'SALE/POS2021/07/0589', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '151.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '151.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '151.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '400f8fbc3fe7e485aaf8e8dca44824994222dd98a85a65c85dda0fb32968e6cd', NULL, NULL, NULL, NULL, 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 (632, '2021-07-14 15:44:26', 'SALE/POS2021/07/0590', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '31.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '31.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '31.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4ce3f96c1edc01ee6dceda769b26f6c0cb1ed5afae1960a399521fe3d36fd4d', NULL, NULL, NULL, NULL, 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 (633, '2021-07-14 21:08:32', 'SALE/POS2021/07/0591', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '928.0100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '928.0100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 89, 1, '928.0100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '158d3bcd11e04783560aa05cef2b223a9287804f62bbe095a784030330023672', NULL, NULL, NULL, NULL, 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 (634, '2021-07-14 21:49:59', 'SALE/POS2021/07/0592', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '148.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '148.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 18, 1, '148.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a53a574e953d304fb4839afacf0c26f96bae149451c3abb937192d18db3d5c1d', NULL, NULL, NULL, NULL, 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 (635, '2021-07-14 23:24:52', 'SALE/POS2021/07/0593', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 7, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4def8034ac2240b2bd0ba873fb56a3bd4ec1d120fddcc558d69b3b2ffd6bdd2e', NULL, NULL, NULL, NULL, 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 (636, '2021-07-14 08:34:00', '14/7/21 sales', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '46.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '46.0000', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 15, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '58ef9140415fbb8f8cb33f2db0d6af1fd6757e155a2dfa57fe212f4942e1fce2', NULL, NULL, NULL, NULL, 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 (637, '2021-07-15 15:26:52', 'SALE/POS2021/07/0594', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '196.7300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '196.7300', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 42, 1, '196.7300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b71f2f4b6868984710b193dd859ae0210a9c4c8b891bf00f2bd98565d2a38209', NULL, NULL, NULL, NULL, 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 (638, '2021-07-15 15:34:28', 'SALE/POS2021/07/0595', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '19.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '19.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1fae8601b514f1f1cf31ea7425341803fe7de7a8c5f2dd5fddbe87f5a18d408b', NULL, NULL, NULL, NULL, 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 (639, '2021-07-15 20:03:38', 'SALE/POS2021/07/0596', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '748.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '748.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 59, 1, '748.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '842c3ea80e2fb2301ac98550ae724af294527dea15d2ff4acf92e589dd3979a2', NULL, NULL, NULL, NULL, 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 (640, '2021-07-15 21:57:57', 'SALE/POS2021/07/0597', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '174.3300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '174.3300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 26, 1, '174.3300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ffbcf4d0a28e95185f2fc312eaf7bb51c4bc82e6ce5568ca7cdce6a803237782', NULL, NULL, NULL, NULL, 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 (641, '2021-07-15 22:01:56', 'SALE/POS2021/07/0598', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '47.0100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47.0100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '47.0100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8924683203e0cf10d3a69684d92b8b47b85fd05c596407263f918792fff09353', NULL, NULL, NULL, NULL, 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 (642, '2021-07-15 22:06:29', 'SALE/POS2021/07/0599', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '30.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '30.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b8f8e1a19583195bfec4495f312a6294d36a7736f31c777d98af429f7378124f', NULL, NULL, NULL, NULL, 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 (643, '2021-07-16 15:24:57', 'SALE/POS2021/07/0600', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '609.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '609.5000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 77, 1, '609.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2c9786130e7980998c18c0d98460d1f81710205eedd8867b0eadd8b8904fcab6', NULL, NULL, NULL, NULL, 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 (644, '2021-07-16 15:37:21', 'SALE/POS2021/07/0601', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 1, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '396926df83e7d6d6e42ac2cd200dc5d2fa9faf3ee04c2ed156b1b3d64fd15146', NULL, NULL, NULL, NULL, 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 (645, '2021-07-16 16:39:24', 'SALE/POS2021/07/0602', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '11.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 2, 1, '11.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6f2be7f63aef4783dc122d73d79e52c5d14e6bc19e62691ac4b36e68fa6c2003', NULL, NULL, NULL, NULL, 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 (646, '2021-07-16 08:47:00', 'SALE2021/07/0003', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '225.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '225.0000', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 19, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '2803b5b757713d7682c276999d0cb6dff94efb82e105a94423af3ee3e81c4665', NULL, NULL, NULL, NULL, 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 (647, '2021-07-17 14:41:07', 'SALE/POS2021/07/0603', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '211.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '211.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 24, 1, '211.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a1504a90ba308fcc07a3380e36646c406e0edb5f3f404e1c85b17a293978bd45', NULL, NULL, NULL, NULL, 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 (648, '2021-07-17 14:41:25', 'SALE/POS2021/07/0604', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '211.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '211.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 24, 1, '211.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aea171df31fbaa16d46244a29518f12e186af3917eb70d8100b791c5b79be1fa', NULL, NULL, NULL, NULL, 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 (649, '2021-07-17 14:59:14', 'SALE/POS2021/07/0605', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd272492d9824751eb6296cb2d22cec962dd90260dc269aa20488e8fa9724e23c', NULL, NULL, NULL, NULL, 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 (650, '2021-07-17 15:03:46', 'SALE/POS2021/07/0606', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '25.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '25.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '25.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9202e6aa377ffe029c75cbddf81233b0a390cf69b1f479aac542a7eaf5cdbc92', NULL, NULL, NULL, NULL, 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 (651, '2021-07-17 20:35:22', 'SALE/POS2021/07/0607', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '209.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '209.1000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 32, 1, '209.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '19e377b5f5ed1d588f4ecd73139fc4145e1796dae47e2ef5e0b0bea69a2502f5', NULL, NULL, NULL, NULL, 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 (652, '2021-07-17 20:37:59', 'SALE/POS2021/07/0608', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '168.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '168.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 30, 1, '168.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '699720411f096b0b5f5d04a8e1ea3a21bc4e9060c94f106bd4f3dde0ee42acf8', NULL, NULL, NULL, NULL, 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 (653, '2021-07-17 21:54:21', 'SALE/POS2021/07/0609', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '243.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '243.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 33, 1, '243.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd3a4b14ccc35296486c354508794266de8a2a8fe1862f2b9bc00ad35be1365a9', NULL, NULL, NULL, NULL, 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 (654, '2021-07-18 20:18:00', 'SALE/POS2021/07/0610', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '422.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '422.5000', 'completed', 'paid', 0, NULL, 7, 3, '2021-07-18 20:23:16', 61, 1, '437.5000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b6feea294f27a5f608c5ad67f919f4b9aa227bfc636127176afe31fb824522db', NULL, NULL, NULL, NULL, 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 (655, '2021-07-18 20:23:37', 'SALE/POS2021/07/0611', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '132.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '132.3000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 41, 1, '132.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '43931b013b4cb7620dfe71e3e6d8335104d1aa6932df0cbccdd7f67eff9832b3', NULL, NULL, NULL, NULL, 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 (656, '2021-07-18 20:30:39', 'SALE/POS2021/07/0612', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '23.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '23.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '23.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '111295c93861c68e140dc3d363b2ef52b772e68ea05cddd1335542b1e2b5211e', NULL, NULL, NULL, NULL, 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 (657, '2021-07-18 20:32:50', 'SALE/POS2021/07/0613', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '6.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '6.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '68297d858a85902427b3131bd86e762741cf1c893c2d80ecd14114b5ecbd22db', NULL, NULL, NULL, NULL, 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 (658, '2021-07-18 21:09:37', 'SALE/POS2021/07/0614', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '28.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '28.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ebcf0b628b3325e4ee4c12593af6c61187a6df4afcf80ca604ce04d6fb577738', NULL, NULL, NULL, NULL, 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 (659, '2021-07-18 21:19:35', 'SALE/POS2021/07/0615', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '109.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '109.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '109.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cb01767d54f85e61f95de0195e5fc88748e30929d51028e503ea1dfe91d61636', NULL, NULL, NULL, NULL, 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 (660, '2021-07-18 21:29:34', 'SALE/POS2021/07/0616', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '23.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '23.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 12, 1, '23.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4551adf426321074d82669276efb1f031e4d6eb119ed0e9d2d3677c1b8bb9e9', NULL, NULL, NULL, NULL, 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 (661, '2021-07-18 21:42:05', 'SALE/POS2021/07/0617', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3a0b43f9670fc605c009fba9d19e76fa838089754517662633895e6eb770fe61', NULL, NULL, NULL, NULL, 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 (662, '2021-07-18 22:02:42', 'SALE/POS2021/07/0618', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '64.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '64.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '64.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0531648edcabdec7b263f909f8fbe0179f6ab523ee8b6cbd19e63654b3cde37d', NULL, NULL, NULL, NULL, 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 (663, '2021-07-19 14:44:04', 'SALE/POS2021/07/0619', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '267.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '267.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 22, 1, '267.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '19f236ebd8eb9407aa9b085922581e72577289032915eda88108d1fce995556a', NULL, NULL, NULL, NULL, 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 (664, '2021-07-19 15:15:33', 'SALE/POS2021/07/0620', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 7, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d081c303fde4b74919f2b4e41c081a0bbaff5fa4770e2798d464109b25d4287', NULL, NULL, NULL, NULL, 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 (665, '2021-07-19 15:20:31', 'SALE/POS2021/07/0621', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '30.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '30.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4b4e66612bdc7fe4338d32259463bccb4ff3ce33c71fc7a66ca10b317378578', NULL, NULL, NULL, NULL, 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 (666, '2021-07-20 13:40:35', 'SALE/POS2021/07/0622', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '757.6900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '757.6900', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 72, 1, '757.6900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0eed46b72f65c3217727a5096aace74055d4f15b0891c12cd9c61cf9c0f6fe1d', NULL, NULL, NULL, NULL, 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 (667, '2021-07-20 14:59:41', 'SALE/POS2021/07/0623', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '249.1900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '249.1900', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 16, 1, '249.1900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '90a759b8abfddcccc783333ae724b9ffdccc891206eed45fad9754f2fbb0f9d0', NULL, NULL, NULL, NULL, 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 (668, '2021-07-20 15:24:59', 'SALE/POS2021/07/0624', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '89.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '89.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 10, 1, '89.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '88b2d43cbe5c5db221d07c22a6c4b340c5532767a478cca972c8f30144a48857', NULL, NULL, NULL, NULL, 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 (669, '2021-07-20 15:57:10', 'SALE/POS2021/07/0625', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dcbe4cac33fcd12561812f9ae61c48d9a4843b35b6237ebc7024d2198176f8ad', NULL, NULL, NULL, NULL, 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 (670, '2021-07-20 19:29:02', 'SALE/POS2021/07/0626', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '321.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '321.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 28, 1, '321.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e35aec95ca8d2fe7cbada71c5d6399e694ccfeeb9200cf2df58fabaf5bc24fd5', NULL, NULL, NULL, NULL, 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 (671, '2021-07-20 20:55:33', 'SALE/POS2021/07/0627', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '276.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '276.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 39, 1, '276.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6269733f7d222fa87af8765522c2264a2963b0423bca406c07c994b1e15194d0', NULL, NULL, NULL, NULL, 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 (672, '2021-07-20 21:37:32', 'SALE/POS2021/07/0628', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '77.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '77.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 14, 1, '77.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '99ff933015625076f9b11f3b02dc80e215e6348f3e2e97168fe4e9711f6dc7f1', NULL, NULL, NULL, NULL, 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 (673, '2021-07-20 23:32:56', 'SALE/POS2021/07/0629', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '178.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '178.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '178.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a19e16af8a657148dae3b0db51b37397865843be849e82ee9111d11619bcd6ff', NULL, NULL, NULL, NULL, 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 (674, '2021-07-21 14:32:34', 'SALE/POS2021/07/0630', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '208.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '208.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 39, 1, '208.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e426b3a3660b2b207dc0d8f30ef078cb85d5bb92640b393352ca5caca8547568', NULL, NULL, NULL, NULL, 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 (675, '2021-07-21 14:49:28', 'SALE/POS2021/07/0631', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '103.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '103.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 19, 1, '103.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '71d304fcc7e3917fa269ba2a651e60da95c1460929aac06bdffaf1ce9e12f69f', NULL, NULL, NULL, NULL, 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 (676, '2021-07-21 15:30:54', 'SALE/POS2021/07/0632', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '3.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '3.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fdb1a302fbf486d1a9dac35564981b3ae20d83d9905e1fd0b01b150629901e8a', NULL, NULL, NULL, NULL, 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 (677, '2021-07-21 21:26:31', 'SALE/POS2021/07/0633', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '541.1800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '541.1800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 63, 1, '541.1800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6a276cf926fd47a2663563fe070347aa72c236f62a369aa7d5e0fdb7cdd80c29', NULL, NULL, NULL, NULL, 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 (678, '2021-07-21 21:50:24', 'SALE/POS2021/07/0634', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '3.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '3.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8d8beca1152e82fb7404577111efe352154891b74ea7920481b228e339af638', NULL, NULL, NULL, NULL, 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 (679, '2021-07-22 13:20:00', 'SALE/POS2021/07/0635', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '483.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '483.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 39, 1, '483.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '09fdc9c94ad4ca05b7974bedb84b7851787e26efcc477f7949648f06df760e10', NULL, NULL, NULL, NULL, 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 (680, '2021-07-22 14:48:08', 'SALE/POS2021/07/0636', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '125.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '125.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '125.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '695d13fb8bba008a297e0d4ceca4a4d6aea8704b6d6eb2be9c41c67bab53a663', NULL, NULL, NULL, NULL, 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 (681, '2021-07-22 15:49:22', 'SALE/POS2021/07/0637', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '63.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '63.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '63.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2089570ac861319d3f509a088c55d17a9879add76b8b8c7a5776671a6d0c83e5', NULL, NULL, NULL, NULL, 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 (682, '2021-07-22 19:17:08', 'SALE/POS2021/07/0638', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '370.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '370.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 48, 1, '370.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'de39d68390f55654a514b2e574c280e5558734edeb1bdfb082bb1a400bc87da1', NULL, NULL, NULL, NULL, 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 (683, '2021-07-22 20:25:42', 'SALE/POS2021/07/0639', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '37.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '37.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '37.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '424b85f1ee015aed63275170c1f3865e19b76e317dd85d7b8dd10390f9e287ee', NULL, NULL, NULL, NULL, 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 (684, '2021-07-22 20:51:05', 'SALE/POS2021/07/0640', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '173.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '173.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 14, 1, '173.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6a05e4e88d8b433db41fbad2f53f6b4835461cb61b66f67217f63766c7d864a5', NULL, NULL, NULL, NULL, 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 (685, '2021-07-22 21:52:59', 'SALE/POS2021/07/0641', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '22.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '22.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '226d645fc4fddb4b8760f52e2ebcf2e5957312751a59d51e3f68913bd31830d2', NULL, NULL, NULL, NULL, 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 (686, '2021-07-23 15:56:52', 'SALE/POS2021/07/0642', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '253.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '253.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 19, 1, '253.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a2ff9679fff66f33b42e4b1a62ec8a540f975e1404defc44fbfba637a3fcdab4', NULL, NULL, NULL, NULL, 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 (687, '2021-07-23 20:28:25', 'SALE/POS2021/07/0643', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '669.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '669.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 86, 1, '669.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28eb244206c9f3192142d5569b5184a9d8dcc81d17bf22adf1873b055690e200', NULL, NULL, NULL, NULL, 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 (688, '2021-07-23 21:25:46', 'SALE/POS2021/07/0644', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '209.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '209.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 39, 1, '209.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f7325ed7bf7696f8992a186f688a0f3bbd83b80501775ca7a8c11bd357395275', NULL, NULL, NULL, NULL, 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 (689, '2021-07-23 21:56:23', 'SALE/POS2021/07/0645', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '209.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '209.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 39, 1, '209.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '77d445e9252921e46ae7c333b191c82556dffecfa7cb0822ace300fdedefb169', NULL, NULL, NULL, NULL, 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 (690, '2021-07-23 21:59:44', 'SALE/POS2021/07/0646', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '195.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '195.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 33, 1, '195.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c85e5d5f170443daacaaba59931b9df5d3369419c02a1c53d7a850bbbd4f158', NULL, NULL, NULL, NULL, 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 (691, '2021-07-24 15:41:10', 'SALE/POS2021/07/0647', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '158.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '158.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 29, 1, '158.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '381fe6ed05fae874440a4e793c5b381abcc858440c4b87087b1185443813dddb', NULL, NULL, NULL, NULL, 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 (692, '2021-07-24 18:51:08', 'SALE/POS2021/07/0648', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '15.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '15.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5eed4e1365fde9a09686267a0ee34f47c5852a6241daf2abc9ae24b2527cc2a1', NULL, NULL, NULL, NULL, 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 (693, '2021-07-24 18:52:47', 'SALE/POS2021/07/0649', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '37.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '37.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 7, 1, '37.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cc5263f6de814720513cefc9e624a438ebb8561c08a063352ae11e9fcc6d8692', NULL, NULL, NULL, NULL, 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 (694, '2021-07-24 19:29:33', 'SALE/POS2021/07/0650', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '460.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '460.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 35, 1, '460.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af1fb94eef2bb9d5db23092728bf597f2275f7f4ceb3f6da051c51556cab73e1', NULL, NULL, NULL, NULL, 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 (695, '2021-07-24 19:39:36', 'SALE/POS2021/07/0651', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '153.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '153.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 17, 1, '153.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6ac3aae501c5696db30ca5f5e34f32aa1c6efcb2d9682ed7087e0cf0543c3bfd', NULL, NULL, NULL, NULL, 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 (696, '2021-07-24 21:24:44', 'SALE/POS2021/07/0652', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '120.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 18, 1, '120.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f8733c384b69680adf37a2f1c887021fdd05cd73750e9382f62b9320b6c14c74', NULL, NULL, NULL, NULL, 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 (697, '2021-07-24 22:01:13', 'SALE/POS2021/07/0653', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '176.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '176.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 39, 1, '176.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9d60ac2e0e666f02387010c50e20212e56dfb77ea9a74cc93335ed7915451446', NULL, NULL, NULL, NULL, 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 (698, '2021-07-24 22:02:29', 'SALE/POS2021/07/0654', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd6ff6d109f01ce20058e17f05fa42fb1e55516692bd6b74eed3320a16375fb9c', NULL, NULL, NULL, NULL, 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 (699, '2021-07-25 18:42:59', 'SALE/POS2021/07/0655', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '183.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '183.9000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 44, 1, '183.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '80957664914839e7e80052d52a0d4682bb5134de13690573ddb29e1ca7c9a541', NULL, NULL, NULL, NULL, 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 (700, '2021-07-25 19:18:21', 'SALE/POS2021/07/0656', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '83.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '83.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 13, 1, '83.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b3c4f5ea1dc884b13745eb1a88d0156cbdc5f1a34ccbb0c0ce26e185db3c9eb8', NULL, NULL, NULL, NULL, 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 (701, '2021-07-25 20:07:31', 'SALE/POS2021/07/0657', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '255.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '255.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 18, 1, '255.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '832bdd570ae1b7f42473a8098640a008e8dc2d128f9ea2fc337927d8ee1b641b', NULL, NULL, NULL, NULL, 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 (702, '2021-07-25 20:22:28', 'SALE/POS2021/07/0658', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '133.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '133.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '133.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6fdf3367c0d0599bdb28cc176f11bd9d5cafdba1b03503d6fb4ee4999d4e708b', NULL, NULL, NULL, NULL, 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 (703, '2021-07-25 21:02:37', 'SALE/POS2021/07/0659', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '54.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '54.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 6, 1, '54.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '549bff3e9b7b4a5e1f07ae62c7101c8949f0d9b76b19fac11f78916a26b93f40', NULL, NULL, NULL, NULL, 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 (704, '2021-07-25 21:20:07', 'SALE/POS2021/07/0660', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '510.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '510.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '510.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b47d12557ebbf7bb9052897aeea73b0f0230167d4aa95767cc45842f63493f4', NULL, NULL, NULL, NULL, 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 (705, '2021-07-26 14:57:00', 'SALE/POS2021/07/0661', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '369.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '369.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 56, 1, '369.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '450b248342dd63fdbaab54b7b1b0547a2c15cc37d781160994cc7e08d2b99c18', NULL, NULL, NULL, NULL, 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 (706, '2021-07-26 15:32:54', 'SALE/POS2021/07/0662', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '17.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '17.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bfff787a45555159088c22626a4677d23c667d1e66e46b9880efc6a2f63ccf12', NULL, NULL, NULL, NULL, 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 (707, '2021-07-26 15:42:32', 'SALE/POS2021/07/0663', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 20, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9110d89226cea5a20cc5cc0b74ffaf52a3699af21d31c46d64dce5f9deecbb60', NULL, NULL, NULL, NULL, 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 (708, '2021-07-26 15:58:53', 'SALE/POS2021/07/0664', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '94.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '94.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 16, 1, '94.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '410840485e897b93ca892bedb672f3ed9ae97c361d1fc49720865e426aa43e9b', NULL, NULL, NULL, NULL, 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 (709, '2021-07-26 16:12:40', 'SALE/POS2021/07/0665', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '26.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '26.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 1, 1, '26.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f2895120c3918bc1450ffc7c211a48ae971b60c82fd6f8a510d8fee59f0181e3', NULL, NULL, NULL, NULL, 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 (710, '2021-07-26 18:07:37', 'SALE/POS2021/07/0666', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '396.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '396.2000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 45, 1, '396.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e211202a124c8642b1b70c6eadffc6b4744265bcbd8745e38a4743482cd860b4', NULL, NULL, NULL, NULL, 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 (711, '2021-07-26 20:06:10', 'SALE/POS2021/07/0667', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '165.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '165.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 14, 1, '165.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f96e8c8c005cfef6c1fe61abaa1cb780502e8792228a81813279a2d9f6161dba', NULL, NULL, NULL, NULL, 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 (712, '2021-07-26 20:08:14', 'SALE/POS2021/07/0668', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '165.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '165.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 14, 1, '165.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '270ba2d05f6f13c5b05b7859c277dcb7f73590b1e4acfa30f71096158ff62780', NULL, NULL, NULL, NULL, 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 (713, '2021-07-26 20:14:40', 'SALE/POS2021/07/0669', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '501.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '501.5000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 42, 1, '501.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3d8f2c2fc809c5961475195f3c5fc6ce80aba4aae5d3cdd5297634a2e7f1f5e', NULL, NULL, NULL, NULL, 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 (714, '2021-07-26 20:21:11', 'SALE/POS2021/07/0670', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '78.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '78.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 11, 1, '78.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '08d0746d0c159cef6cde3c6f1ff80b9c2aaa15f243afde6490667a8339f72af2', NULL, NULL, NULL, NULL, 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 (715, '2021-07-26 21:31:32', 'SALE/POS2021/07/0671', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '29.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '29.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 6, 1, '29.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a106e9aa50c28c810a0ce245f82938ec234ab8727a5826a8a1d510c52b22e2b9', NULL, NULL, NULL, NULL, 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 (716, '2021-07-26 21:31:43', 'SALE/POS2021/07/0672', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '165.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '165.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 17, 1, '165.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dd8d445409ee43ea4a1f07f6c2378f38eb18e7c9aa0bb9376b4d7165f44a63b4', NULL, NULL, NULL, NULL, 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 (717, '2021-07-26 21:35:29', 'SALE/POS2021/07/0673', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '22.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '22.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e444c0c17dc3b8828b34d3caba97f93702961e62c6fd6d9884b04c435136cccc', NULL, NULL, NULL, NULL, 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 (718, '2021-07-26 21:46:23', 'SALE/POS2021/07/0674', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '37.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '37.5000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 16, 1, '37.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db3e530cdf0b2573ada848fc8337b566e7d963c5ba45af01044101993ffc57b9', NULL, NULL, NULL, NULL, 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 (719, '2021-07-27 10:11:07', 'SALE/POS2021/07/0675', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '8.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '8.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e400ffb5258d92e5ef7bd96110ed978180f19ced4ae975a57e128181c980e90', NULL, NULL, NULL, NULL, 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 (720, '2021-07-27 10:11:44', 'SALE/POS2021/07/0676', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '78b6dfbbe6012c37cbd8c472e1f52bd388878b32bbc32ecb8c0e8a2e984e11c6', NULL, NULL, NULL, NULL, 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 (721, '2021-07-27 17:56:10', 'SALE/POS2021/07/0677', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '187.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '187.8300', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 35, 1, '187.8300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0f2766c3691f80596e3453ad30fc85d1db1e060b178d7a1e5e1ac3d8df1de72e', NULL, NULL, NULL, NULL, 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 (722, '2021-07-27 19:38:31', 'SALE/POS2021/07/0678', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '65.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '65.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 6, 1, '65.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2abe5c21be8a1a1191d5716d46127194beee1c6b2bcb97da05a571078ba0daf1', NULL, NULL, NULL, NULL, 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 (723, '2021-07-27 20:22:55', 'SALE/POS2021/07/0679', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '635.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '635.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 74, 1, '635.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e941bb8f21a170b0db6002975699d93e7464e31ae0dda537489d33af66a5dbb1', NULL, NULL, NULL, NULL, 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 (724, '2021-07-27 21:31:42', 'SALE/POS2021/07/0680', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '140.3300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '140.3300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 32, 1, '140.3300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a225f64bbcd29dc7c46851622be286fd6c66d3d59a3bd5e3ead9d18ba60f698', NULL, NULL, NULL, NULL, 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 (725, '2021-07-27 21:40:20', 'SALE/POS2021/07/0681', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '5.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.8300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '5.8300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '978d816a03d884d1413d5e818a02c3982dd5e7bfbb090863b08a72a56c5ea8e5', NULL, NULL, NULL, NULL, 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 (726, '2021-07-27 21:40:54', 'SALE/POS2021/07/0682', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '3.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3.8300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '3.8300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed541298e66faeaa213c3875441b618a67f05c6470988e61860a9b388c72aeee', NULL, NULL, NULL, NULL, 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 (727, '2021-07-27 22:13:58', 'SALE/POS2021/07/0683', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '305.2700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '305.2700', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 26, 1, '305.2700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b8b8cdc8f0a074faf694d7f62894d54bad893e2242d5feb39c86572597d1d48a', NULL, NULL, NULL, NULL, 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 (728, '2021-07-27 00:06:00', 'sales 27/7/21/commandos', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '649.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '649.0000', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 57, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'a424d23e1801ae6d2996a5d3c277c2b9575b578a4ac3a8f46d9ead8f9c7d5484', NULL, NULL, NULL, NULL, 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 (729, '2021-07-28 11:03:53', 'SALE/POS2021/07/0684', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '385.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '385.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 36, 1, '385.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8180efb47761d06fe041bd404417e60f8613dacb7df891649fc6768c78c7e3d7', NULL, NULL, NULL, NULL, 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 (730, '2021-07-28 17:04:48', 'SALE/POS2021/07/0685', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '134.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '134.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 12, 1, '134.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '445ac3cbdd20cc897dcf50a6391f33f9426b752c349605ca131c2f69a43b5df8', NULL, NULL, NULL, NULL, 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 (731, '2021-07-28 18:51:59', 'SALE/POS2021/07/0686', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '318.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '318.9000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 41, 1, '318.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a15cc451cbf3ecbeb1187f9207ba52d8cb4c7d039b24c7fcc61b4f3cddffa19a', NULL, NULL, NULL, NULL, 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 (732, '2021-07-28 19:06:48', 'SALE/POS2021/07/0687', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '3.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 2, 1, '3.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'acc8eedb326bbaa4a6f0734f9c254489481bb1163833f18f88b5fbf3237871bc', NULL, NULL, NULL, NULL, 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 (733, '2021-07-28 20:30:20', 'SALE/POS2021/07/0688', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '268.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '268.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 43, 1, '268.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1182042becbfabf68b099488465a9b0bbd0fa1c9958cd554e90864573f659c25', NULL, NULL, NULL, NULL, 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 (734, '2021-07-28 20:30:59', 'SALE/POS2021/07/0689', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '11.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '11.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6e4eb4f3c5cc9b892146fe187959d78ac1bcc95178d6075664de1d6d02aa63e6', NULL, NULL, NULL, NULL, 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 (735, '2021-07-28 20:44:32', 'SALE/POS2021/07/0690', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '152.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '152.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 38, 1, '152.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '90ed15236821b2299ae2493c15c415595c0f5738533b28e0682fab044f505a98', NULL, NULL, NULL, NULL, 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 (736, '2021-07-28 21:30:46', 'SALE/POS2021/07/0691', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 33, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '97c77958e97d5d0d80b08893c56a04de60d615b14ae4f9687e8fe10c24966560', NULL, NULL, NULL, NULL, 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 (737, '2021-07-28 21:41:00', 'SALE/POS2021/07/0692', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '20.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '20.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2f93693d1a1caad12d5717e7d1411fe8b039bc30b95a52eff7aae1e85a546d37', NULL, NULL, NULL, NULL, 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 (738, '2021-07-28 21:53:48', 'SALE/POS2021/07/0693', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '209.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '209.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '209.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '507a06d2ff5a61c838455597e7afd6c3956a8f2279d46cd0053b7436b340cda2', NULL, NULL, NULL, NULL, 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 (739, '2021-07-28 22:20:44', 'SALE/POS2021/07/0694', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '29.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '29.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 5, 1, '29.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '224b7b66bc056b225751e017d79ef63093931d129ccd1ba3f97d9573f9f0989f', NULL, NULL, NULL, NULL, 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 (740, '2021-07-29 13:58:46', 'SALE/POS2021/07/0695', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '799.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '799.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 60, 1, '799.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '06015102f4670172713ba828a5b3cbfbc6d30e92e43e0a79563e10db7d3f130a', NULL, NULL, NULL, NULL, 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 (741, '2021-07-29 15:04:43', 'SALE/POS2021/07/0696', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '89.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '89.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '89.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e97c6a6f0dfbf8637eebf1f0f3b65129589702f505b1cb5925de0a1db2057b0f', NULL, NULL, NULL, NULL, 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 (742, '2021-07-29 20:59:20', 'SALE/POS2021/07/0697', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '430.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '430.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 53, 1, '430.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e31d55137279310cd294d5d03fe9b2ee6bf06852561f4ddf19d648cd31de0f5', NULL, NULL, NULL, NULL, 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 (743, '2021-07-29 21:49:38', 'SALE/POS2021/07/0698', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '807.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '807.6000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 98, 1, '807.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8a51dcca9d31a5b809b8732f5c3936888c8cc387b6b219bcba8147922b8cdc45', NULL, NULL, NULL, NULL, 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 (744, '2021-07-29 21:51:19', 'SALE/POS2021/07/0699', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '807.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '807.6000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 98, 1, '807.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c1d8c2e472e1b914f8c45af5357ab00948bc0860a2041b22643f9b2187dfb7c3', NULL, NULL, NULL, NULL, 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 (745, '2021-07-29 22:09:37', 'SALE/POS2021/07/0700', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '218.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '218.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 23, 1, '218.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '87c3f38415376996b648fcd75f7104cbd4afa61771d5c1f8892c5d9fafb68450', NULL, NULL, NULL, NULL, 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 (746, '2021-07-30 08:53:30', 'SALE/POS2021/07/0701', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '13.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 3, 1, '13.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e59cc889da4a7a83cca2d0658ebc7ac3253e19ec8e557d4f30d6b84716bb26d2', NULL, NULL, NULL, NULL, 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 (747, '2021-07-30 09:58:10', 'SALE/POS2021/07/0702', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '33.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '33.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 15, 1, '33.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '05e6e166e8a7009cb8c7071735bb849bf6f18dfdff44c5b4ff9d5115553981fc', NULL, NULL, NULL, NULL, 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 (748, '2021-07-30 18:27:32', 'SALE/POS2021/07/0703', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '183.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '183.4000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 48, 1, '183.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '79e0c96804a8677b423ad83421d9bf377de375e9779cdcf8d7b5306c80af24df', NULL, NULL, NULL, NULL, 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 (749, '2021-07-30 18:33:44', 'SALE/POS2021/07/0704', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '3.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '3.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5503169fcf13522cf05976c6705be716bd5d493c72a170756d8cdc7a9fec0448', NULL, NULL, NULL, NULL, 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 (750, '2021-07-30 18:58:29', 'SALE/POS2021/07/0705', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '4.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4.9000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 6, 1, '4.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ab4ca9edb0a869176c369077d01aea40d279534dda923fbf3b681ac940cceae', NULL, NULL, NULL, NULL, 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 (751, '2021-07-30 19:07:37', 'SALE/POS2021/07/0706', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '17.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '17.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f34ce4393d44d4cf6211e9db1700bd877b9e3043755b92d12d4eada438f1f8b0', NULL, NULL, NULL, NULL, 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 (752, '2021-07-30 19:25:14', 'SALE/POS2021/07/0707', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '55.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '55.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '55.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8708275e46a3bc6d4e48954c18f1946bf5107d57ab758491400ff4be125d9848', NULL, NULL, NULL, NULL, 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 (753, '2021-07-30 19:50:01', 'SALE/POS2021/07/0708', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '17.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '17.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '220e3812283e1bebbf0412be53e0c6fe145273062e1277594ef05da9248e9597', NULL, NULL, NULL, NULL, 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 (754, '2021-07-30 20:03:18', 'SALE/POS2021/07/0709', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '8.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 5, 1, '8.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9aa989e745cb7397d9a9ec98eac0a4bdb576e041e922e835ba05ed386a1cf491', NULL, NULL, NULL, NULL, 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 (755, '2021-07-30 20:08:33', 'SALE/POS2021/07/0710', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '1.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 2, 1, '1.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b062b69052727d18974742685a05ef6b65f41ed75658414b760194985182d7a1', NULL, NULL, NULL, NULL, 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 (756, '2021-07-30 21:06:00', 'SALE/POS2021/07/0711', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '62.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '62.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 8, 1, '62.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27b1ea11819da7379be6708c663d4c543f568b0a505cf44625af2dc8d1ff8277', NULL, NULL, NULL, NULL, 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 (757, '2021-07-30 21:32:38', 'SALE/POS2021/07/0712', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '17.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 4, 1, '17.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0634e13f7b78071fc4e0f7e94551b9919bfe10b67588cc3ba2a697d86334c039', NULL, NULL, NULL, NULL, 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 (758, '2021-07-31 09:17:46', 'SALE/POS2021/07/0713', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '30.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 14, 1, '30.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ea331d8aa1a74cb5dda4b3ec7bf50c3897640fe93ee116c311f9b8ebac8f5150', NULL, NULL, NULL, NULL, 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 (759, '2021-07-31 10:09:52', 'SALE/POS2021/07/0714', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '61.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '61.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 37, 1, '61.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '895b2e7752cab925d89bc8bfee0770a8560aae8fcd887365e780a72001621ed3', NULL, NULL, NULL, NULL, 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 (760, '2021-07-31 10:37:50', 'SALE/POS2021/07/0715', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '18.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 2, 1, '18.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '723e15332199ea0ed66126e6c0f744907a497a1d79f4645f2ff328e59e5edd06', NULL, NULL, NULL, NULL, 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 (761, '2021-07-31 11:01:40', 'SALE/POS2021/07/0716', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '33.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '33.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 7, 1, '33.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ae368ba8fa71f4d919d0f863b83058b15880bd063eb9b845ab414ba0787a4376', NULL, NULL, NULL, NULL, 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 (762, '2021-07-31 12:32:37', 'SALE/POS2021/07/0717', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '112.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '112.8300', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 8, 1, '112.8300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '387e16859d71f246623d74b1cfabea84b03d5feaab43b681eba279dcaa6c35e9', NULL, NULL, NULL, NULL, 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 (763, '2021-07-31 12:50:01', 'SALE/POS2021/07/0718', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '5.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 2, 1, '5.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c0049fb96513087ba41964483369526e356fa6004343430366d131d145c46f62', NULL, NULL, NULL, NULL, 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 (764, '2021-07-31 13:13:58', 'SALE/POS2021/07/0719', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '1.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 2, 1, '1.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e4704db4858329145063e8151ba1a55d8f3df4f23de2d7d64674d8d4cec3a617', NULL, NULL, NULL, NULL, 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 (765, '2021-07-31 13:40:06', 'SALE/POS2021/07/0720', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '11.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '11.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c1255b8d2d82c35552cf6b3f7402ae6b7027d103031d7e0f9fdae03f8ae4e9c', NULL, NULL, NULL, NULL, 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 (766, '2021-07-31 14:32:27', 'SALE/POS2021/07/0721', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '70.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '70.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 8, 1, '70.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd9309e380eb78889bbb2f41c6f813dc352187d6678315d81ddba68d15506ace5', NULL, NULL, NULL, NULL, 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 (767, '2021-07-31 15:23:58', 'SALE/POS2021/07/0722', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '36.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '36.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 4, 1, '36.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f121d9cd50ec4ccdead99ab66f2689489bec37472d8fb9174b93ec13c27d82a', NULL, NULL, NULL, NULL, 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 (768, '2021-07-31 16:30:30', 'SALE/POS2021/07/0723', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '4.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 4, 1, '4.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b06c3b86334847044231457c302abea9988139900386879de2e8350d7185c711', NULL, NULL, NULL, NULL, 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 (769, '2021-07-31 17:37:12', 'SALE/POS2021/07/0724', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '324.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '324.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 33, 1, '324.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '351e3633a22fd4e5ebcba76148980d2e20f1db1a9071f0c857665692e5ae1fbc', NULL, NULL, NULL, NULL, 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 (770, '2021-07-31 19:12:06', 'SALE/POS2021/07/0725', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '18.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 3, 1, '18.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '20c3e35754c81ae1574515e74c6b42448ff784c5eacea3434c66fa1e73e015d1', NULL, NULL, NULL, NULL, 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 (771, '2021-07-31 19:21:20', 'SALE/POS2021/07/0726', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '117.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '117.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 18, 1, '117.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6026e2a05ca43f81da789e6bbe9953636d11951ffdc5eefb420a40d696f7ab64', NULL, NULL, NULL, NULL, 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 (772, '2021-07-31 19:42:43', 'SALE/POS2021/07/0727', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '54.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '54.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 8, 1, '54.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2334f5ad4339508d90e80af9bdf1e15b7b09d30ca8684b077466cd2688c29860', NULL, NULL, NULL, NULL, 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 (773, '2021-07-31 19:46:35', 'SALE/POS2021/07/0728', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '48.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '48.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '48.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4118daae0ffb2acb11c4fb4d9e7ee1085e519d65f92f063197904996493e109f', NULL, NULL, NULL, NULL, 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 (774, '2021-07-31 20:54:32', 'SALE/POS2021/07/0729', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '38.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '38.6000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 8, 1, '38.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '91351c4e47ee9de424e7a99c37ac543a5820178ac31393e2357d9d1b7465ab92', NULL, NULL, NULL, NULL, 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 (775, '2021-07-31 21:05:54', 'SALE/POS2021/07/0730', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '8.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '8.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f02d73005fb6eb175651a2776e4d5556962000d588042cd58d152916ca570a29', NULL, NULL, NULL, NULL, 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 (776, '2021-07-31 21:11:43', 'SALE/POS2021/07/0731', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '3.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '3.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4fad8edce442e4696b3cf8b01a731e8d5e88e428590eb91a1ce5358ae4b30f15', NULL, NULL, NULL, NULL, 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 (777, '2021-07-31 21:15:04', 'SALE/POS2021/07/0732', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '802.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '802.2000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 104, 1, '802.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7db09dbf6050a35b4432cffd0835ab259971c3d105bda7565bc983dd1733f2a7', NULL, NULL, NULL, NULL, 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 (778, '2021-07-31 21:24:46', 'SALE/POS2021/07/0733', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '35.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '35.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '35.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fdf9ed43ffb6127b6019b3770c913d4b4e06a120195787fbbfc09df5ec42fde5', NULL, NULL, NULL, NULL, 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 (779, '2021-07-31 21:30:33', 'SALE/POS2021/07/0734', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '1.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '1.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3f2032e97935c16d8f3950a03886a3d66c05abb7edc1ff7ed6da4920228e7ee2', NULL, NULL, NULL, NULL, 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 (780, '2021-07-31 11:25:00', 'SALE2021/08/0004', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '318.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '318.0000', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 27, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '04a1ce16af4d485ceb0faa078d820e9eaf80bf3298c0e25130baf074e5c8e99c', NULL, NULL, NULL, NULL, 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 (781, '2021-08-01 19:11:38', 'SALE/POS2021/08/0735', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '219.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '219.3000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 42, 1, '219.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5263e7924df27b9f5f0a248877f0136f3bc079b1f8aae1a200f980c37a10afa9', NULL, NULL, NULL, NULL, 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 (782, '2021-08-01 19:36:27', 'SALE/POS2021/08/0736', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '32.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '32.5000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 4, 1, '32.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '606c13349c574b62fea82cd988c153364ff436962128ef28cffa1b3cbf97126d', NULL, NULL, NULL, NULL, 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 (783, '2021-08-01 19:36:53', 'SALE/POS2021/08/0737', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '34.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '34.3000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 7, 1, '34.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aafea35c94bca8216045941d03bce32bcff9ba0756e61dc5b28618852a783fd2', NULL, NULL, NULL, NULL, 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 (784, '2021-08-01 19:45:35', 'SALE/POS2021/08/0738', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '0.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.5000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 1, '0.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fdb4c53a6d5f97e3eb53fde6dbac46a6a3fae0fcda99c0722a449a8686bb5b6f', NULL, NULL, NULL, NULL, 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 (785, '2021-08-01 19:56:38', 'SALE/POS2021/08/0739', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '519.1700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '519.1700', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 63, 1, '519.1700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca23cddaebf4f7995771565286235f33c73c56bafc1c554cdec5d6d117199030', NULL, NULL, NULL, NULL, 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 (786, '2021-08-01 20:27:16', 'SALE/POS2021/08/0740', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '41.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '41.5000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 8, 1, '41.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6a363a1a1e59ffb322dbb1a45527418ddb282a15f6af34121855db9d43b6f271', NULL, NULL, NULL, NULL, 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 (787, '2021-08-01 20:28:38', 'SALE/POS2021/08/0741', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '38.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '38.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 6, 1, '38.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '41daeef0f8b040c63f11b9d66a2484871de665589147599e1c29e37e78ce61ac', NULL, NULL, NULL, NULL, 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 (788, '2021-08-01 20:56:36', 'SALE/POS2021/08/0742', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '28.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 4, 1, '28.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dcdb4fda1e9fe91ee4d0939eb0ff930422ad63527139c473e6bc8f5b7802e92e', NULL, NULL, NULL, NULL, 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 (789, '2021-08-01 21:34:23', 'SALE/POS2021/08/0743', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '239.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '239.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 23, 1, '239.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '84013c51613880e42b05fb5b6da9c8312a1eb1584461baf95bd946029b916d42', NULL, NULL, NULL, NULL, 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 (790, '2021-08-01 21:41:02', 'SALE/POS2021/08/0744', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '17.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 5, 1, '17.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0565f077a7adf65c978bdf97d4ccfab6cd65328730c1c3ef2991ed0854de1030', NULL, NULL, NULL, NULL, 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 (791, '2021-08-01 21:42:37', 'SALE/POS2021/08/0745', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '49.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '49.5000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 2, 1, '49.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '104d5c1a6104f41927938c8b628054234b7514deb59debb74b40a14a7e8e45a5', NULL, NULL, NULL, NULL, 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 (792, '2021-08-01 22:00:50', 'SALE/POS2021/08/0746', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '2.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.0000', 'completed', 'paid', 0, NULL, 13, NULL, NULL, 1, 1, '2.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4eb210c686873ba29d7eed19b831f8181315e6ac0db22ff958cf4e940244e44f', NULL, NULL, NULL, NULL, 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 (793, '2021-08-02 10:00:32', 'SALE/POS2021/08/0747', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '16.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '16.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 5, 1, '16.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7fc54b8a59eb726f9ab0052a6bd40411c83ad321a186da343d8ca655d1be7f32', NULL, NULL, NULL, NULL, 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 (794, '2021-08-02 11:03:14', 'SALE/POS2021/08/0748', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '20.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 3, 1, '20.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '245d0f4da3cf81ce7070ac8285cb0531a0fea283181c3394f7d7e0e0586a4935', NULL, NULL, NULL, NULL, 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 (795, '2021-08-02 15:35:25', 'SALE/POS2021/08/0749', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '174.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '174.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 32, 1, '174.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba16a88b80f407323264bdd04efda1a3b1afab8e52e0ce3cbcf2e97398497929', NULL, NULL, NULL, NULL, 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 (796, '2021-08-02 16:05:14', 'SALE/POS2021/08/0750', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '102.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '102.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 14, 1, '102.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3ddb48ca608962ddacccff0ed79dad0601ab55e52c34d9fb38dcb3e875eec179', NULL, NULL, NULL, NULL, 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 (797, '2021-08-02 18:06:18', 'SALE/POS2021/08/0751', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '69.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '69.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 9, 1, '69.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '89f9e7859347796d88f23ff3e8bbe1a659bcfb1be1a930392c0175493ef3aa33', NULL, NULL, NULL, NULL, 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 (798, '2021-08-02 18:53:25', 'SALE/POS2021/08/0752', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '106.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '106.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 12, 1, '106.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '756513937edcecbb561a279358b0fe128545513478a16fcfcb6f8c69f3f34d9b', NULL, NULL, NULL, NULL, 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 (799, '2021-08-02 19:02:24', 'SALE/POS2021/08/0753', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '57.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '57.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '57.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ee9c32e9505db236644740c89f4c0fb324f9fe99ac26cdd0bf28021ca9ca494d', NULL, NULL, NULL, NULL, 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 (800, '2021-08-02 19:13:36', 'SALE/POS2021/08/0754', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '275.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '275.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 25, 1, '275.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fb5bd68651d21329f0ceef5c7b6ec481d029862fa932b127b1939506bc6eaa3a', NULL, NULL, NULL, NULL, 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 (801, '2021-08-02 19:25:47', 'SALE/POS2021/08/0755', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '26.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '26.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 7, 1, '26.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '37cc5d815ab3277df605ea62fb12fc8252c2ceec02a5fe897623f198bf8229f9', NULL, NULL, NULL, NULL, 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 (802, '2021-08-02 19:46:01', 'SALE/POS2021/08/0756', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '23.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '23.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '23.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27794cf5c15e3bdaa38253ecc2b4c1e0e3180041efc747bb4278350ce641844d', NULL, NULL, NULL, NULL, 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 (803, '2021-08-02 20:08:31', 'SALE/POS2021/08/0757', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '6.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '6.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0c98ce6210529a1a16e35b22b8bb2ec38e6a26743d699639ed34579a98ddb479', NULL, NULL, NULL, NULL, 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 (804, '2021-08-02 20:29:59', 'SALE/POS2021/08/0758', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '47.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 5, 1, '47.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '073a0d1d7f8133e5467315236339b75ee75edbf66c25b0c3e498be2b0660af04', NULL, NULL, NULL, NULL, 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 (805, '2021-08-02 20:30:51', 'SALE/POS2021/08/0759', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '403.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '403.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 44, 1, '403.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e1c283ff01c40fa246bd982d0620c5bd1a8424e3e1143bfe3ed8572caec51de9', NULL, NULL, NULL, NULL, 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 (806, '2021-08-02 21:14:29', 'SALE/POS2021/08/0760', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '280.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '280.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 27, 1, '280.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f0e2e40bea0f82ca4ef5d1ab1e61b4c0376d5b6254cdcc249a920c69a2d68bc6', NULL, NULL, NULL, NULL, 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 (807, '2021-08-02 21:33:01', 'SALE/POS2021/08/0761', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '54.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '54.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 7, 1, '54.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '74f97e9f27b80582b46a118e22c8d35facf43b5488b12ebc4281f5d3a3e785f6', NULL, NULL, NULL, NULL, 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 (808, '2021-08-02 21:49:06', 'SALE/POS2021/08/0762', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '6.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '6.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0dfa1aeb00995f854e779967a3ba1d8f244d1257c94fba3a7e99f566e917aa9d', NULL, NULL, NULL, NULL, 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 (809, '2021-08-03 09:18:41', 'SALE/POS2021/08/0763', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '11.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 4, 1, '11.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f33502608380e542eae7f3f947730c64382e5a523815417ed8233d07d4058d0b', NULL, NULL, NULL, NULL, 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 (810, '2021-08-03 10:40:46', 'SALE/POS2021/08/0764', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eee54761152c26c84fbd8b936f97c79223d73a9fea32d27ff240edea26bbb837', NULL, NULL, NULL, NULL, 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 (811, '2021-08-03 13:26:10', 'SALE/POS2021/08/0765', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '163.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '163.8300', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 17, 1, '163.8300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4ae4de6b47f7b95dac0aa979df794a3670c398873b68d12ec0497e4f5b5c701e', NULL, NULL, NULL, NULL, 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 (812, '2021-08-03 13:54:25', 'SALE/POS2021/08/0766', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '133.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '133.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 27, 1, '133.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7b631212efc74552c0fb8e551a592fdc090cc297ad691a41ed1be3e623fbb127', NULL, NULL, NULL, NULL, 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 (813, '2021-08-03 14:14:13', 'SALE/POS2021/08/0767', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '88.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '88.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 4, 1, '88.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3377825b10659d3b76685613c0bf9223233a6316e2dc4eb69c2dd6177018f3b6', NULL, NULL, NULL, NULL, 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 (814, '2021-08-03 14:31:59', 'SALE/POS2021/08/0768', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '31.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '31.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 2, 1, '31.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '45ef561a45cc05e46d78be1957548806e72a234a8ecf26b3344b02186a30b7bf', NULL, NULL, NULL, NULL, 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 (815, '2021-08-03 14:43:06', 'SALE/POS2021/08/0769', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '29.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '29.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '29.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '25ad4ff5f98764f069edde9e9aad85efa69abcddd9adb6d79e434a4623d45dd0', NULL, NULL, NULL, NULL, 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 (816, '2021-08-03 15:05:20', 'SALE/POS2021/08/0770', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '52.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '52.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '52.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f0812bd1b22d60899718dfb685fabe2a68e60126163dd1cc71aea67e552d933e', NULL, NULL, NULL, NULL, 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 (817, '2021-08-03 15:13:23', 'SALE/POS2021/08/0771', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '10.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9c25581a051f5378c77f96e71173b5313fcf63857de345ac80910fca1b6ffcee', NULL, NULL, NULL, NULL, 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 (818, '2021-08-03 16:23:30', 'SALE/POS2021/08/0772', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '47.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 9, 1, '47.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f5f3cce104c288cf10176e7e7145ec84af586146304743fd56d5e5906ac50065', NULL, NULL, NULL, NULL, 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 (819, '2021-08-03 17:10:07', 'SALE/POS2021/08/0773', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '22.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 4, 1, '22.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '515b57c39ee2d3c6aec46c48f8f4ca5bf24c90b799196ff1436f5704c59a75eb', NULL, NULL, NULL, NULL, 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 (820, '2021-08-03 17:13:25', 'SALE/POS2021/08/0774', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '35.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '35.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 14, 1, '35.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '32166f90cc38cef18df4d10bbc53417ce70e52467fa527c986a590fa271b630c', NULL, NULL, NULL, NULL, 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 (821, '2021-08-03 17:25:10', 'SALE/POS2021/08/0775', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '258.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '258.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 29, 1, '258.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bb2fb2fd904414cf564e39bfc10d7757083e43b68b56a73e0d86fabe9729b721', NULL, NULL, NULL, NULL, 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 (822, '2021-08-03 17:55:27', 'SALE/POS2021/08/0776', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '66.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '66.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '66.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df116ecb61a62b27210289920acaae3eef559de221193a08007f3c3a9bcf1b2a', NULL, NULL, NULL, NULL, 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 (823, '2021-08-03 19:32:04', 'SALE/POS2021/08/0777', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '162.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '162.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 14, 1, '162.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d642cdab4598f31ebe82058fb952047ba0aab6c5fd82ed6208a085013b00e6b', NULL, NULL, NULL, NULL, 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 (824, '2021-08-03 20:33:14', 'SALE/POS2021/08/0778', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '263.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '263.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 26, 1, '263.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '24a86a8d4fd5fb9ceef099ead7c9c6d7022956efbf2691abda0aefcd2ddb410d', NULL, NULL, NULL, NULL, 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 (825, '2021-08-03 20:37:24', 'SALE/POS2021/08/0779', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '187.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '187.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 17, 1, '187.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2f49019469093c2d728218374a1c30f9557ed20d82717ca20eec53ccb0151683', NULL, NULL, NULL, NULL, 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 (826, '2021-08-03 21:23:24', 'SALE/POS2021/08/0780', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 4, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '124113aa5335423abf76fb5929bcd59b281a599f75cc7144a794dfee1348a842', NULL, NULL, NULL, NULL, 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 (827, '2021-08-03 21:49:39', 'SALE/POS2021/08/0781', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '240.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '240.6000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 47, 1, '240.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c3d1153be00bae1d310c6755681ca4f6fc1218210d2f4621526eecce4f8cad3', NULL, NULL, NULL, NULL, 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 (828, '2021-08-04 11:49:52', 'SALE/POS2021/08/0782', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '50.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 8, 1, '50.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3825360cfe186e2d1f5837ecfb13a29cd283aaf17ebd9bff21829dce7847a6ba', NULL, NULL, NULL, NULL, 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 (829, '2021-08-04 12:41:43', 'SALE/POS2021/08/0783', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '20.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 6, 1, '20.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c5b9aecbe76f184e5c5038753acf2c387905643d54d6d099c163750af2dad67', NULL, NULL, NULL, NULL, 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 (830, '2021-08-04 14:00:11', 'SALE/POS2021/08/0784', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '8.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 4, 1, '8.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8fb1c1189f2b5f858f0fb3a8d5f7973908ef343eb9fd839b0e2eab5c90107311', NULL, NULL, NULL, NULL, 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 (831, '2021-08-04 14:07:39', 'SALE/POS2021/08/0785', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '435.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '435.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 44, 1, '435.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2efc1a17b4a0fea299e5a2a93fa23d1c9399bc98eb672b65340e3cf7b6974378', NULL, NULL, NULL, NULL, 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 (832, '2021-08-04 15:45:50', 'SALE/POS2021/08/0786', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '81.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '81.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 16, 1, '81.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a01cddbea140141c04d5c2c28a70a414766a1cf47790ea4b68eee1f1de63304', NULL, NULL, NULL, NULL, 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 (833, '2021-08-04 15:50:01', 'SALE/POS2021/08/0787', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '10.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '57081a9f11b2bc69495316197f3ee87e4ab614caba2765d3c4da6b087f594eb3', NULL, NULL, NULL, NULL, 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 (834, '2021-08-04 18:12:16', 'SALE/POS2021/08/0788', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '43.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '43.8000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 12, 1, '43.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e7429df1918c168b9a69618d7feecf8eaa25adde8e6fc9a73d7c4adfac9ffe6a', NULL, NULL, NULL, NULL, 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 (835, '2021-08-04 19:22:02', 'SALE/POS2021/08/0789', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '359.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '359.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 33, 1, '359.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5be3375db785c21fbf796d4c1b881c56f10b764563973abc234b071ff3ac7f3c', NULL, NULL, NULL, NULL, 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 (836, '2021-08-04 20:37:52', 'SALE/POS2021/08/0790', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '229.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '229.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 43, 1, '229.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '39ee8684950d4bdd9aadb92d4c6c3ebf8af3e37b03450091834f991ff633ea8c', NULL, NULL, NULL, NULL, 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 (837, '2021-08-04 21:07:30', 'SALE/POS2021/08/0791', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '140.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4a33d68744ec4b79cf1103a6e0a2456725a0f9ba35c4aa848e572e004e81ad84', NULL, NULL, NULL, NULL, 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 (838, '2021-08-04 21:13:49', 'SALE/POS2021/08/0792', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '256.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '256.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 29, 1, '256.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ec35f97b8e53ba14d56c4994c13190f57a0eb567612dd3a6742df97a5484d01', NULL, NULL, NULL, NULL, 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 (839, '2021-08-04 21:53:01', 'SALE/POS2021/08/0793', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 21, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b478bf60fd684144d7249dd7ef9f1441928cb203340771a2adc3a7dad04597b3', NULL, NULL, NULL, NULL, 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 (840, '2021-08-04 23:31:21', 'SALE/POS2021/08/0794', 1, 'Walk-in Customer', 3, 'Commandos', 3, '', '', '88.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '88.5000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '88.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '31dadbb9b78216a18b33d97a85b33bbf722e9c45295c0408351d4de7be6aa99c', NULL, NULL, NULL, NULL, 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 (841, '2021-08-05 13:11:40', 'SALE/POS2021/08/0795', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '211.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '211.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 29, 1, '211.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dcee8891f3bc3649b3458db39f7ef176813cd2bfa0b53f85c74c3e5e29e43efe', NULL, NULL, NULL, NULL, 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 (842, '2021-08-05 13:33:59', 'SALE/POS2021/08/0796', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '142.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '142.8000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 29, 1, '142.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '99105a93ae154287d4a9e9bca942045ab46639a27b54051e3bde4b0e4ab45b20', NULL, NULL, NULL, NULL, 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 (843, '2021-08-05 14:16:07', 'SALE/POS2021/08/0797', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '37.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '37.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '37.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '43cf189a93c594f73b3e8ae04175b13b331b3039b414891bbd64093679f715a9', NULL, NULL, NULL, NULL, 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 (844, '2021-08-05 15:05:20', 'SALE/POS2021/08/0798', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '65.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '65.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 12, 1, '65.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '306a774b2a95c9fee08ce99215bd8d76529e620051c3a215044cf58d9b224353', NULL, NULL, NULL, NULL, 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 (845, '2021-08-05 15:05:30', 'SALE/POS2021/08/0799', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '224.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '224.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 21, 1, '224.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3d99471d992b7a9e985e78c850cac9159583bdca6aef727a45aecef11b96bfa4', NULL, NULL, NULL, NULL, 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 (846, '2021-08-05 15:40:43', 'SALE/POS2021/08/0800', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '75.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '75.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 40, 1, '75.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b23b7951effefc134ba079fa05894e3ddc8cb8df414d8c4e686e9a73874b670d', NULL, NULL, NULL, NULL, 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 (847, '2021-08-05 17:17:13', 'SALE/POS2021/08/0801', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '33.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '33.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 10, 1, '33.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '015e6e824a7fcfe5d3b94b49645b3c3678c0949a82dd164d5c771412031b9d20', NULL, NULL, NULL, NULL, 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 (848, '2021-08-05 17:30:46', 'SALE/POS2021/08/0802', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '23.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '23.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 5, 1, '23.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c7e638c10201bf8e46776e4a5145c33e31e4a903e9c7d900a4ddf24c4b991e4', NULL, NULL, NULL, NULL, 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 (849, '2021-08-05 18:38:41', 'SALE/POS2021/08/0803', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '93.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '93.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 11, 1, '93.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c6353efcb1bd5c387a59288031e243652751057973a06ed276ecc52f4b82c916', NULL, NULL, NULL, NULL, 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 (850, '2021-08-05 18:40:01', 'SALE/POS2021/08/0804', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '22.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 2, 1, '22.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6d257666bf1e0b23b2ebb875f80717754f8b00544967b395ded6e5514278b1e', NULL, NULL, NULL, NULL, 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 (851, '2021-08-05 18:43:40', 'SALE/POS2021/08/0805', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '11.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '11.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8ecb4e95dc24da82e73adae227f879fb64ce7fb9e27201decd1c54889366a1b4', NULL, NULL, NULL, NULL, 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 (852, '2021-08-05 19:41:12', 'SALE/POS2021/08/0806', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '83.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '83.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 11, 1, '83.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd5bcc7811eb720875b0f4efe1913d13f4fb8db82d317e72eddca526222390092', NULL, NULL, NULL, NULL, 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 (853, '2021-08-05 19:48:21', 'SALE/POS2021/08/0807', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '879.0200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '879.0200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 56, 1, '879.0200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7a47ee73322c415e019d017231a8becd36e11b543d65f5bdeeaa028745b56b1c', NULL, NULL, NULL, NULL, 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 (854, '2021-08-05 20:29:18', 'SALE/POS2021/08/0808', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '9.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '9.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4105b69489be9e4d14dc79d151b2320e21af0d71fcc57531145b62ed04e2d46a', NULL, NULL, NULL, NULL, 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 (855, '2021-08-05 20:38:57', 'SALE/POS2021/08/0809', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '65.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '65.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 7, 1, '65.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3b42d6402a4edb5f487162359b28b1e09a12df2fbc6371684e8ae4016b2333b0', NULL, NULL, NULL, NULL, 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 (856, '2021-08-05 21:07:54', 'SALE/POS2021/08/0810', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '290.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '290.3000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 32, 1, '290.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e27dba275d5506dc26ddde89d1db6b15682b1e5d4eddff467ac9c21a027da360', NULL, NULL, NULL, NULL, 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 (857, '2021-08-05 21:09:51', 'SALE/POS2021/08/0811', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '108.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '108.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 9, 1, '108.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bf97ce0e6b6b3069e97bfd6e4309b4734697e0c98315b34330fe55ce1a9c9faf', NULL, NULL, NULL, NULL, 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 (858, '2021-08-05 21:48:35', 'SALE/POS2021/08/0812', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '87.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '87.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '87.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c8ea74d4b51658b275d6554a72162e7edec4b715ad354a12ae8efa6cc47ad5d2', NULL, NULL, NULL, NULL, 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 (859, '2021-08-05 22:21:34', 'SALE/POS2021/08/0813', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '151.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '151.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 19, 1, '151.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1cf4b028d14d9e21ae1636379636c248ce9a6974612da5a93f7027ffc236e049', NULL, NULL, NULL, NULL, 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 (860, '2021-08-05 23:41:48', 'SALE/POS2021/08/0814', 1, 'Walk-in Customer', 3, 'Commandos', 3, '', '', '111.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '111.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '111.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e1742106ee9267860618441ba0719032dbcd72b9d9596686e37f1a4464d45863', NULL, NULL, NULL, NULL, 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 (861, '2021-08-05 23:39:00', 'F0002/1/8/21/ROSA/NISSI', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '2.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.0000', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 1, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '04d9f8c93487b8ec9b05f3e67f18491f280b93fb945531d6b8ebe540a9fe48ab', NULL, NULL, NULL, NULL, 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 (862, '2021-08-05 23:53:58', 'SALE/POS2021/08/0815', 1, 'Walk-in Customer', 3, 'Commandos', 3, '', '', '15.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 2, 1, '15.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c92beb7afdb9adbcba7a69882d2458cc697cff0c99869dd9db1a06f9d7e94619', NULL, NULL, NULL, NULL, 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 (863, '2021-08-06 09:22:12', 'SALE/POS2021/08/0816', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '29.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '29.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 5, 1, '29.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a0b5826958b5c951f0c5ba02c54a92d13cd05bb14f6c39c7a0bb090f26b015fe', NULL, NULL, NULL, NULL, 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 (864, '2021-08-06 09:22:58', 'SALE/POS2021/08/0817', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '2.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '2.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '953c8c43b66f880e0f798b129973be224ba3d7067b5ec4b7777df3f612a6d2dc', NULL, NULL, NULL, NULL, 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 (865, '2021-08-06 09:57:31', 'SALE/POS2021/08/0818', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '26.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '26.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 4, 1, '26.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a50ca87d7e3b5e9b81aef23be3f7a3656aca99830ef621acf9d9786eec3aefe5', NULL, NULL, NULL, NULL, 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 (866, '2021-08-06 10:12:01', 'SALE/POS2021/08/0819', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '7.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7.0000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 1, 1, '7.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd648b013ed210cab8c94c0905324c39f0d3e19148bb38d2e2978b1f57ffde0d', NULL, NULL, NULL, NULL, 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 (867, '2021-08-06 10:29:55', 'SALE/POS2021/08/0820', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '47.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 1, 1, '47.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4cded7eb104184f87686c24507c3e94296c8f70a024176538f895b41e57e206f', NULL, NULL, NULL, NULL, 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 (868, '2021-08-06 15:37:39', 'SALE/POS2021/08/0821', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '139.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '139.5000', 'completed', 'paid', 0, NULL, 10, NULL, NULL, 36, 1, '139.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '34ca140d78f322fb11ee65d1f512eebab390b122eb03dd7ae52c3ae3198905b2', NULL, NULL, NULL, NULL, 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 (869, '2021-08-06 16:11:43', 'SALE/POS2021/08/0822', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '634.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '634.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 43, 1, '634.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '690e017da0af5b693c60f7206099173ab48b117de959770f0488fec4297ae06e', NULL, NULL, NULL, NULL, 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 (870, '2021-08-06 16:57:08', 'SALE/POS2021/08/0823', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '85.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '85.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 20, 1, '85.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0b5ef0d10ff3f1a74e4e86efee4362351c1ec689349b122fbfe86cf7121a9274', NULL, NULL, NULL, NULL, 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 (871, '2021-08-06 18:09:41', 'SALE/POS2021/08/0824', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '29.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '29.2000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 6, 1, '29.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3aeb49ec621d206a1a02ce8b3b6ed54a6e4e986ede1b48f690c601f1a2ba088', NULL, NULL, NULL, NULL, 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 (872, '2021-08-06 19:23:26', 'SALE/POS2021/08/0825', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '72.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '72.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 11, 1, '72.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '89e242ab96e41f91678d65b1646ff14ec7aba78781f9414cbe66826f02aeae01', NULL, NULL, NULL, NULL, 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 (873, '2021-08-06 19:35:19', 'SALE/POS2021/08/0826', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '524.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '524.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 65, 1, '524.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed920708d31cc2f00244d0686e4bbc8024b4d608e07b0bca65d7fee46676cdff', NULL, NULL, NULL, NULL, 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 (874, '2021-08-06 19:35:36', 'SALE/POS2021/08/0827', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '73797ca2a7fb821ed67c2a16b4a2cca881da706aa922ba08e55db4e9e05f5dd9', NULL, NULL, NULL, NULL, 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 (875, '2021-08-06 20:08:43', 'SALE/POS2021/08/0828', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '31.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '31.6000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 13, 1, '31.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5d5a4ca5df18e3e97f7ace05e0c73f5ec8128b232eae7fa44e2109ed677b6383', NULL, NULL, NULL, NULL, 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 (876, '2021-08-06 21:20:59', 'SALE/POS2021/08/0829', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '187.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '187.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 7, 1, '187.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed53b8d038f901d003cd34ce53dfe79cf19bd36d7b580fb5e62d01a33d2b6651', NULL, NULL, NULL, NULL, 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 (877, '2021-08-06 21:24:56', 'SALE/POS2021/08/0830', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '190.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '190.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 17, 1, '190.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '18891475b179aec7b19a5006202d25ce3c7629139d12633ff2bd0550d54894a6', NULL, NULL, NULL, NULL, 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 (878, '2021-08-06 21:25:34', 'SALE/POS2021/08/0831', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '2.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '2.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bb7eb368991d2e3785e77fa4aa5318b5f16f61f5a779384f1ef88366bbf29aee', NULL, NULL, NULL, NULL, 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 (879, '2021-08-06 21:26:54', 'SALE/POS2021/08/0832', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e6129934753b254f0aa8f6fb43f50737b336418e494a5d369283d5606882e01b', NULL, NULL, NULL, NULL, 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 (880, '2021-08-06 21:32:20', 'SALE/POS2021/08/0833', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '72cca1ef8760abf1bf469a6bdb005827b757606129ef8f49a84c6caf22da7efd', NULL, NULL, NULL, NULL, 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 (881, '2021-08-06 21:57:20', 'SALE/POS2021/08/0834', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '96.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '96.6000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 22, 1, '96.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'feea335bba67aaf83d163bbdd2b0676285a529d4e47271592c50717b5cb1ac41', NULL, NULL, NULL, NULL, 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 (882, '2021-08-07 14:02:15', 'SALE/POS2021/08/0835', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '224.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '224.1000', 'completed', 'paid', 0, NULL, 14, NULL, NULL, 33, 1, '224.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '95dd1815a7a15a17ac4aa82af358ea0d787090e43a1890d31e96925db770ac62', NULL, NULL, NULL, NULL, 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 (883, '2021-08-07 14:26:40', 'SALE/POS2021/08/0836', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '380.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '380.7000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 51, 1, '380.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'edc6e884d198fd03fd8e5418bb49afe4f142dbc6eccddd7ac794b713ca6f9c02', NULL, NULL, NULL, NULL, 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 (884, '2021-08-07 15:07:29', 'SALE/POS2021/08/0837', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '48.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '48.5000', 'completed', 'paid', 0, NULL, 14, NULL, NULL, 9, 1, '48.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '478910ba5f21604f7a32602a1a82cc67bb69c8f61d17758b242bf8462e3caf07', NULL, NULL, NULL, NULL, 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 (885, '2021-08-07 15:13:30', 'SALE/POS2021/08/0838', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '16.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '16.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '16.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e12889c923871cae5f59764c2f717a4cb58a07656466f335585179f82929573e', NULL, NULL, NULL, NULL, 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 (886, '2021-08-07 16:12:23', 'SALE/POS2021/08/0839', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '73.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '73.8300', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 10, 1, '73.8300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8ee2a80b8149219a8244a0c8311e8236c59aa11318d9b277b1903269e9ffd34e', NULL, NULL, NULL, NULL, 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 (887, '2021-08-07 16:51:17', 'SALE/POS2021/08/0840', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '17.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '17.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ddc15dcd3eca8f33a164aa44c25e684e23dd2da6ba11211d18e8ff3da0e72726', NULL, NULL, NULL, NULL, 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 (888, '2021-08-07 17:25:58', 'SALE/POS2021/08/0841', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4271dd72b7778f5180f28daf4cb28f0780007643df8509e976d31a32c52a5392', NULL, NULL, NULL, NULL, 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 (889, '2021-08-07 17:41:50', 'SALE/POS2021/08/0842', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '66.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '66.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 5, 1, '66.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e393c75fd2885e4a7b9b42b57173d80f9fb24f0e034488e16ac3d994ebd5b1bf', NULL, NULL, NULL, NULL, 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 (890, '2021-08-07 17:44:47', 'SALE/POS2021/08/0843', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b90e8cc636d92ad7a7434a175b47a688d157c899a213a6f87b4090907b2e705b', NULL, NULL, NULL, NULL, 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 (891, '2021-08-07 17:56:58', 'SALE/POS2021/08/0844', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '48.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '48.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 6, 1, '48.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a83022ea1be55b475d6d9e04ec59d8b45b56ce1e4bc4ee57152e8672ce49f48d', NULL, NULL, NULL, NULL, 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 (892, '2021-08-07 18:01:20', 'SALE/POS2021/08/0845', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '33.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '33.0000', 'completed', 'paid', 0, NULL, 3, NULL, NULL, 4, 1, '33.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e6809b8f1a361af90b1ef2960d3f3ed5d7a36c3d6e4b9aa427a71a7ef698666', NULL, NULL, NULL, NULL, 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 (893, '2021-08-07 18:12:19', 'SALE/POS2021/08/0846', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '29.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '29.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 5, 1, '29.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ee5068e6c50983dc850dca7cb1b0c6e400461d4b0bf4a8eeb6078be8f7d0ad42', NULL, NULL, NULL, NULL, 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 (894, '2021-08-07 18:18:40', 'SALE/POS2021/08/0847', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '44.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '44.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 4, 1, '44.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1822d0c703ad2d4f0d74aed0efe0c11f111e55a1ed786396fff421b58bc5c51d', NULL, NULL, NULL, NULL, 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 (895, '2021-08-07 18:30:00', 'SALE/POS2021/08/0848', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '25.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '25.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '25.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b65ccad6e2c8005484efc2fb1415accb825da3a61639e99a5bba9cf5a20359b', NULL, NULL, NULL, NULL, 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 (896, '2021-08-07 18:32:40', 'SALE/POS2021/08/0849', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '0.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '0.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b177a1f7f523311e7b2eaac1e0b666635658aeb50d288b696a18db482a95b124', NULL, NULL, NULL, NULL, 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 (897, '2021-08-07 18:51:26', 'SALE/POS2021/08/0850', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '252.3900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '252.3900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 33, 1, '252.3900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ee391a2cd55b9fa8a4a42b4dc7cbaa988c40caeb2dc0b09ec1b6a3d77ee14771', NULL, NULL, NULL, NULL, 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 (898, '2021-08-07 19:11:07', 'SALE/POS2021/08/0851', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '110.8300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '110.8300', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 11, 1, '110.8300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '542a6b05dbed9bf62dcb52cc5920d048615f5ed6b86dfb8ccffa58063fc02089', NULL, NULL, NULL, NULL, 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 (899, '2021-08-07 19:20:08', 'SALE/POS2021/08/0852', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '83.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '83.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 8, 1, '83.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '554f4fb4c7719976bb332eb7d04e66bcc6fad3bb93513ef95fc0cda469c0bafc', NULL, NULL, NULL, NULL, 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 (900, '2021-08-07 19:45:40', 'SALE/POS2021/08/0853', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '4.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '4.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4a8cc2d7f9c126f2816834eeb8333cce0aa7bc68c3cfd3086a6cdc5ab49ab40', NULL, NULL, NULL, NULL, 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 (901, '2021-08-07 19:59:04', 'SALE/POS2021/08/0854', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '45.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '45.7000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 11, 1, '45.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9529ddf2668d6494fdad21c493a4678cb5ca9463fa9c2e307da1a5dfe4fd58e3', NULL, NULL, NULL, NULL, 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 (902, '2021-08-07 20:02:58', 'SALE/POS2021/08/0855', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '6.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '6.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5505bb3906d1a64788996ce901bcb78fa1c296b30dc6e57ee2fa7d152b8edab2', NULL, NULL, NULL, NULL, 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 (903, '2021-08-07 20:17:31', 'SALE/POS2021/08/0856', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '127.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '127.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 17, 1, '127.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '94a8fd4072e7c988ce351ec8ea0639d6e682cc3b39b2d8875ef44e883e90b61a', NULL, NULL, NULL, NULL, 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 (904, '2021-08-07 20:23:29', 'SALE/POS2021/08/0857', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '47.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '47.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '06a134118965bac3f7cd5630e921987b94a99e6d2216b51ccca11a61d99cc64d', NULL, NULL, NULL, NULL, 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 (905, '2021-08-07 20:27:04', 'SALE/POS2021/08/0858', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '6.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 2, 1, '6.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3c0116774f89300f6ffcd9236e24c33021d456b5e0a8c7409ba880d6e609e5d', NULL, NULL, NULL, NULL, 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 (906, '2021-08-07 21:17:00', 'SALE/POS2021/08/0859', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'abc3652ae305c99e5aaab10db802427646af413a904453cdbd842e06ab049397', NULL, NULL, NULL, NULL, 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 (907, '2021-08-07 21:32:53', 'SALE/POS2021/08/0860', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '9.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '9.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a526ab984013addc0c509ab1ceb8ffc4755e8bc90bcf7a941810e27f443bc6ea', NULL, NULL, NULL, NULL, 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 (908, '2021-08-07 21:42:59', 'SALE/POS2021/08/0861', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '234.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '234.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 17, 1, '234.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4de2e8d90d04bf121b221d8dbe2879775b57f20945f96a39ae212cdcb7b1acd3', NULL, NULL, NULL, NULL, 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 (909, '2021-08-07 21:43:40', 'SALE/POS2021/08/0862', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '42.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '42.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '42.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c73b1f9378971adf3c96cf7e89790471f888a59e85695ede216344b9eb6f68fd', NULL, NULL, NULL, NULL, 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 (910, '2021-08-07 21:57:07', 'SALE/POS2021/08/0863', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '4.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 1, 1, '4.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd57769cb7e456a8af4c182b59990eb145973a34a20638ff08f38dd762caff2d7', NULL, NULL, NULL, NULL, 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 (911, '2021-08-08 19:27:32', 'SALE/POS2021/08/0864', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '788.6700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '788.6700', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 51, 1, '788.6700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '63f9afd9aacf321563939c2bd2ddece9f2c91a54098c107af8d62a3f8089edd3', NULL, NULL, NULL, NULL, 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 (912, '2021-08-08 19:32:44', 'SALE/POS2021/08/0865', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '305.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '305.3000', 'completed', 'paid', 0, NULL, 15, NULL, NULL, 50, 1, '305.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '77db7ce02907797ffaa5ad5b34f4c05670572a413db306754ead4698a331e2a4', NULL, NULL, NULL, NULL, 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 (913, '2021-08-08 20:33:13', 'SALE/POS2021/08/0866', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '80.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.5000', 'completed', 'paid', 0, NULL, 15, NULL, NULL, 16, 1, '80.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '99f46f8c7725bc26432079e23600046c48f394b9352f6caa6b67cfcaab6b4e7a', NULL, NULL, NULL, NULL, 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 (914, '2021-08-08 21:17:29', 'SALE/POS2021/08/0867', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '50.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.5000', 'completed', 'paid', 0, NULL, 15, NULL, NULL, 6, 1, '50.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a5cfd96e6e6411d6c668baceaf1936210edae837dc39819ca8d3a3646d2f8608', NULL, NULL, NULL, NULL, 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 (915, '2021-08-08 21:19:05', 'SALE/POS2021/08/0868', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '111.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '111.5000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 12, 1, '111.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0a8352200557451b945dfefed34132a709ea45cb6b05df609407343d7566fc9d', NULL, NULL, NULL, NULL, 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 (916, '2021-08-08 21:32:00', 'SALE/POS2021/08/0869', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '4.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4.5000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 1, 1, '4.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5d710012f62db62249ea2483ef6a5207bf786b20d9b50ed7e2274ae3a88bb3b2', NULL, NULL, NULL, NULL, 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 (917, '2021-08-08 21:48:18', 'SALE/POS2021/08/0870', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '6.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6.0000', 'completed', 'paid', 0, NULL, 15, NULL, NULL, 1, 1, '6.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3262d9ef2905a94be2de645820e80c6111aca9da8985ce429271d2fb1ccde64f', NULL, NULL, NULL, NULL, 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 (918, '2021-08-09 13:02:31', 'SALE/POS2021/08/0871', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '392.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '392.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 34, 1, '392.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5fb02b29acdce671301751fbc125ca3ee166883bd2cb27c5f1c9745eeb7546ef', NULL, NULL, NULL, NULL, 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 (919, '2021-08-09 14:29:35', 'SALE/POS2021/08/0872', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '177.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '177.1000', 'completed', 'paid', 0, NULL, 14, NULL, NULL, 21, 1, '177.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b5aac9f2a5f68edd7f220ac85c7e2f65582653b1afd3bfe933a949373a1a1308', NULL, NULL, NULL, NULL, 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 (920, '2021-08-09 14:31:19', 'SALE/POS2021/08/0873', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '44.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '44.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 7, 1, '44.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '87638b4ef091dd8ecbfe6af719bc5ef8aea486691c0351385545a0db32a7d978', NULL, NULL, NULL, NULL, 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 (921, '2021-08-09 14:36:36', 'SALE/POS2021/08/0874', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '24.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '24.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b0ae8aa47514ec1902bd8eabe59d73e9c7e3aae703d55bf8cce3ba6be1ca298d', NULL, NULL, NULL, NULL, 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 (922, '2021-08-09 14:52:57', 'SALE/POS2021/08/0875', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '27.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '27.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '27.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f0045b5204bc2779fc8a0cdb5cfacf560646bd10e43721670157e0736a154ef6', NULL, NULL, NULL, NULL, 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 (923, '2021-08-09 14:58:44', 'SALE/POS2021/08/0876', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '103.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '103.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '103.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2110a44e50ac2f53dbdcbee431555db4dc745830be0b9607c9be9e53bbdcd45d', NULL, NULL, NULL, NULL, 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 (924, '2021-08-09 15:09:57', 'SALE/POS2021/08/0877', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '22.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '22.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b33d6abab998a6b00b659a98f5fde14b7ae947b3d5e67b5d58c0f0e66083e667', NULL, NULL, NULL, NULL, 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 (925, '2021-08-09 15:38:46', 'SALE/POS2021/08/0878', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c8215974194e4a79efa9dd870989ad76bec8d29bc89eb16bad3209b5a4612db5', NULL, NULL, NULL, NULL, 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 (926, '2021-08-09 17:27:40', 'SALE/POS2021/08/0879', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '53.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '53.7000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 10, 1, '53.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba7205fc3a05737889582cc161d81398f3501b7d98e4bcded23b86fbd72f67e8', NULL, NULL, NULL, NULL, 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 (927, '2021-08-09 17:46:42', 'SALE/POS2021/08/0880', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '7.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 5, 1, '7.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fc915959bcd41ed474b4446a36ee59c3df04a649fc556c44198546770fda0d8a', NULL, NULL, NULL, NULL, 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 (928, '2021-08-09 18:09:45', 'SALE/POS2021/08/0881', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '35.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '35.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 2, 1, '35.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '090189f2a41e364eeace14b34359a8536af04ff973622642391d69732c75fe39', NULL, NULL, NULL, NULL, 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 (929, '2021-08-09 18:28:11', 'SALE/POS2021/08/0882', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '47.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '47.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bcb1f15bd5c74fc3960e80bda54e72cbebb7686c946186cb1e1887ffaa386383', NULL, NULL, NULL, NULL, 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 (930, '2021-08-09 18:46:07', 'SALE/POS2021/08/0883', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '21.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '21.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 4, 1, '21.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '35daada2a01279c9bd845c0bd4efa682dd3688edd84e5f9cd6203b0363737d64', NULL, NULL, NULL, NULL, 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 (931, '2021-08-09 19:09:53', 'SALE/POS2021/08/0884', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '15.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 2, 1, '15.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '84c4a31e06e2b05623dfee10073edcce6f67d05a1e93629c27a93179ff45f748', NULL, NULL, NULL, NULL, 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 (932, '2021-08-09 19:11:08', 'SALE/POS2021/08/0885', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '379.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '379.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 58, 1, '379.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7f038768ddece2c638df8bc1136ac308adc4c7eed9fb682305ebecfb3c0cc813', NULL, NULL, NULL, NULL, 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 (933, '2021-08-09 19:24:45', 'SALE/POS2021/08/0886', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '22.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '22.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7372884d49c9be8ab821ea1a7c551221a132c1582418e0ca9387aa0d1753bc1b', NULL, NULL, NULL, NULL, 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 (934, '2021-08-09 19:57:18', 'SALE/POS2021/08/0887', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '21.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '21.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 6, 1, '21.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '436611dbb7be43c89594b14d7abc57a4118cf914001de366f1a28b400654daf8', NULL, NULL, NULL, NULL, 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 (935, '2021-08-09 20:07:27', 'SALE/POS2021/08/0888', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '3.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 2, 1, '3.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8fd7940ec6cbe46a5332b193278ed5c39dd18181ccac4436f0ee80058e1f4f3a', NULL, NULL, NULL, NULL, 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 (936, '2021-08-09 20:16:24', 'SALE/POS2021/08/0889', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 5, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '607165c339127ca70b93b5af608037fd7e9127821c7202fdb91fa001d8bcb4f1', NULL, NULL, NULL, NULL, 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 (937, '2021-08-09 20:35:55', 'SALE/POS2021/08/0890', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '13.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 6, 1, '13.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cd70399e51965963c6b1413b93eef8fb210c502927a822ed03f005f8e09b51b5', NULL, NULL, NULL, NULL, 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 (938, '2021-08-09 20:37:49', 'SALE/POS2021/08/0891', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '237.8800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '237.8800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 33, 1, '237.8800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '67e2327d5f516f8d729e2fc6ab1a1b3fa8e871bb71e8e76020e54a2a866e63fa', NULL, NULL, NULL, NULL, 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 (939, '2021-08-09 21:55:00', 'SALE/POS2021/08/0892', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '4.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4.7000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '4.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '15549273bd04bab1cb91b82856846859a4adc464b11fdc19e030b6c94007cca9', NULL, NULL, NULL, NULL, 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 (940, '2021-08-09 21:56:46', 'SALE/POS2021/08/0893', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '294.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '294.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 14, 1, '294.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2f8ca4f2addba9e82c3ddc02f009f74234cd22f1716154d12e4dd527996a827f', NULL, NULL, NULL, NULL, 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 (941, '2021-08-10 11:32:39', 'SALE/POS2021/08/0894', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '297.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '297.7000', 'completed', 'paid', 0, NULL, 14, NULL, NULL, 73, 1, '297.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd6a1e7bc4dc1fb094ab23cb38f76ac5550225fc5364951a4e36e83f4e02b6584', NULL, NULL, NULL, NULL, 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 (942, '2021-08-10 14:31:43', 'SALE/POS2021/08/0895', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '67.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '67.0000', 'completed', 'paid', 0, NULL, 14, NULL, NULL, 4, 1, '67.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9cc5daffe045fa9d8d57dbc26a01dfdfcde1a377a786f79ce67c1572f146e1be', NULL, NULL, NULL, NULL, 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 (943, '2021-08-10 14:32:43', 'SALE/POS2021/08/0896', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '216.8600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '216.8600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 43, 1, '216.8600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5de011be15bffea81dd6934af0d0727b401fef5c48fb10b8284146f44f8a1eed', NULL, NULL, NULL, NULL, 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 (944, '2021-08-10 14:57:27', 'SALE/POS2021/08/0897', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '7.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '7.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '03599963e2b2e750c4c3371a59c1f6f5b94f11289dc01c02de5fc5103f88048a', NULL, NULL, NULL, NULL, 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 (945, '2021-08-10 15:38:25', 'SALE/POS2021/08/0898', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f508383f9321a8181a1bfb8e5fc0c91cd8610797b55b948362d93e4646c53664', NULL, NULL, NULL, NULL, 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 (946, '2021-08-10 16:27:16', 'SALE/POS2021/08/0899', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '23.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '23.4000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 7, 1, '23.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4529bf8411710e09965381a414fb78bed9a366a4c10596614f0a22f7cce37e22', NULL, NULL, NULL, NULL, 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 (947, '2021-08-10 17:42:27', 'SALE/POS2021/08/0900', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '134.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '134.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 23, 1, '134.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f3a7e910de70df2bb687214c908dc4bfdc1a95cc2c0fc31c0dad9d0618fde0d', NULL, NULL, NULL, NULL, 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 (948, '2021-08-10 17:51:13', 'SALE/POS2021/08/0901', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '9.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 7, 1, '9.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '51c143bf459c0bb59aa8752581b65126e0178f300260018066c0fc748596e8f2', NULL, NULL, NULL, NULL, 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 (949, '2021-08-10 18:12:56', 'SALE/POS2021/08/0902', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b21673a576fce24684ef59c02e4a0298e7766b3ea63ebaa3b2204f241a0c50fa', NULL, NULL, NULL, NULL, 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 (950, '2021-08-10 18:30:21', 'SALE/POS2021/08/0903', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '104.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '104.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 9, 1, '104.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b87e33b8594567f337f15bc04c5ee68e134a4912d6935c83d422eb662b29222', NULL, NULL, NULL, NULL, 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 (951, '2021-08-10 18:53:37', 'SALE/POS2021/08/0904', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '78.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '78.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '78.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '393cf168478dc5a2e6bfc63b138600772e64890f6a40628375ea52d452d27c8e', NULL, NULL, NULL, NULL, 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 (952, '2021-08-10 19:25:54', 'SALE/POS2021/08/0905', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '340.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '340.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 43, 1, '340.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fe504ca597ba9de040bad0cf569f59fa5f138d19435070fb472ba43c88ef2994', NULL, NULL, NULL, NULL, 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 (953, '2021-08-10 19:29:51', 'SALE/POS2021/08/0906', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '48.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '48.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 24, 1, '48.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2b9cfc150e8308560f417a05d8b303f4a2567feb22b115a89c8fb373e6248dfc', NULL, NULL, NULL, NULL, 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 (954, '2021-08-10 20:32:31', 'SALE/POS2021/08/0907', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '409.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '409.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 42, 1, '409.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e82e72e73d44c4d6d78dcc84ba7d0f8a4eb35b47a6abe9f355c54a0e23adc7c1', NULL, NULL, NULL, NULL, 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 (955, '2021-08-10 20:38:52', 'SALE/POS2021/08/0908', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '151.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '151.6000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 29, 1, '151.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bc12fd21b92d721bb4048e76785619e2a6bdbdef144d22843820b72099d1223d', NULL, NULL, NULL, NULL, 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 (956, '2021-08-10 21:24:39', 'SALE/POS2021/08/0909', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '204.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '204.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 29, 1, '204.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3602371a00f1b4a7ffe10315ac107b88d0de8ae7bf1da3ee8a9cbfcbaa04e345', NULL, NULL, NULL, NULL, 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 (957, '2021-08-10 21:30:48', 'SALE/POS2021/08/0910', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '28.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 5, 1, '28.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd4e3320a08ed7755acf7e172259aea6a37145eaf927f2879bbee43aa0d6b4a38', NULL, NULL, NULL, NULL, 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 (958, '2021-08-10 21:34:28', 'SALE/POS2021/08/0911', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '107.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '107.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '107.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3bb3f25824f28266160981c0d526859b127feea7cd9179ee879f579f3fc12d9b', NULL, NULL, NULL, NULL, 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 (959, '2021-08-11 13:14:15', 'SALE/POS2021/08/0912', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '498.7300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '498.7300', 'completed', 'paid', 0, NULL, 14, NULL, NULL, 65, 1, '498.7300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c16f6326dfaae80959de5d049e0c070860b909596cd3745bd6013788b85cd163', NULL, NULL, NULL, NULL, 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 (960, '2021-08-11 14:47:40', 'SALE/POS2021/08/0913', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '255.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '255.4000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 45, 1, '255.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd2d2347fe498715f8c5db279d98d08d423c6f6ee5b27691333825619a495d66e', NULL, NULL, NULL, NULL, 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 (961, '2021-08-11 15:06:32', 'SALE/POS2021/08/0914', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '16.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '16.0000', 'completed', 'paid', 0, NULL, 14, NULL, NULL, 5, 1, '16.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f0fdf3096c9824515300191e0e5469f5771ec2c33d672833835f0e9be626580c', NULL, NULL, NULL, NULL, 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 (962, '2021-08-11 15:10:07', 'SALE/POS2021/08/0915', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '20.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 6, 1, '20.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f09f2a9d2492a90499b1d19350a8705b1cb39adc2b825b833c93b209a0130517', NULL, NULL, NULL, NULL, 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 (963, '2021-08-11 15:32:32', 'SALE/POS2021/08/0916', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '2.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 4, 1, '2.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '93d16c9543fff6eb21fe8d210989639e096c45da2016f5a0dacd8a301a8a47dd', NULL, NULL, NULL, NULL, 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 (964, '2021-08-11 16:00:47', 'SALE/POS2021/08/0917', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '30.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 2, 1, '30.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b97df2743962d0905619b19378fe72e5ea87bd86c61e8a318dde445b91f6b1ff', NULL, NULL, NULL, NULL, 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 (965, '2021-08-11 17:10:36', 'SALE/POS2021/08/0918', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '28.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28.4000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 9, 1, '28.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ef45985f57192aa17651d1d5b23afd32a02f49bf6daccdb68abe225e3e48ed1', NULL, NULL, NULL, NULL, 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 (966, '2021-08-11 19:16:06', 'SALE/POS2021/08/0919', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '114.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '114.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 11, 1, '114.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a426e1366342abb5cd11348aa85cda1a4d3f4f96be33e7594467ef9ef36db9b', NULL, NULL, NULL, NULL, 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 (967, '2021-08-11 19:19:15', 'SALE/POS2021/08/0920', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '3.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '3.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2ce626ca5419a611b523f81a65c46ca6ca5b46a591c6301aaa67473d20986065', NULL, NULL, NULL, NULL, 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 (968, '2021-08-11 19:32:12', 'SALE/POS2021/08/0921', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '368.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '368.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 41, 1, '368.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '86e0862f87a2fc8abd55c43c9ef6cc982c631747bfab984f084c30d3ad93fb7e', NULL, NULL, NULL, NULL, 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 (969, '2021-08-11 19:45:35', 'SALE/POS2021/08/0922', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '92.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '92.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 18, 1, '92.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b36bb1ade81ab40b9c36ee3675a84f68d43b69d86301786ef1109314c43ab590', NULL, NULL, NULL, NULL, 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 (970, '2021-08-11 20:36:30', 'SALE/POS2021/08/0923', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '445.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '445.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 45, 1, '445.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '15619e29f3db15eecac63fd4b5b1a38662ac6adae74cafc90884fca4b8760468', NULL, NULL, NULL, NULL, 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 (971, '2021-08-11 21:09:57', 'SALE/POS2021/08/0924', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '258.2600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '258.2600', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 41, 1, '258.2600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a40e69c44c776ce2d168e57554be9f9b2e51547d9b175dfd13cff088eea77345', NULL, NULL, NULL, NULL, 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 (972, '2021-08-11 21:40:55', 'SALE/POS2021/08/0925', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '84.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '84.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 8, 1, '84.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c3255c330b01e1fd2e7ea4b0cc0c2b918925722d93dcd8756234abc114b4e66', NULL, NULL, NULL, NULL, 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 (973, '2021-08-11 21:45:02', 'SALE/POS2021/08/0926', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '11.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '11.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '29f18a7cb031661c809d78b53caf597134bd0624ee2262ccc53305bf4995580b', NULL, NULL, NULL, NULL, 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 (974, '2021-08-11 22:00:21', 'SALE/POS2021/08/0927', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '64.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '64.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '64.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '25f402861f86b51dae1b897dc2c6232be8013f07f7ecc4e44ea7bb6605cd4b90', NULL, NULL, NULL, NULL, 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 (975, '2021-08-11 22:05:26', 'SALE/POS2021/08/0928', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '24.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 5, 1, '24.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2248a970ebad4b2c627a9d893c95994ebf4f14b83f83ec4e204bc1b0b34629fc', NULL, NULL, NULL, NULL, 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 (976, '2021-08-11 22:09:46', 'SALE/POS2021/08/0929', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '28.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '28.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '51655338f6ad4ad1adfd176034ce3f27336953f3945e7b300ef42ef13d5b45b8', NULL, NULL, NULL, NULL, 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 (977, '2021-08-12 15:13:32', 'SALE/POS2021/08/0930', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '397.4600', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '397.4600', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 48, 1, '397.4600', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28aa34a80e408ae1fc01b32fd22fa03ac796c1e618ddf34be8fe8a82543b8639', NULL, NULL, NULL, NULL, 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 (978, '2021-08-12 15:23:49', 'SALE/POS2021/08/0931', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '224.1000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '224.1000', 'completed', 'paid', 0, NULL, 14, NULL, NULL, 33, 1, '224.1000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c81645b28d4550f64543e942d78af8d9d1867588ecc2d152c936c839036624ae', NULL, NULL, NULL, NULL, 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 (979, '2021-08-12 15:30:53', 'SALE/POS2021/08/0932', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '54.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '54.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '54.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '45d7f383ddb189f9740660654dea3eed7442bc37c95e0df5218134388af7c456', NULL, NULL, NULL, NULL, 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 (980, '2021-08-12 15:34:01', 'SALE/POS2021/08/0933', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '54.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '54.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '54.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f9b32d174b652d3b809a8488305098ef489b8d1f8948311f0e0fabda13516140', NULL, NULL, NULL, NULL, 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 (981, '2021-08-12 15:44:00', 'SALE/POS2021/08/0934', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '59.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '59.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 10, 1, '59.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3675b952e8a3f572eeace9df1ed1408e8648bfb75da755163d24f460af49d133', NULL, NULL, NULL, NULL, 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 (982, '2021-08-12 18:03:39', 'SALE/POS2021/08/0935', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '63.3000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '63.3000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 6, 1, '63.3000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '155e87baabf8135cf543ebdd4a3a291e8f2c566c14163bbd39076e6bc4b6d789', NULL, NULL, NULL, NULL, 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 (983, '2021-08-12 18:17:23', 'SALE/POS2021/08/0936', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '32.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '32.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 4, 1, '32.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '07fa5173db5d2433066a5f83cbf08cfe8e2b004b33f0ba4712a45ed3dce78c57', NULL, NULL, NULL, NULL, 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 (984, '2021-08-12 19:55:25', 'SALE/POS2021/08/0937', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '11.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 2, 1, '11.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0855b9efe04e9e9c3cfd5103e8d1d5437e07b11e005da19a3c52c73d9729c308', NULL, NULL, NULL, NULL, 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 (985, '2021-08-12 20:02:15', 'SALE/POS2021/08/0938', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '738.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '738.9000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 114, 1, '738.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1a3a6861d24d9288026f51ded67199e606901cc930ea63410fa9d6721bc23dfd', NULL, NULL, NULL, NULL, 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 (986, '2021-08-12 21:41:05', 'SALE/POS2021/08/0939', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '226.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '226.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 10, 1, '226.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '97806f22e65fbb73e9dcce9a4031ddf15e6969d5c1e44e1a2ddbe302078e4a11', NULL, NULL, NULL, NULL, 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 (987, '2021-08-12 21:46:15', 'SALE/POS2021/08/0940', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '32.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '32.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 12, 1, '32.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '55898d64b4344df3565005d44ac5f2497547764d8c5cb312155ae295321ca686', NULL, NULL, NULL, NULL, 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 (988, '2021-08-12 00:00:00', '12/8/21/stella/comm', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '218.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '218.5000', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 17, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, 'd224d8d7e85aa0d7c4f05b720aaac7b3aa7eb10c2c80c2dc30c2e055ea6a05d1', NULL, NULL, NULL, NULL, 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 (989, '2021-08-13 15:47:11', 'SALE/POS2021/08/0941', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '256.6900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '256.6900', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 34, 1, '256.6900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a596da56d9d200d2fa669ffd3e27502ce5558378c6c9a0f79909efb82245a388', NULL, NULL, NULL, NULL, 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 (990, '2021-08-13 16:00:00', 'SALE/POS2021/08/0942', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '86.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '86.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 10, 1, '86.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b541b48d67ce9a915703d18e03a309bd462d2fffef740f5362ee4252e4c3d771', NULL, NULL, NULL, NULL, 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 (991, '2021-08-13 16:01:26', 'SALE/POS2021/08/0943', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '22.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 8, 1, '22.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '13351a3e009bb900e23e613776d3b727780d94e414251ff5b0f7f2243a9444e3', NULL, NULL, NULL, NULL, 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 (992, '2021-08-13 16:03:16', 'SALE/POS2021/08/0944', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '23.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '23.0000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 3, 1, '23.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd472ec517ee8ee44cdac0d0115fbef160e3311e240c07ea6af5209338490c2fb', NULL, NULL, NULL, NULL, 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 (993, '2021-08-13 16:56:20', 'SALE/POS2021/08/0945', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '22.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 5, 1, '22.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '88636edf01e561e165ffdc0ec3dc0e11ffae26b8cac97be16b5bba6ddbf0ea8e', NULL, NULL, NULL, NULL, 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 (994, '2021-08-13 17:06:30', 'SALE/POS2021/08/0946', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '41.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '41.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 13, 1, '41.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '87ee0499c47482f25556967d3f5ca989a1805077767541ca0cae368a493f1b40', NULL, NULL, NULL, NULL, 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 (995, '2021-08-13 17:45:28', 'SALE/POS2021/08/0947', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '30.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 13, 1, '30.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '811e247a2130578e0f5f1370db3f51eca4650099167e952c70b0cc2b56fd6235', NULL, NULL, NULL, NULL, 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 (996, '2021-08-13 17:51:58', 'SALE/POS2021/08/0948', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '41.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '41.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '41.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3792ca2a317d332ab77322827dd2aa9eea9f34ee0218116282a1cf06b699506a', NULL, NULL, NULL, NULL, 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 (997, '2021-08-13 18:31:17', 'SALE/POS2021/08/0949', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '27.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '27.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 12, 1, '27.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ceafb086b88f5f9029927ac6546dae4a65dda9fe9a6d486e29e626c285f2d555', NULL, NULL, NULL, NULL, 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 (998, '2021-08-13 18:46:39', 'SALE/POS2021/08/0950', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '20.4000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20.4000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 5, 1, '20.4000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '278b46d8ce2eae973b37d51f22ff4c537b24ce38265610d51101b6661fe0c910', NULL, NULL, NULL, NULL, 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 (999, '2021-08-13 18:58:23', 'SALE/POS2021/08/0951', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '14.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '14.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 5, 1, '14.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5be71270f0addd1dd25943e7ba71e8557f7672d826f963278c99716ad15bc725', NULL, NULL, NULL, NULL, 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 (1000, '2021-08-13 19:10:08', 'SALE/POS2021/08/0952', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0fb63565d205eaabb5a2d3573b9683481927338e1fa98e380e04c9e398b8c3ad', NULL, NULL, NULL, NULL, 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 (1001, '2021-08-13 19:23:53', 'SALE/POS2021/08/0953', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '35.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '35.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 11, 1, '35.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60b00947b1f832baa0051f487d91814b92176a8e2796be80f02fbadd5eaefca4', NULL, NULL, NULL, NULL, 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 (1002, '2021-08-13 19:28:50', 'SALE/POS2021/08/0954', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '26.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '26.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 4, 1, '26.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fdc685aa1fcc40b666f4398b12d9d4071b7a7ec951c39816439b150b1900aadc', NULL, NULL, NULL, NULL, 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 (1003, '2021-08-13 19:37:24', 'SALE/POS2021/08/0955', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '26.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '26.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 7, 1, '26.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eac570dfd2d1be55dbd33bd4b7a3eb470dfbd10515890d6878a955de9e59b5d1', NULL, NULL, NULL, NULL, 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 (1004, '2021-08-13 19:42:28', 'SALE/POS2021/08/0956', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '3.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '3.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '73d89e32c9b11fc4d41169389fac2f7567694d6515fd1e662b42ee864a1a6f75', NULL, NULL, NULL, NULL, 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 (1005, '2021-08-13 20:03:46', 'SALE/POS2021/08/0957', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '280.1200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '280.1200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 25, 1, '280.1200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a893c54dff6be4a98abdacf8973fbeaca5eb529347eadc5bc79f8103214b830d', NULL, NULL, NULL, NULL, 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 (1006, '2021-08-13 20:27:36', 'SALE/POS2021/08/0958', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '61.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '61.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 18, 1, '61.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c5f0d7563f48e4f61c58f53495c58e262fb94de611baf02e0a015210882c97c4', NULL, NULL, NULL, NULL, 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 (1007, '2021-08-13 20:41:54', 'SALE/POS2021/08/0959', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '50.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '50.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e661ec9c5147da40c7668a227a45aa6196b3ba401b36ed4db47f89c781608c3', NULL, NULL, NULL, NULL, 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 (1008, '2021-08-13 21:14:23', 'SALE/POS2021/08/0960', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '6.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6.2000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 4, 1, '6.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '36301c9ce102d5fdffaff61bfc442251d80abf839867fcb836a423cd86248f36', NULL, NULL, NULL, NULL, 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 (1009, '2021-08-14 14:02:29', 'SALE/POS2021/08/0961', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '241.6000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '241.6000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 36, 1, '241.6000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '87351f3e8c453f5b7efde86f35808b247b1347deefc4a1db487a3509e3bab38d', NULL, NULL, NULL, NULL, 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 (1010, '2021-08-14 14:22:39', 'SALE/POS2021/08/0962', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '23.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '23.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '23.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '70092c54c0d3f184b16f46e0f64351c09261ac4ae74f1b71f62ac12ca5c676cb', NULL, NULL, NULL, NULL, 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 (1011, '2021-08-14 14:28:25', 'SALE/POS2021/08/0963', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '12.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '12.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a8beb513e2b69da0bc27abbc8093d520cdb30b102460215e3c104635230d4187', NULL, NULL, NULL, NULL, 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 (1012, '2021-08-14 14:35:52', 'SALE/POS2021/08/0964', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '260.0400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '260.0400', 'completed', 'paid', 0, NULL, 14, NULL, NULL, 58, 1, '260.0400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '829160a6b6ca0d4dce54b03264af6a9d73d66b64383eea9d795e091a9906f2ab', NULL, NULL, NULL, NULL, 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 (1013, '2021-08-14 15:02:30', 'SALE/POS2021/08/0965', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '29.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '29.0000', 'completed', 'paid', 0, NULL, 14, NULL, NULL, 1, 1, '29.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10b4ead1351baa48f0fad4b4ddb466683832520871e943fc3aedf6d88ed516ef', NULL, NULL, NULL, NULL, 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 (1014, '2021-08-14 17:37:46', 'SALE/POS2021/08/0966', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '60.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.2000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 20, 1, '60.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d64c27a85863e7d12365d4704deec09f2489f45f947fb37dc5d7012a95d7964', NULL, NULL, NULL, NULL, 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 (1015, '2021-08-14 17:42:18', 'SALE/POS2021/08/0967', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8163fd65ba2a3ac73ee5164f49ce6d901f5aff7a17703e45c41e52ac6c17cc61', NULL, NULL, NULL, NULL, 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 (1016, '2021-08-14 17:45:42', 'SALE/POS2021/08/0968', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 50, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '93bda823ad9869b9eaafa17fbd1d9df7d2abf799c5df053f0e83fbb9dac0d6ca', NULL, NULL, NULL, NULL, 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 (1017, '2021-08-14 18:16:57', 'SALE/POS2021/08/0969', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '15.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 5, 1, '15.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e6406f41885a3e6f324961d371424b2a585490bb00fba9cf9890b8033347d042', NULL, NULL, NULL, NULL, 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 (1018, '2021-08-14 18:34:53', 'SALE/POS2021/08/0970', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '67.9000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '67.9000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 5, 1, '67.9000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f631b4bd8ca38a76eb6eea6a2b6506e46c11ee03d008705ac6b178ef3cadcae4', NULL, NULL, NULL, NULL, 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 (1019, '2021-08-14 18:40:40', 'SALE/POS2021/08/0971', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '36.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '36.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '36.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b55d50c0a6c63c7f42c9d6af0ee5184bebb338ee2c0deeb73b738286874fdba', NULL, NULL, NULL, NULL, 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 (1020, '2021-08-14 19:11:14', 'SALE/POS2021/08/0972', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '24.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 8, 1, '24.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba9bac29c409861b1d36d5d2cc5f5d46b90abf96df64697363ec428b0886a97e', NULL, NULL, NULL, NULL, 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 (1021, '2021-08-14 19:20:20', 'SALE/POS2021/08/0973', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 6, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '724c357f0b50aa9764d002e314245b90567ac55996b461514189e25603e78678', NULL, NULL, NULL, NULL, 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 (1022, '2021-08-14 20:18:37', 'SALE/POS2021/08/0974', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '43.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '43.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 8, 1, '43.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27882c2682390c275d5ceb0851ad8612c82b68a7d6057f659170a4503f91f25e', NULL, NULL, NULL, NULL, 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 (1023, '2021-08-14 20:27:40', 'SALE/POS2021/08/0975', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 2, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '079b5d99fabe02e950ce25f38f28fa436b04eb66a01247ff5e64a8141341bf78', NULL, NULL, NULL, NULL, 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 (1024, '2021-08-14 20:30:49', 'SALE/POS2021/08/0976', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '189.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '189.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 37, 1, '189.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '34116d4ad6574e4128abcbdec39f62b042cb6019dcdcd229a44a158157f11221', NULL, NULL, NULL, NULL, 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 (1025, '2021-08-14 20:32:40', 'SALE/POS2021/08/0977', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '104.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '104.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 8, 1, '104.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4fd90b82c1051d969aa178a35827498a9c5651abd023aaacfe9e9089e293022b', NULL, NULL, NULL, NULL, 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 (1026, '2021-08-14 20:43:28', 'SALE/POS2021/08/0978', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd39cbf3dd8682518c8ab5ec531c53a164e4b989a5574c5ed5645baf6bd1fe142', NULL, NULL, NULL, NULL, 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 (1027, '2021-08-14 20:46:00', 'SALE/POS2021/08/0979', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '129.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '129.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 18, 1, '129.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b31712bbea299244cfaafc63165762b42fac41109bcf8fa05b82e347e70d7a4e', NULL, NULL, NULL, NULL, 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 (1028, '2021-08-14 21:11:35', 'SALE/POS2021/08/0980', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '6.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 4, 1, '6.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c3da17447f6f82026e42f1c754dad4becde615342a3ddd1f6ad786dbf3fe4442', NULL, NULL, NULL, NULL, 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 (1029, '2021-08-14 21:43:34', 'SALE/POS2021/08/0981', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '108.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '108.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 9, 1, '108.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f40b56b29b4a87950a1b7a095334167673c967186671f99abe9c470ec31a7ddd', NULL, NULL, NULL, NULL, 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 (1030, '2021-08-14 21:48:59', 'SALE/POS2021/08/0982', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '17.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '17.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a0c1fd3de7803cb6be444c84b09aca06688232ea517d245bbffc008efe5960b1', NULL, NULL, NULL, NULL, 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 (1031, '2021-08-14 21:49:56', 'SALE/POS2021/08/0983', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '63.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '63.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '63.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1568ce56e7a5e4ba2f194998b0b470bf10329e1e1626b435f93c024a6a048f82', NULL, NULL, NULL, NULL, 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 (1032, '2021-08-14 21:53:37', 'SALE/POS2021/08/0984', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '15.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 2, 1, '15.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fcb1e487a855059a89bf6a1af80a55f08d5ea22412b8891c72e02c8956a17c62', NULL, NULL, NULL, NULL, 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 (1033, '2021-08-15 18:32:52', 'SALE/POS2021/08/0985', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '175.0300', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '175.0300', 'completed', 'paid', 0, NULL, 15, NULL, NULL, 30, 1, '175.0300', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c175cbebce52fa5d5dbeb54ad93f2a29ba5fe8ecef0974f085c0b99da26ace3', NULL, NULL, NULL, NULL, 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 (1034, '2021-08-15 18:54:16', 'SALE/POS2021/08/0986', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '45.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '45.7000', 'completed', 'paid', 0, NULL, 15, NULL, NULL, 8, 1, '45.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5246703823e29705f4819d97fc288591bfcd9190bbbc5fd62e7479082a28bf89', NULL, NULL, NULL, NULL, 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 (1035, '2021-08-15 19:15:59', 'SALE/POS2021/08/0987', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '9.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9.0000', 'completed', 'paid', 0, NULL, 15, NULL, NULL, 3, 1, '9.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '553e4cfac549c2203a0a4d06759b50d8743d91d19abb7d5858508dd5cca9a4cf', NULL, NULL, NULL, NULL, 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 (1036, '2021-08-15 19:45:15', 'SALE/POS2021/08/0988', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '86.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '86.5000', 'completed', 'paid', 0, NULL, 15, NULL, NULL, 8, 1, '86.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6cca60d5238b9d3714f4d90a150c1d1442ebfabaf3d0c34f9ea9f6ef1112e132', NULL, NULL, NULL, NULL, 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 (1037, '2021-08-15 20:06:21', 'SALE/POS2021/08/0989', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '37.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '37.0000', 'completed', 'paid', 0, NULL, 15, NULL, NULL, 6, 1, '37.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59175bdf7155b7a06f9892d4fc6138d48ef55faf21ca0ceb2fe0318133887b56', NULL, NULL, NULL, NULL, 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 (1038, '2021-08-15 21:00:37', 'SALE/POS2021/08/0990', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '91.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '91.2000', 'completed', 'paid', 0, NULL, 15, NULL, NULL, 24, 1, '91.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '63f0c685939a598e0c09027a29fa7cf5991f56ee29d2b80ec50cbff042d01008', NULL, NULL, NULL, NULL, 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 (1039, '2021-08-15 08:08:00', '15/8/2021 sales comm/stella', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '1070.6800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1070.6800', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 146, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '83b42a2ee75a522dd90c8c9dedefeec530489c5b713a2318c973e0ccf4e9e5c5', NULL, NULL, NULL, NULL, 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 (1040, '2021-08-16 14:03:22', 'SALE/POS2021/08/0991', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '145.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '145.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 39, 1, '145.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bdd6876f4483be2b2cdb67fa7f585bd63dda8d61aadd41bc98adbcd7cb095c61', NULL, NULL, NULL, NULL, 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 (1041, '2021-08-16 14:31:31', 'SALE/POS2021/08/0992', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '268.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '268.0000', 'completed', 'paid', 0, NULL, 14, NULL, NULL, 34, 1, '268.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2809ed8cb0d052ebaf205074526754819c8a4568095c4ea1084fe0aa8eb91b1e', NULL, NULL, NULL, NULL, 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 (1042, '2021-08-16 15:11:22', 'SALE/POS2021/08/0993', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '120.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 9, 1, '120.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fa7d1cd3dfe9a0f3a3488fd826925d9c79b9fd6d6c8fc02a70a3d723bdadc6bf', NULL, NULL, NULL, NULL, 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 (1043, '2021-08-16 15:17:46', 'SALE/POS2021/08/0994', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '9.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '9.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '03a6c67a8a090d49b5df3e95ae7ead6edfee6d1d274929ace2a8d4697097d29f', NULL, NULL, NULL, NULL, 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 (1044, '2021-08-16 18:51:45', 'SALE/POS2021/08/0995', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '101.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '101.5200', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 38, 1, '101.5200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '230bdffcd822ab55293eee9454b85a0d94d6777893f108290c8516d13442431c', NULL, NULL, NULL, NULL, 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 (1045, '2021-08-16 18:57:01', 'SALE/POS2021/08/0996', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '439.2100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '439.2100', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 27, 1, '439.2100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ab5e81156697bca5bd9035f40efffaedebaaa6ce8aa78a1ca21d2da87f278c15', NULL, NULL, NULL, NULL, 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 (1046, '2021-08-16 19:18:40', 'SALE/POS2021/08/0997', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '65.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '65.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 14, 1, '65.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a88ecface6bdd7e1aacffe414619245179f9519d07f9f73223bf303a84e282d5', NULL, NULL, NULL, NULL, 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 (1047, '2021-08-16 20:01:35', 'SALE/POS2021/08/0998', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '181.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '181.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 35, 1, '181.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28e099cf4b282572543a50151cd0d84ad786258de3bca613d66279cd93f723f3', NULL, NULL, NULL, NULL, 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 (1048, '2021-08-16 20:32:01', 'SALE/POS2021/08/0999', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '41.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '41.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 9, 1, '41.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1ab33141ed26dd0f4dab843d42ba0a56944f60e54930a76bcb9395d6ba56077d', NULL, NULL, NULL, NULL, 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 (1049, '2021-08-16 21:17:42', 'SALE/POS2021/08/1000', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '0.7000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.7000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '0.7000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7f6ed3eea9d1fe689aa96a22cc8f19c6e5f77fc15fe28f51f2460c5be0adcf7d', NULL, NULL, NULL, NULL, 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 (1050, '2021-08-16 21:18:39', 'SALE/POS2021/08/1001', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '159.0800', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '159.0800', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 18, 1, '159.0800', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b44edf89e84d3259f0bf1b13179756304e83eb2b3d00cd514533791b97dcfdad', NULL, NULL, NULL, NULL, 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 (1051, '2021-08-16 21:55:33', 'SALE/POS2021/08/1002', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '33.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '33.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 3, 1, '33.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '48214605692b880e8dd599d0b72d193104509ad7280769bb5c61951f4ce2f61d', NULL, NULL, NULL, NULL, 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 (1052, '2021-08-17 13:46:18', 'SALE/POS2021/08/1003', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '124.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '124.0000', 'completed', 'paid', 0, NULL, 14, NULL, NULL, 19, 1, '124.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02c04aea79d8e1aadaa4815e7d9072ddf45b24aa03af0d5e7271e36ac6302f10', NULL, NULL, NULL, NULL, 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 (1053, '2021-08-17 14:50:26', 'SALE/POS2021/08/1004', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '174.1200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '174.1200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 34, 1, '174.1200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '701dc13746b1e1bea35e16fd71292117ccc98cf91b0e24f658429980691f1fac', NULL, NULL, NULL, NULL, 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 (1054, '2021-08-17 14:53:23', 'SALE/POS2021/08/1005', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '2.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.0000', 'completed', 'paid', 0, NULL, 14, NULL, NULL, 1, 1, '2.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '24afbe29f675d3e7a300faa41d545ac0aceab37d57569e9a52cfb1dd5c4fbe6c', NULL, NULL, NULL, NULL, 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 (1055, '2021-08-17 19:16:52', 'SALE/POS2021/08/1006', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '385.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '385.8000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 25, 1, '385.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3f27153f0bcb3a80eba9fa687e27606159632b33d31101fcbe5cea939d9fc6d8', NULL, NULL, NULL, NULL, 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 (1056, '2021-08-17 19:25:36', 'SALE/POS2021/08/1007', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '296.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '296.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 34, 1, '296.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'da417f59f138280b060aeeb315d607243765f5d9fc918eb7798c6edd1b4dde6e', NULL, NULL, NULL, NULL, 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 (1057, '2021-08-17 19:31:02', 'SALE/POS2021/08/1008', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '31.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '31.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 7, 1, '31.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c53b651ef555074a07cc560e6613deaea2a55c330f1d61399b18775c190397a7', NULL, NULL, NULL, NULL, 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 (1058, '2021-08-17 19:43:18', 'SALE/POS2021/08/1009', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '2.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '2.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7902dd4ee98e396a9054d8f4032ea7332d7c063434c69998a1fca5a19a63366e', NULL, NULL, NULL, NULL, 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 (1059, '2021-08-17 20:37:03', 'SALE/POS2021/08/1010', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '151.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '151.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 9, 1, '151.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9a2d6be0aa9e10800c25db75de867fdd284a47faef54017235eda7156c71c367', NULL, NULL, NULL, NULL, 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 (1060, '2021-08-17 20:45:58', 'SALE/POS2021/08/1011', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '47.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '47.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ad357fdff795f698bb71bd8abdd345e210b6443b18453e663ccd007b66743e5e', NULL, NULL, NULL, NULL, 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 (1061, '2021-08-17 20:54:55', 'SALE/POS2021/08/1012', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '13.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 7, 1, '13.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0e69c3f2e7339ad929fd947863f0984a447802850a57cc8eda747caaf58f9810', NULL, NULL, NULL, NULL, 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 (1062, '2021-08-17 21:04:47', 'SALE/POS2021/08/1013', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '4.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '4.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6f933d754d4c31cf61fcddcd3e9b5eb7ce2c4aa58c27cf4a693571eed6b5a589', NULL, NULL, NULL, NULL, 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 (1063, '2021-08-17 21:18:34', 'SALE/POS2021/08/1014', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '28.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '28.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '28.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '319797a68c21d98fefaea0b39f70e3bfccf6d119901b7294e86f520a969ffa18', NULL, NULL, NULL, NULL, 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 (1064, '2021-08-17 21:25:15', 'SALE/POS2021/08/1015', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '10.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '10.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5350a4e24c82c788064cac1059bbae19565a94737e89da7880c09867629f3a48', NULL, NULL, NULL, NULL, 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 (1065, '2021-08-17 21:25:26', 'SALE/POS2021/08/1016', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '334.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '334.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 30, 1, '334.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ebde787d7912f4c578b6c1e146bb15bafdc529d8299aca323cec8497c52123d0', NULL, NULL, NULL, NULL, 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 (1066, '2021-08-17 21:32:00', 'SALE/POS2021/08/1017', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '23.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '23.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '23.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '24608d19b68929534c1c24baf1c298b83097d2c272a72329f0adf4c4f49a4987', NULL, NULL, NULL, NULL, 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 (1067, '2021-08-17 22:00:50', 'SALE/POS2021/08/1018', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '185.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '185.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 15, 1, '185.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af0d4dda3ab49d3f98b8ff7475b8a18e9c28a4b5a0de2af5a2b7d133fce95bcb', NULL, NULL, NULL, NULL, 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 (1068, '2021-08-17 22:07:21', 'SALE/POS2021/08/1019', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '17.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '17.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f124e1aefe5e3f06381632180b77a5a7429716bfe4a0fcf6a9c4777e3e911f54', NULL, NULL, NULL, NULL, 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 (1069, '2021-08-18 14:28:09', 'SALE/POS2021/08/1020', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '361.6700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '361.6700', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 56, 1, '361.6700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '03c8ae31cef625311df8e55c06180225248300c19c92a2b8d53fedc685728152', NULL, NULL, NULL, NULL, 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 (1070, '2021-08-18 14:34:04', 'SALE/POS2021/08/1021', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '195.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '195.5000', 'completed', 'paid', 0, NULL, 14, NULL, NULL, 27, 1, '195.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14747ab60ea485336f939f1144fc48173124196576a672b8dde8e36b7b0ab9d8', NULL, NULL, NULL, NULL, 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 (1071, '2021-08-18 14:53:34', 'SALE/POS2021/08/1022', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '23.0200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '23.0200', 'completed', 'paid', 0, NULL, 14, NULL, NULL, 7, 1, '23.0200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '63165ec6f5473d13ff6c813cb683e6009517f6eb1043d6fb7a72e50094dfaaf5', NULL, NULL, NULL, NULL, 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 (1072, '2021-08-18 15:06:37', 'SALE/POS2021/08/1023', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '5.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '5.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '58dbd363c23fd282414234d42de6f66b4498239374887e9539afb449df6eee35', NULL, NULL, NULL, NULL, 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 (1073, '2021-08-18 19:31:36', 'SALE/POS2021/08/1024', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '356.5100', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '356.5100', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 54, 1, '356.5100', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e5239de93d4fdddf2640ac834cd6a77b10f562c77a6dffe819e3e90f7aa5fdc8', NULL, NULL, NULL, NULL, 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 (1074, '2021-08-18 20:45:54', 'SALE/POS2021/08/1025', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '265.4200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '265.4200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 40, 1, '265.4200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '35dd7d6a724ed5016d069bcfe631dcbf7c8c0beb4c88fa9b8d451fb16e9288d6', NULL, NULL, NULL, NULL, 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 (1075, '2021-08-18 21:32:46', 'SALE/POS2021/08/1026', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '137.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '137.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 19, 1, '137.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1ac9901b2237453c28532771a21b0bbeaad7ff41b7e0de33228d58d8702518ac', NULL, NULL, NULL, NULL, 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 (1076, '2021-08-18 21:34:25', 'SALE/POS2021/08/1027', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '3.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '3.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6e5fa03cd7c148342465f9076fcb5bc8a838557a8f212208cfc786f9cb39b791', NULL, NULL, NULL, NULL, 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 (1077, '2021-08-18 21:50:28', 'SALE/POS2021/08/1028', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '108.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '108.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 19, 1, '108.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '353f2a3476ef44d6630ee3de200b50142c862f725c9bc78a11abe54630488b51', NULL, NULL, NULL, NULL, 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 (1078, '2021-08-18 22:06:02', 'SALE/POS2021/08/1029', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '52.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '52.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 18, 1, '52.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '035bcc4b99b7b5f623758f5937e519929cc4fb16dcd6ecdc527bf9f2fc31c827', NULL, NULL, NULL, NULL, 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 (1079, '2021-08-19 13:45:04', 'SALE/POS2021/08/1030', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '163.0400', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '163.0400', 'completed', 'paid', 0, NULL, 15, NULL, NULL, 49, 1, '163.0400', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a30bda0024626d336819161e33110d5e86e7a1354e2fa800a515c44993b842a', NULL, NULL, NULL, NULL, 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 (1080, '2021-08-19 14:32:03', 'SALE/POS2021/08/1031', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '27.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '27.5000', 'completed', 'paid', 0, NULL, 15, NULL, NULL, 2, 1, '27.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f183ed0a160b46d1e79382100a43079b3658d82ef72cdb010bbcb43020589a51', NULL, NULL, NULL, NULL, 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 (1081, '2021-08-19 15:05:26', 'SALE/POS2021/08/1032', 1, 'Walk-in Customer', 3, 'Commandos', 4, '', '', '231.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '231.5000', 'completed', 'paid', 0, NULL, 8, NULL, NULL, 34, 1, '231.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f64e1e6fa07293f716c08a4083590c3e5e0e4faa56c62d72803164242e055ab9', NULL, NULL, NULL, NULL, 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 (1082, '2021-08-19 19:17:45', 'SALE/POS2021/08/1033', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '120.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.2000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 20, 1, '120.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd7da48d9e94672761bec86ad2b822b7882c7739c717b78c4f319478463699fc9', NULL, NULL, NULL, NULL, 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 (1083, '2021-08-19 19:59:34', 'SALE/POS2021/08/1034', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '47.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '47.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 17, 1, '47.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0e65e4e42f38e5d928ca8a032029c8b038d1787752667f3b5e4f7b3a6754d4ff', NULL, NULL, NULL, NULL, 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 (1084, '2021-08-19 20:24:38', 'SALE/POS2021/08/1035', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '44.2000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '44.2000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 12, 1, '44.2000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eefc884f36366bd659a67d7e43672d8c2222bc85382b94415fd980f45db2d0c6', NULL, NULL, NULL, NULL, 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 (1085, '2021-08-19 20:42:27', 'SALE/POS2021/08/1036', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '332.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '332.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 40, 1, '332.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd645ac9aa8b8faf9357288f7d26b55cb947ff17ee6e8bcdd9cf9c8e5b7b3df3b', NULL, NULL, NULL, NULL, 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 (1086, '2021-08-19 20:55:58', 'SALE/POS2021/08/1037', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '1.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 2, 1, '1.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bf883344ffa858a729d6c9177142ae0ae5dd934e76028d0328f5dcf1d52c167c', NULL, NULL, NULL, NULL, 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 (1087, '2021-08-19 21:29:45', 'SALE/POS2021/08/1038', 1, 'Walk-in Customer', 31, 'rosa rosa', 4, '', '', '3.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '3.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2225f40405e532a6e1d7cfd46bb1b1e12f3270dd5e778f2fc8e761ca54abf990', NULL, NULL, NULL, NULL, 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 (1088, '2021-08-19 21:51:12', 'SALE/POS2021/08/1039', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '92.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '92.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 6, 1, '92.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '17ec289d31667a8b0a848225f65af60b6b48e6e379f94e66d5535c843aa157ca', NULL, NULL, NULL, NULL, 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 (1089, '2021-08-19 21:57:01', 'SALE/POS2021/08/1040', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '79.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '79.0000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 6, 1, '79.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c756b3411f2bfabb57ad670a233f280931872fc4eaafcaa4a42bf39e139f4638', NULL, NULL, NULL, NULL, 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 (1090, '2021-08-19 09:35:00', 'SALES/ COMM/19/8/21', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '102.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '102.0000', 'completed', 'pending', 0, NULL, 3, NULL, NULL, 3, 0, '0.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', NULL, NULL, 0, 0, NULL, NULL, '39e1ec034943c57c4175fe04ea53217e0ba82b08fd02f8275c6c688e3987e64f', NULL, NULL, NULL, NULL, 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 (1091, '2021-08-20 13:32:25', 'SALE/POS2021/08/1041', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '246.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '246.5200', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 29, 1, '246.5200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '97310e8bc12fad248feee6988c9bf9612bc4246e24c22f1bec10a24fc07d2ab8', NULL, NULL, NULL, NULL, 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 (1092, '2021-08-20 13:40:51', 'SALE/POS2021/08/1042', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '95.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '95.5000', 'completed', 'paid', 0, NULL, 14, NULL, NULL, 19, 1, '95.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '607966b6959bf04323ecb4297d7c5247e5dc365dc63e064f93b693891eb44f9e', NULL, NULL, NULL, NULL, 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 (1093, '2021-08-20 13:48:48', 'SALE/POS2021/08/1043', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '45.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 3, 1, '45.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac756221064ed7c137cd800edeb4116a7363b0cfdaf95dbc50dcbdc6c64e5a39', NULL, NULL, NULL, NULL, 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 (1094, '2021-08-20 14:14:37', 'SALE/POS2021/08/1044', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '151.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '151.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '151.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df09fc580e8346b51dc6aae30bc9473891ce3703ffde820d971488a18975d262', NULL, NULL, NULL, NULL, 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 (1095, '2021-08-20 14:41:56', 'SALE/POS2021/08/1045', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '6.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6.5000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 1, 1, '6.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b2ee1d04dc6c238e7b8f2f759c7f32a7575b133000e0073586ff5760554995c9', NULL, NULL, NULL, NULL, 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 (1096, '2021-08-20 14:51:11', 'SALE/POS2021/08/1046', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '89.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '89.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 12, 1, '89.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a53fe4ad976a938267598d33ab1a994b35afed29cdaef15b944958b15d0a576d', NULL, NULL, NULL, NULL, 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 (1097, '2021-08-20 14:54:11', 'SALE/POS2021/08/1047', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '27.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '27.0000', 'completed', 'paid', 0, NULL, 14, NULL, NULL, 5, 1, '27.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '47e46696315a7fad842cc4329245861aff19ce638820bee970f1f488fd786cbd', NULL, NULL, NULL, NULL, 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 (1098, '2021-08-20 15:15:53', 'SALE/POS2021/08/1048', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '103.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '103.0000', 'completed', 'paid', 0, NULL, 7, NULL, NULL, 5, 1, '103.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e3afc9a72e935b6ba0b5ae81e7f71157318328ec09cbe6c54bdd5c7af0cc718a', NULL, NULL, NULL, NULL, 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 (1099, '2021-08-20 17:51:00', 'SALE/POS2021/08/1049', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '299.4700', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '299.4700', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 28, 1, '299.4700', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '635a8674d40d66901aa5376f26cd9a5d413497a9d925f2651184f66498d9f510', NULL, NULL, NULL, NULL, 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 (1100, '2021-08-20 19:25:51', 'SALE/POS2021/08/1050', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '133.8000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '133.8000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 23, 1, '133.8000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '31a9a31986bda6e87c35023d59f8ba6201b27c96cc26ab7fcf2c7da6600a8a71', NULL, NULL, NULL, NULL, 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 (1101, '2021-08-20 19:29:40', 'SALE/POS2021/08/1051', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '983.8900', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '983.8900', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 89, 1, '983.8900', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '896187b395d51c56627c29a5cf49c168443c7cce8bebbc111336c83249816994', NULL, NULL, NULL, NULL, 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 (1102, '2021-08-20 19:36:32', 'SALE/POS2021/08/1052', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '8.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '8.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '236d508f6c8306400d8e375954ccb89ad77ae16cf573665647c26d76f76ed176', NULL, NULL, NULL, NULL, 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 (1103, '2021-08-20 19:58:38', 'SALE/POS2021/08/1053', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '8.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '8.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c8069633946fe19872e9e9821963927913108623f045682deae12613e4a66989', NULL, NULL, NULL, NULL, 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 (1104, '2021-08-20 20:20:45', 'SALE/POS2021/08/1054', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '4.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4.5000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 2, 1, '4.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b24f5172ccfc7a79468a3017329e25aaff08dcc4f38261d41ba3e35356a76c1a', NULL, NULL, NULL, NULL, 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 (1105, '2021-08-20 20:24:47', 'SALE/POS2021/08/1055', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '1.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 1, 1, '1.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '315fddb124d0417cae9407f58df00d82663ab0f6a9b3bcc2629b81a737bcf8c3', NULL, NULL, NULL, NULL, 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 (1106, '2021-08-20 20:48:22', 'SALE/POS2021/08/1056', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '147.5200', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '147.5200', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 20, 1, '147.5200', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b7147a7e7536f4f2c3adf71701409407592a1d98065ab3379350dfdfb6c98844', NULL, NULL, NULL, NULL, 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 (1107, '2021-08-20 20:53:20', 'SALE/POS2021/08/1057', 1, 'Walk-in Customer', 3, 'Commandos', 1, '', '', '33.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '33.5000', 'completed', 'paid', 0, NULL, 4, NULL, NULL, 4, 1, '33.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca1ad383390584cc5cbae26503476bba4034249c07f7c434430d7e64dca90fa9', NULL, NULL, NULL, NULL, 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 (1108, '2021-08-20 21:02:14', 'SALE/POS2021/08/1058', 1, 'Walk-in Customer', 32, 'LAKE SIDE', 1, '', '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', 'completed', 'paid', 0, NULL, 16, NULL, NULL, 1, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f88049ad5b9d8e077bfd5b5d045413d21e76c7c372b94b9db7722d946c4173a1', NULL, NULL, NULL, NULL, 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 (1109, '2021-08-20 21:05:20', 'SALE/POS2021/08/1059', 1, 'Walk-in Customer', 32, 'LAKE SIDE', 1, '', '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', 'completed', 'paid', 0, NULL, 16, NULL, NULL, 3, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59ffe93f5bac2fbe16cf4a5fba318f9290dd13e27649b6fd1efa5cc2f459a3c8', NULL, NULL, NULL, NULL, 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 (1110, '2021-08-20 21:48:05', 'SALE/POS2021/08/1060', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '30.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 5, 1, '30.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10659c6c60ce520c7c0600d75f63717e0d81e0d08ec4c8f3cdb2e5b70624787a', NULL, NULL, NULL, NULL, 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 (1111, '2021-08-20 21:52:34', 'SALE/POS2021/08/1061', 1, 'Walk-in Customer', 31, 'rosa rosa', 3, '', '', '6.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6.0000', 'completed', 'paid', 0, NULL, 11, NULL, NULL, 3, 1, '6.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a5aa5d6b4e5cc4e097cffdf63a8c4f44ee4f9abe22abecfdae875a26c206371', NULL, NULL, NULL, NULL, 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 (1112, '2021-08-20 21:59:55', 'SALE/POS2021/08/1062', 1, 'Walk-in Customer', 3, 'Commandos', 2, '', '', '18.5000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18.5000', 'completed', 'paid', 0, NULL, 6, NULL, NULL, 2, 1, '18.5000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f21de25430541bb284542866b6bde6f2e34365c493d3c966e66f7773e1d7b4d', NULL, NULL, NULL, NULL, 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 ('04fbbbc9b188efdcd279d4499fe84d4a2d7858a7', '197.159.139.219', 1629512292, '__ci_last_regenerate|i:1629512292;requested_page|s:5:\"admin\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:20:\"kojoappiah@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1629499651\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"ozmsQpfINtDj0HgRA925\";remove_pols|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06a4c87f06bbb2edf776c7bac5a28456d81290e8', '41.155.1.224', 1629481165, '__ci_last_regenerate|i:1629481165;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"BC9ftGkVu7I0bSzpRUam\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('073df9ad12bb7d3df209c2c6431878880ff7fd0b', '41.155.1.224', 1629480587, '__ci_last_regenerate|i:1629480587;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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 ('0883b9197fbc34762fa08a56216b063159cfcc31', '197.159.139.219', 1629500740, '__ci_last_regenerate|i:1629500740;requested_page|s:5:\"admin\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:20:\"kojoappiah@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1629479827\";last_ip|s:12:\"41.155.1.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629499951;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-04-12 02:00:47\";__ci_vars|a:3:{s:7:\"message\";s:3:\"old\";s:7:\"csrfkey\";s:3:\"new\";s:9:\"csrfvalue\";s:3:\"new\";}message|s:25:\"User successfully updated\";csrfkey|s:8:\"en9hON5g\";csrfvalue|s:20:\"QsZX67G45exdaJF9lywn\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0930de8ebf3f5af8fc3a3a0b39eec15ebf5843d6', '102.176.5.3', 1629485678, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0be64f6126013590a086895e9e7a71ef8e6bff67', '102.176.5.3', 1629470516, '__ci_last_regenerate|i:1629470516;requested_page|s:5:\"admin\";identity|s:3:\"ann\";username|s:3:\"ann\";email|s:15:\"info@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1629453737\";last_ip|s:11:\"102.176.5.3\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629470489;register_id|s:1:\"6\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-04-14 08:10:18\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1211a44ae9e8e05d6f7203fc6115b89dd248f5fd', '102.176.5.3', 1629487780, '__ci_last_regenerate|i:1629487780;requested_page|s:9:\"admin/pos\";identity|s:3:\"ben\";username|s:3:\"ben\";email|s:15:\"ben1@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1629485736\";last_ip|s:11:\"102.176.5.3\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629487672;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-04-12 02:12:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16cc8476b34623a3580a8b123dca2964c335f777', '41.155.1.224', 1629481594, '__ci_last_regenerate|i:1629481594;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629481477;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16df888b01e029be5b45d55bc3f861cfea768355', '102.176.65.19', 1629537966, '__ci_last_regenerate|i:1629537966;requested_page|s:5:\"admin\";identity|s:5:\"owner\";username|s:5:\"owner\";email|s:18:\"owner@tecdiary.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1629160476\";last_ip|s:14:\"154.160.19.223\";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 ('1766e4f053f24491a82c08bfea99376d25d9206f', '102.176.5.3', 1629472553, '__ci_last_regenerate|i:1629472553;requested_page|s:5:\"admin\";identity|s:3:\"ann\";username|s:3:\"ann\";email|s:15:\"info@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1629453737\";last_ip|s:11:\"102.176.5.3\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629472538;register_id|s:1:\"6\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-04-14 08:10:18\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1985643f9acdc62ac995abbd262d7a4037b6daf8', '41.155.2.168', 1629490110, '__ci_last_regenerate|i:1629490110;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629489392;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c6ff4be3f08d8bfd59d004a2fd92c64defb90d7', '154.160.30.208', 1629487551, '__ci_last_regenerate|i:1629487551;identity|s:6:\"dennis\";username|s:6:\"dennis\";email|s:16:\"dennis1@fmms.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1629385911\";last_ip|s:14:\"154.160.30.208\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"0\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:2:\"31\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629487547;register_id|s:2:\"11\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-07-26 15:32:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22f9aa22a96f13cf367c9557c6b967cee874c345', '41.155.2.168', 1629493140, '__ci_last_regenerate|i:1629493140;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629492800;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('278489f7ad501545e8f02f9e3baa109c31f8b0e4', '41.155.1.224', 1629487012, '__ci_last_regenerate|i:1629487012;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629483468;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cfa346bfd265370e9f91ac9db2312144ba30b74', '154.160.30.208', 1629496085, '__ci_last_regenerate|i:1629496085;identity|s:6:\"dennis\";username|s:6:\"dennis\";email|s:16:\"dennis1@fmms.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1629385911\";last_ip|s:14:\"154.160.30.208\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"0\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:2:\"31\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629496083;register_id|s:2:\"11\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-07-26 15:32:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30fdaf7421dc17d941250358bf7f94b0b1c386ec', '41.155.1.224', 1629487952, '__ci_last_regenerate|i:1629487952;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629487344;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34db828cf1aa403c57457ca7fc73ee26429b5eac', '154.160.30.208', 1629489518, '__ci_last_regenerate|i:1629489518;identity|s:6:\"dennis\";username|s:6:\"dennis\";email|s:16:\"dennis1@fmms.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1629385911\";last_ip|s:14:\"154.160.30.208\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"0\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:2:\"31\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629489506;register_id|s:2:\"11\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-07-26 15:32:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36b7b628b0a930f84caf2d879085e0e40bf7723e', '102.176.65.19', 1629536646, '__ci_last_regenerate|i:1629536646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39eb1fa3c1568caf2e1c0ebfdf9526e81965269d', '102.176.5.3', 1629496795, '__ci_last_regenerate|i:1629496795;identity|s:3:\"ben\";username|s:3:\"ben\";email|s:15:\"ben1@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1629487034\";last_ip|s:11:\"102.176.5.3\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629496793;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-04-12 02:12:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4388b3802872ea788799421fe2764fd46d300124', '41.155.1.224', 1629483411, '__ci_last_regenerate|i:1629483411;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629481477;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43d77fdfb27d47999c0b3874217804d63c9b3aa5', '197.159.139.219', 1629500435, '__ci_last_regenerate|i:1629500435;requested_page|s:5:\"admin\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:20:\"kojoappiah@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1629479827\";last_ip|s:12:\"41.155.1.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629499951;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-04-12 02:00:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47dbb9d8ed937969d9b9eba22e58c71c0aa73a7f', '41.155.1.224', 1629479948, '__ci_last_regenerate|i:1629479948;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 ('48a7299cbdb7dfd81a778d8a36a8a3565bac90f3', '41.155.1.224', 1629485977, '__ci_last_regenerate|i:1629485977;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629483468;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a5e839058f13e0ccd1fb97da17f0a1973eaf7bb', '102.176.5.3', 1629471071, '__ci_last_regenerate|i:1629471071;requested_page|s:5:\"admin\";identity|s:3:\"ann\";username|s:3:\"ann\";email|s:15:\"info@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1629453737\";last_ip|s:11:\"102.176.5.3\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629471051;register_id|s:1:\"6\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-04-14 08:10:18\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ac2c9e34b7c4b80274b99f13b9efbb622447e3b', '102.176.5.3', 1629468877, '__ci_last_regenerate|i:1629468877;requested_page|s:5:\"admin\";identity|s:3:\"ann\";username|s:3:\"ann\";email|s:15:\"info@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1629453737\";last_ip|s:11:\"102.176.5.3\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629468873;register_id|s:1:\"6\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-04-14 08:10:18\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bc6d0ffbca852cfbbab92d0a18d0d5c12327f4b', '41.155.2.168', 1629495195, '__ci_last_regenerate|i:1629494766;identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1629479948\";last_ip|s:12:\"41.155.1.224\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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:1629494137;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a429700fbbfdd700b0aab018d1fe69ae3e16c0', '102.176.5.3', 1629464528, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51e6dd35f2017d177845a6e4060900e101864680', '41.155.2.168', 1629488280, '__ci_last_regenerate|i:1629488161;requested_page|s:35:\"admin/reports/daily_sales/2/2021/08\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:20:\"kojoappiah@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1629479732\";last_ip|s:12:\"41.155.1.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56f6931ec23a923dc00a2dc4c04eb4d74d3574cf', '41.155.2.168', 1629488550, '__ci_last_regenerate|i:1629488550;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629487344;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f31b3ea58b486ba6979800785ebcceaa7ddc7ac', '41.155.2.168', 1629491644, '__ci_last_regenerate|i:1629491644;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629491276;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";csrfkey|s:8:\"MNAItkjF\";__ci_vars|a:2:{s:7:\"csrfkey\";s:3:\"old\";s:9:\"csrfvalue\";s:3:\"old\";}csrfvalue|s:20:\"yfw5DrMd6FWGQnasgARL\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63b0cb4f9777616557e24885a7e2f7e0f261a0bd', '102.176.5.3', 1629467328, '__ci_last_regenerate|i:1629467328;requested_page|s:5:\"admin\";identity|s:3:\"ann\";username|s:3:\"ann\";email|s:15:\"info@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1629453737\";last_ip|s:11:\"102.176.5.3\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629467311;register_id|s:1:\"6\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-04-14 08:10:18\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7055dfd8f112b1b6ba7a4776aba112574dc0ebea', '154.160.30.208', 1629482496, '__ci_last_regenerate|i:1629482496;identity|s:6:\"dennis\";username|s:6:\"dennis\";email|s:16:\"dennis1@fmms.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1629385911\";last_ip|s:14:\"154.160.30.208\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"0\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:2:\"31\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629481866;register_id|s:2:\"11\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-07-26 15:32:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('709d4342d44f49f3b24e5a5bb707e23391167538', '154.160.30.208', 1629471176, '__ci_last_regenerate|i:1629471176;requested_page|s:9:\"admin/pos\";identity|s:8:\"fayorsey\";username|s:8:\"fayorsey\";email|s:15:\"info@benard.com\";user_id|s:2:\"14\";old_last_login|s:10:\"1629296972\";last_ip|s:14:\"154.160.30.208\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"3\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:2:\"31\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629466852;register_id|s:2:\"13\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-08-07 09:02:53\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70ba280b03f8a603a4da8e22bf76c049590ce91e', '102.176.65.19', 1629537966, '__ci_last_regenerate|i:1629537966;requested_page|s:5:\"admin\";identity|s:5:\"owner\";username|s:5:\"owner\";email|s:18:\"owner@tecdiary.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1629160476\";last_ip|s:14:\"154.160.19.223\";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 ('70bcd0931bdae7472ba0b22eebd75baa51f78344', '154.160.30.208', 1629481860, '__ci_last_regenerate|i:1629481860;identity|s:6:\"dennis\";username|s:6:\"dennis\";email|s:16:\"dennis1@fmms.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1629385911\";last_ip|s:14:\"154.160.30.208\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"0\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:2:\"31\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629481846;register_id|s:2:\"11\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-07-26 15:32:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72342e579a0ed5b003752343de8079b72ffb725f', '102.176.5.3', 1629496826, '__ci_last_regenerate|i:1629496826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73ab910966e152ceec24fa50327ae799b3978eb3', '41.155.2.168', 1629488959, '__ci_last_regenerate|i:1629488959;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629487344;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('752252885cff4e024c505a6fffb53510bec5c44f', '102.176.5.3', 1629464507, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fc31c875eccd94fd350148c4a5a1ca30398cd0f', '41.155.1.224', 1629487313, '__ci_last_regenerate|i:1629487313;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629483468;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83595e3ab0983e7b80b6b819cf9a5061c7d0c017', '102.176.65.19', 1629537656, '__ci_last_regenerate|i:1629537656;requested_page|s:5:\"admin\";identity|s:5:\"owner\";username|s:5:\"owner\";email|s:18:\"owner@tecdiary.com\";user_id|s:1:\"1\";old_last_login|s:10:\"1629160476\";last_ip|s:14:\"154.160.19.223\";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 ('87f733a1a7c5ae599332ed3e89e0a1127d941d0f', '197.159.139.219', 1629501731, '__ci_last_regenerate|i:1629501731;requested_page|s:5:\"admin\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:20:\"kojoappiah@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1629479827\";last_ip|s:12:\"41.155.1.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629499951;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-04-12 02:00:47\";__ci_vars|a:2:{s:7:\"csrfkey\";s:3:\"old\";s:9:\"csrfvalue\";s:3:\"old\";}csrfkey|s:8:\"tFUPemgh\";csrfvalue|s:20:\"2sYw8zZ75veBlCLIjmny\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88fee35bc14f42fe26e2a1a9829939247d8a417c', '41.155.1.224', 1629488161, '__ci_last_regenerate|i:1629488161;requested_page|s:35:\"admin/reports/daily_sales/2/2021/08\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:20:\"kojoappiah@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1629479732\";last_ip|s:12:\"41.155.1.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89183524d7b5ae8a07949438ee7b129abcbc0250', '41.155.1.224', 1629486588, '__ci_last_regenerate|i:1629486588;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629483468;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89366342ccdc8fcc7e80c8eef0028cff46ce8416', '197.159.139.219', 1629502125, '__ci_last_regenerate|i:1629502125;requested_page|s:5:\"admin\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:20:\"kojoappiah@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1629479827\";last_ip|s:12:\"41.155.1.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629499951;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-04-12 02:00:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89ef24c6592e4e1d1d90f3d06088264dccee2c02', '154.160.30.208', 1629488192, '__ci_last_regenerate|i:1629488192;identity|s:6:\"dennis\";username|s:6:\"dennis\";email|s:16:\"dennis1@fmms.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1629385911\";last_ip|s:14:\"154.160.30.208\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"0\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:2:\"31\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629488190;register_id|s:2:\"11\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-07-26 15:32:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a575cc8e374a76f085ec4f9e94adefb0110d268', '41.155.2.168', 1629494766, '__ci_last_regenerate|i:1629494766;identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1629479948\";last_ip|s:12:\"41.155.1.224\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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:1629494137;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90cdb0de2cecaf902688597e6e3cd5a4923aebed', '41.155.2.168', 1629492048, '__ci_last_regenerate|i:1629492048;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629491276;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97fb54782d58f776bbcdbda5cc016d68adbe9a11', '41.155.2.168', 1629489392, '__ci_last_regenerate|i:1629489392;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629489117;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cbcd5c092c80a70908e1ff301b08b20a0656953', '154.160.30.208', 1629466851, '__ci_last_regenerate|i:1629466851;requested_page|s:9:\"admin/pos\";identity|s:8:\"fayorsey\";username|s:8:\"fayorsey\";email|s:15:\"info@benard.com\";user_id|s:2:\"14\";old_last_login|s:10:\"1629296972\";last_ip|s:14:\"154.160.30.208\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"3\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:2:\"31\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629466710;register_id|s:2:\"13\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-08-07 09:02:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2cc559e6e440a28e441dbec2716495e86640bdd', '102.176.5.3', 1629465900, '__ci_last_regenerate|i:1629465900;requested_page|s:5:\"admin\";error|s:68:\"<p>You have 3 failed login attempts. Please try after 10 minutes</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a558cb111b2a98f17267c4b16f434f9a39ee8a7a', '197.159.139.219', 1629502800, '__ci_last_regenerate|i:1629502564;requested_page|s:5:\"admin\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:20:\"kojoappiah@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1629479827\";last_ip|s:12:\"41.155.1.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629499951;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-04-12 02:00:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5c8770b437bfeb278533403e9e2cae334f0703e', '102.176.5.3', 1629464554, '__ci_last_regenerate|i:1629464554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a836ef4cf938003b9786c4295c675cf9de12927a', '154.160.30.208', 1629496403, '__ci_last_regenerate|i:1629496403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a95b40a7f3d44f77b612593c5029293639fa4564', '41.155.1.224', 1629479363, '__ci_last_regenerate|i:1629479363;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9f1775f7b7a132e0308498909a272fb7b4139c6', '102.176.5.3', 1629535762, '__ci_last_regenerate|i:1629535761;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad78cbff5c070a3ebf70437813c06415ae136582', '41.155.2.168', 1629494144, '__ci_last_regenerate|i:1629494144;identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1629479948\";last_ip|s:12:\"41.155.1.224\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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:1629494137;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0c70cfde22e8021fcd86949d701d376358e2ccb', '41.155.2.168', 1629492382, '__ci_last_regenerate|i:1629492382;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629491276;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b13429f4f77da6b63008bf5960ed68f2c79b7ac7', '41.155.1.224', 1629485628, '__ci_last_regenerate|i:1629485628;requested_page|s:35:\"admin/reports/daily_sales/2/2021/08\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:20:\"kojoappiah@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1629479732\";last_ip|s:12:\"41.155.1.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:3:{s:7:\"message\";s:3:\"old\";s:7:\"csrfkey\";s:3:\"new\";s:9:\"csrfvalue\";s:3:\"new\";}message|s:25:\"User successfully updated\";csrfkey|s:8:\"zcw6UQTx\";csrfvalue|s:20:\"ph6VH3oi1uTPO7lWY4v9\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6061542018bbdb4a5f213b52d0e21d10c922791', '197.159.139.219', 1629512301, '__ci_last_regenerate|i:1629512292;requested_page|s:5:\"admin\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:20:\"kojoappiah@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1629499651\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"ozmsQpfINtDj0HgRA925\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6fad1dee275556fa2568a23d4d4ea926ffe21aa', '41.155.1.224', 1629484638, '__ci_last_regenerate|i:1629484638;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629483468;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5debc8e5141acba386b18d83a0d6aa303c65861', '102.176.5.3', 1629472561, '__ci_last_regenerate|i:1629472553;requested_page|s:5:\"admin\";identity|s:3:\"ann\";username|s:3:\"ann\";email|s:15:\"info@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1629453737\";last_ip|s:11:\"102.176.5.3\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629472560;register_id|s:1:\"6\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-04-14 08:10:18\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6ba63aca9b830131f846435e732a9734da681f4', '102.176.5.3', 1629466345, '__ci_last_regenerate|i:1629466345;requested_page|s:5:\"admin\";identity|s:3:\"ann\";username|s:3:\"ann\";email|s:15:\"info@fmmsgh.com\";user_id|s:1:\"7\";old_last_login|s:10:\"1629453737\";last_ip|s:11:\"102.176.5.3\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629466321;register_id|s:1:\"6\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-04-14 08:10:18\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c71e0223009f0dac5d5c62cc660dc6ce9f1af941', '41.155.1.224', 1629480255, '__ci_last_regenerate|i:1629480255;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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 ('cb523cf6bfb8fe2439aeff58b0a69c1457f61430', '41.155.1.224', 1629486282, '__ci_last_regenerate|i:1629486282;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629483468;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd0ee8f47d580a5bd02f1f5cb98c49b3651d068a', '41.155.2.168', 1629491166, '__ci_last_regenerate|i:1629491166;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629489392;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce43f9c910d44ee4701798afaf6206fc04d7eb08', '41.155.2.168', 1629493520, '__ci_last_regenerate|i:1629493520;identity|s:4:\"edna\";username|s:4:\"edna\";email|s:13:\"edna@fmms.com\";user_id|s:2:\"16\";old_last_login|s:10:\"1629492048\";last_ip|N;avatar|N;gender|s:6:\"female\";group_id|s:1:\"5\";warehouse_id|s:1:\"1\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:2:\"32\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629493477;register_id|s:2:\"15\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-08-20 21:00:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d306f7fe312dc455ee037cb5b8be3730bf693b43', '41.155.2.168', 1629492800, '__ci_last_regenerate|i:1629492800;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629492718;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7c4f07ba499b92def9d88a82e29a839343f807e', '41.155.1.224', 1629485153, '__ci_last_regenerate|i:1629485153;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629483468;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbd57f53cba61a559d650112082c0d21cc3eb409', '197.159.139.219', 1629502564, '__ci_last_regenerate|i:1629502564;requested_page|s:5:\"admin\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:20:\"kojoappiah@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1629479827\";last_ip|s:12:\"41.155.1.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629499951;register_id|s:1:\"3\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-04-12 02:00:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0368c4b83b409aaea16bc8777cfc7dbab9114b5', '154.160.30.208', 1629485450, '__ci_last_regenerate|i:1629485450;identity|s:6:\"dennis\";username|s:6:\"dennis\";email|s:16:\"dennis1@fmms.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1629385911\";last_ip|s:14:\"154.160.30.208\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"0\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:2:\"31\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629482522;register_id|s:2:\"11\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-07-26 15:32:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e36f109dde71ee400aa88c515d5addac569cd5a5', '197.159.139.219', 1629499951, '__ci_last_regenerate|i:1629499951;requested_page|s:5:\"admin\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:20:\"kojoappiah@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1629479827\";last_ip|s:12:\"41.155.1.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef155b144c0912f2206186994af8de0ed603fcbe', '154.160.30.208', 1629472238, '__ci_last_regenerate|i:1629472238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f086f18cd8e45273d827243fe92b67c646e9a503', '41.155.1.224', 1629487619, '__ci_last_regenerate|i:1629487619;requested_page|s:5:\"admin\";identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1626607918\";last_ip|s:15:\"197.159.139.219\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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\";user_csrf|s:20:\"KZ1ftwA69oqIQ2vDHWFR\";last_activity|i:1629487344;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3370cf6ce5d933fc83018c4aef33ac6e9b0cf82', '102.176.5.3', 1629486055, '__ci_last_regenerate|i:1629485702;identity|s:3:\"ben\";username|s:3:\"ben\";email|s:15:\"ben1@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1629410176\";last_ip|s:11:\"102.176.5.3\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629486055;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-04-12 02:12:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f357433e0db67ea3822ec2836c4dd939b9388d94', '41.155.2.168', 1629494447, '__ci_last_regenerate|i:1629494447;identity|s:6:\"stella\";username|s:6:\"stella\";email|s:21:\"sappiahkubi@gmail.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1629479948\";last_ip|s:12:\"41.155.1.224\";avatar|N;gender|s:6:\"female\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"1\";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:1629494137;register_id|s:1:\"8\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-05-26 22:36:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f577542e5887acdbd80c6817aabd3b72171f540e', '102.176.5.3', 1629492210, '__ci_last_regenerate|i:1629492210;requested_page|s:9:\"admin/pos\";identity|s:3:\"ben\";username|s:3:\"ben\";email|s:15:\"ben1@fmmsgh.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1629485736\";last_ip|s:11:\"102.176.5.3\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"3\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629487789;register_id|s:1:\"4\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-04-12 02:12:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5bbdb5065cd1a6bd6a338b165dd002f7697c2f3', '102.176.5.3', 1629464507, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fae41713b6278168e94fb281141c8f0c16a9f4c0', '154.160.30.208', 1629490845, '__ci_last_regenerate|i:1629490845;identity|s:6:\"dennis\";username|s:6:\"dennis\";email|s:16:\"dennis1@fmms.com\";user_id|s:2:\"11\";old_last_login|s:10:\"1629385911\";last_ip|s:14:\"154.160.30.208\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"0\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:2:\"31\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1629490824;register_id|s:2:\"11\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2021-07-26 15:32:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff3cb2ecfe85c34d7a3237341ad4fb951823586a', '41.155.1.224', 1629479776, '__ci_last_regenerate|i:1629479608;requested_page|s:15:\"admin/purchases\";identity|s:6:\"appiah\";username|s:6:\"appiah\";email|s:20:\"kojoappiah@gmail.com\";user_id|s:1:\"3\";old_last_login|s:10:\"1629447461\";last_ip|s:11:\"102.176.5.3\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";csrfkey|s:8:\"x8ZwWEmS\";__ci_vars|a:2:{s:7:\"csrfkey\";s:3:\"new\";s:9:\"csrfvalue\";s:3:\"new\";}csrfvalue|s:20:\"HS6wL3AhYJ75bVQGPDdq\";');


#
# 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',
  `use_code_for_slug` tinyint(1) DEFAULT NULL,
  `ws_barcode_type` varchar(10) DEFAULT 'weight',
  `ws_barcode_chars` tinyint(4) DEFAULT NULL,
  `flag_chars` tinyint(4) DEFAULT NULL,
  `item_code_start` tinyint(4) DEFAULT NULL,
  `item_code_chars` tinyint(4) DEFAULT NULL,
  `price_start` tinyint(4) DEFAULT NULL,
  `price_chars` tinyint(4) DEFAULT NULL,
  `price_divide_by` int(11) DEFAULT NULL,
  `weight_start` tinyint(4) DEFAULT NULL,
  `weight_chars` tinyint(4) DEFAULT NULL,
  `weight_divide_by` int(11) DEFAULT NULL,
  `product_price_percentage` tinyint(1) NOT NULL DEFAULT 0,
  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`, `use_code_for_slug`, `ws_barcode_type`, `ws_barcode_chars`, `flag_chars`, `item_code_start`, `item_code_chars`, `price_start`, `price_chars`, `price_divide_by`, `weight_start`, `weight_chars`, `weight_divide_by`, `product_price_percentage`) VALUES (1, 'logo2.png', 'logo3.png', 'FMMS', 'english', 4, 2, 'GHC', 0, 10, '3.4.42', 1, 5, 'SALE', 'QUOTE', 'PO', 'TR', 'DO', 'IPAY', 'SR', 'PR', '', 0, 'default', 1, 1, 0, 1, 0, 1, 1, 1, 0, 'Africa/Accra', 800, 800, 150, 150, 0, 0, 0, 0, NULL, 'mail', '/usr/sbin/sendmail', 'pop.gmail.com', 'contact@fmmsgh.com', '12345678', '25', NULL, NULL, 1, 'contact@fmmsgh.com', 0, 4, 1, 0, 2, 0, 0, 0, 2, 2, '.', ',', 0, 3, 'eben1xx', 'd4455daa-6bfe-49a8-a972-c97dee2ad444', 0, NULL, NULL, NULL, NULL, 0, 0, 0, 0, '¢', 0, '-', 0, 1, 1, 'POP', 90, '', 1, 0, 'AN', 'dompdf', 0, 'weight', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32);


#
# 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 DEFAULT NULL,
  `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=2 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, '2021-04-12 16:27:00', '', 2, 'full', '8e32d8fbe84c5c982b9e8a0021aa1213.csv', NULL, '', '', '', '', NULL, 1490, 1490, NULL, NULL, NULL, 3, 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 AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (1, '2021-05-13 14:32:16', 1, 'Walk-in Customer', 39, '', 1, '374.8000', 3, 2, 7, 'STELLA', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (2, '2021-07-27 19:41:08', 1, 'Walk-in Customer', 6, '', 1, '65.0000', 31, 4, 11, 'double entry', '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_suspended_bills` (`id`, `date`, `customer_id`, `customer`, `count`, `order_discount_id`, `order_tax_id`, `total`, `biller_id`, `warehouse_id`, `created_by`, `suspend_note`, `shipping`, `cgst`, `sgst`, `igst`) VALUES (3, '2021-08-20 19:37:15', 1, 'Walk-in Customer', 1, '', 1, '8.0000', 31, 3, 11, 'entered once ', '0.0000', NULL, NULL, NULL);


#
# 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 AUTO_INCREMENT=33 DEFAULT CHARSET=utf8;

INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1, 1, 1707, 'PR-420', 'MEDGLOBIN CAPS', '33.0000', '33.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '33.0000', '', NULL, 'standard', '33.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2, 1, 1682, 'PR-395', 'SENAFEN TAB 100\'', '14.0000', '14.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '14.0000', '', NULL, 'standard', '14.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3, 1, 1658, '5012335110700', 'S/SEAS COD LIVER OIL S/5', '36.0000', '36.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '36.0000', '', NULL, 'standard', '36.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4, 1, 1580, 'PR-293', 'TETRACYCLIN CAP (LETAP)', '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', NULL, 'standard', '1.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5, 1, 1529, '8901040207157', 'DYMOL TAB', '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', NULL, 'standard', '5.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6, 1, 2315, '34300059', 'PARA LOCAL', '0.5000', '0.5000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.0000', '', NULL, 'standard', '0.5000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7, 1, 2068, '79519848', 'LUFART DS', '15.5000', '15.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '15.5000', '', NULL, 'standard', '15.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (8, 1, 2569, '30297629', 'METROBON F', '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', NULL, 'standard', '5.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (9, 1, 1347, '3582910075455', 'ENTEROGERMINA ORAL SUSP', '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', NULL, 'standard', '4.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (10, 1, 1668, '8906016831572', 'Acidom Caps', '17.0000', '17.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '17.0000', '', NULL, 'standard', '17.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (11, 1, 1647, 'PR-360', 'AMCOF JUNIOR SYR', '6.5000', '6.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.5000', '', NULL, 'standard', '6.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (12, 1, 1499, 'PR-212', 'RAPINOL', '0.6000', '0.6000', '3.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.8000', '', NULL, 'standard', '0.6000', 1, 'pc', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (13, 1, 1645, 'PR-358', 'AMCOF ADULT SYRUP', '7.5000', '7.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '7.5000', '', NULL, 'standard', '7.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (14, 1, 2283, '8906009232225', 'LOFNAC TAB 100MG', '2.0000', '2.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.0000', '', NULL, 'standard', '2.0000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (15, 1, 1513, '6221032233103', 'DEXATROL EYE DROP', '16.0000', '16.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.0000', '', NULL, 'standard', '16.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (16, 1, 2313, '83991627', 'ENTRACIN 300', '12.0000', '12.0000', '2.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '24.0000', '', NULL, 'standard', '12.0000', 1, 'pc', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (17, 1, 2481, '40294439', 'FENNEL SEED', '4.5000', '4.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '4.5000', '', NULL, 'standard', '4.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (18, 1, 2483, '90693662', 'THYME LEAVES', '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', NULL, 'standard', '6.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (19, 1, 2602, '86780065', 'CLOVES ', '5.0000', '5.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', NULL, 'standard', '5.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (20, 1, 1386, '6156000046105', 'ABONIK BALM (48)', '6.0000', '6.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '6.0000', '', NULL, 'standard', '6.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (21, 1, 1440, 'PR-153', 'VICTORY GARLIC', '13.0000', '13.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '13.0000', '', NULL, 'standard', '13.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (22, 1, 2213, '8964000735695', 'CLOVE OIL 60ML', '20.0000', '20.0000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '20.0000', '', NULL, 'standard', '20.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (23, 1, 2362, '63796869', 'ZINNAT 500MG', '11.0000', '11.0000', '10.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '110.0000', '', NULL, 'standard', '11.0000', 1, 'pc', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (24, 1, 2400, '91513969', 'BRIGHTFOD STRONG', '16.5000', '16.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '16.5000', '', NULL, 'standard', '16.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (25, 1, 2169, '97038500', 'GEBEDOL', '1.5000', '1.5000', '1.0000', 2, '0.0000', NULL, '', NULL, '0.0000', '1.5000', '', NULL, 'standard', '1.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (26, 2, 1812, 'PR-525', 'VERMOX TABS', '10.5000', '10.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.5000', '', NULL, 'standard', '10.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (27, 2, 1529, '8901040207157', 'DYMOL TAB', '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', NULL, 'standard', '5.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (28, 2, 2823, '78074241', 'IBEX CAPS', '15.0000', '15.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '15.0000', '', NULL, 'standard', '15.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (29, 2, 1650, 'PR-363', 'ZUBES EXTRA STRONG COUGH MIXTURE', '19.5000', '19.5000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '19.5000', '', NULL, 'standard', '19.5000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (30, 2, 2821, '27504285', 'COLDRILIF CAPS', '5.0000', '5.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '5.0000', '', NULL, 'standard', '5.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (31, 2, 1602, 'PR-315', 'LYDIA POSTPILL', '10.0000', '10.0000', '1.0000', 4, '0.0000', NULL, '', NULL, '0.0000', '10.0000', '', NULL, 'standard', '10.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_suspended_items` (`id`, `suspend_id`, `product_id`, `product_code`, `product_name`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `option_id`, `product_type`, `real_unit_price`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (32, 3, 3002, '94707960', 'FLEMEX CHILD SYR', '8.0000', '8.0000', '1.0000', 3, '0.0000', NULL, '', NULL, '0.0000', '8.0000', '', NULL, 'standard', '8.0000', 1, 'pc', '1.0000', '', NULL, NULL, NULL, NULL);


#
# 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=5 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 (2, 'VAT @10%', 'VAT10', '10.0000', '1');
INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (3, 'GST @6%', 'GST', '6.0000', '1');
INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (4, 'VAT @20%', 'VT20', '20.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=123 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 (2, 'F0001/07/04/21/COM/STELLA', '2021-04-08 04:33:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1054.1500', '0.0000', '1054.1500', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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, 'F0001/07/04/21/COM/STELLA', '2021-04-10 01:54:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1607.9200', '0.0000', '1607.9200', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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, 'F0001/07/04/21/COM/STELLA', '2021-04-10 03:44:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '6287.6700', '0.0000', '6287.6700', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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, 'F0001/07/04/21/COM/STELLA', '2021-04-10 04:40:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1612.0500', '0.0000', '1612.0500', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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, 'F0001/07/04/21/COM/STELLA', '2021-04-11 04:26:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '586.5000', '0.0000', '586.5000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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, 'F0001/11/04/21/COM/STELLA', '2021-04-12 00:49:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '475.9500', '0.0000', '475.9500', '4', 'completed', '0.0000', '0', NULL, NULL, NULL);
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, 'F0001/11/04/21/COM/STELLA', '2021-04-12 01:18:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '873.6300', '0.0000', '873.6300', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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, 'F0001/11/04/21/COM/STELLA', '2021-04-12 01:29:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '229.3600', '0.0000', '229.3600', '4', 'completed', '0.0000', '0', NULL, NULL, NULL);
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, 'TR2021/04/0003', '2021-04-11 23:33:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '2130.4000', '0.0000', '2130.4000', '1', 'completed', '0.0000', '0', NULL, NULL, NULL);
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, 'F0001/11/04/21/COM/STELLA', '2021-04-12 03:23:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '2778.8900', '0.0000', '2778.8900', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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, 'F0001/11/04/21/COM/STELLA', '2021-04-12 04:05:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '2294.1200', '0.0000', '2294.1200', '4', 'completed', '0.0000', '0', NULL, NULL, NULL);
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, '816', '2021-04-12 04:36:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '475.3000', '0.0000', '475.3000', '4', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (16, 'F0001/11/04/21/COM/STELLA', '2021-04-12 04:50:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '149.6000', '0.0000', '149.6000', '4', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (17, 'F0001/11/04/21/COM/STELLA', '2021-04-12 05:33:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '745.8000', '0.0000', '745.8000', '4', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (18, 'TR2021/04/0005', '2021-04-14 11:13:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1444.6000', '0.0000', '1444.6000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (19, 'FMM/14/4/21', '2021-04-15 11:47:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1484.6000', '0.0000', '1484.6000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (20, 'F0001/14/4/21/COM/STELLA', '2021-04-15 13:47:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '5289.2400', '0.0000', '5289.2400', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (21, 'F0001/14/4/21/COM/STELLA', '2021-04-15 20:57:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '3977.1400', '0.0000', '3977.1400', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (22, 'F0001/15/4/21/COM/STELLA', '2021-04-16 10:41:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '522.5000', '0.0000', '522.5000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (23, 'F0001/17/4/21/COM/STELLA', '2021-04-18 19:36:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '3047.9700', '0.0000', '3047.9700', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (24, 'F0001/18/04/21/COM/STELLA', '2021-04-19 00:23:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '3092.6300', '0.0000', '3092.6300', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (28, 'F0001/19/4/21/COM/STELLA', '2021-04-20 08:02:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '2525.2500', '0.0000', '2525.2500', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (29, 'F0001/20/4/21/COM/STELLA/OSONS', '2021-04-21 20:07:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '6175.9600', '0.0000', '6175.9600', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (30, 'F0001/23/4/21/COM/STELLA/ORGANIC', '2021-04-23 21:07:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '2071.0000', '0.0000', '2071.0000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (31, 'F0001/23/4/21/COM/STELLA/MKT', '2021-04-24 10:28:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1898.9600', '0.0000', '1898.9600', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (32, 'F0001/24/4/21/COM/STELLA/KELMED', '2021-04-24 11:01:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '596.4100', '0.0000', '596.4100', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (33, 'F0001/24/4/21/COM/STELLA/TINATT HERBAL', '2021-04-24 11:06:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '93.0000', '0.0000', '93.0000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (34, 'F0001/24/4/21/COM/STELLA/KINAPHAMA', '2021-04-24 11:29:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '788.3200', '0.0000', '788.3200', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (35, 'F0001/24/4/21/COM/STELLA/TOBINCO', '2021-04-24 16:26:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1409.7000', '0.0000', '1409.7000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (36, 'F0001/24/4/21/COM/STELLA /KELMED', '2021-04-25 20:07:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '269.6000', '0.0000', '269.6000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (37, 'F0001/26/4/21/COM/STELLA/NISSI', '2021-04-26 19:06:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1012.5500', '0.0000', '1012.5500', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (38, 'F0001/26/4/21/COM/STELLA/OPEN MKT', '2021-04-26 20:53:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1354.4000', '0.0000', '1354.4000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (39, 'F0001/26/3/21/COM/MKT', '2021-04-27 19:30:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '2048.4200', '0.0000', '2048.4200', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (40, 'F0001/22/4/21/COM/STELLA/LETAP', '2021-04-27 20:49:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '814.0500', '0.0000', '814.0500', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (41, 'F0001/29/4/21/COM/STELLA/ORGANIC', '2021-04-29 21:23:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1913.5000', '0.0000', '1913.5000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (42, 'F0001/30/4/21/COM/STELLA/KELMED', '2021-04-30 16:46:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '878.0000', '0.0000', '878.0000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (43, 'F0001/30/4/21/COM/STELLA/ELOHIM', '2021-04-30 18:16:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '3918.4200', '0.0000', '3918.4200', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (44, 'F0001/23/4/21/COM/STELLA/NISSI', '2021-04-30 20:05:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '970.4000', '0.0000', '970.4000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (45, 'F0001/05/3/21/COM/STELLA/ERNEST CHEMIST', '2021-05-01 21:00:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1643.3800', '0.0000', '1643.3800', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (46, 'F0001/23/03/21/COM/STELLA/OPEN MKT', '2021-05-03 15:49:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '48.0000', '0.0000', '48.0000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (47, 'F0001/5/5/21/COM/STELLA/OPEN MKT CERE', '2021-05-05 18:22:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1041.2600', '0.0000', '1041.2600', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (48, 'F0001/5/5/21/COM/STELLA/YELLOW&ORANG', '2021-05-05 18:43:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '104.4500', '0.0000', '104.4500', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (49, 'F0001/5/5/21/COM/STELLA/TINATT HERBAL', '2021-05-05 19:49:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '323.2000', '0.0000', '323.2000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (50, 'F0001/4/5/21/COM/STELLA/KELMED', '2021-05-05 20:24:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '2705.7500', '0.0000', '2705.7500', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (51, 'F0001/06/5/21/COM/STELLA/TINATT HERBAL', '2021-05-06 17:08:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '200.0000', '0.0000', '200.0000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (52, 'F0001/12/3/21/COM/STELLA/ELOHIM', '2021-05-07 18:29:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '5851.3800', '0.0000', '5851.3800', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (53, 'F0001/05/4/21/COM/STELLA/OILS', '2021-05-08 17:09:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '972.7400', '0.0000', '972.7400', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (54, 'F0001/8/5/21/COM/STELLA/NISSI', '2021-05-08 20:10:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1215.3800', '0.0000', '1215.3800', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (55, 'F0001/10/5/21/COM/STELLA/KELMED', '2021-05-10 12:56:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1028.3700', '0.0000', '1028.3700', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (56, 'F0001/10/5/21/COM/STELLA/MEDITAB', '2021-05-10 19:42:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '360.0000', '0.0000', '360.0000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (57, 'F0001/14/5/2021/nissi ', '2021-05-14 21:33:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '330.0000', '0.0000', '330.0000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (58, 'F0001/14/5/21/COM/STELLA/CELLGIVITY/MAX INTER', '2021-05-17 20:51:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '333.3200', '0.0000', '333.3200', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (59, 'F0001/16/5/21/COM/STELLA/OSONS', '2021-05-18 08:38:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '679.5100', '0.0000', '679.5100', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (60, 'F0001/16/5/21/COM/STELLA/KELMED', '2021-05-18 09:19:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '2164.1300', '0.0000', '2164.1300', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (61, 'F0001/18/5/21/COM/STELLA/TINATT HERBAL', '2021-05-18 17:21:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '306.1000', '0.0000', '306.1000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (62, 'F0001/18/5/21/COM/STELLA/OPEN MKT', '2021-05-19 19:52:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '328.0000', '0.0000', '328.0000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (63, 'F0001/21/05/21/COM/ELOHIM', '2021-05-21 23:51:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1954.3400', '0.0000', '1954.3400', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (64, 'F0001/21/05/21/COM/SHAGGYSCO', '2021-05-22 00:36:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '276.3700', '0.0000', '276.3700', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (65, 'F0001/21/05/21/COM/OPEN MKT', '2021-05-22 00:50:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '257.1000', '0.0000', '257.1000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (66, 'F0001/14/05/21/COM/NISSI', '2021-05-25 22:44:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1393.4900', '0.0000', '1393.4900', '4', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (67, 'F0001/14/05/21/COM/DEPENDABLE', '2021-05-25 23:26:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '146.5000', '0.0000', '146.5000', '4', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (68, 'F0001/28/5/21/COM/STELLA/OPEN MKT', '2021-05-28 21:46:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1315.4000', '0.0000', '1315.4000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (69, 'F0001/25/5/21/COM/STELLA/KELMED', '2021-05-29 16:15:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1234.4500', '0.0000', '1234.4500', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (70, 'F0001/28/5/21/COM/STELLA/KELMED', '2021-05-29 18:55:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1180.6000', '0.0000', '1180.6000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (71, 'F0001/28/5/21/COM/STELLA/NISSI', '2021-05-29 19:21:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '457.9600', '0.0000', '457.9600', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (72, 'F0001/28/5/21/COM/STELLA/TINATT HERBAL', '2021-05-29 19:31:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '127.6000', '0.0000', '127.6000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (73, 'F0001/31/5/21/COM/STELLA/OPEN MKT', '2021-05-31 20:35:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '248.4800', '0.0000', '248.4800', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (74, 'F0001/31/5/21/COM/STELLA/TINATT HERBAL', '2021-05-31 20:46:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '79.5000', '0.0000', '79.5000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (75, 'F0001/31/5/21/COM/STELLA/KELMED', '2021-05-31 21:30:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '519.9300', '0.0000', '519.9300', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (76, 'F0001/31/5/21/COM/STELLA/TINATT HERBAL', '2021-05-31 21:42:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '67.2500', '0.0000', '67.2500', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (77, 'F0001/31/5/21/COM/STELLA/NISSI', '2021-05-31 21:53:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1202.0800', '0.0000', '1202.0800', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (78, 'F0001/3/6/21/COM/STELLA/NISSI', '2021-06-04 08:55:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '2487.0700', '0.0000', '2487.0700', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (79, 'F0001/5/5/21/COM/STELLA/TINATT HERBAL', '2021-06-05 18:01:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '2529.2600', '0.0000', '2529.2600', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (80, 'F0001/8/6/21/COM/STELLA/NISSI', '2021-06-08 20:01:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '361.2800', '0.0000', '361.2800', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (81, 'F0001/8/6/21/COM/STELLA/KELMED', '2021-06-08 21:10:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1054.8100', '0.0000', '1054.8100', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (82, 'F0001/7/6/21/COM/STELLA/OPEN MKT', '2021-06-09 19:12:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '902.4000', '0.0000', '902.4000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (83, 'F0001/8/6/21/COM/STELLA/EAST CANT', '2021-06-09 20:10:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '613.1700', '0.0000', '613.1700', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (84, 'F0001/8/6/21/COM/STELLA/ERNEST CHEMIST', '2021-06-10 10:01:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1797.6900', '0.0000', '1797.6900', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (85, 'F0001/12/6/21/COM/STELLA/KELMED', '2021-06-15 16:16:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '2500.2400', '0.0000', '2500.2400', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (86, 'F0001/16/06/21/COM/KELMED', '2021-06-16 19:38:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1276.1200', '0.0000', '1276.1200', '4', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (87, 'F0002/10/6/21/ROSA/ERNEST CHM', '2021-06-16 20:58:00', 4, '004', 'Warehouse', 3, '003', 'Roza Roza', '', '3180.5000', '0.0000', '3180.5000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (88, 'F0001/17/6/21/COM/STELLA/NISSI', '2021-06-17 20:36:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1755.6900', '0.0000', '1755.6900', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (89, 'F0002/11/6/21/ROSA/ERNEST CHM', '2021-06-17 21:01:00', 4, '004', 'Warehouse', 3, '003', 'Roza Roza', '', '3998.9600', '0.0000', '3998.9600', '4', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (90, 'F0002/8/6/21/ROSA/UNICORN', '2021-06-18 16:18:00', 4, '004', 'Warehouse', 3, '003', 'Roza Roza', '', '1947.5000', '0.0000', '1947.5000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (91, 'F0001/22/6/21/COM/FOOD SUPP/USA', '2021-06-22 12:49:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '4331.5000', '0.0000', '4331.5000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (92, 'F0001/22/6/ 21/COM/STELLA/KELMED', '2021-06-22 20:19:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1491.2300', '0.0000', '1491.2300', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (93, 'F0001/22/6/21/COM/STELLA/TINATT HERBAL', '2021-06-22 21:03:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '95.0000', '0.0000', '95.0000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (94, 'F0001/23/06/21/COM/STELLA/OPEN MKT', '2021-06-23 20:48:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '589.0000', '0.0000', '589.0000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (95, 'F0001/25/6/21/COM/STELLA/NISSI', '2021-06-25 21:27:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1329.1100', '0.0000', '1329.1100', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (96, 'F0001/26/6/21/COM/STELLA/ERNEST CHM', '2021-06-27 19:14:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '851.5800', '0.0000', '851.5800', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (97, 'F0001/266/21/COM/STELLA/FMMS 1', '2021-06-27 19:48:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '907.1600', '0.0000', '907.1600', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (98, 'F0001/29/6/21/COM/STELLA/OPEN MKT', '2021-06-29 16:56:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '562.0000', '0.0000', '562.0000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (99, 'F0001/29/6/21/COM/STELLA/UNICORM', '2021-06-29 18:53:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '550.2000', '0.0000', '550.2000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (100, 'F0001/29/6/21/COM/STELLA/CHINA MALL OPEN MKT', '2021-06-29 19:36:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '175.0000', '0.0000', '175.0000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (101, 'F0001/29/6/21/COM/STELLA/PHARMA GEORGE', '2021-06-29 20:33:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '875.1400', '0.0000', '875.1400', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (102, 'F0001/29/6/21/COM/STELLA/KELMED', '2021-06-29 21:10:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '975.6400', '0.0000', '975.6400', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (103, 'F0001/29/6/21/COM/STELLA/KELMED', '2021-06-29 21:28:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1386.4400', '0.0000', '1386.4400', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (104, 'F0001/3/7/21/COM/STELLA/OPEN MKT', '2021-07-03 00:12:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '512.9000', '0.0000', '512.9000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (105, 'F0001/3/5/2/COM/STELLA/KELMED', '2021-07-03 00:35:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1246.2500', '0.0000', '1246.2500', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (106, 'F0001/5/7/21/COM/STELLA/ERNEST CHM', '2021-07-05 20:28:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '507.9300', '0.0000', '507.9300', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (107, 'F0001/5/7/21/COM/STELLA/NISSI', '2021-07-05 21:06:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1737.1600', '0.0000', '1737.1600', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (108, 'F0001/7/7/21/COM/STELLA/OPEN MKT', '2021-07-11 19:18:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1543.0000', '0.0000', '1543.0000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (109, 'F0001/10/7/21/COM/STELLA/DEP', '2021-07-11 19:36:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '244.7000', '0.0000', '244.7000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (110, 'F0001/10/7/21/COM/STELLA/SHAGGYS', '2021-07-11 20:22:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1105.5100', '0.0000', '1105.5100', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (111, 'F0001/8/7/21/COM/STELLA/KELMED', '2021-07-11 21:12:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '2431.0100', '0.0000', '2431.0100', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (112, 'F0001/13/7/21/COM/STELLA/OPEN MKT', '2021-07-13 20:32:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1152.5000', '0.0000', '1152.5000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (113, 'F0001/13/7/21/COM/STELLA/NISSI', '2021-07-14 09:03:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '2351.1900', '0.0000', '2351.1900', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (114, 'F0001//7/21/COM/STELLA/MPHARMA', '2021-07-14 21:32:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1642.3900', '0.0000', '1642.3900', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (115, 'F0002/8/6/21/ROSA/MPHARMA', '2021-07-16 15:33:00', 4, '004', 'Warehouse', 3, '003', 'Roza Roza', '', '64.5000', '0.0000', '64.5000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (116, 'F0001/17/7/21/COM/STELLA/KELMEND', '2021-07-17 19:49:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '2057.7800', '0.0000', '2057.7800', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (117, 'F0002/11/6/21/ROSA/KELMED', '2021-07-18 12:29:00', 4, '004', 'Warehouse', 3, '003', 'Roza Roza', '', '3415.1100', '0.0000', '3415.1100', '4', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (118, 'F0002/10/11/6/21/ROSA/NISSI', '2021-07-18 18:44:00', 4, '004', 'Warehouse', 3, '003', 'Roza Roza', '', '1487.1900', '0.0000', '1487.1900', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (119, 'F0001/19/7/21/COM/STELLA/OPEN MKT', '2021-07-23 20:59:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1722.9000', '0.0000', '1722.9000', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (120, 'F0001/21/7/21/COM/NISSI/KELMED', '2021-07-23 21:32:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '325.0100', '0.0000', '325.0100', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (121, 'F0001/21/7/21/COM/STELLA/NISSI', '2021-07-25 21:14:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '2002.9300', '0.0000', '2002.9300', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);
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 (122, 'F0001/28/7/21/COM/STELLA/NISSI', '2021-07-29 09:23:00', 4, '004', 'Warehouse', 2, '002', 'Commandos', '', '1893.4600', '0.0000', '1893.4600', '3', 'completed', '0.0000', '0', NULL, NULL, NULL);


#
# 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=2 DEFAULT CHARSET=utf8;

INSERT INTO `sma_units` (`id`, `code`, `name`, `base_unit`, `operator`, `unit_value`, `operation_value`) VALUES (1, 'pc', 'pc', 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=783 DEFAULT CHARSET=utf8;

INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (1, 1, NULL, '::1', 'owner@tecdiary.com', '2021-03-03 23:34:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (2, 1, NULL, '::1', 'owner@tecdiary.com', '2021-03-21 07:05:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (3, 1, NULL, '::1', 'owner@tecdiary.com', '2021-03-22 03:39:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (4, 1, NULL, '::1', 'owner@tecdiary.com', '2021-03-22 06:17:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (5, 2, NULL, '::1', 'eben1xx@gmail.com', '2021-03-22 08:17:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (6, 2, NULL, '::1', 'eben1xx@gmail.com', '2021-03-22 08:19:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (7, 2, NULL, '::1', 'eben1xx@gmail.com', '2021-03-22 08:20:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (8, 1, NULL, '::1', 'owner@tecdiary.com', '2021-03-22 08:22:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (9, 1, NULL, '::1', 'owner@tecdiary.com', '2021-03-22 21:42:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (10, 1, NULL, '::1', 'owner@tecdiary.com', '2021-03-22 21:53:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (11, 1, NULL, '::1', 'owner@tecdiary.com', '2021-03-23 15:36:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (12, 1, NULL, '::1', 'owner@tecdiary.com', '2021-03-23 19:57:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (13, 1, NULL, '::1', 'owner@tecdiary.com', '2021-03-24 03:13:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (14, 1, NULL, '::1', 'owner@tecdiary.com', '2021-03-24 03:20:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (15, 1, NULL, '::1', 'owner@tecdiary.com', '2021-03-24 04:22:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (16, 1, NULL, '::1', 'owner@tecdiary.com', '2021-03-24 15:10:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (17, 1, NULL, '::1', 'owner@tecdiary.com', '2021-03-24 19:18:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (18, 3, NULL, '::1', 'appiah', '2021-03-24 19:28:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (19, 3, NULL, '::1', 'appiah', '2021-03-24 20:46:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (20, 4, NULL, '::1', 'stella', '2021-03-25 12:08:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (21, 4, NULL, '::1', 'stella', '2021-03-26 00:54:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (22, 4, NULL, '::1', 'stella', '2021-03-28 04:39:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (23, 4, NULL, '::1', 'stella', '2021-03-28 18:51:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (24, 3, NULL, '::1', 'appiah', '2021-03-29 01:46:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (25, 4, NULL, '::1', 'stella', '2021-03-29 12:39:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (26, 3, NULL, '::1', 'appiah', '2021-03-29 22:12:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (27, 3, NULL, '::1', 'appiah', '2021-03-30 12:06:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (28, 3, NULL, '::1', 'appiah', '2021-03-30 22:39:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (29, 3, NULL, '::1', 'appiah', '2021-03-31 11:18:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (30, 3, NULL, '::1', 'appiah', '2021-03-31 15:21:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (31, 4, NULL, '::1', 'stella', '2021-03-31 22:24:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (32, 4, NULL, '::1', 'stella', '2021-04-01 11:30:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (33, 4, NULL, '::1', 'stella', '2021-04-01 22:38:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (34, 4, NULL, '::1', 'stella', '2021-04-02 02:36:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (35, 4, NULL, '::1', 'stella', '2021-04-02 12:56:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (36, 4, NULL, '::1', 'stella', '2021-04-02 21:53:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (37, 3, NULL, '::1', 'appiah', '2021-04-04 16:40:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (38, 3, NULL, '::1', 'appiah', '2021-04-05 23:16:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (39, 3, NULL, '::1', 'appiah', '2021-04-06 12:04:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (40, 3, NULL, '::1', 'appiah', '2021-04-06 23:53:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (41, 4, NULL, '::1', 'stella', '2021-04-07 13:55:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (42, 3, NULL, '::1', 'appiah', '2021-04-07 20:10:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (43, 3, NULL, '::1', 'appiah', '2021-04-07 20:36:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (44, 3, NULL, '::1', 'appiah', '2021-04-08 03:14:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (45, 4, NULL, '::1', 'stella', '2021-04-08 11:48:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (46, 3, NULL, '::1', 'appiah', '2021-04-08 11:58:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (47, 3, NULL, '::1', 'appiah', '2021-04-10 00:28:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (48, 3, NULL, '::1', 'appiah', '2021-04-11 02:48:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (49, 3, NULL, '::1', 'appiah', '2021-04-11 16:24:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (50, 1, NULL, '154.160.1.55', 'owner', '2021-04-11 19:15:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (51, 1, NULL, '154.160.1.55', 'owner@tecdiary.com', '2021-04-11 19:33:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (52, 4, NULL, '197.159.139.220', 'stella', '2021-04-11 19:41:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (53, 1, NULL, '154.160.1.55', 'owner', '2021-04-11 19:47:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (54, 4, NULL, '197.159.139.220', 'stella', '2021-04-11 20:06:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (55, 4, NULL, '197.159.139.220', 'stella', '2021-04-11 21:09:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (56, 6, NULL, '197.159.139.220', 'ben', '2021-04-11 22:06:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (57, 1, NULL, '154.160.11.110', 'owner', '2021-04-11 22:07:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (58, 7, NULL, '154.160.11.110', 'ann', '2021-04-11 22:08:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (59, 1, NULL, '154.160.11.110', 'owner', '2021-04-11 22:14:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (60, 1, NULL, '154.160.4.162', 'owner@tecdiary.com', '2021-04-12 02:45:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (61, 7, NULL, '102.176.125.75', 'ann', '2021-04-12 04:29:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (62, 1, NULL, '41.66.226.84', 'owner', '2021-04-12 05:05:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (63, 3, NULL, '102.176.125.75', 'appiah', '2021-04-12 06:14:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (64, 1, NULL, '41.66.226.84', 'owner@tecdiary.com', '2021-04-12 09:12:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (65, 1, NULL, '41.66.226.84', 'owner', '2021-04-12 12:08:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (66, 7, NULL, '41.210.2.37', 'ann', '2021-04-12 12:22:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (67, 6, NULL, '41.210.2.37', 'ben', '2021-04-12 12:38:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (68, 7, NULL, '41.210.2.37', 'ann', '2021-04-12 13:26:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (69, 1, NULL, '154.160.6.80', 'owner', '2021-04-12 20:33:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (70, 1, NULL, '154.160.6.80', 'owner', '2021-04-12 20:35:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (71, 1, NULL, '154.160.9.251', 'owner', '2021-04-13 04:08:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (72, 7, NULL, '41.210.6.96', 'ann', '2021-04-13 05:58:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (73, 3, NULL, '102.176.111.194', 'appiah', '2021-04-13 08:44:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (74, 3, NULL, '102.176.111.194', 'appiah', '2021-04-13 09:01:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (75, 1, NULL, '41.66.226.84', 'owner', '2021-04-13 10:59:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (76, 6, NULL, '102.176.6.213', 'Ben', '2021-04-13 13:55:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (77, 1, NULL, '154.160.2.51', 'owner', '2021-04-13 16:25:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (78, 3, NULL, '102.176.6.213', 'appiah', '2021-04-13 17:05:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (79, 3, NULL, '102.176.6.213', 'appiah', '2021-04-13 17:11:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (80, 3, NULL, '197.159.139.220', 'appiah', '2021-04-13 19:32:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (81, 3, NULL, '197.159.139.220', 'appiah', '2021-04-13 21:36:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (82, 7, NULL, '41.210.10.63', 'ann', '2021-04-14 04:10:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (83, 3, NULL, '41.210.10.63', 'appiah', '2021-04-14 04:35:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (84, 1, NULL, '154.160.4.125', 'owner', '2021-04-14 05:24:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (85, 1, NULL, '102.176.51.65', 'owner', '2021-04-14 07:47:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (86, 3, NULL, '102.176.2.255', 'appiah', '2021-04-14 13:53:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (87, 7, NULL, '41.210.4.247', 'ann', '2021-04-15 04:54:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (88, 1, NULL, '154.160.0.48', 'OWNER', '2021-04-15 05:12:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (89, 3, NULL, '41.210.4.247', 'appiah', '2021-04-15 06:57:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (90, 3, NULL, '41.210.4.247', 'appiah', '2021-04-15 13:40:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (91, 3, NULL, '197.159.139.220', 'appiah ', '2021-04-15 19:20:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (92, 1, NULL, '154.160.0.154', 'owner', '2021-04-15 20:24:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (93, 7, NULL, '41.210.4.247', 'ann', '2021-04-16 04:18:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (94, 3, NULL, '41.210.4.247', 'appiah', '2021-04-16 06:16:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (95, 1, NULL, '102.176.51.65', 'owner', '2021-04-16 06:47:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (96, 1, NULL, '102.176.51.65', 'owner', '2021-04-16 11:49:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (97, 6, NULL, '41.210.4.247', 'ben', '2021-04-16 12:19:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (98, 3, NULL, '41.210.4.247', 'appiah ', '2021-04-16 16:13:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (99, 3, NULL, '41.210.4.247', 'appiah', '2021-04-16 17:05:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (100, 3, NULL, '197.159.139.220', 'appiah ', '2021-04-16 21:01:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (101, 7, NULL, '41.210.4.247', 'ann', '2021-04-17 05:34:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (102, 6, NULL, '41.210.4.247', 'Ben', '2021-04-17 11:44:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (103, 7, NULL, '41.210.4.247', 'ann', '2021-04-17 11:48:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (104, 3, NULL, '41.210.4.247', 'appiah', '2021-04-17 13:14:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (105, 6, NULL, '41.210.4.247', 'Ben', '2021-04-17 13:50:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (106, 1, NULL, '154.160.6.120', 'owner', '2021-04-17 16:42:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (107, 3, NULL, '102.176.111.183', 'appiah ', '2021-04-17 17:15:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (108, 3, NULL, '102.176.111.183', 'appiah ', '2021-04-17 17:17:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (109, 7, NULL, '41.210.4.247', 'ann', '2021-04-18 10:45:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (110, 3, NULL, '41.210.4.247', 'appiah', '2021-04-18 11:12:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (111, 7, NULL, '102.176.126.146', 'ann', '2021-04-18 13:56:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (112, 1, NULL, '154.160.3.207', 'owner', '2021-04-18 14:57:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (113, 3, NULL, '102.176.126.146', 'appiah', '2021-04-18 15:28:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (114, 3, NULL, '197.159.139.220', 'appiah ', '2021-04-18 18:45:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (115, 3, NULL, '197.159.139.220', 'appiah', '2021-04-18 19:05:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (116, 7, NULL, '102.176.126.146', 'ann', '2021-04-19 04:35:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (117, 3, NULL, '102.176.126.146', 'appiah', '2021-04-19 04:41:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (118, 3, NULL, '154.160.7.146', 'appiah ', '2021-04-19 09:43:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (119, 7, NULL, '102.176.126.146', 'ann', '2021-04-19 10:02:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (120, 1, NULL, '102.176.51.65', 'owner', '2021-04-19 10:39:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (121, 1, NULL, '102.176.51.65', 'owner', '2021-04-19 13:29:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (122, 6, NULL, '197.251.190.126', 'Ben', '2021-04-19 16:03:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (123, 3, NULL, '197.251.190.126', 'appiah', '2021-04-19 16:18:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (124, 3, NULL, '197.159.139.220', 'appiah ', '2021-04-19 18:20:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (125, 1, NULL, '154.160.6.246', 'owner', '2021-04-19 20:43:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (126, 3, NULL, '197.251.190.126', 'appiah', '2021-04-20 04:08:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (127, 7, NULL, '197.251.190.126', 'ann', '2021-04-20 05:16:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (128, 3, NULL, '197.159.139.220', 'appiah', '2021-04-20 05:32:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (129, 1, NULL, '154.160.7.199', 'owner', '2021-04-20 06:17:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (130, 3, NULL, '102.176.110.73', 'appiah', '2021-04-20 09:45:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (131, 7, NULL, '197.251.190.126', 'ann', '2021-04-20 10:49:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (132, 1, NULL, '102.176.51.65', 'owner@tecdiary.com', '2021-04-20 11:46:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (133, 6, NULL, '197.251.190.126', 'Ben', '2021-04-20 12:05:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (134, 6, NULL, '197.251.190.126', 'Ben', '2021-04-20 14:09:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (135, 3, NULL, '197.251.190.126', 'appiah', '2021-04-20 14:50:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (136, 7, NULL, '197.251.188.187', 'ann', '2021-04-21 04:17:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (137, 3, NULL, '197.251.188.187', 'appiah', '2021-04-21 05:16:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (138, 7, NULL, '197.251.188.187', 'ann', '2021-04-21 09:16:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (139, 3, NULL, '197.251.188.187', 'appiah ', '2021-04-21 10:30:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (140, 1, NULL, '102.176.51.65', 'owner', '2021-04-21 11:46:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (141, 3, NULL, '102.176.111.171', 'appiah', '2021-04-21 14:22:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (142, 6, NULL, '102.176.111.171', 'Ben', '2021-04-21 14:50:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (143, 3, NULL, '197.159.139.220', 'appiah ', '2021-04-21 19:08:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (144, 7, NULL, '102.176.111.171', 'ann', '2021-04-22 04:08:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (145, 7, NULL, '102.176.111.171', 'ann', '2021-04-22 09:19:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (146, 3, NULL, '102.176.111.171', 'appiah', '2021-04-22 16:29:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (147, 7, NULL, '102.176.111.171', 'ann', '2021-04-23 04:18:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (148, 3, NULL, '102.176.111.171', 'appiah ', '2021-04-23 05:17:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (149, 7, NULL, '102.176.111.171', 'ann', '2021-04-23 11:11:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (150, 1, NULL, '41.66.224.151', 'owner', '2021-04-23 11:26:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (151, 3, NULL, '41.210.13.173', 'appiah', '2021-04-23 12:30:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (152, 3, NULL, '197.251.190.184', 'appiah', '2021-04-23 16:00:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (153, 7, NULL, '197.251.190.184', 'ann', '2021-04-23 16:12:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (154, 3, NULL, '197.159.139.220', 'appiah ', '2021-04-23 19:38:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (155, 7, NULL, '197.251.190.184', 'ann', '2021-04-24 04:00:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (156, 7, NULL, '197.251.190.184', 'ann', '2021-04-24 05:34:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (157, 3, NULL, '41.210.9.121', 'appiah', '2021-04-24 06:31:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (158, 7, NULL, '102.176.111.125', 'ann', '2021-04-24 11:15:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (159, 6, NULL, '102.176.111.125', 'Ben', '2021-04-24 14:57:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (160, 6, NULL, '197.251.181.220', 'Ben', '2021-04-24 17:56:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (161, 3, NULL, '197.159.139.220', 'appiah ', '2021-04-25 03:07:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (162, 7, NULL, '197.251.181.220', 'ann', '2021-04-25 10:51:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (163, 3, NULL, '197.251.181.220', 'appiah ', '2021-04-25 10:59:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (164, 3, NULL, '197.251.181.220', 'appiah', '2021-04-25 15:21:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (165, 7, NULL, '197.251.181.220', 'ann', '2021-04-26 05:13:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (166, 3, NULL, '197.251.181.220', 'appiah', '2021-04-26 05:19:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (167, 7, NULL, '197.251.181.220', 'ann', '2021-04-26 11:06:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (168, 1, NULL, '154.160.10.16', 'owner', '2021-04-26 12:32:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (169, 7, NULL, '197.251.181.220', 'ann', '2021-04-26 14:49:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (170, 3, NULL, '197.251.181.220', 'appiah', '2021-04-26 14:52:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (171, 3, NULL, '197.251.181.220', 'appiah', '2021-04-27 04:26:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (172, 1, NULL, '154.160.17.153', 'owner', '2021-04-27 05:56:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (173, 1, NULL, '154.160.19.232', 'owner', '2021-04-27 10:01:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (174, 3, NULL, '197.159.139.220', 'appiah', '2021-04-27 13:34:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (175, 3, NULL, '197.251.181.117', 'appiah', '2021-04-28 13:12:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (176, 3, NULL, '197.251.181.117', 'appiah', '2021-04-28 15:58:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (177, 6, NULL, '197.251.181.117', 'Ben', '2021-04-28 16:09:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (178, 6, NULL, '197.251.181.117', 'Ben', '2021-04-28 16:16:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (179, 3, NULL, '197.251.181.117', 'appiah', '2021-04-28 16:58:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (180, 7, NULL, '197.251.181.252', 'ann', '2021-04-29 04:00:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (181, 7, NULL, '197.251.181.252', 'ann', '2021-04-29 06:33:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (182, 7, NULL, '197.251.181.252', 'ann', '2021-04-29 10:27:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (183, 1, NULL, '41.218.213.33', 'owner', '2021-04-29 13:28:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (184, 6, NULL, '197.251.181.252', 'Ben', '2021-04-29 16:05:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (185, 3, NULL, '197.251.181.252', 'appiah', '2021-04-29 17:24:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (186, 3, NULL, '197.159.139.220', 'appiah ', '2021-04-29 19:00:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (187, 7, NULL, '197.251.187.211', 'ann', '2021-04-30 08:18:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (188, 3, NULL, '197.251.187.211', 'appiah', '2021-04-30 10:58:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (189, 6, NULL, '197.251.187.211', 'Ben', '2021-04-30 12:18:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (190, 6, NULL, '197.251.187.211', 'Ben', '2021-04-30 17:43:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (191, 3, NULL, '197.159.139.220', 'appiah ', '2021-04-30 19:52:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (192, 3, NULL, '41.210.10.139', 'appiah ', '2021-05-01 06:51:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (193, 7, NULL, '197.251.187.211', 'ann', '2021-05-01 06:53:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (194, 3, NULL, '197.159.139.220', 'appiah ', '2021-05-01 10:22:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (195, 7, NULL, '197.251.187.211', 'ann', '2021-05-01 10:26:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (196, 3, NULL, '197.251.187.211', 'appiah', '2021-05-01 12:29:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (197, 3, NULL, '197.251.187.211', 'appiah', '2021-05-01 15:00:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (198, 6, NULL, '197.251.187.211', 'Ben', '2021-05-01 15:31:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (199, 3, NULL, '197.159.139.220', 'appiah ', '2021-05-01 19:03:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (200, 7, NULL, '197.251.187.211', 'ann', '2021-05-02 15:54:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (201, 3, NULL, '197.251.187.211', 'appiah ', '2021-05-02 16:09:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (202, 3, NULL, '197.159.139.220', 'appiah', '2021-05-03 07:04:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (203, 7, NULL, '102.176.110.240', 'ann', '2021-05-03 10:32:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (204, 6, NULL, '102.176.110.240', 'Ben', '2021-05-03 11:15:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (205, 7, NULL, '41.210.11.104', 'ann', '2021-05-04 04:16:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (206, 3, NULL, '41.210.11.104', 'appiah ', '2021-05-04 04:28:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (207, 3, NULL, '41.210.11.104', 'appiah', '2021-05-04 04:49:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (208, 7, NULL, '41.210.11.104', 'ann', '2021-05-04 10:34:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (209, 3, NULL, '41.210.10.139', 'appiah ', '2021-05-04 10:37:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (210, 6, NULL, '41.210.11.104', 'Ben', '2021-05-04 13:55:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (211, 7, NULL, '197.251.180.226', 'ann', '2021-05-05 05:04:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (212, 3, NULL, '197.251.180.226', 'appiah', '2021-05-05 05:13:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (213, 7, NULL, '197.251.180.226', 'ann', '2021-05-05 07:47:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (214, 7, NULL, '197.251.180.226', 'ann', '2021-05-05 10:50:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (215, 3, NULL, '197.251.180.226', 'appiah', '2021-05-05 11:39:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (216, 3, NULL, '197.251.180.226', 'appiah', '2021-05-05 14:12:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (217, 6, NULL, '197.251.180.226', 'Ben', '2021-05-05 15:18:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (218, 7, NULL, '102.176.5.241', 'ann', '2021-05-06 10:09:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (219, 3, NULL, '102.176.5.241', 'appiah', '2021-05-06 10:59:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (220, 6, NULL, '102.176.5.241', 'Ben', '2021-05-06 15:13:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (221, 7, NULL, '197.251.185.226', 'ann', '2021-05-07 08:50:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (222, 6, NULL, '197.251.185.226', 'Ben', '2021-05-07 12:29:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (223, 3, NULL, '197.251.185.226', 'appiah', '2021-05-07 13:35:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (224, 6, NULL, '197.251.185.226', 'Ben', '2021-05-07 15:51:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (225, 3, NULL, '197.251.185.226', 'appiah', '2021-05-07 17:50:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (226, 3, NULL, '102.176.15.173', 'appiah', '2021-05-08 06:03:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (227, 7, NULL, '102.176.15.173', 'ann', '2021-05-08 10:30:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (228, 3, NULL, '102.176.15.173', 'appiah', '2021-05-08 10:53:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (229, 6, NULL, '41.210.15.181', 'Ben', '2021-05-08 14:51:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (230, 3, NULL, '197.159.139.220', 'appiah ', '2021-05-08 19:25:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (231, 7, NULL, '197.251.176.22', 'ann', '2021-05-09 16:31:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (232, 3, NULL, '197.251.176.22', 'appiah ', '2021-05-09 16:35:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (233, 7, NULL, '102.176.3.76', 'ann', '2021-05-10 04:24:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (234, 3, NULL, '102.176.3.76', 'appiah', '2021-05-10 06:47:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (235, 7, NULL, '102.176.3.76', 'ann', '2021-05-10 07:10:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (236, 7, NULL, '102.176.124.192', 'ann', '2021-05-10 09:47:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (237, 3, NULL, '102.176.124.192', 'appiah', '2021-05-10 13:55:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (238, 6, NULL, '102.176.124.192', 'Ben', '2021-05-10 15:22:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (239, 6, NULL, '102.176.124.192', 'Ben', '2021-05-10 17:44:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (240, 8, NULL, '102.176.124.192', 'abigail', '2021-05-11 04:03:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (241, 8, NULL, '41.210.5.242', 'abigail', '2021-05-11 08:19:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (242, 4, NULL, '197.159.139.220', 'stella ', '2021-05-11 10:32:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (243, 3, NULL, '41.210.5.242', 'appiah', '2021-05-11 10:49:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (244, 3, NULL, '41.210.5.242', 'appiah', '2021-05-11 16:10:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (245, 3, NULL, '197.159.139.220', 'appiah ', '2021-05-11 19:36:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (246, 7, NULL, '41.210.5.242', 'ann', '2021-05-12 09:46:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (247, 3, NULL, '197.159.139.220', 'appiah', '2021-05-12 10:21:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (248, 6, NULL, '41.210.5.242', 'Ben', '2021-05-12 14:52:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (249, 3, NULL, '197.159.139.220', 'appiah', '2021-05-12 15:03:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (250, 3, NULL, '41.210.5.242', 'appiah ', '2021-05-12 17:37:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (251, 7, NULL, '41.210.5.242', 'ann', '2021-05-13 04:15:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (252, 3, NULL, '41.210.5.242', 'appiah', '2021-05-13 04:31:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (253, 7, NULL, '41.210.5.242', 'ann', '2021-05-13 09:45:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (254, 3, NULL, '41.210.5.242', 'appiah ', '2021-05-13 10:24:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (255, 3, NULL, '41.210.5.242', 'appiah', '2021-05-13 10:25:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (256, 6, NULL, '41.210.5.242', 'Ben', '2021-05-13 15:35:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (257, 3, NULL, '41.210.5.242', 'appiah', '2021-05-13 16:13:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (258, 8, NULL, '41.210.5.242', 'abigail', '2021-05-14 05:54:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (259, 6, NULL, '41.210.5.242', 'Ben', '2021-05-14 12:24:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (260, 3, NULL, '41.210.5.242', 'appiah ', '2021-05-14 17:29:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (261, 7, NULL, '41.210.5.242', 'ann', '2021-05-15 09:15:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (262, 7, NULL, '41.210.5.242', 'ann', '2021-05-15 14:18:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (263, 3, NULL, '41.210.5.242', 'appiah ', '2021-05-15 14:24:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (264, 3, NULL, '197.159.139.220', 'appiah ', '2021-05-15 19:19:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (265, 7, NULL, '41.210.5.242', 'ann', '2021-05-16 14:45:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (266, 3, NULL, '41.210.5.242', 'appiah ', '2021-05-16 17:26:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (267, 7, NULL, '41.210.5.242', 'ann', '2021-05-16 17:30:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (268, 7, NULL, '197.251.177.14', 'ann', '2021-05-17 06:51:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (269, 7, NULL, '197.251.177.14', 'ann', '2021-05-17 10:49:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (270, 6, NULL, '197.251.177.14', 'Ben', '2021-05-17 13:38:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (271, 3, NULL, '197.251.177.14', 'appiah', '2021-05-17 16:46:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (272, 6, NULL, '197.251.177.14', 'Ben', '2021-05-17 16:51:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (273, 3, NULL, '102.176.110.99', 'appiah', '2021-05-18 04:14:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (274, 7, NULL, '102.176.110.99', 'ann', '2021-05-18 05:46:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (275, 7, NULL, '102.176.8.33', 'ann', '2021-05-18 10:41:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (276, 3, NULL, '102.176.8.33', 'appiah', '2021-05-18 12:51:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (277, 3, NULL, '102.176.127.32', 'appiah', '2021-05-18 17:55:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (278, 3, NULL, '102.176.127.32', 'appiah', '2021-05-19 05:56:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (279, 1, NULL, '41.218.208.5', 'owner', '2021-05-19 06:06:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (280, 7, NULL, '102.176.127.32', 'ann', '2021-05-19 11:02:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (281, 6, NULL, '102.176.127.32', 'Ben', '2021-05-19 14:30:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (282, 3, NULL, '102.176.127.32', 'appiah', '2021-05-19 15:43:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (283, 1, NULL, '102.176.94.193', 'owner', '2021-05-19 23:45:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (284, 3, NULL, '102.176.127.32', 'appiah ', '2021-05-20 05:59:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (285, 3, NULL, '102.176.127.32', 'appiah', '2021-05-20 06:03:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (286, 7, NULL, '102.176.127.32', 'ann', '2021-05-20 10:10:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (287, 3, NULL, '102.176.127.32', 'appiah', '2021-05-20 15:53:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (288, 6, NULL, '102.176.127.32', 'Ben', '2021-05-21 12:04:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (289, 3, NULL, '102.176.127.32', 'appiah ', '2021-05-21 16:00:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (290, 6, NULL, '102.176.127.32', 'Ben', '2021-05-21 16:13:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (291, 3, NULL, '197.159.139.220', 'appiah', '2021-05-21 18:51:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (292, 6, NULL, '102.176.110.104', 'Ben', '2021-05-22 06:56:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (293, 7, NULL, '102.176.110.104', 'ann', '2021-05-22 14:19:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (294, 3, NULL, '154.160.27.54', 'appiah ', '2021-05-22 16:57:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (295, 7, NULL, '102.176.110.110', 'ann', '2021-05-23 15:16:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (296, 3, NULL, '197.159.139.220', 'appiah', '2021-05-24 02:03:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (297, 3, NULL, '154.160.11.230', 'appiah ', '2021-05-24 08:25:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (298, 6, NULL, '41.210.11.70', 'Ben', '2021-05-24 14:56:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (299, 3, NULL, '154.160.2.229', 'appiah ', '2021-05-24 17:40:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (300, 3, NULL, '41.210.13.15', 'appiah', '2021-05-24 17:50:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (301, 3, NULL, '197.159.139.220', 'appiah', '2021-05-24 20:15:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (302, 3, NULL, '154.160.6.97', 'appiah ', '2021-05-25 05:00:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (303, 7, NULL, '41.210.0.62', 'ann', '2021-05-25 10:13:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (304, 3, NULL, '154.160.6.141', 'appiah ', '2021-05-25 12:35:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (305, 6, NULL, '102.176.111.18', 'Ben', '2021-05-25 13:15:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (306, 6, NULL, '102.176.108.135', 'Ben', '2021-05-25 16:18:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (307, 8, NULL, '102.176.108.135', 'abigail', '2021-05-25 16:37:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (308, 8, NULL, '102.176.108.135', 'abigail', '2021-05-25 16:39:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (309, 6, NULL, '102.176.108.135', 'Ben', '2021-05-25 16:42:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (310, 3, NULL, '102.176.108.135', 'appiah', '2021-05-25 17:08:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (311, 4, NULL, '197.159.139.220', 'stella', '2021-05-25 18:28:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (312, 8, NULL, '41.210.3.157', 'abigail', '2021-05-26 05:35:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (313, 3, NULL, '154.160.2.123', 'appiah ', '2021-05-26 06:16:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (314, 1, NULL, '102.176.94.234', 'owner', '2021-05-26 06:43:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (315, 3, NULL, '154.160.2.123', 'appiah ', '2021-05-26 09:14:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (316, 8, NULL, '197.251.190.94', 'abigail', '2021-05-26 11:02:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (317, 3, NULL, '154.160.2.123', 'appiah ', '2021-05-26 11:33:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (318, 6, NULL, '102.176.127.177', 'Ben', '2021-05-26 14:52:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (319, 3, NULL, '197.251.184.51', 'appiah ', '2021-05-26 17:46:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (320, 4, NULL, '197.159.139.220', 'stella', '2021-05-26 18:29:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (321, 8, NULL, '41.210.7.69', 'abigail', '2021-05-27 07:28:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (322, 8, NULL, '102.176.4.60', 'abigail', '2021-05-27 11:36:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (323, 6, NULL, '197.251.191.182', 'Ben', '2021-05-27 16:11:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (324, 3, NULL, '154.160.0.190', 'appiah ', '2021-05-27 17:17:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (325, 7, NULL, '102.176.109.105', 'ann', '2021-05-28 04:04:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (326, 3, NULL, '102.176.11.10', 'appiah', '2021-05-28 06:44:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (327, 7, NULL, '102.176.11.10', 'ann', '2021-05-28 08:35:45');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (328, 3, NULL, '197.251.187.131', 'appiah', '2021-05-28 17:42:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (329, 3, NULL, '197.159.139.220', 'appiah ', '2021-05-28 19:51:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (330, 7, NULL, '102.176.4.94', 'ann', '2021-05-29 07:47:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (331, 3, NULL, '102.176.4.94', 'appiah', '2021-05-29 10:11:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (332, 7, NULL, '41.210.15.231', 'ann', '2021-05-30 14:44:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (333, 1, NULL, '102.176.94.58', 'owner@tecdiary.com', '2021-05-30 15:26:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (334, 7, NULL, '41.210.15.231', 'ann', '2021-05-30 17:29:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (335, 3, NULL, '197.159.139.220', 'appiah ', '2021-05-30 19:21:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (336, 3, NULL, '41.210.15.231', 'appiah', '2021-05-31 04:42:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (337, 7, NULL, '41.210.15.231', 'ann', '2021-05-31 10:14:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (338, 3, NULL, '41.210.15.231', 'appiah', '2021-05-31 12:42:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (339, 3, NULL, '41.210.15.231', 'appiah', '2021-05-31 14:57:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (340, 3, NULL, '197.159.139.220', 'appiah ', '2021-05-31 19:59:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (341, 3, NULL, '102.176.7.229', 'appiah', '2021-06-01 04:33:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (342, 7, NULL, '102.176.7.229', 'ann', '2021-06-01 07:47:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (343, 7, NULL, '102.176.7.229', 'ann', '2021-06-01 09:50:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (344, 6, NULL, '102.176.7.229', 'Ben', '2021-06-01 15:06:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (345, 3, NULL, '102.176.7.229', 'appiah', '2021-06-01 15:43:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (346, 3, NULL, '102.176.7.229', 'appiah', '2021-06-02 06:58:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (347, 7, NULL, '102.176.7.229', 'ann', '2021-06-02 08:18:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (348, 7, NULL, '197.251.183.47', 'ann', '2021-06-02 10:36:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (349, 3, NULL, '197.251.183.47', 'appiah', '2021-06-02 17:12:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (350, 3, NULL, '197.159.139.220', 'appiah ', '2021-06-02 18:53:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (351, 7, NULL, '197.251.183.47', 'ann', '2021-06-03 09:39:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (352, 3, NULL, '197.251.183.47', 'appiah ', '2021-06-03 09:43:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (353, 6, NULL, '197.251.183.47', 'Ben', '2021-06-03 14:41:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (354, 3, NULL, '197.251.183.47', 'appiah', '2021-06-03 15:47:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (355, 3, NULL, '197.159.139.220', 'appiah ', '2021-06-03 19:42:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (356, 8, NULL, '197.251.183.47', 'abigail', '2021-06-04 04:28:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (357, 3, NULL, '197.251.183.47', 'appiah', '2021-06-04 05:02:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (358, 8, NULL, '102.176.110.74', 'abigail', '2021-06-04 11:27:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (359, 3, NULL, '197.159.139.220', 'appiah ', '2021-06-04 14:28:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (360, 3, NULL, '102.176.110.40', 'appiah', '2021-06-04 15:22:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (361, 3, NULL, '197.159.139.220', 'appiah ', '2021-06-04 19:46:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (362, 7, NULL, '102.176.124.96', 'ann', '2021-06-05 05:48:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (363, 3, NULL, '102.176.108.250', 'appiah', '2021-06-05 11:55:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (364, 6, NULL, '197.251.191.231', 'Ben', '2021-06-05 14:23:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (365, 7, NULL, '41.210.10.20', 'ann', '2021-06-06 12:26:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (366, 3, NULL, '41.210.10.20', 'appiah ', '2021-06-06 17:30:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (367, 7, NULL, '197.251.186.123', 'ann', '2021-06-07 04:50:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (368, 7, NULL, '41.210.13.155', 'ann', '2021-06-07 10:54:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (369, 6, NULL, '102.176.124.113', 'Ben', '2021-06-07 16:15:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (370, 3, NULL, '102.176.124.113', 'appiah', '2021-06-07 16:45:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (371, 3, NULL, '102.176.126.36', 'appiah', '2021-06-08 04:28:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (372, 7, NULL, '41.210.3.82', 'ann', '2021-06-08 06:19:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (373, 7, NULL, '102.176.124.194', 'ann', '2021-06-08 10:52:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (374, 3, NULL, '197.159.139.220', 'appiah', '2021-06-08 14:07:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (375, 6, NULL, '102.176.125.98', 'Ben', '2021-06-08 15:06:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (376, 3, NULL, '102.176.125.98', 'appiah', '2021-06-08 15:31:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (377, 3, NULL, '154.160.2.21', 'appiah ', '2021-06-08 17:38:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (378, 4, NULL, '197.159.139.220', 'stella', '2021-06-08 18:40:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (379, 7, NULL, '41.210.12.251', 'ann', '2021-06-09 09:06:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (380, 3, NULL, '102.176.14.185', 'appiah', '2021-06-09 15:01:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (381, 6, NULL, '41.210.9.156', 'Ben', '2021-06-09 16:17:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (382, 7, NULL, '41.210.7.47', 'ann', '2021-06-10 05:14:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (383, 3, NULL, '41.210.7.47', 'appiah', '2021-06-10 05:55:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (384, 7, NULL, '41.210.4.171', 'ann', '2021-06-10 10:08:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (385, 1, NULL, '41.66.236.199', 'owner', '2021-06-10 12:03:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (386, 3, NULL, '102.176.108.33', 'appiah', '2021-06-10 14:44:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (387, 6, NULL, '102.176.108.33', 'Ben', '2021-06-10 14:52:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (388, 3, NULL, '41.210.5.73', 'appiah', '2021-06-10 17:56:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (389, 6, NULL, '41.210.5.73', 'Ben', '2021-06-10 17:58:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (390, 7, NULL, '41.210.5.73', 'ann', '2021-06-10 17:59:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (391, 6, NULL, '41.210.5.73', 'Ben', '2021-06-10 18:00:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (392, 8, NULL, '102.176.8.21', 'abigail', '2021-06-11 04:28:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (393, 8, NULL, '102.176.8.21', 'abigail', '2021-06-11 11:10:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (394, 3, NULL, '102.176.8.21', 'appiah', '2021-06-11 16:00:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (395, 7, NULL, '41.210.12.113', 'ann', '2021-06-12 10:15:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (396, 6, NULL, '102.176.126.203', 'Ben', '2021-06-12 15:46:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (397, 3, NULL, '197.159.139.220', 'appiah ', '2021-06-12 19:54:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (398, 7, NULL, '102.176.110.173', 'ann', '2021-06-13 10:58:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (399, 3, NULL, '102.176.110.173', 'appiah ', '2021-06-13 11:38:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (400, 7, NULL, '102.176.110.173', 'ann', '2021-06-13 14:33:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (401, 3, NULL, '102.176.110.173', 'appiah', '2021-06-13 16:57:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (402, 3, NULL, '197.159.139.220', 'appiah ', '2021-06-13 19:25:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (403, 7, NULL, '41.210.10.12', 'ann', '2021-06-14 10:03:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (404, 3, NULL, '41.210.6.101', 'appiah', '2021-06-14 17:07:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (405, 6, NULL, '41.210.6.101', 'Ben', '2021-06-14 17:11:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (406, 3, NULL, '197.159.139.220', 'appiah ', '2021-06-14 19:22:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (407, 3, NULL, '102.176.13.55', 'appiah', '2021-06-15 04:27:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (408, 7, NULL, '102.176.13.55', 'ann', '2021-06-15 09:38:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (409, 1, NULL, '41.66.238.18', 'owner', '2021-06-15 10:02:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (410, 3, NULL, '102.176.13.55', 'appiah', '2021-06-15 12:22:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (411, 6, NULL, '102.176.13.55', 'Ben', '2021-06-15 15:10:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (412, 3, NULL, '102.176.13.55', 'appiah', '2021-06-15 17:12:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (413, 7, NULL, '41.210.0.168', 'ann', '2021-06-16 08:02:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (414, 3, NULL, '41.210.0.168', 'appiah', '2021-06-16 10:34:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (415, 4, NULL, '197.159.139.220', 'stella', '2021-06-16 14:43:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (416, 3, NULL, '41.210.0.168', 'appiah', '2021-06-16 17:05:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (417, 6, NULL, '41.210.1.142', 'Ben', '2021-06-16 17:18:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (418, 3, NULL, '197.159.139.220', 'appiah ', '2021-06-16 19:33:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (419, 3, NULL, '102.176.0.255', 'appiah', '2021-06-17 04:05:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (420, 3, NULL, '102.176.0.255', 'appiah ', '2021-06-17 07:41:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (421, 7, NULL, '102.176.0.255', 'ann', '2021-06-17 08:41:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (422, 7, NULL, '102.176.0.255', 'ann', '2021-06-17 11:04:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (423, 3, NULL, '102.176.110.187', 'appiah ', '2021-06-17 13:58:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (424, 6, NULL, '102.176.0.255', 'Ben', '2021-06-17 15:23:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (425, 3, NULL, '102.176.0.255', 'appiah', '2021-06-17 15:23:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (426, 8, NULL, '102.176.11.32', 'abigail', '2021-06-18 04:35:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (427, 3, NULL, '102.176.11.32', 'appiah', '2021-06-18 10:04:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (428, 8, NULL, '102.176.11.32', 'abigail', '2021-06-18 11:01:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (429, 6, NULL, '102.176.11.32', 'Ben', '2021-06-18 15:23:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (430, 3, NULL, '102.176.11.32', 'appiah', '2021-06-18 15:38:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (431, 3, NULL, '102.176.11.32', 'appiah', '2021-06-19 04:13:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (432, 7, NULL, '102.176.11.32', 'ann', '2021-06-19 09:28:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (433, 3, NULL, '102.176.4.40', 'appiah', '2021-06-19 17:11:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (434, 6, NULL, '102.176.11.32', 'Ben', '2021-06-19 17:26:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (435, 7, NULL, '102.176.11.32', 'ann', '2021-06-20 13:07:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (436, 3, NULL, '197.159.139.220', 'appiah', '2021-06-20 13:49:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (437, 7, NULL, '102.176.11.32', 'ann', '2021-06-21 05:15:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (438, 3, NULL, '102.176.11.32', 'appiah', '2021-06-21 07:38:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (439, 7, NULL, '102.176.11.32', 'ann', '2021-06-21 09:14:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (440, 3, NULL, '102.176.4.40', 'appiah ', '2021-06-21 15:44:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (441, 3, NULL, '102.176.11.32', 'appiah', '2021-06-22 06:21:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (442, 7, NULL, '102.176.11.32', 'ann', '2021-06-22 06:32:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (443, 7, NULL, '102.176.11.32', 'ann', '2021-06-22 14:32:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (444, 3, NULL, '102.176.11.32', 'appiah', '2021-06-22 16:12:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (445, 4, NULL, '197.159.139.220', 'stella', '2021-06-22 18:31:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (446, 7, NULL, '102.176.13.103', 'ann', '2021-06-23 11:14:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (447, 3, NULL, '102.176.13.103', 'appiah', '2021-06-23 13:20:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (448, 3, NULL, '102.176.13.103', 'appiah', '2021-06-23 16:22:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (449, 6, NULL, '102.176.13.103', 'Ben', '2021-06-23 16:35:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (450, 3, NULL, '197.159.139.220', 'appiah ', '2021-06-23 20:59:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (451, 7, NULL, '102.176.13.103', 'ann', '2021-06-24 06:32:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (452, 7, NULL, '41.210.7.12', 'ann', '2021-06-24 10:47:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (453, 7, NULL, '41.210.7.12', 'ann', '2021-06-24 11:35:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (454, 6, NULL, '41.210.7.12', 'Ben', '2021-06-24 14:53:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (455, 3, NULL, '41.210.7.12', 'appiah', '2021-06-24 16:08:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (456, 6, NULL, '41.210.7.12', 'Ben', '2021-06-24 17:02:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (457, 3, NULL, '197.159.139.220', 'appiah ', '2021-06-24 19:12:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (458, 8, NULL, '41.210.7.12', 'abigail', '2021-06-25 04:44:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (459, 3, NULL, '41.210.7.12', 'appiah', '2021-06-25 05:50:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (460, 8, NULL, '41.210.7.12', 'abigail', '2021-06-25 09:54:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (461, 3, NULL, '41.210.7.12', 'appiah', '2021-06-25 11:18:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (462, 6, NULL, '41.210.13.127', 'Ben', '2021-06-25 15:15:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (463, 3, NULL, '41.210.13.127', 'appiah', '2021-06-25 17:31:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (464, 7, NULL, '41.210.13.127', 'ann', '2021-06-26 06:45:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (465, 7, NULL, '197.251.176.214', 'ann', '2021-06-26 12:44:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (466, 6, NULL, '197.251.176.214', 'Ben', '2021-06-26 13:31:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (467, 3, NULL, '197.159.139.220', 'appiah ', '2021-06-26 19:06:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (468, 7, NULL, '41.210.6.240', 'ann', '2021-06-27 14:03:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (469, 3, NULL, '41.210.6.240', 'appiah', '2021-06-27 14:52:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (470, 7, NULL, '41.210.6.240', 'ann', '2021-06-28 09:46:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (471, 6, NULL, '41.210.6.240', 'Ben', '2021-06-28 14:58:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (472, 3, NULL, '41.210.6.240', 'appiah', '2021-06-29 04:28:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (473, 7, NULL, '41.210.6.240', 'ann', '2021-06-29 06:30:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (474, 1, NULL, '102.176.94.142', 'owner@tecdiary.com', '2021-06-29 07:06:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (475, 1, NULL, '102.176.53.27', 'owner@tecdiary.com', '2021-06-29 09:59:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (476, 7, NULL, '102.176.0.54', 'ann', '2021-06-29 10:50:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (477, 3, NULL, '102.176.0.54', 'appiah', '2021-06-29 10:54:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (478, 3, NULL, '102.176.0.54', 'appiah', '2021-06-29 12:54:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (479, 6, NULL, '102.176.0.54', 'Ben', '2021-06-29 15:18:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (480, 3, NULL, '197.159.139.220', 'appiah', '2021-06-29 19:58:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (481, 3, NULL, '162.0.232.206', 'appiah', '2021-06-30 04:50:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (482, 7, NULL, '162.0.232.206', 'ann', '2021-06-30 04:53:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (483, 7, NULL, '41.210.6.89', 'ann', '2021-06-30 10:07:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (484, 6, NULL, '41.210.6.89', 'Ben', '2021-06-30 15:40:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (485, 3, NULL, '41.210.6.89', 'appiah', '2021-06-30 16:44:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (486, 3, NULL, '41.210.6.89', 'appiah', '2021-07-01 04:42:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (487, 7, NULL, '41.210.6.89', 'ann', '2021-07-01 05:57:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (488, 6, NULL, '41.210.6.89', 'Ben', '2021-07-01 14:56:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (489, 3, NULL, '41.210.6.89', 'appiah', '2021-07-01 17:26:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (490, 3, NULL, '41.210.6.89', 'appiah', '2021-07-02 08:13:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (491, 3, NULL, '41.210.6.89', 'appiah', '2021-07-02 16:49:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (492, 3, NULL, '197.159.139.220', 'appiah', '2021-07-02 19:05:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (493, 3, NULL, '197.159.139.220', 'appiah', '2021-07-04 19:36:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (494, 3, NULL, '41.210.6.89', 'appiah', '2021-07-05 04:00:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (495, 3, NULL, '102.176.10.153', 'appiah', '2021-07-05 14:31:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (496, 3, NULL, '102.176.10.153', 'appiah', '2021-07-06 11:17:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (497, 3, NULL, '102.176.10.153', 'appiah', '2021-07-07 04:08:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (498, 3, NULL, '197.251.190.51', 'appiah', '2021-07-07 10:19:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (499, 3, NULL, '197.251.190.51', 'appiah', '2021-07-07 17:10:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (500, 1, NULL, '197.251.190.51', 'owner', '2021-07-08 07:06:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (501, 7, NULL, '197.251.190.51', 'ann', '2021-07-08 07:08:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (502, 1, NULL, '197.251.190.51', 'owner', '2021-07-08 08:23:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (503, 7, NULL, '197.251.190.51', 'ann', '2021-07-08 08:27:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (504, 7, NULL, '197.251.190.51', 'ann', '2021-07-08 11:04:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (505, 3, NULL, '197.159.139.220', 'appiah', '2021-07-08 11:36:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (506, 9, NULL, '197.159.139.220', 'eunice', '2021-07-08 12:19:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (507, 7, NULL, '197.251.190.51', 'ann', '2021-07-08 16:22:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (508, 7, NULL, '197.251.190.51', 'ann', '2021-07-08 17:35:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (509, 6, NULL, '197.251.190.51', 'Ben', '2021-07-08 17:36:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (510, 3, NULL, '197.159.139.220', 'appiah ', '2021-07-09 03:14:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (511, 3, NULL, '197.159.139.220', 'appiah', '2021-07-09 04:26:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (512, 8, NULL, '197.251.190.51', 'abigail', '2021-07-09 04:48:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (513, 8, NULL, '197.251.190.51', 'abigail', '2021-07-09 07:11:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (514, 8, NULL, '197.251.190.51', 'abigail', '2021-07-09 09:59:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (515, 3, NULL, '197.251.190.51', 'appiah', '2021-07-09 11:13:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (516, 3, NULL, '197.251.190.51', 'appiah', '2021-07-09 17:45:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (517, 3, NULL, '197.251.190.51', 'appiah', '2021-07-10 04:00:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (518, 7, NULL, '197.251.190.51', 'ann', '2021-07-10 09:02:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (519, 6, NULL, '197.251.190.51', 'Ben', '2021-07-10 14:11:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (520, 6, NULL, '102.176.3.17', 'Ben', '2021-07-10 16:38:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (521, 3, NULL, '197.159.139.220', 'appiah ', '2021-07-10 18:40:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (522, 3, NULL, '197.159.139.220', 'appiah', '2021-07-10 19:02:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (523, 1, NULL, '102.176.65.183', 'owner', '2021-07-11 03:15:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (524, 1, NULL, '102.176.65.65', 'owner', '2021-07-11 06:22:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (525, 1, NULL, '43.242.116.141', 'owner', '2021-07-11 06:24:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (526, 1, NULL, '154.160.9.37', 'owner', '2021-07-11 08:55:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (527, 3, NULL, '197.159.139.220', 'appiah', '2021-07-11 09:12:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (528, 3, NULL, '102.176.3.17', 'appiah ', '2021-07-11 10:36:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (529, 7, NULL, '102.176.3.17', 'ann', '2021-07-11 10:59:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (530, 7, NULL, '102.176.3.17', 'ann', '2021-07-11 14:34:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (531, 3, NULL, '102.176.3.17', 'appiah', '2021-07-11 15:09:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (532, 7, NULL, '102.176.3.17', 'ann', '2021-07-12 08:25:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (533, 3, NULL, '102.176.3.17', 'appiah', '2021-07-12 10:09:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (534, 7, NULL, '102.176.3.17', 'ann', '2021-07-12 12:42:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (535, 3, NULL, '197.159.139.220', 'appiah', '2021-07-12 19:16:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (536, 7, NULL, '102.176.3.17', 'ann', '2021-07-13 05:19:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (537, 3, NULL, '102.176.3.17', 'appiah', '2021-07-13 05:32:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (538, 1, NULL, '43.242.116.199', 'owner', '2021-07-13 07:03:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (539, 7, NULL, '102.176.3.17', 'ann', '2021-07-13 10:56:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (540, 7, NULL, '102.176.3.17', 'ann', '2021-07-13 14:48:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (541, 3, NULL, '102.176.3.17', 'appiah', '2021-07-13 16:16:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (542, 3, NULL, '197.159.139.220', 'appiah ', '2021-07-13 19:01:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (543, 3, NULL, '102.176.3.17', 'appiah', '2021-07-14 03:35:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (544, 7, NULL, '102.176.3.17', 'ann', '2021-07-14 05:44:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (545, 7, NULL, '102.176.3.17', 'ann', '2021-07-14 09:15:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (546, 3, NULL, '102.176.3.17', 'appiah', '2021-07-14 12:15:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (547, 6, NULL, '102.176.3.17', 'Ben', '2021-07-14 14:01:03');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (548, 3, NULL, '102.176.3.17', 'appiah', '2021-07-14 16:23:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (549, 6, NULL, '102.176.3.17', 'Ben', '2021-07-14 17:48:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (550, 1, NULL, '43.250.165.10', 'owner', '2021-07-15 01:39:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (551, 3, NULL, '102.176.3.17', 'appiah', '2021-07-15 04:26:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (552, 7, NULL, '102.176.3.17', 'ann', '2021-07-15 05:15:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (553, 7, NULL, '41.210.6.29', 'ann', '2021-07-15 11:13:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (554, 6, NULL, '41.210.6.29', 'Ben', '2021-07-15 15:18:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (555, 3, NULL, '41.210.6.29', 'appiah', '2021-07-15 17:01:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (556, 8, NULL, '197.251.176.115', 'abigail', '2021-07-16 08:24:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (557, 3, NULL, '197.251.176.115', 'appiah', '2021-07-16 09:00:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (558, 3, NULL, '102.176.7.216', 'appiah', '2021-07-17 04:37:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (559, 7, NULL, '102.176.7.216', 'ann', '2021-07-17 10:36:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (560, 3, NULL, '102.176.7.216', 'appiah', '2021-07-17 14:47:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (561, 6, NULL, '102.176.7.216', 'Ben', '2021-07-17 16:11:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (562, 4, NULL, '197.159.139.219', 'stella', '2021-07-18 07:31:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (563, 3, NULL, '102.176.7.216', 'appiah', '2021-07-18 10:58:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (564, 7, NULL, '102.176.7.216', 'ann', '2021-07-18 11:28:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (565, 1, NULL, '102.176.65.151', 'owner', '2021-07-19 03:41:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (566, 7, NULL, '102.176.7.216', 'ann', '2021-07-19 05:23:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (567, 7, NULL, '102.176.8.77', 'ann', '2021-07-19 09:41:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (568, 7, NULL, '102.176.8.77', 'ann', '2021-07-19 11:14:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (569, 7, NULL, '102.176.4.38', 'ann', '2021-07-20 09:32:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (570, 6, NULL, '102.176.4.38', 'Ben', '2021-07-20 14:04:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (571, 3, NULL, '102.176.4.38', 'appiah', '2021-07-20 16:24:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (572, 3, NULL, '102.176.4.38', 'appiah', '2021-07-21 05:02:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (573, 7, NULL, '102.176.4.38', 'ann', '2021-07-21 06:59:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (574, 7, NULL, '102.176.4.38', 'ann', '2021-07-21 10:25:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (575, 6, NULL, '102.176.4.38', 'Ben', '2021-07-21 12:07:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (576, 6, NULL, '102.176.4.38', 'Ben', '2021-07-21 14:45:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (577, 3, NULL, '102.176.4.38', 'appiah', '2021-07-22 08:31:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (578, 7, NULL, '102.176.4.38', 'ann', '2021-07-22 08:53:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (579, 3, NULL, '102.176.4.38', 'appiah', '2021-07-22 17:31:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (580, 3, NULL, '102.176.4.38', 'appiah', '2021-07-23 04:23:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (581, 8, NULL, '102.176.4.38', 'abigail', '2021-07-23 06:00:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (582, 8, NULL, '41.210.2.46', 'abigail', '2021-07-23 11:21:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (583, 6, NULL, '41.210.2.46', 'Ben', '2021-07-23 16:20:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (584, 3, NULL, '41.210.2.46', 'appiah', '2021-07-23 16:43:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (585, 6, NULL, '41.210.2.46', 'Ben', '2021-07-23 17:23:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (586, 7, NULL, '41.210.2.46', 'ann', '2021-07-24 05:11:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (587, 7, NULL, '41.210.15.18', 'ann', '2021-07-24 10:50:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (588, 3, NULL, '41.210.15.18', 'appiah', '2021-07-24 11:38:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (589, 7, NULL, '41.210.15.18', 'ann', '2021-07-24 14:50:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (590, 6, NULL, '41.210.15.18', 'Ben', '2021-07-24 14:53:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (591, 7, NULL, '41.210.15.18', 'ann', '2021-07-25 14:34:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (592, 3, NULL, '41.210.15.18', 'appiah', '2021-07-25 16:46:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (593, 8, NULL, '41.210.15.18', 'abigail', '2021-07-26 05:33:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (594, 3, NULL, '154.160.30.87', 'appiah', '2021-07-26 05:56:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (595, 1, NULL, '154.160.10.239', 'owner', '2021-07-26 06:25:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (596, 10, NULL, '154.160.30.87', 'HAKEEM', '2021-07-26 06:39:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (597, 3, NULL, '154.160.30.6', 'appiah', '2021-07-26 08:14:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (598, 8, NULL, '41.210.13.87', 'abigail', '2021-07-26 10:43:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (599, 11, NULL, '154.160.30.6', 'DENNIS', '2021-07-26 11:31:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (600, 11, NULL, '154.160.30.6', 'DENNIS', '2021-07-26 16:14:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (601, 11, NULL, '154.160.30.6', 'DENNIS', '2021-07-26 17:34:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (602, 3, NULL, '41.210.13.87', 'appiah ', '2021-07-26 17:37:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (603, 3, NULL, '41.210.13.87', 'appiah', '2021-07-26 17:42:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (604, 3, NULL, '197.159.139.219', 'appiah', '2021-07-26 19:44:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (605, 10, NULL, '154.160.30.6', 'HAKEEM', '2021-07-27 04:25:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (606, 7, NULL, '41.210.13.87', 'ann', '2021-07-27 07:22:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (607, 7, NULL, '41.210.13.87', 'ann', '2021-07-27 11:01:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (608, 10, NULL, '154.160.30.250', 'HAKEEM', '2021-07-27 11:17:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (609, 11, NULL, '154.160.30.250', 'DENNIS', '2021-07-27 12:30:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (610, 3, NULL, '154.160.30.250', 'appiah', '2021-07-27 14:15:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (611, 11, NULL, '154.160.30.250', 'DENNIS', '2021-07-27 16:08:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (612, 6, NULL, '41.210.13.87', 'Ben', '2021-07-27 16:08:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (613, 3, NULL, '197.159.139.219', 'appiah', '2021-07-27 20:13:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (614, 10, NULL, '154.160.30.250', 'HAKEEM', '2021-07-28 05:16:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (615, 7, NULL, '41.210.13.87', 'ann', '2021-07-28 06:56:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (616, 10, NULL, '154.160.30.250', 'HAKEEM', '2021-07-28 07:45:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (617, 7, NULL, '41.210.13.87', 'ann', '2021-07-28 12:10:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (618, 11, NULL, '154.160.30.250', 'DENNIS', '2021-07-28 12:48:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (619, 7, NULL, '41.210.13.87', 'ann', '2021-07-28 14:44:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (620, 11, NULL, '154.160.30.250', 'DENNIS', '2021-07-28 16:57:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (621, 6, NULL, '41.210.13.87', 'Ben', '2021-07-28 17:53:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (622, 7, NULL, '41.210.13.87', 'ann', '2021-07-29 04:19:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (623, 3, NULL, '41.210.13.87', 'appiah', '2021-07-29 04:42:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (624, 10, NULL, '154.160.30.250', 'HAKEEM', '2021-07-29 06:34:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (625, 7, NULL, '41.210.13.87', 'ann', '2021-07-29 09:49:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (626, 11, NULL, '154.160.30.250', 'DENNIS', '2021-07-29 13:33:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (627, 6, NULL, '41.210.13.87', 'Ben', '2021-07-29 16:11:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (628, 3, NULL, '154.160.30.250', 'appiah', '2021-07-29 17:17:21');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (629, 10, NULL, '154.160.30.250', 'HAKEEM', '2021-07-30 04:52:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (630, 11, NULL, '154.160.30.217', 'DENNIS', '2021-07-30 14:08:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (631, 3, NULL, '154.160.30.217', 'appiah', '2021-07-30 17:04:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (632, 10, NULL, '154.160.30.217', 'HAKEEM', '2021-07-31 05:12:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (633, 8, NULL, '197.251.184.76', 'abigail', '2021-07-31 13:16:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (634, 6, NULL, '197.251.184.76', 'Ben', '2021-07-31 15:45:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (635, 3, NULL, '154.160.30.217', 'appiah', '2021-07-31 16:08:05');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (636, 3, NULL, '41.66.199.241', 'appiah', '2021-08-01 07:10:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (637, 3, NULL, '197.251.184.76', 'appiah', '2021-08-01 11:04:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (638, 8, NULL, '197.251.184.76', 'abigail', '2021-08-01 11:24:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (639, 3, NULL, '197.159.139.219', 'appiah', '2021-08-01 14:04:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (640, 8, NULL, '197.251.184.76', 'abigail', '2021-08-01 14:39:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (641, 3, NULL, '154.160.30.217', 'appiah', '2021-08-01 14:50:22');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (642, 13, NULL, '154.160.30.217', 'SELASI1', '2021-08-01 14:58:56');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (643, 10, NULL, '154.160.30.129', 'HAKEEM', '2021-08-02 05:57:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (644, 7, NULL, '197.251.184.76', 'ann', '2021-08-02 10:50:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (645, 11, NULL, '154.160.30.129', 'DENNIS', '2021-08-02 11:58:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (646, 6, NULL, '197.251.184.76', 'Ben', '2021-08-02 15:06:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (647, 10, NULL, '154.160.30.129', 'HAKEEM', '2021-08-03 05:17:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (648, 10, NULL, '154.160.30.129', 'HAKEEM', '2021-08-03 08:57:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (649, 3, NULL, '197.159.139.219', 'appiah', '2021-08-03 09:10:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (650, 7, NULL, '41.210.5.118', 'ann', '2021-08-03 09:49:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (651, 6, NULL, '41.210.5.118', 'Ben', '2021-08-03 13:17:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (652, 3, NULL, '41.210.5.118', 'appiah', '2021-08-03 16:34:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (653, 10, NULL, '154.160.30.129', 'HAKEEM', '2021-08-04 04:37:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (654, 7, NULL, '41.210.5.118', 'ann', '2021-08-04 05:35:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (655, 7, NULL, '41.210.5.118', 'ann', '2021-08-04 09:53:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (656, 11, NULL, '154.160.30.129', 'DENNIS', '2021-08-04 14:00:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (657, 11, NULL, '154.160.30.129', 'DENNIS', '2021-08-04 14:06:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (658, 6, NULL, '41.210.5.118', 'Ben', '2021-08-04 14:58:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (659, 3, NULL, '41.210.5.118', 'appiah', '2021-08-04 17:03:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (660, 3, NULL, '41.210.5.118', 'appiah', '2021-08-05 04:38:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (661, 10, NULL, '154.160.30.129', 'HAKEEM', '2021-08-05 05:09:53');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (662, 7, NULL, '41.210.5.118', 'ann', '2021-08-05 06:48:19');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (663, 10, NULL, '154.160.30.129', 'HAKEEM', '2021-08-05 09:03:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (664, 3, NULL, '41.210.5.118', 'appiah', '2021-08-05 09:55:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (665, 11, NULL, '154.160.30.129', 'DENNIS', '2021-08-05 13:13:35');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (666, 6, NULL, '41.210.5.118', 'Ben', '2021-08-05 15:07:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (667, 11, NULL, '154.160.30.129', 'DENNIS', '2021-08-05 17:16:39');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (668, 3, NULL, '197.159.139.219', 'appiah', '2021-08-05 19:39:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (669, 10, NULL, '154.160.30.129', 'HAKEEM', '2021-08-06 05:13:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (670, 8, NULL, '41.210.5.118', 'abigail', '2021-08-06 05:34:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (671, 3, NULL, '41.210.5.118', 'appiah', '2021-08-06 05:47:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (672, 8, NULL, '41.210.5.118', 'abigail', '2021-08-06 11:29:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (673, 10, NULL, '154.160.30.129', 'HAKEEM', '2021-08-06 11:29:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (674, 11, NULL, '154.160.30.129', 'DENNIS', '2021-08-06 11:41:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (675, 6, NULL, '41.210.5.118', 'Ben', '2021-08-06 15:27:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (676, 3, NULL, '41.210.5.118', 'appiah', '2021-08-06 16:52:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (677, 6, NULL, '41.210.5.118', 'Ben', '2021-08-06 17:32:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (678, 3, NULL, '41.210.5.118', 'appiah', '2021-08-07 04:07:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (679, 14, NULL, '154.160.30.129', 'FAYORSEY', '2021-08-07 05:02:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (680, 14, NULL, '154.160.30.129', 'FAYORSEY', '2021-08-07 09:52:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (681, 7, NULL, '41.210.5.118', 'ann', '2021-08-07 10:08:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (682, 11, NULL, '154.160.30.129', 'DENNIS', '2021-08-07 12:07:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (683, 3, NULL, '41.210.5.118', 'appiah', '2021-08-07 13:52:23');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (684, 6, NULL, '41.210.5.118', 'Ben', '2021-08-07 14:12:46');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (685, 3, NULL, '154.160.30.129', 'appiah', '2021-08-08 11:02:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (686, 8, NULL, '41.210.5.118', 'abigail', '2021-08-08 11:18:09');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (687, 15, NULL, '154.160.30.129', 'SELASI', '2021-08-08 11:36:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (688, 3, NULL, '154.160.30.129', 'appiah', '2021-08-08 13:55:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (689, 15, NULL, '154.160.30.129', 'SELASI', '2021-08-08 14:21:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (690, 8, NULL, '41.210.5.118', 'abigail', '2021-08-08 14:49:26');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (691, 3, NULL, '154.160.30.129', 'appiah', '2021-08-09 05:02:28');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (692, 14, NULL, '154.160.30.129', 'FAYORSEY', '2021-08-09 06:06:25');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (693, 3, NULL, '154.160.30.129', 'appiah', '2021-08-09 07:56:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (694, 7, NULL, '41.210.5.118', 'ann', '2021-08-09 08:50:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (695, 14, NULL, '154.160.30.129', 'FAYORSEY', '2021-08-09 10:25:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (696, 11, NULL, '154.160.30.129', 'DENNIS', '2021-08-09 11:38:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (697, 6, NULL, '41.210.5.118', 'Ben', '2021-08-09 14:58:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (698, 14, NULL, '154.160.30.129', 'FAYORSEY', '2021-08-10 04:42:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (699, 7, NULL, '41.210.11.94', 'ann', '2021-08-10 10:27:24');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (700, 14, NULL, '154.160.30.129', 'FAYORSEY', '2021-08-10 10:31:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (701, 11, NULL, '154.160.30.129', 'DENNIS', '2021-08-10 11:27:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (702, 6, NULL, '41.210.3.72', 'Ben', '2021-08-10 13:37:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (703, 3, NULL, '197.159.139.219', 'appiah', '2021-08-10 19:20:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (704, 3, NULL, '41.210.3.72', 'appiah', '2021-08-11 04:16:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (705, 7, NULL, '41.210.3.72', 'ann', '2021-08-11 08:01:49');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (706, 14, NULL, '154.160.30.129', 'FAYORSEY', '2021-08-11 09:07:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (707, 3, NULL, '41.66.199.115', 'appiah', '2021-08-11 11:06:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (708, 11, NULL, '154.160.30.129', 'DENNIS', '2021-08-11 11:13:06');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (709, 3, NULL, '41.210.3.72', 'appiah', '2021-08-11 13:33:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (710, 6, NULL, '41.210.3.72', 'Ben', '2021-08-11 15:17:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (711, 3, NULL, '154.160.30.129', 'appiah', '2021-08-11 16:32:42');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (712, 6, NULL, '41.210.3.72', 'Ben', '2021-08-11 17:39:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (713, 7, NULL, '41.210.3.72', 'ann', '2021-08-12 05:43:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (714, 3, NULL, '41.210.3.72', 'appiah', '2021-08-12 06:12:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (715, 7, NULL, '41.210.3.72', 'ann', '2021-08-12 11:03:10');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (716, 14, NULL, '154.160.30.129', 'FAYORSEY', '2021-08-12 11:15:43');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (717, 11, NULL, '154.160.30.129', 'DENNIS', '2021-08-12 11:24:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (718, 6, NULL, '102.176.127.6', 'Ben', '2021-08-12 15:06:54');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (719, 3, NULL, '154.160.30.129', 'appiah', '2021-08-12 15:07:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (720, 3, NULL, '197.159.139.219', 'appiah', '2021-08-12 20:53:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (721, 8, NULL, '102.176.127.6', 'abigail', '2021-08-13 05:10:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (722, 10, NULL, '154.160.30.129', 'HAKEEM', '2021-08-13 05:24:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (723, 8, NULL, '102.176.127.6', 'abigail', '2021-08-13 11:35:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (724, 11, NULL, '154.160.30.129', 'DENNIS', '2021-08-13 11:52:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (725, 3, NULL, '41.66.199.207', 'appiah', '2021-08-13 15:15:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (726, 6, NULL, '102.176.127.6', 'Ben', '2021-08-13 15:54:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (727, 7, NULL, '41.210.1.18', 'ann', '2021-08-14 06:23:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (728, 3, NULL, '41.66.199.157', 'appiah', '2021-08-14 08:46:52');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (729, 7, NULL, '41.210.1.18', 'ann', '2021-08-14 09:51:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (730, 14, NULL, '154.160.30.129', 'FAYORSEY', '2021-08-14 10:24:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (731, 11, NULL, '154.160.30.129', 'DENNIS', '2021-08-14 11:15:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (732, 3, NULL, '41.66.199.40', 'appiah', '2021-08-14 13:54:29');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (733, 3, NULL, '41.66.199.40', 'appiah', '2021-08-14 16:03:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (734, 15, NULL, '154.160.30.129', 'SELASI', '2021-08-15 10:15:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (735, 15, NULL, '154.160.30.129', 'SELASI', '2021-08-15 14:27:04');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (736, 8, NULL, '102.176.14.213', 'abigail', '2021-08-15 14:29:50');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (737, 3, NULL, '102.176.14.213', 'appiah', '2021-08-16 04:13:11');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (738, 7, NULL, '102.176.14.213', 'ann', '2021-08-16 08:31:15');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (739, 14, NULL, '154.160.30.129', 'FAYORSEY', '2021-08-16 10:13:59');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (740, 11, NULL, '154.160.30.129', 'DENNIS', '2021-08-16 11:29:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (741, 6, NULL, '102.176.14.213', 'Ben', '2021-08-16 13:37:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (742, 6, NULL, '102.176.14.213', 'Ben', '2021-08-16 17:15:58');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (743, 3, NULL, '197.159.139.219', 'appiah', '2021-08-16 19:48:33');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (744, 1, NULL, '154.160.19.223', 'owner', '2021-08-16 20:34:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (745, 14, NULL, '154.160.30.208', 'FAYORSEY', '2021-08-17 09:40:40');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (746, 7, NULL, '102.176.14.246', 'ann', '2021-08-17 10:39:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (747, 11, NULL, '154.160.30.208', 'DENNIS', '2021-08-17 10:58:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (748, 6, NULL, '102.176.14.246', 'Ben', '2021-08-17 13:44:37');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (749, 3, NULL, '154.160.30.208', 'appiah', '2021-08-17 15:14:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (750, 3, NULL, '197.159.139.219', 'appiah', '2021-08-17 19:47:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (751, 7, NULL, '102.176.14.246', 'ann', '2021-08-18 10:15:18');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (752, 14, NULL, '154.160.30.208', 'FAYORSEY', '2021-08-18 10:29:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (753, 11, NULL, '154.160.30.208', 'DENNIS', '2021-08-18 11:02:30');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (754, 3, NULL, '197.159.139.219', 'appiah', '2021-08-18 13:20:20');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (755, 11, NULL, '154.160.30.208', 'DENNIS', '2021-08-18 13:23:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (756, 6, NULL, '102.176.5.3', 'Ben', '2021-08-18 13:24:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (757, 3, NULL, '102.176.5.3', 'appiah', '2021-08-19 05:12:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (758, 15, NULL, '154.160.30.208', 'SELASI', '2021-08-19 07:48:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (759, 8, NULL, '102.176.5.3', 'abigail', '2021-08-19 10:42:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (760, 11, NULL, '154.160.30.208', 'DENNIS', '2021-08-19 11:11:51');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (761, 6, NULL, '102.176.5.3', 'Ben', '2021-08-19 13:47:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (762, 6, NULL, '102.176.5.3', 'Ben', '2021-08-19 16:09:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (763, 3, NULL, '154.160.30.208', 'appiah', '2021-08-19 16:35:12');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (764, 6, NULL, '102.176.5.3', 'Ben', '2021-08-19 17:56:16');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (765, 3, NULL, '197.159.139.219', 'appiah', '2021-08-19 20:49:57');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (766, 3, NULL, '102.176.5.3', 'appiah', '2021-08-20 04:17:41');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (767, 7, NULL, '102.176.5.3', 'ann', '2021-08-20 06:02:17');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (768, 7, NULL, '102.176.5.3', 'ann', '2021-08-20 09:25:00');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (769, 14, NULL, '154.160.30.208', 'FAYORSEY', '2021-08-20 09:34:27');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (770, 11, NULL, '154.160.30.208', 'DENNIS', '2021-08-20 11:10:38');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (771, 3, NULL, '41.155.1.224', 'appiah', '2021-08-20 13:15:32');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (772, 3, NULL, '41.155.1.224', 'appiah', '2021-08-20 13:17:07');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (773, 4, NULL, '41.155.1.224', 'stella', '2021-08-20 13:19:08');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (774, 6, NULL, '102.176.5.3', 'Ben', '2021-08-20 14:55:36');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (775, 6, NULL, '102.176.5.3', 'Ben', '2021-08-20 15:17:14');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (776, 6, NULL, '102.176.5.3', 'Ben', '2021-08-20 16:43:44');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (777, 16, NULL, '41.155.2.168', 'edna', '2021-08-20 17:00:13');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (778, 4, NULL, '41.155.2.168', 'stella', '2021-08-20 17:13:01');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (779, 11, NULL, '154.160.30.208', 'DENNIS', '2021-08-20 17:51:47');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (780, 3, NULL, '197.159.139.219', 'appiah', '2021-08-20 18:47:31');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (781, 3, NULL, '197.159.139.219', 'appiah', '2021-08-20 22:08:48');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (782, 1, NULL, '102.176.65.19', 'owner', '2021-08-21 05:04:25');


#
# 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=19 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, '102.176.65.19', '\0\0', 'owner', '84a0d6016fa78d7b788980ab291e800b176de4f0', NULL, 'owner@tecdiary.com', NULL, NULL, NULL, NULL, 1351661704, 1629536665, 1, 'Owner', 'Owner', 'Stock Manager', '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 (3, '197.159.139.219', '::1', 'appiah', '09e393ea3b12140add29e404739a6dcea2ef00e0', NULL, 'kojoappiah@gmail.com', NULL, NULL, NULL, 'd0fe3eb7a2c386d5f747ff29e926495deeb79efd', 1616628094, 1629511728, 1, 'Kojo', ' Appiah Kubi', 'FMMS PHARMACY', '0244282043', NULL, 'male', 1, 0, 0, NULL, 0, 0, 0, 1, 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 (4, '41.155.2.168', '::1', 'stella', 'e8310603429efa844093115f7df1d0f8acbf51ab', NULL, 'sappiahkubi@gmail.com', NULL, '8100476007792fe54fe4e796280d426aa5e47535', 1618192408, '7957fae09c71df6054263d783882d83f24b6696e', 1616628400, 1629493981, 1, 'Stella', 'Appiah-Kubi', 'FMMS PHARMACY', '0244385405', NULL, 'female', 1, NULL, NULL, NULL, 0, 0, 2021, 1, 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 (6, '102.176.5.3', '154.160.11.110', 'ben', '2a5a7c5d54fe914b618c141a870a3c2ff25a54c7', NULL, 'ben1@fmmsgh.com', NULL, NULL, NULL, NULL, 1618192636, 1629492224, 1, 'Bernard', 'Fayorsey', 'fmms', '0543709404', NULL, 'male', 5, 2, 3, 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 (7, '102.176.5.3', '154.160.11.110', 'ann', '74e7bc68df098d93567d8c04a7eca801382e2fd4', NULL, 'info@fmmsgh.com', NULL, NULL, NULL, NULL, 1618193155, 1629465900, 1, 'Ann', 'Selasie', 'fmms', '0549567372', NULL, 'female', 5, 2, 3, NULL, 0, 0, 0, 1, 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 (8, '102.176.5.3', '102.176.124.192', 'abigail', '0d4044a578c46a7e90dd19de1620aeb9135bcdc1', NULL, 'info@fmms.com', NULL, NULL, NULL, NULL, 1620680650, 1629384158, 1, 'ABIGAIL', 'AYIBEA', 'FMMS PHARMACY', '0240569625', NULL, 'female', 5, NULL, 3, 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 (9, '197.159.139.220', '197.159.139.220', 'eunice', '7f7a0f7c71675243cb94cf6627f7217629c3705e', NULL, 'eunice@fmmsgh.com', NULL, NULL, NULL, NULL, 1625761031, 1625761148, 0, 'Eunice', 'eu', 'Rosa Rosa', '02020202552', NULL, 'female', 5, 3, 31, 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 (10, '154.160.30.129', '154.160.30.87', 'hakeem', '23edd25fc2e2c4c9c52f65a1a9b8dac630d66264', NULL, 'hakeem1@fmms.com', NULL, NULL, NULL, NULL, 1627295875, 1628846658, 1, 'HAKEEM', 'NUHU', 'FMMS PHARMACY', '0541537253', NULL, 'male', 5, 0, 31, 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 (11, '154.160.30.208', '154.160.30.87', 'dennis', 'b6c329d248df2879e653a0cda841de811ce06d18', NULL, 'dennis1@fmms.com', NULL, NULL, NULL, NULL, 1627296176, 1629496307, 1, 'DENNIS', 'BROWN', 'FMMS', '0209222682', NULL, 'male', 5, 0, 31, 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 (12, NULL, '154.160.30.87', 'benard', '4e43d55e8f3a531a90dde437dd9c8bc459fdb0ea', NULL, 'benard1@fmms.com', NULL, NULL, NULL, NULL, 1627296995, 1627296995, 1, 'BENARD', 'Fayorsey', 'FMMS', '0543709404', NULL, 'male', 5, 0, 31, 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 (13, '154.160.30.217', '154.160.30.87', 'SELASI1', '0425f769a01a501c89c9086e0c50ee1260ce2862', NULL, 'ann1@fmms.com', NULL, NULL, NULL, NULL, 1627297199, 1627844336, 1, 'ANN', 'SELASI', 'FMMS', '0549567372', NULL, 'female', 5, NULL, 31, 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 (14, '154.160.30.208', '41.210.5.118', 'fayorsey', 'f9aa9f5bbf404fec466158ea86834faf7e2889d6', NULL, 'info@benard.com', NULL, NULL, NULL, NULL, 1628324501, 1629466467, 1, 'FAYORSEY', 'BENARD', 'FMMS', '0543709404', NULL, 'male', 5, 3, 31, 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 (15, '154.160.30.208', '154.160.30.129', 'selasi', 'e08a21b3dae991dfd9e875c169ae9343ddba48f4', NULL, 'selasi@info.com', NULL, NULL, NULL, NULL, 1628436909, 1629373731, 1, 'SELASI', 'ANN', 'FMMS', '0549567372', NULL, 'female', 5, 3, 31, 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 (16, '41.155.2.168', '41.155.2.168', 'edna', '8df60c1f9d36ec8b04526bcc59c1e6411b743ec5', NULL, 'edna@fmms.com', NULL, NULL, NULL, NULL, 1629492048, 1629493213, 1, 'Edna', 'Mensah', 'Fmms', '020193254', NULL, 'female', 5, 1, 32, 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 (17, NULL, '41.155.2.168', 'rabi', 'c36a7f89e1ca9c2b89d7d394681281c64c60804e', NULL, 'rabi@fmms.com', NULL, NULL, NULL, NULL, 1629492165, 1629492165, 1, 'Rabi', 'Foster', 'LAKE SIDE', '0553621100', NULL, 'female', 5, 1, 32, 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 (18, NULL, '41.155.2.168', 'nuhu', '6eb7d28cee3fe466f97750c28fccc490b66599e9', NULL, 'hakeem@fmms.com', NULL, NULL, NULL, NULL, 1629492319, 1629492319, 1, 'Hakeem', 'Nuhu', 'LAKE SIDE', '0541537253', NULL, 'male', 5, 1, 32, NULL, 0, 0, 0, 0, 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 DEFAULT CHARSET=utf8;

#
# 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=5 DEFAULT CHARSET=utf8;

INSERT INTO `sma_warehouses` (`id`, `code`, `name`, `address`, `map`, `phone`, `email`, `price_group_id`) VALUES (1, '001', 'Lake Side Road', '<p>Lake side Road </p>', NULL, '0241803504', 'fimmsapp@gmail.com', 0);
INSERT INTO `sma_warehouses` (`id`, `code`, `name`, `address`, `map`, `phone`, `email`, `price_group_id`) VALUES (2, '002', 'Commandos', '<p>Adenta, Comandos </p><p>0208755600</p>', NULL, '0596062260', 'fimmsapp@gmail.com', 0);
INSERT INTO `sma_warehouses` (`id`, `code`, `name`, `address`, `map`, `phone`, `email`, `price_group_id`) VALUES (3, '003', 'Roza Roza', '<p>New legon, 0208755200</p>', NULL, '0596060915', 'fimmsapp@gmail.com', 1);
INSERT INTO `sma_warehouses` (`id`, `code`, `name`, `address`, `map`, `phone`, `email`, `price_group_id`) VALUES (4, '004', 'Warehouse', '<p>New lego, 0244282043</p>', NULL, '0244385405', 'fimmsapp@gmail.com', 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=9027 DEFAULT CHARSET=utf8;

INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3, 1, 1, '0.0000', NULL, '200.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4, 1768, 1, '100.0000', NULL, '100.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5, 1381, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6, 1324, 1, '3.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7, 1387, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8, 1946, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9, 1946, 2, '30.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (10, 1947, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (11, 1947, 2, '12.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (14, 1949, 1, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (15, 1949, 2, '19.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (16, 1950, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (17, 1950, 2, '46.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (18, 1323, 1, '3.0000', NULL, '7.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (19, 1323, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (20, 1324, 2, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (21, 1325, 1, '2.0000', NULL, '23.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (22, 1326, 1, '5.0000', NULL, '3.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (23, 1326, 2, '1.0000', NULL, '3.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (24, 1325, 2, '0.0000', NULL, '23.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (25, 1325, 3, '0.0000', NULL, '23.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (26, 1324, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (27, 1323, 3, '0.0000', NULL, '7.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (28, 1325, 4, '0.0000', NULL, '23.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (29, 1324, 4, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (30, 1323, 4, '6.0000', NULL, '7.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (31, 1328, 1, '12.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (32, 1330, 1, '12.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (33, 1329, 1, '6.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (34, 1331, 1, '6.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (35, 1332, 1, '6.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (36, 1328, 2, '6.0000', NULL, '3.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (37, 1328, 3, '0.0000', NULL, '3.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (38, 1328, 4, '-1.0000', NULL, '3.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (39, 1330, 2, '9.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (40, 1330, 3, '16.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (41, 1330, 4, '-4.0000', NULL, '3.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (42, 1329, 2, '5.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (43, 1329, 3, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (44, 1329, 4, '-2.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (45, 1331, 2, '1.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (46, 1331, 3, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (47, 1331, 4, '-1.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (48, 1332, 2, '3.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (49, 1332, 3, '6.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (50, 1332, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (51, 1333, 1, '0.0000', NULL, '0.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (52, 1333, 2, '2.0000', NULL, '0.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (53, 1333, 3, '0.0000', NULL, '0.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (54, 1333, 4, '12.0000', NULL, '0.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (55, 1334, 1, '0.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (56, 1334, 2, '8.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (57, 1334, 3, '0.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (58, 1334, 4, '12.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (59, 1335, 1, '0.0000', NULL, '0.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (60, 1335, 2, '6.0000', NULL, '0.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (61, 1335, 3, '0.0000', NULL, '0.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (62, 1335, 4, '10.0000', NULL, '0.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (63, 1336, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (64, 1336, 2, '2.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (65, 1336, 3, '3.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (66, 1336, 4, '5.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (67, 1337, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (68, 1337, 2, '9.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (69, 1337, 3, '7.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (70, 1337, 4, '8.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (71, 1338, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (72, 1338, 2, '3.0000', NULL, '2.0710');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (73, 1338, 3, '9.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (74, 1338, 4, '2.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (75, 1339, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (76, 1339, 2, '4.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (77, 1339, 3, '4.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (78, 1339, 4, '3.0000', NULL, '1.6012');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (79, 1340, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (80, 1340, 2, '5.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (81, 1340, 3, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (82, 1340, 4, '2.0000', NULL, '2.7025');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (83, 1341, 1, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (84, 1341, 2, '3.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (85, 1341, 3, '3.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (86, 1341, 4, '3.0000', NULL, '18.7778');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (87, 1342, 1, '0.0000', NULL, '43.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (88, 1342, 2, '16.0000', NULL, '29.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (89, 1342, 3, '9.0000', NULL, '43.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (90, 1342, 4, '2.0000', NULL, '6.8074');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (91, 1343, 1, '0.0000', NULL, '43.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (92, 1343, 2, '0.0000', NULL, '43.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (93, 1343, 3, '0.0000', NULL, '43.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (94, 1343, 4, '2.0000', NULL, '43.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (95, 1344, 1, '0.0000', NULL, '32.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (96, 1344, 2, '2.0000', NULL, '32.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (97, 1344, 3, '0.0000', NULL, '32.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (98, 1344, 4, '2.0000', NULL, '32.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (99, 1345, 1, '0.0000', NULL, '44.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (100, 1345, 2, '4.0000', NULL, '44.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (101, 1345, 3, '0.0000', NULL, '44.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (102, 1345, 4, '0.0000', NULL, '49.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (103, 1346, 1, '0.0000', NULL, '0.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (104, 1346, 2, '-31.0000', NULL, '0.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (105, 1346, 3, '100.0000', NULL, '-20.8715');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (106, 1346, 4, '73.0000', NULL, '1.0594');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (107, 1347, 1, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (108, 1347, 2, '-98.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (109, 1347, 3, '-3.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (110, 1347, 4, '91.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (111, 1348, 1, '0.0000', NULL, '15.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (112, 1348, 2, '2.0000', NULL, '15.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (113, 1348, 3, '3.0000', NULL, '15.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (114, 1348, 4, '3.0000', NULL, '15.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (115, 1349, 1, '0.0000', NULL, '32.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (116, 1349, 2, '2.0000', NULL, '34.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (117, 1349, 3, '2.0000', NULL, '33.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (118, 1349, 4, '5.0000', NULL, '20.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (119, 1350, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (120, 1350, 2, '2.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (121, 1350, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (122, 1350, 4, '3.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (123, 1351, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (124, 1351, 2, '2.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (125, 1351, 3, '2.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (126, 1351, 4, '2.0000', NULL, '35.4167');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (127, 1353, 1, '0.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (128, 1353, 2, '5.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (129, 1353, 3, '5.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (130, 1353, 4, '0.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (131, 1354, 1, '0.0000', NULL, '39.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (132, 1354, 2, '3.0000', NULL, '39.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (133, 1354, 3, '3.0000', NULL, '39.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (134, 1354, 4, '1.0000', NULL, '39.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (135, 1355, 1, '0.0000', NULL, '17.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (136, 1355, 2, '2.0000', NULL, '17.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (137, 1355, 3, '0.0000', NULL, '17.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (138, 1355, 4, '6.0000', NULL, '17.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (139, 1356, 1, '0.0000', NULL, '51.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (140, 1356, 2, '1.0000', NULL, '51.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (141, 1356, 3, '0.0000', NULL, '51.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (142, 1356, 4, '2.0000', NULL, '51.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (143, 1676, 1, '0.0000', NULL, '7.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (144, 1676, 2, '5.0000', NULL, '7.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (145, 1676, 3, '0.0000', NULL, '7.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (146, 1676, 4, '6.0000', NULL, '7.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (147, 1677, 1, '0.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (148, 1677, 2, '0.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (149, 1677, 3, '-1.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (150, 1677, 4, '7.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (155, 1736, 1, '0.0000', NULL, '26.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (156, 1736, 2, '3.0000', NULL, '26.5160');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (157, 1736, 3, '6.0000', NULL, '26.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (158, 1736, 4, '14.0000', NULL, '-6.2282');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (159, 1361, 1, '0.0000', NULL, '59.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (160, 1361, 2, '2.0000', NULL, '59.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (161, 1361, 3, '0.0000', NULL, '59.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (162, 1361, 4, '2.0000', NULL, '59.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (163, 1362, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (164, 1362, 2, '2.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (165, 1362, 3, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (166, 1362, 4, '2.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (167, 1363, 1, '0.0000', NULL, '81.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (168, 1363, 2, '-27.0000', NULL, '81.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (169, 1363, 3, '0.0000', NULL, '81.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (170, 1363, 4, '63.0000', NULL, '70541.0357');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (171, 1364, 1, '0.0000', NULL, '52.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (172, 1364, 2, '2.0000', NULL, '52.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (173, 1364, 3, '2.0000', NULL, '52.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (174, 1364, 4, '2.0000', NULL, '52.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (175, 1365, 1, '0.0000', NULL, '38.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (176, 1365, 2, '1.0000', NULL, '38.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (177, 1365, 3, '6.0000', NULL, '38.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (178, 1365, 4, '0.0000', NULL, '24.0492');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (179, 1366, 1, '0.0000', NULL, '15.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (180, 1366, 2, '6.0000', NULL, '15.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (181, 1366, 3, '0.0000', NULL, '15.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (182, 1366, 4, '6.0000', NULL, '15.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (183, 1367, 1, '0.0000', NULL, '49.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (184, 1367, 2, '0.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (185, 1367, 3, '120.0000', NULL, '49.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (186, 1367, 4, '22.0000', NULL, '-17710.9284');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (187, 1771, 1, '0.0000', NULL, '3.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (188, 1771, 2, '19.0000', NULL, '3.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (189, 1771, 3, '16.0000', NULL, '3.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (190, 1771, 4, '4.0000', NULL, '5.2450');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (191, 1951, 1, '0.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (192, 1951, 2, '0.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (193, 1951, 3, '0.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (194, 1951, 4, '0.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (195, 1952, 1, '0.0000', NULL, '37.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (196, 1952, 2, '0.0000', NULL, '37.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (197, 1952, 3, '3.0000', NULL, '37.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (198, 1952, 4, '0.0000', NULL, '37.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (199, 1953, 1, '0.0000', NULL, '2.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (200, 1953, 2, '2.0000', NULL, '2.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (201, 1953, 3, '4.0000', NULL, '2.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (202, 1953, 4, '4.0000', NULL, '2.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (203, 1954, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (204, 1954, 2, '-7.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (205, 1954, 3, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (206, 1954, 4, '8.0000', NULL, '13.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (207, 1955, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (208, 1955, 2, '10.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (209, 1955, 3, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (210, 1955, 4, '6.0000', NULL, '19.4666');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (211, 1368, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (212, 1368, 2, '-4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (213, 1368, 3, '12.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (214, 1368, 4, '3.0000', NULL, '-55.5295');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (215, 1371, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (216, 1371, 2, '8.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (217, 1371, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (218, 1371, 4, '5.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (219, 1373, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (220, 1373, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (221, 1373, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (222, 1373, 4, '15.0000', NULL, '8.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (223, 1375, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (224, 1375, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (225, 1375, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (226, 1375, 4, '3.0000', NULL, '100.0571');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (227, 1376, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (228, 1376, 2, '1.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (229, 1376, 3, '0.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (230, 1376, 4, '2.0000', NULL, '62.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (231, 1377, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (232, 1377, 2, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (233, 1377, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (234, 1377, 4, '5.0000', NULL, '92.3113');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (235, 1378, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (236, 1378, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (237, 1378, 3, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (238, 1378, 4, '2.0000', NULL, '1675.2384');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (239, 1380, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (240, 1380, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (241, 1380, 3, '3.0000', NULL, '7.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (242, 1380, 4, '3.0000', NULL, '1640.1972');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (243, 1956, 1, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (244, 1956, 2, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (245, 1956, 3, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (246, 1956, 4, '3.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (247, 1957, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (248, 1957, 2, '-1.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (249, 1957, 3, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (250, 1957, 4, '3.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (251, 1456, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (252, 1456, 2, '1.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (253, 1456, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (254, 1456, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (255, 1457, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (256, 1457, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (257, 1457, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (258, 1457, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (259, 1458, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (260, 1458, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (261, 1458, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (262, 1458, 4, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (263, 1463, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (264, 1463, 2, '-3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (265, 1463, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (266, 1463, 4, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (267, 1464, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (268, 1464, 2, '-4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (269, 1464, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (270, 1464, 4, '0.0000', NULL, '10.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (271, 1465, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (272, 1465, 2, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (273, 1465, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (274, 1465, 4, '3.0000', NULL, '317.0138');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (275, 1466, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (276, 1466, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (277, 1466, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (278, 1466, 4, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (279, 1467, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (280, 1467, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (281, 1467, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (282, 1467, 4, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (283, 1468, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (284, 1468, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (285, 1468, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (286, 1468, 4, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (287, 1470, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (288, 1470, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (289, 1470, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (290, 1470, 4, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (291, 1473, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (292, 1473, 2, '-2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (293, 1473, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (294, 1473, 4, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (295, 1474, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (296, 1474, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (297, 1474, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (298, 1474, 4, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (299, 1475, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (300, 1475, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (301, 1475, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (302, 1475, 4, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (303, 1476, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (304, 1476, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (305, 1476, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (306, 1476, 4, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (307, 1308, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (308, 1308, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (309, 1308, 3, '-2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (310, 1308, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (311, 1386, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (312, 1386, 2, '11.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (313, 1386, 3, '-4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (314, 1386, 4, '20.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (315, 1387, 2, '14.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (316, 1387, 3, '5.0000', NULL, '11.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (317, 1387, 4, '1.0000', NULL, '10.5068');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (318, 1389, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (319, 1389, 2, '5.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (320, 1389, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (321, 1389, 4, '4.0000', NULL, '16.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (322, 1391, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (323, 1391, 2, '5.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (324, 1391, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (325, 1391, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (326, 1392, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (327, 1392, 2, '8.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (328, 1392, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (329, 1392, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (330, 1406, 1, '0.0000', NULL, '16.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (331, 1406, 2, '11.0000', NULL, '16.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (332, 1406, 3, '0.0000', NULL, '16.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (333, 1406, 4, '5.0000', NULL, '17.1816');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (334, 1407, 1, '0.0000', NULL, '16.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (335, 1407, 2, '11.0000', NULL, '16.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (336, 1407, 3, '0.0000', NULL, '16.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (337, 1407, 4, '5.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (338, 1408, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (339, 1408, 2, '9.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (340, 1408, 3, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (341, 1408, 4, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (342, 1411, 1, '-1.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (343, 1411, 2, '2.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (344, 1411, 3, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (345, 1411, 4, '5.0000', NULL, '25.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (346, 1414, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (347, 1414, 2, '9.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (348, 1414, 3, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (349, 1414, 4, '5.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (350, 1415, 1, '0.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (351, 1415, 2, '8.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (352, 1415, 3, '0.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (353, 1415, 4, '4.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (354, 1403, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (355, 1403, 2, '6.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (356, 1403, 3, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (357, 1403, 4, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (358, 1419, 1, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (359, 1419, 2, '5.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (360, 1419, 3, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (361, 1419, 4, '3.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (362, 1421, 1, '0.0000', NULL, '19.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (363, 1421, 2, '9.0000', NULL, '19.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (364, 1421, 3, '0.0000', NULL, '19.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (365, 1421, 4, '0.0000', NULL, '19.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (366, 1423, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (367, 1423, 2, '9.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (368, 1423, 3, '1.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (369, 1423, 4, '-1.0000', NULL, '24.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (370, 1424, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (371, 1424, 2, '7.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (372, 1424, 3, '-1.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (373, 1424, 4, '5.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (374, 1425, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (375, 1425, 2, '22.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (376, 1425, 3, '1.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (377, 1425, 4, '2.0000', NULL, '6.4405');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (378, 1426, 1, '0.0000', NULL, '36.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (379, 1426, 2, '7.0000', NULL, '36.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (380, 1426, 3, '0.0000', NULL, '36.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (381, 1426, 4, '6.0000', NULL, '36.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (382, 1427, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (383, 1427, 2, '8.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (384, 1427, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (385, 1427, 4, '6.0000', NULL, '14.2181');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (386, 1432, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (387, 1432, 2, '20.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (388, 1432, 3, '2.0000', NULL, '9.9497');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (389, 1432, 4, '4.0000', NULL, '8.1574');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (390, 1438, 1, '0.0000', NULL, '14.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (391, 1438, 2, '8.0000', NULL, '14.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (392, 1438, 3, '0.0000', NULL, '14.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (393, 1438, 4, '0.0000', NULL, '14.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (394, 1441, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (395, 1441, 2, '8.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (396, 1441, 3, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (397, 1441, 4, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (398, 1442, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (399, 1442, 2, '9.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (400, 1442, 3, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (401, 1442, 4, '4.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (402, 1881, 1, '0.0000', NULL, '105.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (403, 1881, 2, '2.0000', NULL, '105.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (404, 1881, 3, '0.0000', NULL, '105.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (405, 1881, 4, '-1.0000', NULL, '105.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (406, 1802, 1, '0.0000', NULL, '86.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (407, 1802, 2, '2.0000', NULL, '86.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (408, 1802, 3, '0.0000', NULL, '86.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (409, 1802, 4, '0.0000', NULL, '86.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (410, 1588, 1, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (411, 1588, 2, '4.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (412, 1588, 3, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (413, 1588, 4, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (414, 1773, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (415, 1773, 2, '4.0000', NULL, '84.6722');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (416, 1773, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (417, 1773, 4, '0.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (418, 1783, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (419, 1783, 2, '17.0000', NULL, '105.6595');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (420, 1783, 3, '9.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (421, 1783, 4, '0.0000', NULL, '7.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (422, 1789, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (423, 1789, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (424, 1789, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (425, 1789, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (426, 1791, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (427, 1791, 2, '-2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (428, 1791, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (429, 1791, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (430, 1871, 1, '-20.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (431, 1871, 2, '101.0000', NULL, '57.2051');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (432, 1871, 3, '-24.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (433, 1871, 4, '60.0000', NULL, '24.5246');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (434, 1958, 1, '0.0000', NULL, '54.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (435, 1958, 2, '1.0000', NULL, '54.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (436, 1958, 3, '0.0000', NULL, '54.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (437, 1958, 4, '0.0000', NULL, '54.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (438, 1793, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (439, 1793, 2, '9.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (440, 1793, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (441, 1793, 4, '6.0000', NULL, '15.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (442, 1790, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (443, 1790, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (444, 1790, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (445, 1790, 4, '0.0000', NULL, '16.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (446, 1776, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (447, 1776, 2, '56.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (448, 1776, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (449, 1776, 4, '28.0000', NULL, '4.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (450, 1780, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (451, 1780, 2, '0.0000', NULL, '35.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (452, 1780, 3, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (453, 1780, 4, '1.0000', NULL, '18.7146');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (454, 1797, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (455, 1797, 2, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (456, 1797, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (457, 1797, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (458, 1486, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (459, 1486, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (460, 1486, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (461, 1486, 4, '6.0000', NULL, '17.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (462, 1769, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (463, 1769, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (464, 1769, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (465, 1769, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (466, 1643, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (467, 1643, 2, '-3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (468, 1643, 3, '0.0000', NULL, '40.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (469, 1643, 4, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (470, 1737, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (471, 1737, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (472, 1737, 3, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (473, 1737, 4, '0.0000', NULL, '46.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (478, 1642, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (479, 1642, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (480, 1642, 3, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (481, 1642, 4, '-2.0000', NULL, '22.4127');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (482, 1754, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (483, 1754, 2, '5.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (484, 1754, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (485, 1754, 4, '-1.0000', NULL, '13.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (486, 1742, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (487, 1742, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (488, 1742, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (489, 1742, 4, '0.0000', NULL, '17.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (490, 1726, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (491, 1726, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (492, 1726, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (493, 1726, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (494, 1759, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (495, 1759, 2, '4.0000', NULL, '63.8334');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (496, 1759, 3, '3.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (497, 1759, 4, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (498, 1671, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (499, 1671, 2, '55.0000', NULL, '59.0182');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (500, 1671, 3, '30.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (501, 1671, 4, '2.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (502, 1728, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (503, 1728, 2, '15.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (504, 1728, 3, '37.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (505, 1728, 4, '-16.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (506, 1724, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (507, 1724, 2, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (508, 1724, 3, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (509, 1724, 4, '0.0000', NULL, '142.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (510, 1725, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (511, 1725, 2, '5.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (512, 1725, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (513, 1725, 4, '0.0000', NULL, '71.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (514, 1744, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (515, 1744, 2, '4.0000', NULL, '71.1690');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (516, 1744, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (517, 1744, 4, '3.0000', NULL, '26.5281');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (518, 1768, 2, '0.0000', NULL, '100.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (519, 1768, 3, '0.0000', NULL, '100.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (520, 1768, 4, '0.0000', NULL, '100.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (521, 1959, 1, '0.0000', NULL, '81.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (522, 1959, 2, '1.0000', NULL, '81.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (523, 1959, 3, '0.0000', NULL, '81.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (524, 1959, 4, '58.0000', NULL, '27878840.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (525, 1741, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (526, 1741, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (527, 1741, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (528, 1741, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (529, 1717, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (530, 1717, 2, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (531, 1717, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (532, 1717, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (533, 1798, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (534, 1798, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (535, 1798, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (536, 1798, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (537, 1829, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (538, 1829, 2, '5.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (539, 1829, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (540, 1829, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (541, 1960, 1, '0.0000', NULL, '3.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (542, 1960, 2, '10.0000', NULL, '3.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (543, 1960, 3, '0.0000', NULL, '3.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (544, 1960, 4, '0.0000', NULL, '3.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (545, 1830, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (546, 1830, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (547, 1830, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (548, 1830, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (549, 1859, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (550, 1859, 2, '6.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (551, 1859, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (552, 1859, 4, '3.0000', NULL, '22.6760');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (553, 1873, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (554, 1873, 2, '5.0000', NULL, '11.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (555, 1873, 3, '9.0000', NULL, '11.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (556, 1873, 4, '-3.0000', NULL, '11.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (557, 1961, 1, '0.0000', NULL, '16.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (558, 1961, 2, '5.0000', NULL, '18.9987');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (559, 1961, 3, '-1.0000', NULL, '16.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (560, 1961, 4, '0.0000', NULL, '20.4530');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (561, 1849, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (562, 1849, 2, '25.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (563, 1849, 3, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (564, 1849, 4, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (565, 1962, 1, '0.0000', NULL, '58.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (566, 1962, 2, '6.0000', NULL, '45.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (567, 1962, 3, '0.0000', NULL, '58.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (568, 1962, 4, '-2.0000', NULL, '29.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (569, 1863, 1, '0.0000', NULL, '1.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (570, 1863, 2, '74.0000', NULL, '1.2242');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (571, 1863, 3, '-36.0000', NULL, '1.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (572, 1863, 4, '9.0000', NULL, '0.4136');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (573, 1851, 1, '0.0000', NULL, '11.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (574, 1851, 2, '-1.0000', NULL, '12.3652');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (575, 1851, 3, '1.0000', NULL, '11.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (576, 1851, 4, '4.0000', NULL, '10.6568');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (577, 1928, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (578, 1928, 2, '6.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (579, 1928, 3, '-3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (580, 1928, 4, '9.0000', NULL, '186.5625');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (581, 1935, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (582, 1935, 2, '25.0000', NULL, '23.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (583, 1935, 3, '-12.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (584, 1935, 4, '-13.0000', NULL, '0.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (585, 1447, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (586, 1447, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (587, 1447, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (588, 1447, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (589, 1922, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (590, 1922, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (591, 1922, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (592, 1922, 4, '8.0000', NULL, '46.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (593, 1934, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (594, 1934, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (595, 1934, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (596, 1934, 4, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (597, 1963, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (598, 1963, 2, '1.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (599, 1963, 3, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (600, 1963, 4, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (601, 1813, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (602, 1813, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (603, 1813, 3, '13.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (604, 1813, 4, '0.0000', NULL, '28.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (605, 1835, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (606, 1835, 2, '5.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (607, 1835, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (608, 1835, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (609, 1875, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (610, 1875, 2, '99.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (611, 1875, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (612, 1875, 4, '0.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (613, 1860, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (614, 1860, 2, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (615, 1860, 3, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (616, 1860, 4, '3.0000', NULL, '21.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (617, 1808, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (618, 1808, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (619, 1808, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (620, 1808, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (621, 1824, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (622, 1824, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (623, 1824, 3, '10.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (624, 1824, 4, '-1.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (625, 1806, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (626, 1806, 2, '10.0000', NULL, '77.6260');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (627, 1806, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (628, 1806, 4, '6.0000', NULL, '28.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (633, 1964, 1, '0.0000', NULL, '15.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (634, 1964, 2, '-1.0000', NULL, '15.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (635, 1964, 3, '0.0000', NULL, '15.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (636, 1964, 4, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (637, 1843, 1, '0.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (638, 1843, 2, '41.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (639, 1843, 3, '20.0000', NULL, '6.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (640, 1843, 4, '12.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (641, 1857, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (642, 1857, 2, '-2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (643, 1857, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (644, 1857, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (645, 1318, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (646, 1318, 2, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (647, 1318, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (648, 1318, 4, '6.0000', NULL, '95.3220');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (649, 1820, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (650, 1820, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (651, 1820, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (652, 1820, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (653, 1876, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (654, 1876, 2, '3.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (655, 1876, 3, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (656, 1876, 4, '5.0000', NULL, '0.9126');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (657, 1831, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (658, 1831, 2, '5.0000', NULL, '0.3848');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (659, 1831, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (660, 1831, 4, '9.0000', NULL, '8.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (661, 1846, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (662, 1846, 2, '2.0000', NULL, '131.0188');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (663, 1846, 3, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (664, 1846, 4, '-1.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (665, 1659, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (666, 1659, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (667, 1659, 3, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (668, 1659, 4, '0.0000', NULL, '40.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (669, 1657, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (670, 1657, 2, '-161.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (671, 1657, 3, '300.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (672, 1657, 4, '100.0000', NULL, '0.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (673, 1641, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (674, 1641, 2, '138.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (675, 1641, 3, '60.0000', NULL, '1.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (676, 1641, 4, '-3.0000', NULL, '0.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (677, 1674, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (678, 1674, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (679, 1674, 3, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (680, 1674, 4, '-3.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (681, 1633, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (682, 1633, 2, '6.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (683, 1633, 3, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (684, 1633, 4, '0.0000', NULL, '31.0600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (685, 1636, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (686, 1636, 2, '11.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (687, 1636, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (688, 1636, 4, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (689, 1658, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (690, 1658, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (691, 1658, 3, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (692, 1658, 4, '-1.0000', NULL, '27.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (693, 1662, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (694, 1662, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (695, 1662, 3, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (696, 1662, 4, '2.0000', NULL, '51.4566');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (697, 1635, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (698, 1635, 2, '35.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (699, 1635, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (700, 1635, 4, '15.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (701, 1660, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (702, 1660, 2, '7.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (703, 1660, 3, '2.0000', NULL, '53.0800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (704, 1660, 4, '0.0000', NULL, '53.0800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (705, 1462, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (706, 1462, 2, '-2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (707, 1462, 3, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (708, 1462, 4, '0.0000', NULL, '175.9730');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (709, 1637, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (710, 1637, 2, '7.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (711, 1637, 3, '9.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (712, 1637, 4, '5.0000', NULL, '10.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (713, 1631, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (714, 1631, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (715, 1631, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (716, 1631, 4, '2.0000', NULL, '37.6948');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (717, 1670, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (718, 1670, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (719, 1670, 3, '-2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (720, 1670, 4, '3.0000', NULL, '19.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (721, 1655, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (722, 1655, 2, '2.0000', NULL, '54.8533');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (723, 1655, 3, '2.0000', NULL, '34.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (724, 1655, 4, '0.0000', NULL, '33.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (725, 1695, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (726, 1695, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (727, 1695, 3, '-1.0000', NULL, '13.1719');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (728, 1695, 4, '3.0000', NULL, '15.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (729, 1697, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (730, 1697, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (731, 1697, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (732, 1697, 4, '0.0000', NULL, '9.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (733, 1702, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (734, 1702, 2, '9.0000', NULL, '68.3850');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (735, 1702, 3, '-4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (736, 1702, 4, '0.0000', NULL, '14.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (737, 1704, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (738, 1704, 2, '10.0000', NULL, '910.4120');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (739, 1704, 3, '-3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (740, 1704, 4, '-1.0000', NULL, '27.0900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (741, 1644, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (742, 1644, 2, '2.0000', NULL, '94.4888');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (743, 1644, 3, '2.0000', NULL, '33.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (744, 1644, 4, '0.0000', NULL, '33.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (745, 1516, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (746, 1516, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (747, 1516, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (748, 1516, 4, '0.0000', NULL, '15.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (749, 1514, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (750, 1514, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (751, 1514, 3, '3.0000', NULL, '11.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (752, 1514, 4, '0.0000', NULL, '11.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (753, 1505, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (754, 1505, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (755, 1505, 3, '4.0000', NULL, '1071.9996');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (756, 1505, 4, '2.0000', NULL, '13.3062');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (757, 1482, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (758, 1482, 2, '5.0000', NULL, '90.9565');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (759, 1482, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (760, 1482, 4, '0.0000', NULL, '12.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (761, 1478, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (762, 1478, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (763, 1478, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (764, 1478, 4, '2.0000', NULL, '50.6858');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (765, 1672, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (766, 1672, 2, '86.0000', NULL, '44.6198');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (767, 1672, 3, '-20.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (768, 1672, 4, '0.0000', NULL, '2.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (769, 1527, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (770, 1527, 2, '9.0000', NULL, '96.1416');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (771, 1527, 3, '6.0000', NULL, '13.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (772, 1527, 4, '3.0000', NULL, '13.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (773, 1518, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (774, 1518, 2, '5.0000', NULL, '48.4650');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (775, 1518, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (776, 1518, 4, '-1.0000', NULL, '6.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (777, 1511, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (778, 1511, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (779, 1511, 3, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (780, 1511, 4, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (781, 1530, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (782, 1530, 2, '7.0000', NULL, '80.6158');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (783, 1530, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (784, 1530, 4, '1.0000', NULL, '28.7012');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (785, 1489, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (786, 1489, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (787, 1489, 3, '1.0000', NULL, '28.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (788, 1489, 4, '5.0000', NULL, '28.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (789, 1502, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (790, 1502, 2, '5.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (791, 1502, 3, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (792, 1502, 4, '9.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (793, 1506, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (794, 1506, 2, '7.0000', NULL, '53.7259');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (795, 1506, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (796, 1506, 4, '3.0000', NULL, '16.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (797, 1508, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (798, 1508, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (799, 1508, 3, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (800, 1508, 4, '0.0000', NULL, '20.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (801, 1490, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (802, 1490, 2, '5.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (803, 1490, 3, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (804, 1490, 4, '0.0000', NULL, '10.3400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (805, 1526, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (806, 1526, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (807, 1526, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (808, 1526, 4, '0.0000', NULL, '33.4700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (809, 1548, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (810, 1548, 2, '45.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (811, 1548, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (812, 1548, 4, '60.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (813, 1586, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (814, 1586, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (815, 1586, 3, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (816, 1586, 4, '0.0000', NULL, '45.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (817, 1487, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (818, 1487, 2, '5.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (819, 1487, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (820, 1487, 4, '0.0000', NULL, '4.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (821, 1495, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (822, 1495, 2, '3.0000', NULL, '61.0920');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (823, 1495, 3, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (824, 1495, 4, '2.0000', NULL, '17.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (825, 1507, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (826, 1507, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (827, 1507, 3, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (828, 1507, 4, '0.0000', NULL, '5.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (829, 1545, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (830, 1545, 2, '5.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (831, 1545, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (832, 1545, 4, '3.0000', NULL, '7.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (833, 1504, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (834, 1504, 2, '109.0000', NULL, '1.7015');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (835, 1504, 3, '28.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (836, 1504, 4, '18.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (837, 1544, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (838, 1544, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (839, 1544, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (840, 1544, 4, '0.0000', NULL, '18.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (841, 1601, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (842, 1601, 2, '13.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (843, 1601, 3, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (844, 1601, 4, '0.0000', NULL, '7.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (845, 1513, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (846, 1513, 2, '6.0000', NULL, '35.0830');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (847, 1513, 3, '3.0000', NULL, '11.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (848, 1513, 4, '0.0000', NULL, '11.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (849, 1483, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (850, 1483, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (851, 1483, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (852, 1483, 4, '1.0000', NULL, '26.1578');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (853, 1479, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (854, 1479, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (855, 1479, 3, '2.0000', NULL, '44.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (856, 1479, 4, '0.0000', NULL, '42.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (857, 1529, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (858, 1529, 2, '9.0000', NULL, '10292.4448');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (859, 1529, 3, '6.0000', NULL, '36.4099');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (860, 1529, 4, '4.0000', NULL, '3.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (861, 1546, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (862, 1546, 2, '-6.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (863, 1546, 3, '56.0000', NULL, '99.5612');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (864, 1546, 4, '6.0000', NULL, '2.3697');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (865, 1536, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (866, 1536, 2, '22.0000', NULL, '99.4596');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (867, 1536, 3, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (868, 1536, 4, '-1.0000', NULL, '3.1686');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (869, 1485, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (870, 1485, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (871, 1485, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (872, 1485, 4, '0.0000', NULL, '23.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (873, 1528, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (874, 1528, 2, '39.0000', NULL, '79.3921');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (875, 1528, 3, '-8.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (876, 1528, 4, '14.0000', NULL, '38.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (877, 1484, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (878, 1484, 2, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (879, 1484, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (880, 1484, 4, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (881, 1543, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (882, 1543, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (883, 1543, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (884, 1543, 4, '3.0000', NULL, '18.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (885, 1510, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (886, 1510, 2, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (887, 1510, 3, '1.0000', NULL, '8.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (888, 1510, 4, '5.0000', NULL, '8.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (889, 1501, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (890, 1501, 2, '16.0000', NULL, '1566.1965');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (891, 1501, 3, '-1.0000', NULL, '2.2087');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (892, 1501, 4, '16.0000', NULL, '2.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (893, 1539, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (894, 1539, 2, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (895, 1539, 3, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (896, 1539, 4, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (897, 1492, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (898, 1492, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (899, 1492, 3, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (900, 1492, 4, '3.0000', NULL, '11.0294');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (901, 1541, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (902, 1541, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (903, 1541, 3, '2.0000', NULL, '18.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (904, 1541, 4, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (905, 1547, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (906, 1547, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (907, 1547, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (908, 1547, 4, '0.0000', NULL, '30.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (909, 1525, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (910, 1525, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (911, 1525, 3, '-5.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (912, 1525, 4, '0.0000', NULL, '4.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (913, 1488, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (914, 1488, 2, '5.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (915, 1488, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (916, 1488, 4, '9.0000', NULL, '3.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (917, 1549, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (918, 1549, 2, '5.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (919, 1549, 3, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (920, 1549, 4, '0.0000', NULL, '21.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (921, 1542, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (922, 1542, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (923, 1542, 3, '8.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (924, 1542, 4, '-1.0000', NULL, '14.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (925, 1550, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (926, 1550, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (927, 1550, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (928, 1550, 4, '1.0000', NULL, '13.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (929, 1480, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (930, 1480, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (931, 1480, 3, '2.0000', NULL, '29.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (932, 1480, 4, '-1.0000', NULL, '29.9960');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (933, 1481, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (934, 1481, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (935, 1481, 3, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (936, 1481, 4, '0.0000', NULL, '25.0024');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (937, 1965, 1, '0.0000', NULL, '17.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (938, 1965, 2, '0.0000', NULL, '17.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (939, 1965, 3, '0.0000', NULL, '17.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (940, 1965, 4, '0.0000', NULL, '17.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (941, 1503, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (942, 1503, 2, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (943, 1503, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (944, 1503, 4, '26.0000', NULL, '83.9739');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (945, 1540, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (946, 1540, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (947, 1540, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (948, 1540, 4, '0.0000', NULL, '9.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (949, 1800, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (950, 1800, 2, '5.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (951, 1800, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (952, 1800, 4, '-1.0000', NULL, '20.2784');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (953, 1564, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (954, 1564, 2, '105.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (955, 1564, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (956, 1564, 4, '90.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (957, 1592, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (958, 1592, 2, '7.0000', NULL, '43.5941');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (959, 1592, 3, '-3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (960, 1592, 4, '-1.0000', NULL, '35.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (961, 1551, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (962, 1551, 2, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (963, 1551, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (964, 1551, 4, '6.0000', NULL, '14.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (965, 1610, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (966, 1610, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (967, 1610, 3, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (968, 1610, 4, '-1.0000', NULL, '15.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (969, 1621, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (970, 1621, 2, '21.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (971, 1621, 3, '11.0000', NULL, '46.4871');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (972, 1621, 4, '-2.0000', NULL, '6.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (973, 1570, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (974, 1570, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (975, 1570, 3, '2.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (976, 1570, 4, '2.0000', NULL, '45.0417');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (977, 1591, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (978, 1591, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (979, 1591, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (980, 1591, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (981, 1568, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (982, 1568, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (983, 1568, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (984, 1568, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (985, 1582, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (986, 1582, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (987, 1582, 3, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (988, 1582, 4, '0.0000', NULL, '9.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (989, 1609, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (990, 1609, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (991, 1609, 3, '5.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (992, 1609, 4, '-1.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (993, 1622, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (994, 1622, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (995, 1622, 3, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (996, 1622, 4, '2.0000', NULL, '44.8492');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (997, 1625, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (998, 1625, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (999, 1625, 3, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1000, 1625, 4, '2.0000', NULL, '16.6997');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1001, 1574, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1002, 1574, 2, '77.0000', NULL, '82.8731');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1003, 1574, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1004, 1574, 4, '-15.0000', NULL, '1.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1005, 1615, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1006, 1615, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1007, 1615, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1008, 1615, 4, '60.0000', NULL, '934682.9675');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1009, 1571, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1010, 1571, 2, '16.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1011, 1571, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1012, 1571, 4, '18.0000', NULL, '61.7047');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1013, 1575, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1014, 1575, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1015, 1575, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1016, 1575, 4, '-2.0000', NULL, '66.8966');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1017, 1573, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1018, 1573, 2, '-4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1019, 1573, 3, '1.0000', NULL, '24.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1020, 1573, 4, '1.0000', NULL, '29.9042');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1021, 1624, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1022, 1624, 2, '4.0000', NULL, '60.5720');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1023, 1624, 3, '5.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1024, 1624, 4, '1.0000', NULL, '29.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1025, 1626, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1026, 1626, 2, '2.0000', NULL, '7.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1027, 1626, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1028, 1626, 4, '5.0000', NULL, '7.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1029, 1620, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1030, 1620, 2, '9.0000', NULL, '39.8457');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1031, 1620, 3, '11.0000', NULL, '2.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1032, 1620, 4, '31.0000', NULL, '408.8259');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1033, 1618, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1034, 1618, 2, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1035, 1618, 3, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1036, 1618, 4, '0.0000', NULL, '11.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1037, 1584, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1038, 1584, 2, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1039, 1584, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1040, 1584, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1041, 1583, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1042, 1583, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1043, 1583, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1044, 1583, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1045, 1555, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1046, 1555, 2, '9.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1047, 1555, 3, '3.0000', NULL, '22.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1048, 1555, 4, '3.0000', NULL, '22.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1053, 1589, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1054, 1589, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1055, 1589, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1056, 1589, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1057, 1623, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1058, 1623, 2, '3.0000', NULL, '116.6667');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1059, 1623, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1060, 1623, 4, '1.0000', NULL, '140.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1065, 1684, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1066, 1684, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1067, 1684, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1068, 1684, 4, '4.0000', NULL, '24.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1069, 1666, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1070, 1666, 2, '13.0000', NULL, '246.5993');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1071, 1666, 3, '5.0000', NULL, '2.6304');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1072, 1666, 4, '-5.0000', NULL, '2.7100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1073, 1632, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1074, 1632, 2, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1075, 1632, 3, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1076, 1632, 4, '-3.0000', NULL, '19.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1077, 1668, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1078, 1668, 2, '8.0000', NULL, '86.1047');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1079, 1668, 3, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1080, 1668, 4, '1.0000', NULL, '13.0442');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1081, 1714, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1082, 1714, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1083, 1714, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1084, 1714, 4, '-2.0000', NULL, '16.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1085, 1649, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1086, 1649, 2, '-2.0000', NULL, '37.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1087, 1649, 3, '3.0000', NULL, '11.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1088, 1649, 4, '-2.0000', NULL, '11.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1089, 1675, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1090, 1675, 2, '2.0000', NULL, '65.7753');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1091, 1675, 3, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1092, 1675, 4, '1.0000', NULL, '21.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1093, 1669, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1094, 1669, 2, '63.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1095, 1669, 3, '20.0000', NULL, '9.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1096, 1669, 4, '0.0000', NULL, '6.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1097, 1656, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1098, 1656, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1099, 1656, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1100, 1656, 4, '0.0000', NULL, '14.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1101, 1667, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1102, 1667, 2, '10.0000', NULL, '114.0069');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1103, 1667, 3, '16.0000', NULL, '1404.9249');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1104, 1667, 4, '-7.0000', NULL, '5.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1105, 1966, 1, '0.0000', NULL, '2.7100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1106, 1966, 2, '-2.0000', NULL, '2.7100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1107, 1966, 3, '-1.0000', NULL, '2.7100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1108, 1966, 4, '-1.0000', NULL, '2.7100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1109, 1967, 1, '0.0000', NULL, '19.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1110, 1967, 2, '0.0000', NULL, '19.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1111, 1967, 3, '3.0000', NULL, '20.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1112, 1967, 4, '1.0000', NULL, '19.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1113, 1686, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1114, 1686, 2, '2.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1115, 1686, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1116, 1686, 4, '0.0000', NULL, '26.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1117, 1700, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1118, 1700, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1119, 1700, 3, '-3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1120, 1700, 4, '-1.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1121, 1678, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1122, 1678, 2, '1.0000', NULL, '18.5556');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1123, 1678, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1124, 1678, 4, '-1.0000', NULL, '24.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1125, 1663, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1126, 1663, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1127, 1663, 3, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1128, 1663, 4, '0.0000', NULL, '97.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1129, 1690, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1130, 1690, 2, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1131, 1690, 3, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1132, 1690, 4, '7.0000', NULL, '7.6854');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1133, 1654, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1134, 1654, 2, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1135, 1654, 3, '0.0000', NULL, '8.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1136, 1654, 4, '-1.0000', NULL, '8.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1137, 1358, 1, '0.0000', NULL, '7.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1138, 1358, 2, '-2.0000', NULL, '7.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1139, 1358, 3, '0.0000', NULL, '7.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1140, 1358, 4, '0.0000', NULL, '7.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1141, 1648, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1142, 1648, 2, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1143, 1648, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1144, 1648, 4, '0.0000', NULL, '5.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1145, 1968, 1, '0.0000', NULL, '55.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1146, 1968, 2, '2.0000', NULL, '55.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1147, 1968, 3, '0.0000', NULL, '55.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1148, 1968, 4, '-1.0000', NULL, '55.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1149, 1969, 1, '0.0000', NULL, '4.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1150, 1969, 2, '3.0000', NULL, '4.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1151, 1969, 3, '0.0000', NULL, '4.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1152, 1969, 4, '0.0000', NULL, '4.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1153, 1970, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1154, 1970, 2, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1155, 1970, 3, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1156, 1970, 4, '20.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1157, 1971, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1158, 1971, 2, '2.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1159, 1971, 3, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1160, 1971, 4, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1161, 1972, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1162, 1972, 2, '2.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1163, 1972, 3, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1164, 1972, 4, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1165, 1973, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1166, 1973, 2, '5.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1167, 1973, 3, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1168, 1973, 4, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1169, 1974, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1170, 1974, 2, '3.0000', NULL, '12.1016');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1171, 1974, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1172, 1974, 4, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1173, 1975, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1174, 1975, 2, '1.0000', NULL, '9.4630');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1175, 1975, 3, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1176, 1975, 4, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1177, 1976, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1178, 1976, 2, '2.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1179, 1976, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1180, 1976, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1185, 1978, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1186, 1978, 2, '-1.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1187, 1978, 3, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1188, 1978, 4, '-1.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1193, 1980, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1194, 1980, 2, '4.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1195, 1980, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1196, 1980, 4, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1197, 1981, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1198, 1981, 2, '6.0000', NULL, '8.5256');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1199, 1981, 3, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1200, 1981, 4, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1201, 1982, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1202, 1982, 2, '6.0000', NULL, '4.5508');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1203, 1982, 3, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1204, 1982, 4, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1205, 1983, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1206, 1983, 2, '-1.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1207, 1983, 3, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1208, 1983, 4, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1209, 1984, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1210, 1984, 2, '2.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1211, 1984, 3, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1212, 1984, 4, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1213, 1985, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1214, 1985, 2, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1215, 1985, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1216, 1985, 4, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1217, 1986, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1218, 1986, 2, '3.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1219, 1986, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1220, 1986, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1221, 1987, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1222, 1987, 2, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1223, 1987, 3, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1224, 1987, 4, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1225, 1988, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1226, 1988, 2, '3.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1227, 1988, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1228, 1988, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1229, 1989, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1230, 1989, 2, '8.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1231, 1989, 3, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1232, 1989, 4, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1233, 1990, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1234, 1990, 2, '3.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1235, 1990, 3, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1236, 1990, 4, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1237, 1991, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1238, 1991, 2, '4.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1239, 1991, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1240, 1991, 4, '3.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1241, 1992, 1, '-1.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1242, 1992, 2, '1.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1243, 1992, 3, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1244, 1992, 4, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1245, 1993, 1, '0.0000', NULL, '0.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1246, 1993, 2, '4.0000', NULL, '0.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1247, 1993, 3, '0.0000', NULL, '0.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1248, 1993, 4, '0.0000', NULL, '0.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1249, 1994, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1250, 1994, 2, '2.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1251, 1994, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1252, 1994, 4, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1253, 1995, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1254, 1995, 2, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1255, 1995, 3, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1256, 1995, 4, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1257, 1996, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1258, 1996, 2, '1.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1259, 1996, 3, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1260, 1996, 4, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1261, 1997, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1262, 1997, 2, '1.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1263, 1997, 3, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1264, 1997, 4, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1265, 1998, 1, '0.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1266, 1998, 2, '2.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1267, 1998, 3, '0.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1268, 1998, 4, '0.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1269, 1999, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1270, 1999, 2, '14.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1271, 1999, 3, '6.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1272, 1999, 4, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1273, 2000, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1274, 2000, 2, '4.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1275, 2000, 3, '4.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1276, 2000, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1277, 2001, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1278, 2001, 2, '7.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1279, 2001, 3, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1280, 2001, 4, '-5.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1281, 2002, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1282, 2002, 2, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1283, 2002, 3, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1284, 2002, 4, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1285, 2003, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1286, 2003, 2, '2.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1287, 2003, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1288, 2003, 4, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1289, 2004, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1290, 2004, 2, '-1.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1291, 2004, 3, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1292, 2004, 4, '35.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1293, 2005, 1, '0.0000', NULL, '2.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1294, 2005, 2, '-2.0000', NULL, '2.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1295, 2005, 3, '0.0000', NULL, '2.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1296, 2005, 4, '0.0000', NULL, '2.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1297, 2006, 1, '0.0000', NULL, '0.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1298, 2006, 2, '12.0000', NULL, '0.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1299, 2006, 3, '0.0000', NULL, '0.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1300, 2006, 4, '0.0000', NULL, '0.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1301, 2007, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1302, 2007, 2, '1.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1303, 2007, 3, '2.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1304, 2007, 4, '-1.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1305, 2008, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1306, 2008, 2, '4.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1307, 2008, 3, '2.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1308, 2008, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1309, 2009, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1310, 2009, 2, '10.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1311, 2009, 3, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1312, 2009, 4, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1313, 2010, 1, '0.0000', NULL, '1.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1314, 2010, 2, '33.0000', NULL, '1.2933');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1315, 2010, 3, '12.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1316, 2010, 4, '12.0000', NULL, '1.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1317, 2011, 1, '0.0000', NULL, '0.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1318, 2011, 2, '6.0000', NULL, '0.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1319, 2011, 3, '-1.0000', NULL, '0.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1320, 2011, 4, '0.0000', NULL, '0.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1321, 2012, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1322, 2012, 2, '9.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1323, 2012, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1324, 2012, 4, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1325, 2013, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1326, 2013, 2, '-1.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1327, 2013, 3, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1328, 2013, 4, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1329, 2014, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1330, 2014, 2, '4.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1331, 2014, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1332, 2014, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1333, 2015, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1334, 2015, 2, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1335, 2015, 3, '3.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1336, 2015, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1337, 2016, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1338, 2016, 2, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1339, 2016, 3, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1340, 2016, 4, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1341, 2017, 1, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1342, 2017, 2, '2.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1343, 2017, 3, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1344, 2017, 4, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1345, 2018, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1346, 2018, 2, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1347, 2018, 3, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1348, 2018, 4, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1349, 2019, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1350, 2019, 2, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1351, 2019, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1352, 2019, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1353, 2020, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1354, 2020, 2, '5.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1355, 2020, 3, '1.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1356, 2020, 4, '5.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1357, 2021, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1358, 2021, 2, '-2.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1359, 2021, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1360, 2021, 4, '10.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1361, 2022, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1362, 2022, 2, '1.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1363, 2022, 3, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1364, 2022, 4, '10.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1365, 2023, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1366, 2023, 2, '7.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1367, 2023, 3, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1368, 2023, 4, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1369, 2024, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1370, 2024, 2, '1.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1371, 2024, 3, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1372, 2024, 4, '2.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1373, 2025, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1374, 2025, 2, '8.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1375, 2025, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1376, 2025, 4, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1377, 2026, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1378, 2026, 2, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1379, 2026, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1380, 2026, 4, '2.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1381, 2027, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1382, 2027, 2, '-2.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1383, 2027, 3, '2.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1384, 2027, 4, '5.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1385, 2028, 1, '0.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1386, 2028, 2, '5.0000', NULL, '20.9753');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1387, 2028, 3, '0.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1388, 2028, 4, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1389, 2029, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1390, 2029, 2, '6.0000', NULL, '11.1016');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1391, 2029, 3, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1392, 2029, 4, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1393, 2030, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1394, 2030, 2, '2.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1395, 2030, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1396, 2030, 4, '-1.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1397, 2031, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1398, 2031, 2, '2.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1399, 2031, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1400, 2031, 4, '-1.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1401, 2032, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1402, 2032, 2, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1403, 2032, 3, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1404, 2032, 4, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1405, 2033, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1406, 2033, 2, '3.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1407, 2033, 3, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1408, 2033, 4, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1409, 2034, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1410, 2034, 2, '7.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1411, 2034, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1412, 2034, 4, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1413, 2035, 1, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1414, 2035, 2, '10.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1415, 2035, 3, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1416, 2035, 4, '-1.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1417, 2036, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1418, 2036, 2, '26.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1419, 2036, 3, '21.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1420, 2036, 4, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1421, 2037, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1422, 2037, 2, '13.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1423, 2037, 3, '22.0000', NULL, '10.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1424, 2037, 4, '-1.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1425, 2038, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1426, 2038, 2, '8.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1427, 2038, 3, '6.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1428, 2038, 4, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1429, 2039, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1430, 2039, 2, '18.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1431, 2039, 3, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1432, 2039, 4, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1433, 2040, 1, '0.0000', NULL, '65.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1434, 2040, 2, '2.0000', NULL, '65.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1435, 2040, 3, '0.0000', NULL, '65.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1436, 2040, 4, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1437, 2041, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1438, 2041, 2, '-1.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1439, 2041, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1440, 2041, 4, '2.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1441, 2042, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1442, 2042, 2, '2.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1443, 2042, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1444, 2042, 4, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1445, 2043, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1446, 2043, 2, '2.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1447, 2043, 3, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1448, 2043, 4, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1449, 2044, 1, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1450, 2044, 2, '1.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1451, 2044, 3, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1452, 2044, 4, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1453, 2045, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1454, 2045, 2, '4.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1455, 2045, 3, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1456, 2045, 4, '-1.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1457, 2046, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1458, 2046, 2, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1459, 2046, 3, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1460, 2046, 4, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1461, 2047, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1462, 2047, 2, '-1.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1463, 2047, 3, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1464, 2047, 4, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1465, 2048, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1466, 2048, 2, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1467, 2048, 3, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1468, 2048, 4, '2.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1469, 2049, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1470, 2049, 2, '-3.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1471, 2049, 3, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1472, 2049, 4, '3.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1473, 2050, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1474, 2050, 2, '-1.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1475, 2050, 3, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1476, 2050, 4, '3.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1477, 2051, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1478, 2051, 2, '1.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1479, 2051, 3, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1480, 2051, 4, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1481, 2052, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1482, 2052, 2, '1.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1483, 2052, 3, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1484, 2052, 4, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1485, 2053, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1486, 2053, 2, '3.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1487, 2053, 3, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1488, 2053, 4, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1489, 2054, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1490, 2054, 2, '3.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1491, 2054, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1492, 2054, 4, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1493, 2055, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1494, 2055, 2, '-1.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1495, 2055, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1496, 2055, 4, '1.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1497, 2056, 1, '0.0000', NULL, '5.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1498, 2056, 2, '-5.0000', NULL, '5.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1499, 2056, 3, '0.0000', NULL, '5.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1500, 2056, 4, '9.0000', NULL, '5.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1501, 2057, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1502, 2057, 2, '-2.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1503, 2057, 3, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1504, 2057, 4, '24.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1505, 2058, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1506, 2058, 2, '19.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1507, 2058, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1508, 2058, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1509, 2059, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1510, 2059, 2, '-4.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1511, 2059, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1512, 2059, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1513, 2060, 1, '0.0000', NULL, '0.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1514, 2060, 2, '-37.0000', NULL, '0.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1515, 2060, 3, '-4.0000', NULL, '0.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1516, 2060, 4, '596.0000', NULL, '0.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1517, 1888, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1518, 1888, 2, '-2.0000', NULL, '-42.1250');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1519, 1888, 3, '2.0000', NULL, '509.9086');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1520, 1888, 4, '7.0000', NULL, '134.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1522, 1300, 4, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1523, 1301, 4, '11.0000', NULL, '86.7545');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1524, 1302, 4, '9.0000', NULL, '390.9115');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1525, 1303, 4, '110.0000', NULL, '54.5520');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1526, 1305, 4, '-1.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1527, 1304, 4, '111.0000', NULL, '89.2753');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1528, 1306, 4, '24.0000', NULL, '22.5969');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1529, 1307, 4, '71.0000', NULL, '110.4141');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1530, 1309, 4, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1531, 1311, 4, '5.0000', NULL, '79.3908');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1532, 1312, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1533, 1313, 4, '24.0000', NULL, '2.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1534, 1314, 4, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1535, 1315, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1536, 1316, 4, '-1.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1538, 1319, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1539, 1320, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1540, 1321, 4, '3.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1541, 1322, 4, '9.0000', NULL, '-76.1143');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1542, 1718, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1543, 1719, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1544, 1720, 4, '150.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1545, 1721, 4, '-1.0000', NULL, '8.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1546, 1722, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1547, 1723, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1548, 1727, 4, '0.0000', NULL, '2.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1549, 1729, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1550, 1730, 4, '0.0000', NULL, '23.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1551, 1731, 4, '9.0000', NULL, '19.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1552, 1732, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1553, 1733, 4, '4.0000', NULL, '527.9932');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1554, 1734, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1555, 1735, 4, '28.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1556, 1738, 4, '4.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1557, 1739, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1558, 1740, 4, '0.0000', NULL, '7.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1559, 1743, 4, '0.0000', NULL, '3.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1560, 1746, 4, '58.0000', NULL, '33.8760');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1561, 1748, 4, '98.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1562, 1750, 4, '4.0000', NULL, '31.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1563, 1751, 4, '4.0000', NULL, '3.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1564, 1753, 4, '2.0000', NULL, '4.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1565, 1755, 4, '0.0000', NULL, '5.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1566, 1756, 4, '-6.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1567, 1757, 4, '0.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1569, 1758, 4, '0.0000', NULL, '45.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1570, 1760, 4, '98.0000', NULL, '111.8384');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1571, 1761, 4, '-1.0000', NULL, '1.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1572, 1762, 4, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1573, 1763, 4, '5.0000', NULL, '4.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1574, 1494, 4, '4.0000', NULL, '11.9056');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1575, 1765, 4, '-2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1576, 1766, 4, '-1.0000', NULL, '2.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1577, 1767, 4, '-3.0000', NULL, '4.6052');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1578, 2061, 1, '0.0000', NULL, '10.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1579, 2061, 2, '2.0000', NULL, '10.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1580, 2061, 3, '1.0000', NULL, '10.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1581, 2061, 4, '0.0000', NULL, '10.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1582, 2062, 1, '0.0000', NULL, '5.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1583, 2062, 2, '1.0000', NULL, '5.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1584, 2062, 3, '3.0000', NULL, '5.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1585, 2062, 4, '4.0000', NULL, '5.7540');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1586, 2063, 1, '0.0000', NULL, '1.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1587, 2063, 2, '2.0000', NULL, '1.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1588, 2063, 3, '0.0000', NULL, '1.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1589, 2063, 4, '3.0000', NULL, '1.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1590, 1459, 4, '2.0000', NULL, '86.2466');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1591, 1460, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1592, 1469, 4, '10.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1593, 1471, 4, '2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1594, 1472, 4, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1595, 1477, 4, '0.0000', NULL, '40.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1596, 1310, 4, '-9.0000', NULL, '0.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1597, 1895, 4, '0.0000', NULL, '7.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1598, 1896, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1599, 1894, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1600, 1893, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1601, 1892, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1602, 1890, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1603, 1889, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1604, 1900, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1605, 1901, 4, '39.0000', NULL, '3.8432');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1606, 1902, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1607, 1903, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1608, 1904, 4, '-1.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1609, 1905, 4, '-2.0000', NULL, '0.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1610, 1909, 4, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1611, 1910, 4, '50.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1612, 1912, 4, '29.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1614, 1917, 4, '0.0000', NULL, '4.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1615, 1916, 4, '0.0000', NULL, '8.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1616, 1908, 4, '-4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1617, 2064, 1, '0.0000', NULL, '4.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1618, 2064, 2, '6.0000', NULL, '4.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1619, 2064, 3, '0.0000', NULL, '4.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1620, 2064, 4, '0.0000', NULL, '4.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1621, 1904, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1622, 1904, 2, '-7.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1623, 1904, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1624, 1905, 1, '0.0000', NULL, '0.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1625, 1905, 2, '75.0000', NULL, '0.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1626, 1905, 3, '0.0000', NULL, '0.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1627, 2065, 1, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1628, 2065, 2, '24.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1629, 2065, 3, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1630, 2065, 4, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1631, 2066, 1, '0.0000', NULL, '0.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1632, 2066, 2, '75.0000', NULL, '0.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1633, 2066, 3, '0.0000', NULL, '0.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1634, 2066, 4, '25.0000', NULL, '0.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1635, 1444, 4, '10.0000', NULL, '49.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1636, 1445, 4, '0.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1637, 1446, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1638, 1449, 4, '-2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1639, 1450, 4, '15.0000', NULL, '61.1074');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1640, 1452, 4, '50.0000', NULL, '45.6150');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1642, 1454, 4, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1643, 1455, 4, '100.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1644, 1921, 4, '10.0000', NULL, '13.0375');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1645, 1925, 4, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1646, 1926, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1647, 1927, 4, '5.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1648, 1936, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1649, 1941, 4, '-2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1650, 1942, 4, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1651, 1943, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1652, 1937, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1653, 1944, 4, '11.0000', NULL, '170.8780');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1654, 2067, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1655, 2067, 2, '9.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1656, 2067, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1657, 2067, 4, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1658, 2068, 1, '0.0000', NULL, '11.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1659, 2068, 2, '7.0000', NULL, '12.8833');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1660, 2068, 3, '7.0000', NULL, '12.0277');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1661, 2068, 4, '-8.0000', NULL, '13.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1662, 2069, 1, '0.0000', NULL, '2.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1663, 2069, 2, '20.0000', NULL, '2.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1664, 2069, 3, '0.0000', NULL, '2.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1665, 2069, 4, '0.0000', NULL, '2.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1666, 1454, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1667, 1454, 2, '3.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1668, 1454, 3, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1669, 1616, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1670, 1616, 2, '-5.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1671, 1616, 3, '-2.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1672, 1616, 4, '98.0000', NULL, '6.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1673, 2070, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1674, 2070, 2, '19.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1675, 2070, 3, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1676, 2070, 4, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1677, 2071, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1678, 2071, 2, '-19.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1679, 2071, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1680, 2071, 4, '20.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1681, 2072, 1, '0.0000', NULL, '7.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1682, 2072, 2, '3.0000', NULL, '7.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1683, 2072, 3, '0.0000', NULL, '7.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1684, 2072, 4, '-1.0000', NULL, '8.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1685, 2073, 1, '0.0000', NULL, '2.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1686, 2073, 2, '11.0000', NULL, '2.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1687, 2073, 3, '-1.0000', NULL, '2.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1688, 2073, 4, '50.0000', NULL, '2.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1689, 2074, 1, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1690, 2074, 2, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1691, 2074, 3, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1692, 2074, 4, '9.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1693, 2075, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1694, 2075, 2, '4.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1695, 2075, 3, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1696, 2075, 4, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1697, 2076, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1698, 2076, 2, '4.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1699, 2076, 3, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1700, 2076, 4, '3.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1701, 1938, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1702, 1938, 2, '2.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1703, 1938, 3, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1704, 1938, 4, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1705, 2077, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1706, 2077, 2, '5.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1707, 2077, 3, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1708, 2077, 4, '5.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1709, 1944, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1710, 1944, 2, '9.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1711, 1944, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1712, 1921, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1713, 1921, 2, '10.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1714, 1921, 3, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1715, 1923, 1, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1716, 1923, 2, '10.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1717, 1923, 3, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1718, 1923, 4, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1719, 1306, 1, '0.0000', NULL, '2.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1720, 1306, 2, '3.0000', NULL, '2.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1721, 1306, 3, '-3.0000', NULL, '2.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1722, 1931, 4, '10.0000', NULL, '6205.2715');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1724, 2078, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1725, 2078, 2, '5.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1726, 2078, 3, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1727, 2078, 4, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1728, 2079, 1, '0.0000', NULL, '2.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1729, 2079, 2, '12.0000', NULL, '2.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1730, 2079, 3, '0.0000', NULL, '2.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1731, 2079, 4, '12.0000', NULL, '2.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1732, 2080, 1, '0.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1733, 2080, 2, '3.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1734, 2080, 3, '0.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1735, 2080, 4, '3.0000', NULL, '17.9638');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1738, 1369, 4, '2.0000', NULL, '2.2209');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1739, 1370, 4, '5.0000', NULL, '48.7250');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1740, 1372, 4, '2.0000', NULL, '48.9450');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1741, 1374, 4, '4.0000', NULL, '24.0076');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1742, 1379, 4, '4.0000', NULL, '85.2466');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1743, 1381, 4, '2.0000', NULL, '156.2454');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1744, 1382, 4, '22.0000', NULL, '85.9516');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1745, 1383, 4, '4.0000', NULL, '47.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1746, 1384, 4, '2.0000', NULL, '39.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1747, 1385, 4, '9.0000', NULL, '48.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1748, 2081, 1, '0.0000', NULL, '7.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1749, 2081, 2, '0.0000', NULL, '7.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1750, 2081, 3, '0.0000', NULL, '7.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1751, 2081, 4, '0.0000', NULL, '7.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1752, 1388, 4, '10.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1753, 1390, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1754, 1393, 4, '6.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1755, 1394, 4, '10.0000', NULL, '8.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1756, 1395, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1757, 1396, 4, '11.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1758, 1397, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1759, 1398, 4, '5.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1760, 1399, 4, '8.0000', NULL, '13.3890');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1761, 1400, 4, '-1.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1762, 1401, 4, '6.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1763, 1402, 4, '10.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1764, 1404, 4, '4.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1765, 1409, 4, '1.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1766, 1410, 4, '10.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1767, 1412, 4, '4.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1768, 1413, 4, '4.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1769, 1416, 4, '-1.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1770, 1417, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1771, 1418, 4, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1772, 1420, 4, '23.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1773, 1422, 4, '3.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1774, 1429, 4, '3.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1775, 1430, 4, '8.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1776, 1431, 4, '9.0000', NULL, '11.0902');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1777, 1433, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1778, 1434, 4, '4.0000', NULL, '15.3766');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1779, 1435, 4, '0.0000', NULL, '22.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1780, 1436, 4, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1781, 1437, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1782, 1439, 4, '11.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1783, 1440, 4, '9.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1784, 1404, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1785, 1404, 2, '9.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1786, 1404, 3, '-1.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1788, 1493, 4, '-1.0000', NULL, '1.5425');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1789, 1764, 4, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1791, 1497, 4, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1792, 1498, 4, '0.0000', NULL, '0.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1793, 1499, 4, '18.0000', NULL, '0.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1795, 1512, 4, '5.0000', NULL, '12.8276');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1796, 1517, 4, '3.0000', NULL, '23.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1797, 1519, 4, '11.0000', NULL, '3.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1798, 1520, 4, '19.0000', NULL, '1.4700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1799, 1521, 4, '16.0000', NULL, '2.5754');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1800, 1523, 4, '10.0000', NULL, '213.0405');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1801, 1524, 4, '-1.0000', NULL, '3.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1802, 1531, 4, '75.0000', NULL, '0.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1803, 1532, 4, '96.0000', NULL, '0.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1804, 1533, 4, '33.0000', NULL, '2.5917');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1805, 1534, 4, '10.0000', NULL, '0.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1806, 1535, 4, '3.0000', NULL, '7.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1807, 1537, 4, '1.0000', NULL, '40.2700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1808, 1538, 4, '0.0000', NULL, '31.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1809, 1552, 4, '30.0000', NULL, '1627213.2705');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1810, 1553, 4, '30.0000', NULL, '2690641.7070');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1811, 1554, 4, '-4.0000', NULL, '3.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1813, 1557, 4, '-1.0000', NULL, '7.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1814, 1559, 4, '6.0000', NULL, '22.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1815, 1560, 4, '0.0000', NULL, '130.1885');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1816, 1561, 4, '6.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1817, 1562, 4, '9.0000', NULL, '5.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1818, 1563, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1819, 1565, 4, '0.0000', NULL, '18.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1820, 1567, 4, '-2.0000', NULL, '13.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1821, 1569, 4, '3.0000', NULL, '96.0576');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1822, 1572, 4, '18.0000', NULL, '138.3520');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1823, 1576, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1824, 1577, 4, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1825, 1578, 4, '-1.0000', NULL, '1.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1826, 1580, 4, '-17.0000', NULL, '0.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1827, 1581, 4, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1828, 1585, 4, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1830, 1590, 4, '90.0000', NULL, '1.7100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1831, 1593, 4, '60.0000', NULL, '57.4565');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1832, 1595, 4, '-1.0000', NULL, '20.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1833, 1596, 4, '-3.0000', NULL, '2.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1834, 1598, 4, '0.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1835, 1599, 4, '-1.0000', NULL, '1.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1836, 1600, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1837, 1602, 4, '13.0000', NULL, '6.7859');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1838, 1603, 4, '1.0000', NULL, '59.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1839, 1604, 4, '8.0000', NULL, '34.1212');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1840, 1605, 4, '12.0000', NULL, '26.8412');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1841, 1606, 4, '0.0000', NULL, '4.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1842, 1608, 4, '-7.0000', NULL, '3.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1843, 1612, 4, '8.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1844, 1613, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1846, 1617, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1847, 1619, 4, '8.0000', NULL, '9.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1848, 1627, 4, '0.0000', NULL, '46.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1849, 1628, 4, '3.0000', NULL, '6.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1850, 1629, 4, '-3.0000', NULL, '15.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1851, 1630, 4, '5.0000', NULL, '66.3608');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1852, 1634, 4, '3.0000', NULL, '24.6308');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1853, 1638, 4, '80.0000', NULL, '10.8843');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1854, 1639, 4, '0.0000', NULL, '6.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1855, 1640, 4, '5.0000', NULL, '2.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1856, 1645, 4, '0.0000', NULL, '4.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1857, 1646, 4, '-4.0000', NULL, '4.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1858, 1647, 4, '-3.0000', NULL, '4.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1859, 1650, 4, '-1.0000', NULL, '14.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1860, 1651, 4, '-8.0000', NULL, '6.7039');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1861, 1652, 4, '0.0000', NULL, '4.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1862, 1653, 4, '0.0000', NULL, '8.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1863, 1661, 4, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1864, 1665, 4, '-11.0000', NULL, '1.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1865, 1673, 4, '-1.0000', NULL, '1.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1866, 1680, 4, '2.0000', NULL, '5.0209');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1867, 1681, 4, '4.0000', NULL, '36.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1868, 1682, 4, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1869, 1812, 4, '-4.0000', NULL, '7.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1870, 1685, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1871, 1687, 4, '-2.0000', NULL, '165.9024');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1872, 1688, 4, '-1.0000', NULL, '18.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1873, 1689, 4, '4.0000', NULL, '60.7198');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1874, 1691, 4, '-2.0000', NULL, '10.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1875, 1692, 4, '0.0000', NULL, '10.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1876, 1693, 4, '0.0000', NULL, '7.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1877, 1694, 4, '-2.0000', NULL, '7.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1878, 1696, 4, '0.0000', NULL, '10.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1879, 1698, 4, '0.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1880, 1699, 4, '10.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1881, 1701, 4, '-1.0000', NULL, '14.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1882, 1703, 4, '0.0000', NULL, '9.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1883, 1706, 4, '0.0000', NULL, '15.2700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1884, 1707, 4, '0.0000', NULL, '25.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1885, 1708, 4, '-1.0000', NULL, '20.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1886, 1710, 4, '0.0000', NULL, '3.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1887, 1711, 4, '0.0000', NULL, '8.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1888, 1712, 4, '-2.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1889, 1713, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1890, 1715, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1895, 2083, 1, '0.0000', NULL, '0.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1896, 2083, 2, '78.0000', NULL, '0.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1897, 2083, 3, '-2.0000', NULL, '0.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1898, 2083, 4, '-1.0000', NULL, '0.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1899, 2084, 1, '0.0000', NULL, '15.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1900, 2084, 2, '9.0000', NULL, '15.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1901, 2084, 3, '-1.0000', NULL, '15.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1902, 2084, 4, '0.0000', NULL, '15.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1903, 2085, 1, '0.0000', NULL, '13.3400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1904, 2085, 2, '39.0000', NULL, '13.3400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1905, 2085, 3, '-25.0000', NULL, '13.3400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1906, 2085, 4, '2.0000', NULL, '-1.0741');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1907, 2086, 1, '0.0000', NULL, '4.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1908, 2086, 2, '3.0000', NULL, '4.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1909, 2086, 3, '1.0000', NULL, '4.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1910, 2086, 4, '-1.0000', NULL, '4.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1915, 2088, 1, '0.0000', NULL, '1.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1916, 2088, 2, '24.0000', NULL, '1.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1917, 2088, 3, '-2.0000', NULL, '1.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1918, 2088, 4, '66.0000', NULL, '1.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1919, 2089, 1, '0.0000', NULL, '6.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1920, 2089, 2, '2.0000', NULL, '7.0900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1921, 2089, 3, '2.0000', NULL, '7.0900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1922, 2089, 4, '-1.0000', NULL, '6.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1923, 1772, 4, '-7.0000', NULL, '6.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1924, 1774, 4, '56.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1925, 1779, 4, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1926, 1781, 4, '0.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1927, 1782, 4, '0.0000', NULL, '2.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1929, 1785, 4, '2.0000', NULL, '4.8380');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1931, 1787, 4, '0.0000', NULL, '0.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1932, 1788, 4, '-1.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1933, 1795, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1934, 1796, 4, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1935, 1799, 4, '0.0000', NULL, '44.7276');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1936, 1804, 4, '0.0000', NULL, '4.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1937, 1805, 4, '-4.0000', NULL, '195.3170');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1938, 1807, 4, '52.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1939, 1809, 4, '-2.0000', NULL, '9.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1940, 1810, 4, '-2.0000', NULL, '8.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1941, 1811, 4, '3.0000', NULL, '14.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1942, 1814, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1943, 1816, 4, '3.0000', NULL, '18.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1944, 1817, 4, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1945, 1818, 4, '0.0000', NULL, '14.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1946, 1819, 4, '1.0000', NULL, '5.5930');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1947, 1821, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1948, 1822, 4, '-10.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1950, 1825, 4, '-2.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1951, 1826, 1, '0.0000', NULL, '0.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1952, 1826, 2, '92.0000', NULL, '0.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1953, 1826, 3, '100.0000', NULL, '0.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1954, 1826, 4, '0.0000', NULL, '0.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1955, 1827, 1, '0.0000', NULL, '0.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1956, 1827, 2, '96.0000', NULL, '0.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1957, 1827, 3, '0.0000', NULL, '0.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1958, 1827, 4, '0.0000', NULL, '0.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1959, 1828, 4, '0.0000', NULL, '0.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1960, 1832, 4, '1.0000', NULL, '59.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1961, 1836, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1962, 1837, 4, '-12.0000', NULL, '0.9642');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1963, 1839, 4, '-6.0000', NULL, '6.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1964, 1840, 4, '41.0000', NULL, '-138499292.4246');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1965, 1841, 4, '45.0000', NULL, '142.5780');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1966, 1844, 4, '10.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1967, 1845, 4, '-2.0000', NULL, '19.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1968, 1848, 4, '0.0000', NULL, '0.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1969, 1852, 4, '6.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1970, 1856, 4, '-1.0000', NULL, '4.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1972, 1864, 4, '-2.0000', NULL, '6.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1973, 1866, 4, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1974, 1867, 4, '-50.0000', NULL, '1.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1975, 1868, 4, '0.0000', NULL, '4.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1978, 1872, 4, '1.0000', NULL, '9.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1979, 1874, 4, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1980, 1880, 4, '6.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1981, 1882, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1982, 1883, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1983, 1884, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1984, 1885, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1985, 1886, 4, '6.0000', NULL, '76.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1986, 1825, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1987, 1825, 2, '9.0000', NULL, '4.5675');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1988, 1825, 3, '4.0000', NULL, '4.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1993, 2091, 1, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1994, 2091, 2, '3.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1995, 2091, 3, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1996, 2091, 4, '2.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1997, 2092, 1, '0.0000', NULL, '4.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1998, 2092, 2, '2.0000', NULL, '4.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (1999, 2092, 3, '3.0000', NULL, '4.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2000, 2092, 4, '0.0000', NULL, '4.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2001, 1946, 4, '59.0000', NULL, '5.7750');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2002, 1947, 4, '58.0000', NULL, '0.1809');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2003, 1949, 4, '10.0000', NULL, '18.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2004, 1950, 4, '60.0000', NULL, '-13.5726');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2005, 1946, 3, '0.0000', NULL, '1.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2006, 2093, 1, '0.0000', NULL, '2.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2007, 2093, 2, '19.0000', NULL, '2.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2008, 2093, 3, '0.0000', NULL, '2.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2009, 2093, 4, '10.0000', NULL, '2.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2010, 2094, 1, '0.0000', NULL, '2.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2011, 2094, 2, '38.0000', NULL, '2.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2012, 2094, 3, '-1.0000', NULL, '2.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2013, 2094, 4, '60.0000', NULL, '2.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2014, 1947, 3, '-4.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2015, 1949, 3, '0.0000', NULL, '3.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2016, 1950, 3, '-2.0000', NULL, '2.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2017, 2095, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2018, 2095, 2, '38.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2019, 2095, 3, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2020, 2095, 4, '57.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2021, 2096, 1, '0.0000', NULL, '1.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2022, 2096, 2, '34.0000', NULL, '1.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2023, 2096, 3, '0.0000', NULL, '1.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2024, 2096, 4, '0.0000', NULL, '1.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2025, 2097, 1, '0.0000', NULL, '1.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2026, 2097, 2, '37.0000', NULL, '1.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2027, 2097, 3, '-1.0000', NULL, '1.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2028, 2097, 4, '0.0000', NULL, '1.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2029, 2098, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2030, 2098, 2, '40.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2031, 2098, 3, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2032, 2098, 4, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2033, 2099, 1, '0.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2034, 2099, 2, '19.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2035, 2099, 3, '0.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2036, 2099, 4, '10.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2037, 2100, 1, '0.0000', NULL, '1.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2038, 2100, 2, '36.0000', NULL, '1.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2039, 2100, 3, '0.0000', NULL, '1.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2040, 2100, 4, '0.0000', NULL, '1.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2041, 2101, 1, '0.0000', NULL, '1.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2042, 2101, 2, '38.0000', NULL, '1.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2043, 2101, 3, '-1.0000', NULL, '1.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2044, 2101, 4, '0.0000', NULL, '1.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2045, 2102, 1, '0.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2046, 2102, 2, '38.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2047, 2102, 3, '0.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2048, 2102, 4, '-2.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2049, 2103, 1, '0.0000', NULL, '0.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2050, 2103, 2, '120.0000', NULL, '0.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2051, 2103, 3, '-1.0000', NULL, '0.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2052, 2103, 4, '299.0000', NULL, '0.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2053, 2104, 1, '0.0000', NULL, '0.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2054, 2104, 2, '266.0000', NULL, '0.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2055, 2104, 3, '42.0000', NULL, '0.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2056, 2104, 4, '298.0000', NULL, '0.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2057, 2105, 1, '0.0000', NULL, '1.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2058, 2105, 2, '29.0000', NULL, '1.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2059, 2105, 3, '-11.0000', NULL, '1.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2060, 2105, 4, '-9.0000', NULL, '1.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2061, 2106, 1, '0.0000', NULL, '0.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2062, 2106, 2, '58.0000', NULL, '0.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2063, 2106, 3, '0.0000', NULL, '0.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2064, 2106, 4, '-1.0000', NULL, '0.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2065, 2107, 1, '0.0000', NULL, '0.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2066, 2107, 2, '300.0000', NULL, '0.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2067, 2107, 3, '0.0000', NULL, '0.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2068, 2107, 4, '50.0000', NULL, '0.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2069, 2108, 1, '0.0000', NULL, '4.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2070, 2108, 2, '7.0000', NULL, '4.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2071, 2108, 3, '-5.0000', NULL, '4.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2072, 2108, 4, '22.0000', NULL, '4.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2073, 2109, 1, '0.0000', NULL, '0.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2074, 2109, 2, '255.0000', NULL, '0.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2075, 2109, 3, '42.0000', NULL, '0.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2076, 2109, 4, '143.0000', NULL, '0.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2077, 2110, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2078, 2110, 2, '18.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2079, 2110, 3, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2080, 2110, 4, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2081, 2111, 1, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2082, 2111, 2, '3.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2083, 2111, 3, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2084, 2111, 4, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2085, 2112, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2086, 2112, 2, '2.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2087, 2112, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2088, 2112, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2089, 2113, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2090, 2113, 2, '1.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2091, 2113, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2092, 2113, 4, '1.0000', NULL, '6.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2093, 2114, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2094, 2114, 2, '10.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2095, 2114, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2096, 2114, 4, '1.0000', NULL, '6.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2097, 2115, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2098, 2115, 2, '2.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2099, 2115, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2100, 2115, 4, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2101, 2116, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2102, 2116, 2, '4.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2103, 2116, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2104, 2116, 4, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2105, 2117, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2106, 2117, 2, '4.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2107, 2117, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2108, 2117, 4, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2109, 2118, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2110, 2118, 2, '11.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2111, 2118, 3, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2112, 2118, 4, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2113, 2119, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2114, 2119, 2, '23.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2115, 2119, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2116, 2119, 4, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2117, 2120, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2118, 2120, 2, '15.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2119, 2120, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2120, 2120, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2121, 2121, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2122, 2121, 2, '1.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2123, 2121, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2124, 2121, 4, '1.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2125, 2122, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2126, 2122, 2, '1.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2127, 2122, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2128, 2122, 4, '2.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2129, 2123, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2130, 2123, 2, '3.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2131, 2123, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2132, 2123, 4, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2133, 2124, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2134, 2124, 2, '8.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2135, 2124, 3, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2136, 2124, 4, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2137, 2125, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2138, 2125, 2, '2.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2139, 2125, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2140, 2125, 4, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2141, 2126, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2142, 2126, 2, '6.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2143, 2126, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2144, 2126, 4, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2145, 2127, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2146, 2127, 2, '11.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2147, 2127, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2148, 2127, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2149, 2128, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2150, 2128, 2, '2.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2151, 2128, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2152, 2128, 4, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2153, 1772, 1, '0.0000', NULL, '6.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2154, 1772, 2, '6.0000', NULL, '6.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2155, 1772, 3, '0.0000', NULL, '6.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2156, 1688, 1, '0.0000', NULL, '16.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2157, 1688, 2, '7.0000', NULL, '17.5563');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2158, 1688, 3, '3.0000', NULL, '16.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2159, 1689, 1, '-1.0000', NULL, '12.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2160, 1689, 2, '11.0000', NULL, '12.4637');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2161, 1689, 3, '3.0000', NULL, '12.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2162, 1779, 1, '0.0000', NULL, '0.3100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2163, 1779, 2, '67.0000', NULL, '0.3100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2164, 1779, 3, '-4.0000', NULL, '0.3100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2165, 1781, 1, '0.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2166, 1781, 2, '8.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2167, 1781, 3, '-1.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2168, 1782, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2169, 1782, 2, '8.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2170, 1782, 3, '10.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2174, 1785, 1, '0.0000', NULL, '14.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2175, 1785, 2, '5.0000', NULL, '14.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2176, 1785, 3, '2.0000', NULL, '14.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2177, 1787, 1, '0.0000', NULL, '0.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2178, 1787, 2, '28.0000', NULL, '0.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2179, 1787, 3, '0.0000', NULL, '0.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2180, 1788, 1, '-1.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2181, 1788, 2, '3.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2182, 1788, 3, '3.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2183, 1795, 1, '0.0000', NULL, '17.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2184, 1795, 2, '0.0000', NULL, '17.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2185, 1795, 3, '0.0000', NULL, '17.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2186, 1799, 1, '0.0000', NULL, '22.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2187, 1799, 2, '-1.0000', NULL, '22.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2188, 1799, 3, '3.0000', NULL, '22.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2193, 1803, 1, '0.0000', NULL, '9.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2194, 1803, 2, '0.0000', NULL, '9.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2195, 1803, 3, '0.0000', NULL, '9.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2196, 1803, 4, '0.0000', NULL, '9.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2197, 1804, 1, '0.0000', NULL, '4.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2198, 1804, 2, '9.0000', NULL, '4.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2199, 1804, 3, '0.0000', NULL, '4.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2200, 1805, 1, '0.0000', NULL, '4.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2201, 1805, 2, '4.0000', NULL, '4.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2202, 1805, 3, '-5.0000', NULL, '4.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2203, 1807, 1, '0.0000', NULL, '41.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2204, 1807, 2, '-6.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2205, 1807, 3, '-2.0000', NULL, '41.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2206, 1809, 1, '0.0000', NULL, '9.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2207, 1809, 2, '8.0000', NULL, '9.2727');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2208, 1809, 3, '5.0000', NULL, '9.1880');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2209, 1810, 1, '0.0000', NULL, '8.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2210, 1810, 2, '2.0000', NULL, '8.2860');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2211, 1810, 3, '1.0000', NULL, '8.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2212, 1811, 1, '0.0000', NULL, '14.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2213, 1811, 2, '5.0000', NULL, '14.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2214, 1811, 3, '6.0000', NULL, '14.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2215, 1812, 1, '0.0000', NULL, '7.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2216, 1812, 2, '18.0000', NULL, '7.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2217, 1812, 3, '5.0000', NULL, '7.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2218, 1814, 1, '0.0000', NULL, '13.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2219, 1814, 2, '-2.0000', NULL, '13.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2220, 1814, 3, '0.0000', NULL, '13.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2221, 1816, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2222, 1816, 2, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2223, 1816, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2224, 1817, 1, '0.0000', NULL, '9.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2225, 1817, 2, '2.0000', NULL, '9.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2226, 1817, 3, '0.0000', NULL, '9.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2227, 1818, 1, '0.0000', NULL, '14.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2228, 1818, 2, '0.0000', NULL, '14.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2229, 1818, 3, '2.0000', NULL, '14.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2230, 1819, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2231, 1819, 2, '4.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2232, 1819, 3, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2233, 1822, 1, '0.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2234, 1822, 2, '48.0000', NULL, '2.9811');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2235, 1822, 3, '-30.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2236, 1581, 1, '0.0000', NULL, '12.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2237, 1581, 2, '2.0000', NULL, '12.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2238, 1581, 3, '0.0000', NULL, '12.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2239, 1828, 1, '0.0000', NULL, '0.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2240, 1828, 2, '8.0000', NULL, '0.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2241, 1828, 3, '42.0000', NULL, '0.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2242, 1832, 1, '0.0000', NULL, '31.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2243, 1832, 2, '1.0000', NULL, '31.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2244, 1832, 3, '0.0000', NULL, '31.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2245, 1836, 1, '0.0000', NULL, '10.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2246, 1836, 2, '6.0000', NULL, '10.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2247, 1836, 3, '0.0000', NULL, '10.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2248, 1837, 1, '0.0000', NULL, '0.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2249, 1837, 2, '-12.0000', NULL, '0.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2250, 1837, 3, '-18.0000', NULL, '0.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2251, 1450, 1, '0.0000', NULL, '0.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2252, 1450, 2, '-117.0000', NULL, '0.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2253, 1450, 3, '30.0000', NULL, '0.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2254, 1839, 1, '0.0000', NULL, '6.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2255, 1839, 2, '14.0000', NULL, '6.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2256, 1839, 3, '7.0000', NULL, '6.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2257, 1840, 1, '0.0000', NULL, '0.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2258, 1840, 2, '16.0000', NULL, '0.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2259, 1840, 3, '36.0000', NULL, '0.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2260, 1841, 1, '0.0000', NULL, '0.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2261, 1841, 2, '29.0000', NULL, '0.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2262, 1841, 3, '-18.0000', NULL, '0.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2263, 1844, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2264, 1844, 2, '15.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2265, 1844, 3, '-5.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2266, 1845, 1, '0.0000', NULL, '19.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2267, 1845, 2, '2.0000', NULL, '19.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2268, 1845, 3, '0.0000', NULL, '19.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2269, 1848, 1, '0.0000', NULL, '0.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2270, 1848, 2, '97.0000', NULL, '0.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2271, 1848, 3, '50.0000', NULL, '0.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2272, 1852, 1, '0.0000', NULL, '14.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2273, 1852, 2, '3.0000', NULL, '14.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2274, 1852, 3, '6.0000', NULL, '14.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2275, 1307, 1, '0.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2276, 1307, 2, '-7.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2277, 1307, 3, '-3.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2278, 1854, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2279, 1854, 2, '5.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2280, 1854, 3, '-1.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2281, 1854, 4, '36.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2282, 1855, 1, '0.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2283, 1855, 2, '13.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2284, 1855, 3, '-1.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2285, 1855, 4, '38.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2286, 1856, 1, '0.0000', NULL, '4.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2287, 1856, 2, '6.0000', NULL, '4.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2288, 1856, 3, '-4.0000', NULL, '4.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2289, 1862, 1, '0.0000', NULL, '37.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2290, 1862, 2, '3.0000', NULL, '37.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2291, 1862, 3, '0.0000', NULL, '37.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2292, 1862, 4, '0.0000', NULL, '37.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2293, 1864, 1, '0.0000', NULL, '6.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2294, 1864, 2, '0.0000', NULL, '6.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2295, 1864, 3, '-1.0000', NULL, '6.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2300, 1866, 1, '0.0000', NULL, '4.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2301, 1866, 2, '4.0000', NULL, '4.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2302, 1866, 3, '0.0000', NULL, '4.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2303, 1867, 1, '0.0000', NULL, '10.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2304, 1867, 2, '-54.0000', NULL, '10.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2305, 1867, 3, '-30.0000', NULL, '1.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2306, 1868, 1, '0.0000', NULL, '4.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2307, 1868, 2, '5.0000', NULL, '4.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2308, 1868, 3, '-10.0000', NULL, '4.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2309, 1872, 1, '0.0000', NULL, '9.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2310, 1872, 2, '4.0000', NULL, '9.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2311, 1872, 3, '4.0000', NULL, '9.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2312, 1874, 1, '0.0000', NULL, '6.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2313, 1874, 2, '-5.0000', NULL, '6.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2314, 1874, 3, '0.0000', NULL, '6.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2315, 1878, 1, '0.0000', NULL, '0.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2316, 1878, 2, '0.0000', NULL, '0.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2317, 1878, 3, '0.0000', NULL, '0.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2318, 1878, 4, '50.0000', NULL, '0.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2319, 1757, 1, '0.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2320, 1757, 2, '17.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2321, 1757, 3, '5.0000', NULL, '3.5970');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2322, 1880, 1, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2323, 1880, 2, '5.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2324, 1880, 3, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2325, 1882, 1, '0.0000', NULL, '12.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2326, 1882, 2, '6.0000', NULL, '12.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2327, 1882, 3, '3.0000', NULL, '12.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2328, 1883, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2329, 1883, 2, '5.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2330, 1883, 3, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2331, 1884, 1, '0.0000', NULL, '4.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2332, 1884, 2, '2.0000', NULL, '4.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2333, 1884, 3, '1.0000', NULL, '5.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2334, 1885, 1, '0.0000', NULL, '5.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2335, 1885, 2, '6.0000', NULL, '5.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2336, 1885, 3, '0.0000', NULL, '5.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2337, 1886, 1, '0.0000', NULL, '227.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2338, 1886, 2, '13.0000', NULL, '227.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2339, 1886, 3, '0.0000', NULL, '227.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2340, 1445, 1, '0.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2341, 1445, 2, '14.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2342, 1445, 3, '0.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2343, 1446, 1, '0.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2344, 1446, 2, '1.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2345, 1446, 3, '0.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2346, 1449, 1, '0.0000', NULL, '0.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2347, 1449, 2, '37.0000', NULL, '0.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2348, 1449, 3, '0.0000', NULL, '0.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2349, 1452, 1, '0.0000', NULL, '1.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2350, 1452, 2, '39.0000', NULL, '1.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2351, 1452, 3, '0.0000', NULL, '1.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2352, 1455, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2353, 1455, 2, '2.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2354, 1455, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2355, 1925, 1, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2356, 1925, 2, '29.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2357, 1925, 3, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2358, 1926, 1, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2359, 1926, 2, '10.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2360, 1926, 3, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2361, 1931, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2362, 1931, 2, '-7.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2363, 1931, 3, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2364, 1936, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2365, 1936, 2, '5.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2366, 1936, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2367, 1937, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2368, 1937, 2, '5.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2369, 1937, 3, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2370, 1941, 1, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2371, 1941, 2, '2.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2372, 1941, 3, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2373, 1942, 1, '0.0000', NULL, '19.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2374, 1942, 2, '1.0000', NULL, '19.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2375, 1942, 3, '3.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2376, 1943, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2377, 1943, 2, '1.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2378, 1943, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2379, 1945, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2380, 1945, 2, '3.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2381, 1945, 3, '8.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2382, 1945, 4, '4.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2383, 1889, 1, '0.0000', NULL, '1.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2384, 1889, 2, '20.0000', NULL, '1.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2385, 1889, 3, '0.0000', NULL, '1.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2386, 1890, 1, '0.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2387, 1890, 2, '20.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2388, 1890, 3, '0.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2389, 1892, 1, '0.0000', NULL, '0.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2390, 1892, 2, '49.0000', NULL, '0.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2391, 1892, 3, '0.0000', NULL, '0.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2392, 1893, 1, '0.0000', NULL, '4.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2393, 1893, 2, '3.0000', NULL, '4.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2394, 1893, 3, '0.0000', NULL, '4.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2395, 1894, 1, '0.0000', NULL, '3.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2396, 1894, 2, '1.0000', NULL, '3.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2397, 1894, 3, '0.0000', NULL, '3.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2398, 1895, 1, '0.0000', NULL, '7.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2399, 1895, 2, '6.0000', NULL, '7.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2400, 1895, 3, '0.0000', NULL, '7.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2401, 1896, 1, '0.0000', NULL, '4.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2402, 1896, 2, '2.0000', NULL, '4.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2403, 1896, 3, '0.0000', NULL, '4.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2404, 1310, 1, '0.0000', NULL, '0.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2405, 1310, 2, '-41.0000', NULL, '0.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2406, 1310, 3, '-11.0000', NULL, '0.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2407, 1311, 1, '0.0000', NULL, '0.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2408, 1311, 2, '6.0000', NULL, '0.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2409, 1311, 3, '25.0000', NULL, '0.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2410, 1900, 1, '0.0000', NULL, '24.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2411, 1900, 2, '40.0000', NULL, '2.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2412, 1900, 3, '0.0000', NULL, '24.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2413, 1901, 1, '0.0000', NULL, '2.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2414, 1901, 2, '17.0000', NULL, '2.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2415, 1901, 3, '0.0000', NULL, '2.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2416, 1902, 1, '0.0000', NULL, '12.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2417, 1902, 2, '1.0000', NULL, '12.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2418, 1902, 3, '0.0000', NULL, '12.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2419, 1903, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2420, 1903, 2, '29.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2421, 1903, 3, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2422, 1910, 1, '0.0000', NULL, '1.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2423, 1910, 2, '-9.0000', NULL, '1.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2424, 1910, 3, '25.0000', NULL, '1.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2425, 1912, 1, '0.0000', NULL, '0.3100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2426, 1912, 2, '20.0000', NULL, '0.3100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2427, 1912, 3, '-17.0000', NULL, '0.3100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2428, 1908, 1, '0.0000', NULL, '1.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2429, 1908, 2, '34.0000', NULL, '1.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2430, 1908, 3, '0.0000', NULL, '1.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2431, 1914, 1, '0.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2432, 1914, 2, '3.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2433, 1914, 3, '0.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2434, 1914, 4, '6.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2435, 1916, 1, '0.0000', NULL, '8.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2436, 1916, 2, '4.0000', NULL, '8.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2437, 1916, 3, '0.0000', NULL, '8.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2438, 1917, 1, '0.0000', NULL, '4.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2439, 1917, 2, '1.0000', NULL, '4.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2440, 1917, 3, '0.0000', NULL, '4.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2441, 2129, 1, '0.0000', NULL, '6.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2442, 2129, 2, '4.0000', NULL, '6.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2443, 2129, 3, '0.0000', NULL, '6.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2444, 2129, 4, '0.0000', NULL, '6.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2448, 1300, 1, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2449, 1300, 2, '11.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2450, 1300, 3, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2451, 1301, 1, '0.0000', NULL, '1.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2452, 1301, 2, '7.0000', NULL, '1.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2453, 1301, 3, '0.0000', NULL, '1.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2454, 1303, 1, '0.0000', NULL, '1.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2455, 1303, 2, '171.0000', NULL, '1.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2456, 1303, 3, '0.0000', NULL, '1.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2457, 1304, 1, '0.0000', NULL, '1.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2458, 1304, 2, '5.0000', NULL, '1.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2459, 1304, 3, '0.0000', NULL, '1.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2460, 1305, 1, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2461, 1305, 2, '6.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2462, 1305, 3, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2463, 1309, 1, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2464, 1309, 2, '17.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2465, 1309, 3, '-1.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2466, 1312, 1, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2467, 1312, 2, '1.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2468, 1312, 3, '-1.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2469, 1313, 1, '0.0000', NULL, '0.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2470, 1313, 2, '60.0000', NULL, '0.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2471, 1313, 3, '-1.0000', NULL, '0.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2472, 1314, 1, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2473, 1314, 2, '39.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2474, 1314, 3, '-5.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2475, 1315, 1, '0.0000', NULL, '20.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2476, 1315, 2, '1.0000', NULL, '20.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2477, 1315, 3, '0.0000', NULL, '20.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2478, 1316, 1, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2479, 1316, 2, '8.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2480, 1316, 3, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2481, 1319, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2482, 1319, 2, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2483, 1319, 3, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2484, 1320, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2485, 1320, 2, '1.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2486, 1320, 3, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2487, 1321, 1, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2488, 1321, 2, '1.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2489, 1321, 3, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2490, 1322, 1, '0.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2491, 1322, 2, '14.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2492, 1322, 3, '1.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2493, 1302, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2494, 1302, 2, '43.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2495, 1302, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2496, 2130, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2497, 2130, 2, '4.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2498, 2130, 3, '2.0000', NULL, '17.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2499, 2130, 4, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2500, 2131, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2501, 2131, 2, '6.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2502, 2131, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2503, 2131, 4, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2504, 2132, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2505, 2132, 2, '9.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2506, 2132, 3, '14.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2507, 2132, 4, '0.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2508, 2133, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2509, 2133, 2, '2.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2510, 2133, 3, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2511, 2133, 4, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2512, 1718, 1, '0.0000', NULL, '8.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2513, 1718, 2, '0.0000', NULL, '8.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2514, 1718, 3, '0.0000', NULL, '8.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2515, 1719, 1, '0.0000', NULL, '4.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2516, 1719, 2, '3.0000', NULL, '4.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2517, 1719, 3, '0.0000', NULL, '4.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2518, 1720, 1, '0.0000', NULL, '0.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2519, 1720, 2, '-4.0000', NULL, '0.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2520, 1720, 3, '0.0000', NULL, '0.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2521, 1721, 1, '0.0000', NULL, '8.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2522, 1721, 2, '1.0000', NULL, '8.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2523, 1721, 3, '1.0000', NULL, '8.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2524, 1722, 1, '0.0000', NULL, '2.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2525, 1722, 2, '0.0000', NULL, '2.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2526, 1722, 3, '0.0000', NULL, '2.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2527, 1723, 1, '0.0000', NULL, '6.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2528, 1723, 2, '2.0000', NULL, '6.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2529, 1723, 3, '0.0000', NULL, '6.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2530, 1727, 1, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2531, 1727, 2, '-1.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2532, 1727, 3, '0.0000', NULL, '1.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2533, 1729, 1, '0.0000', NULL, '41.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2534, 1729, 2, '3.0000', NULL, '41.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2535, 1729, 3, '0.0000', NULL, '41.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2536, 1730, 1, '0.0000', NULL, '23.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2537, 1730, 2, '9.0000', NULL, '23.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2538, 1730, 3, '9.0000', NULL, '24.4163');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2539, 1731, 1, '0.0000', NULL, '19.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2540, 1731, 2, '5.0000', NULL, '19.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2541, 1731, 3, '0.0000', NULL, '19.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2542, 1732, 1, '0.0000', NULL, '36.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2543, 1732, 2, '2.0000', NULL, '36.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2544, 1732, 3, '0.0000', NULL, '36.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2545, 1733, 1, '0.0000', NULL, '8.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2546, 1733, 2, '2.0000', NULL, '8.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2547, 1733, 3, '0.0000', NULL, '8.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2548, 1734, 1, '0.0000', NULL, '14.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2549, 1734, 2, '3.0000', NULL, '14.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2550, 1734, 3, '0.0000', NULL, '14.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2551, 1735, 1, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2552, 1735, 2, '-14.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2553, 1735, 3, '56.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2554, 1738, 1, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2555, 1738, 2, '1.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2556, 1738, 3, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2557, 1739, 1, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2558, 1739, 2, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2559, 1739, 3, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2560, 1740, 1, '0.0000', NULL, '7.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2561, 1740, 2, '3.0000', NULL, '7.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2562, 1740, 3, '0.0000', NULL, '7.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2563, 1743, 1, '0.0000', NULL, '3.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2564, 1743, 2, '9.0000', NULL, '3.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2565, 1743, 3, '1.0000', NULL, '3.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2566, 1746, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2567, 1746, 2, '-17.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2568, 1746, 3, '58.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2569, 1748, 1, '0.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2570, 1748, 2, '10.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2571, 1748, 3, '0.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2572, 1750, 1, '0.0000', NULL, '31.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2573, 1750, 2, '4.0000', NULL, '31.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2574, 1750, 3, '0.0000', NULL, '31.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2575, 1751, 1, '0.0000', NULL, '3.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2576, 1751, 2, '3.0000', NULL, '3.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2577, 1751, 3, '5.0000', NULL, '3.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2578, 1753, 1, '0.0000', NULL, '4.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2579, 1753, 2, '3.0000', NULL, '4.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2580, 1753, 3, '2.0000', NULL, '4.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2581, 1755, 1, '0.0000', NULL, '5.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2582, 1755, 2, '8.0000', NULL, '5.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2583, 1755, 3, '10.0000', NULL, '5.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2584, 1756, 1, '0.0000', NULL, '4.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2585, 1756, 2, '22.0000', NULL, '4.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2586, 1756, 3, '-3.0000', NULL, '4.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2587, 1758, 1, '0.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2588, 1758, 2, '4.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2589, 1758, 3, '2.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2590, 1760, 1, '0.0000', NULL, '1.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2591, 1760, 2, '18.0000', NULL, '1.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2592, 1760, 3, '-4.0000', NULL, '1.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2593, 1761, 1, '0.0000', NULL, '1.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2594, 1761, 2, '57.0000', NULL, '1.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2595, 1761, 3, '4.0000', NULL, '1.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2596, 1762, 1, '0.0000', NULL, '8.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2597, 1762, 2, '4.0000', NULL, '8.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2598, 1762, 3, '3.0000', NULL, '9.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2599, 1763, 1, '0.0000', NULL, '4.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2600, 1763, 2, '11.0000', NULL, '4.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2601, 1763, 3, '8.0000', NULL, '4.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2602, 1494, 1, '0.0000', NULL, '4.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2603, 1494, 2, '2.0000', NULL, '7.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2604, 1494, 3, '5.0000', NULL, '4.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2605, 1765, 1, '0.0000', NULL, '5.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2606, 1765, 2, '7.0000', NULL, '5.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2607, 1765, 3, '-2.0000', NULL, '5.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2608, 1766, 1, '0.0000', NULL, '2.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2609, 1766, 2, '16.0000', NULL, '2.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2610, 1766, 3, '5.0000', NULL, '2.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2611, 1767, 1, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2612, 1767, 2, '8.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2613, 1767, 3, '3.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2614, 1459, 1, '0.0000', NULL, '78.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2615, 1459, 2, '-1.0000', NULL, '78.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2616, 1459, 3, '0.0000', NULL, '78.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2617, 1460, 1, '0.0000', NULL, '10.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2618, 1460, 2, '-2.0000', NULL, '10.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2619, 1460, 3, '0.0000', NULL, '10.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2620, 1461, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2621, 1461, 2, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2622, 1461, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2623, 1461, 4, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2624, 1469, 1, '0.0000', NULL, '6.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2625, 1469, 2, '0.0000', NULL, '6.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2626, 1469, 3, '0.0000', NULL, '6.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2627, 1471, 1, '0.0000', NULL, '6.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2628, 1471, 2, '-1.0000', NULL, '6.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2629, 1471, 3, '0.0000', NULL, '6.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2630, 1472, 1, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2631, 1472, 2, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2632, 1472, 3, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2633, 1477, 1, '0.0000', NULL, '40.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2634, 1477, 2, '1.0000', NULL, '40.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2635, 1477, 3, '0.0000', NULL, '40.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2636, 1388, 1, '0.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2637, 1388, 2, '14.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2638, 1388, 3, '-1.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2639, 1390, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2640, 1390, 2, '8.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2641, 1390, 3, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2642, 1393, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2643, 1393, 2, '7.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2644, 1393, 3, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2645, 1394, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2646, 1394, 2, '12.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2647, 1394, 3, '-1.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2648, 1395, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2649, 1395, 2, '9.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2650, 1395, 3, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2651, 1396, 1, '0.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2652, 1396, 2, '17.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2653, 1396, 3, '0.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2654, 1397, 1, '0.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2655, 1397, 2, '13.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2656, 1397, 3, '0.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2657, 1398, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2658, 1398, 2, '15.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2659, 1398, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2660, 1399, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2661, 1399, 2, '16.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2662, 1399, 3, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2663, 1400, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2664, 1400, 2, '8.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2665, 1400, 3, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2666, 1401, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2667, 1401, 2, '21.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2668, 1401, 3, '-1.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2669, 1402, 1, '0.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2670, 1402, 2, '17.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2671, 1402, 3, '0.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2672, 1409, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2673, 1409, 2, '16.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2674, 1409, 3, '5.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2675, 1410, 1, '0.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2676, 1410, 2, '30.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2677, 1410, 3, '-1.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2678, 1412, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2679, 1412, 2, '7.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2680, 1412, 3, '4.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2681, 1413, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2682, 1413, 2, '7.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2683, 1413, 3, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2684, 1416, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2685, 1416, 2, '13.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2686, 1416, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2687, 1417, 1, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2688, 1417, 2, '9.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2689, 1417, 3, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2690, 1418, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2691, 1418, 2, '6.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2692, 1418, 3, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2693, 1420, 1, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2694, 1420, 2, '33.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2695, 1420, 3, '-2.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2696, 1422, 1, '0.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2697, 1422, 2, '7.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2698, 1422, 3, '-1.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2699, 1428, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2700, 1428, 2, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2701, 1428, 3, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2702, 1428, 4, '5.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2703, 1429, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2704, 1429, 2, '26.0000', NULL, '13.0444');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2705, 1429, 3, '3.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2706, 1430, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2707, 1430, 2, '10.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2708, 1430, 3, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2709, 1431, 1, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2710, 1431, 2, '14.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2711, 1431, 3, '-2.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2712, 1433, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2713, 1433, 2, '8.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2714, 1433, 3, '5.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2715, 1434, 1, '0.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2716, 1434, 2, '6.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2717, 1434, 3, '-1.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2718, 1435, 1, '0.0000', NULL, '18.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2719, 1435, 2, '9.0000', NULL, '18.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2720, 1435, 3, '1.0000', NULL, '18.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2721, 1436, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2722, 1436, 2, '9.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2723, 1436, 3, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2724, 1437, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2725, 1437, 2, '6.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2726, 1437, 3, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2727, 1439, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2728, 1439, 2, '46.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2729, 1439, 3, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2730, 1440, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2731, 1440, 2, '14.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2732, 1440, 3, '-1.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2737, 1369, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2738, 1369, 2, '9.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2739, 1369, 3, '9.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2740, 1370, 1, '0.0000', NULL, '7.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2741, 1370, 2, '5.0000', NULL, '7.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2742, 1370, 3, '0.0000', NULL, '7.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2743, 1372, 1, '-2.0000', NULL, '7.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2744, 1372, 2, '0.0000', NULL, '7.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2745, 1372, 3, '0.0000', NULL, '7.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2746, 1374, 1, '0.0000', NULL, '55.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2747, 1374, 2, '4.0000', NULL, '55.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2748, 1374, 3, '0.0000', NULL, '55.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2749, 1379, 1, '0.0000', NULL, '82.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2750, 1379, 2, '0.0000', NULL, '83.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2751, 1379, 3, '0.0000', NULL, '82.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2752, 1381, 2, '0.0000', NULL, '6.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2753, 1381, 3, '10.0000', NULL, '-6790.6178');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2754, 1382, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2755, 1382, 2, '3.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2756, 1382, 3, '-1.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2757, 1383, 1, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2758, 1383, 2, '2.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2759, 1383, 3, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2760, 1384, 1, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2761, 1384, 2, '2.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2762, 1384, 3, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2763, 1385, 1, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2764, 1385, 2, '1.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2765, 1385, 3, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2766, 1493, 1, '0.0000', NULL, '1.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2767, 1493, 2, '14.0000', NULL, '1.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2768, 1493, 3, '-1.0000', NULL, '1.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2772, 1497, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2773, 1497, 2, '2.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2774, 1497, 3, '-1.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2775, 1498, 1, '0.0000', NULL, '0.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2776, 1498, 2, '48.0000', NULL, '0.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2777, 1498, 3, '25.0000', NULL, '0.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2778, 1499, 1, '0.0000', NULL, '0.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2779, 1499, 2, '10.0000', NULL, '0.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2780, 1499, 3, '-11.0000', NULL, '0.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2781, 1512, 1, '0.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2782, 1512, 2, '6.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2783, 1512, 3, '-2.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2784, 1517, 1, '0.0000', NULL, '23.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2785, 1517, 2, '2.0000', NULL, '23.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2786, 1517, 3, '0.0000', NULL, '23.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2787, 2135, 1, '-2.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2788, 2135, 2, '21.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2789, 2135, 3, '73.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2790, 2135, 4, '-5.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2791, 1519, 1, '-1.0000', NULL, '3.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2792, 1519, 2, '23.0000', NULL, '3.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2793, 1519, 3, '5.0000', NULL, '3.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2794, 1520, 1, '0.0000', NULL, '1.4700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2795, 1520, 2, '26.0000', NULL, '1.4700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2796, 1520, 3, '0.0000', NULL, '1.4700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2797, 1521, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2798, 1521, 2, '4.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2799, 1521, 3, '-1.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2800, 1523, 1, '0.0000', NULL, '0.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2801, 1523, 2, '65.0000', NULL, '0.9596');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2802, 1523, 3, '40.0000', NULL, '1.0061');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2803, 1524, 1, '0.0000', NULL, '3.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2804, 1524, 2, '90.0000', NULL, '4.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2805, 1524, 3, '50.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2806, 1531, 1, '0.0000', NULL, '0.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2807, 1531, 2, '47.0000', NULL, '0.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2808, 1531, 3, '-5.0000', NULL, '0.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2809, 1533, 1, '0.0000', NULL, '3.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2810, 1533, 2, '21.0000', NULL, '3.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2811, 1533, 3, '-10.0000', NULL, '3.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2812, 1534, 1, '0.0000', NULL, '9.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2813, 1534, 2, '13.0000', NULL, '9.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2814, 1534, 3, '0.0000', NULL, '9.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2815, 1535, 1, '0.0000', NULL, '7.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2816, 1535, 2, '2.0000', NULL, '7.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2817, 1535, 3, '0.0000', NULL, '7.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2818, 1537, 1, '0.0000', NULL, '40.2700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2819, 1537, 2, '4.0000', NULL, '46.2841');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2820, 1537, 3, '0.0000', NULL, '40.2700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2821, 1538, 1, '0.0000', NULL, '31.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2822, 1538, 2, '4.0000', NULL, '31.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2823, 1538, 3, '0.0000', NULL, '31.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2824, 1553, 1, '0.0000', NULL, '116.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2825, 1553, 2, '2.0000', NULL, '116.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2826, 1553, 3, '0.0000', NULL, '116.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2831, 1552, 1, '0.0000', NULL, '116.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2832, 1552, 2, '2.0000', NULL, '116.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2833, 1552, 3, '0.0000', NULL, '116.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2834, 1554, 1, '0.0000', NULL, '3.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2835, 1554, 2, '1.0000', NULL, '3.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2836, 1554, 3, '7.0000', NULL, '2.3063');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2837, 1557, 1, '0.0000', NULL, '7.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2838, 1557, 2, '7.0000', NULL, '7.9351');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2839, 1557, 3, '-2.0000', NULL, '7.9506');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2840, 1559, 1, '0.0000', NULL, '22.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2841, 1559, 2, '-1.0000', NULL, '22.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2842, 1559, 3, '-1.0000', NULL, '22.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2843, 1560, 1, '0.0000', NULL, '23.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2844, 1560, 2, '8.0000', NULL, '23.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2845, 1560, 3, '0.0000', NULL, '23.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2846, 1561, 1, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2847, 1561, 2, '8.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2848, 1561, 3, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2849, 1562, 1, '0.0000', NULL, '5.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2850, 1562, 2, '3.0000', NULL, '5.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2851, 1562, 3, '0.0000', NULL, '5.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2852, 1563, 1, '0.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2853, 1563, 2, '1.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2854, 1563, 3, '0.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2855, 1565, 1, '0.0000', NULL, '18.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2856, 1565, 2, '2.0000', NULL, '18.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2857, 1565, 3, '3.0000', NULL, '18.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2858, 1567, 1, '0.0000', NULL, '13.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2859, 1567, 2, '3.0000', NULL, '13.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2860, 1567, 3, '3.0000', NULL, '13.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2861, 1569, 1, '0.0000', NULL, '14.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2862, 1569, 2, '1.0000', NULL, '14.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2863, 1569, 3, '3.0000', NULL, '14.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2864, 1572, 1, '0.0000', NULL, '1.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2865, 1572, 2, '2.0000', NULL, '1.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2866, 1572, 3, '-2.0000', NULL, '1.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2867, 1576, 1, '0.0000', NULL, '7.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2868, 1576, 2, '1.0000', NULL, '7.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2869, 1576, 3, '0.0000', NULL, '7.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2870, 1577, 1, '0.0000', NULL, '2.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2871, 1577, 2, '4.0000', NULL, '2.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2872, 1577, 3, '-1.0000', NULL, '2.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2873, 1578, 1, '0.0000', NULL, '1.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2874, 1578, 2, '5.0000', NULL, '1.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2875, 1578, 3, '0.0000', NULL, '1.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2879, 1580, 1, '0.0000', NULL, '0.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2880, 1580, 2, '33.0000', NULL, '0.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2881, 1580, 3, '44.0000', NULL, '0.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2882, 1585, 1, '0.0000', NULL, '8.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2883, 1585, 2, '0.0000', NULL, '8.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2884, 1585, 3, '0.0000', NULL, '8.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2885, 1590, 1, '0.0000', NULL, '1.7100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2886, 1590, 2, '46.0000', NULL, '1.7100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2887, 1590, 3, '-4.0000', NULL, '1.7100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2888, 1593, 1, '0.0000', NULL, '5.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2889, 1593, 2, '44.0000', NULL, '5.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2890, 1593, 3, '0.0000', NULL, '5.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2891, 1595, 1, '0.0000', NULL, '18.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2892, 1595, 2, '6.0000', NULL, '18.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2893, 1595, 3, '-1.0000', NULL, '18.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2894, 1596, 1, '0.0000', NULL, '2.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2895, 1596, 2, '4.0000', NULL, '2.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2896, 1596, 3, '4.0000', NULL, '2.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2897, 1598, 1, '0.0000', NULL, '2.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2898, 1598, 2, '2.0000', NULL, '2.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2899, 1598, 3, '0.0000', NULL, '2.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2900, 1599, 1, '0.0000', NULL, '12.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2901, 1599, 2, '1.0000', NULL, '12.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2902, 1599, 3, '0.0000', NULL, '12.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2903, 1600, 1, '0.0000', NULL, '7.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2904, 1600, 2, '1.0000', NULL, '7.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2905, 1600, 3, '0.0000', NULL, '7.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2906, 1602, 1, '0.0000', NULL, '6.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2907, 1602, 2, '106.0000', NULL, '6.9347');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2908, 1602, 3, '-4.0000', NULL, '7.0190');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2909, 1603, 1, '0.0000', NULL, '55.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2910, 1603, 2, '8.0000', NULL, '55.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2911, 1603, 3, '2.0000', NULL, '55.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2912, 1604, 1, '0.0000', NULL, '70.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2913, 1604, 2, '7.0000', NULL, '68.9248');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2914, 1604, 3, '0.0000', NULL, '70.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2915, 1605, 1, '0.0000', NULL, '24.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2916, 1605, 2, '4.0000', NULL, '24.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2917, 1605, 3, '4.0000', NULL, '24.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2918, 1606, 1, '0.0000', NULL, '4.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2919, 1606, 2, '20.0000', NULL, '4.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2920, 1606, 3, '0.0000', NULL, '4.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2921, 1608, 1, '0.0000', NULL, '3.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2922, 1608, 2, '4.0000', NULL, '3.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2923, 1608, 3, '2.0000', NULL, '3.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2924, 1612, 1, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2925, 1612, 2, '4.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2926, 1612, 3, '-6.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2927, 1613, 1, '0.0000', NULL, '9.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2928, 1613, 2, '2.0000', NULL, '9.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2929, 1613, 3, '0.0000', NULL, '9.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2930, 1617, 1, '0.0000', NULL, '4.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2931, 1617, 2, '4.0000', NULL, '4.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2932, 1617, 3, '0.0000', NULL, '4.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2933, 1619, 1, '0.0000', NULL, '9.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2934, 1619, 2, '-7.0000', NULL, '9.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2935, 1619, 3, '-3.0000', NULL, '9.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2936, 1627, 1, '0.0000', NULL, '46.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2937, 1627, 2, '1.0000', NULL, '46.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2938, 1627, 3, '2.0000', NULL, '46.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2939, 1706, 1, '0.0000', NULL, '15.2700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2940, 1706, 2, '3.0000', NULL, '14.8866');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2941, 1706, 3, '3.0000', NULL, '13.7192');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2942, 1707, 1, '0.0000', NULL, '25.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2943, 1707, 2, '1.0000', NULL, '25.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2944, 1707, 3, '2.0000', NULL, '25.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2945, 1708, 1, '0.0000', NULL, '20.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2946, 1708, 2, '2.0000', NULL, '20.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2947, 1708, 3, '-1.0000', NULL, '20.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2948, 1710, 1, '0.0000', NULL, '3.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2949, 1710, 2, '1.0000', NULL, '3.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2950, 1710, 3, '2.0000', NULL, '3.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2951, 1711, 1, '0.0000', NULL, '7.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2952, 1711, 2, '1.0000', NULL, '7.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2953, 1711, 3, '0.0000', NULL, '7.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2954, 1712, 1, '0.0000', NULL, '9.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2955, 1712, 2, '0.0000', NULL, '9.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2956, 1712, 3, '0.0000', NULL, '9.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2957, 1713, 1, '0.0000', NULL, '15.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2958, 1713, 2, '4.0000', NULL, '15.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2959, 1713, 3, '0.0000', NULL, '15.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2960, 1715, 1, '0.0000', NULL, '4.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2961, 1715, 2, '-1.0000', NULL, '4.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2962, 1715, 3, '0.0000', NULL, '4.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2963, 1628, 1, '0.0000', NULL, '5.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2964, 1628, 2, '4.0000', NULL, '5.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2965, 1628, 3, '0.0000', NULL, '5.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2966, 1629, 1, '0.0000', NULL, '13.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2967, 1629, 2, '6.0000', NULL, '13.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2968, 1629, 3, '3.0000', NULL, '15.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2969, 1630, 1, '0.0000', NULL, '16.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2970, 1630, 2, '3.0000', NULL, '16.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2971, 1630, 3, '0.0000', NULL, '16.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2972, 1634, 1, '0.0000', NULL, '22.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2973, 1634, 2, '5.0000', NULL, '23.0102');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2974, 1634, 3, '3.0000', NULL, '22.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2975, 1638, 1, '0.0000', NULL, '5.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2976, 1638, 2, '11.0000', NULL, '5.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2977, 1638, 3, '0.0000', NULL, '5.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2978, 1639, 1, '0.0000', NULL, '6.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2979, 1639, 2, '2.0000', NULL, '6.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2980, 1639, 3, '-3.0000', NULL, '6.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2981, 1640, 1, '0.0000', NULL, '2.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2982, 1640, 2, '-1.0000', NULL, '2.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2983, 1640, 3, '-2.0000', NULL, '2.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2984, 1645, 1, '0.0000', NULL, '4.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2985, 1645, 2, '3.0000', NULL, '4.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2986, 1645, 3, '0.0000', NULL, '4.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2987, 1646, 1, '0.0000', NULL, '4.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2988, 1646, 2, '12.0000', NULL, '4.6016');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2989, 1646, 3, '4.0000', NULL, '4.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2990, 1647, 1, '0.0000', NULL, '4.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2991, 1647, 2, '0.0000', NULL, '4.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2992, 1647, 3, '8.0000', NULL, '4.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2993, 1650, 1, '0.0000', NULL, '14.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2994, 1650, 2, '2.0000', NULL, '14.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2995, 1650, 3, '1.0000', NULL, '14.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2996, 1651, 1, '0.0000', NULL, '6.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2997, 1651, 2, '17.0000', NULL, '7.1386');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2998, 1651, 3, '2.0000', NULL, '6.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (2999, 1652, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3000, 1652, 2, '6.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3001, 1652, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3002, 1653, 1, '0.0000', NULL, '8.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3003, 1653, 2, '9.0000', NULL, '8.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3004, 1653, 3, '10.0000', NULL, '8.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3005, 1661, 1, '0.0000', NULL, '32.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3006, 1661, 2, '2.0000', NULL, '32.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3007, 1661, 3, '-1.0000', NULL, '32.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3008, 1665, 1, '0.0000', NULL, '1.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3009, 1665, 2, '29.0000', NULL, '1.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3010, 1665, 3, '-11.0000', NULL, '1.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3011, 1673, 1, '0.0000', NULL, '12.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3012, 1673, 2, '22.0000', NULL, '12.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3013, 1673, 3, '-4.0000', NULL, '12.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3014, 1680, 1, '0.0000', NULL, '4.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3015, 1680, 2, '3.0000', NULL, '4.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3016, 1680, 3, '0.0000', NULL, '5.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3017, 1681, 1, '0.0000', NULL, '73.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3018, 1681, 2, '12.0000', NULL, '73.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3019, 1681, 3, '0.0000', NULL, '73.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3020, 1682, 1, '0.0000', NULL, '10.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3021, 1682, 2, '3.0000', NULL, '10.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3022, 1682, 3, '0.0000', NULL, '10.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3023, 1685, 1, '0.0000', NULL, '40.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3024, 1685, 2, '8.0000', NULL, '40.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3025, 1685, 3, '0.0000', NULL, '40.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3026, 1691, 1, '0.0000', NULL, '10.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3027, 1691, 2, '2.0000', NULL, '10.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3028, 1691, 3, '0.0000', NULL, '10.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3029, 1692, 1, '0.0000', NULL, '10.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3030, 1692, 2, '3.0000', NULL, '10.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3031, 1692, 3, '-1.0000', NULL, '10.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3032, 1693, 1, '0.0000', NULL, '7.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3033, 1693, 2, '3.0000', NULL, '7.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3034, 1693, 3, '2.0000', NULL, '7.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3035, 1694, 1, '0.0000', NULL, '7.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3036, 1694, 2, '4.0000', NULL, '7.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3037, 1694, 3, '2.0000', NULL, '7.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3038, 1696, 1, '0.0000', NULL, '10.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3039, 1696, 2, '2.0000', NULL, '10.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3040, 1696, 3, '-1.0000', NULL, '10.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3041, 1698, 1, '0.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3042, 1698, 2, '2.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3043, 1698, 3, '0.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3044, 1699, 1, '0.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3045, 1699, 2, '0.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3046, 1699, 3, '0.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3047, 1701, 1, '0.0000', NULL, '14.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3048, 1701, 2, '3.0000', NULL, '14.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3049, 1701, 3, '0.0000', NULL, '14.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3050, 1703, 1, '0.0000', NULL, '7.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3051, 1703, 2, '7.0000', NULL, '7.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3052, 1703, 3, '0.0000', NULL, '7.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3053, 1796, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3054, 1796, 2, '-3.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3055, 1796, 3, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3056, 1821, 1, '0.0000', NULL, '13.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3057, 1821, 2, '0.0000', NULL, '13.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3058, 1821, 3, '0.0000', NULL, '13.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3059, 1833, 1, '0.0000', NULL, '20.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3060, 1833, 2, '0.0000', NULL, '20.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3061, 1833, 3, '1.0000', NULL, '20.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3062, 1833, 4, '0.0000', NULL, '23.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3063, 1877, 1, '0.0000', NULL, '16.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3064, 1877, 2, '0.0000', NULL, '16.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3065, 1877, 3, '0.0000', NULL, '16.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3066, 1877, 4, '0.0000', NULL, '16.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3067, 1909, 1, '0.0000', NULL, '6.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3068, 1909, 2, '0.0000', NULL, '6.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3069, 1909, 3, '0.0000', NULL, '6.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3070, 1940, 1, '0.0000', NULL, '3.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3071, 1940, 2, '0.0000', NULL, '3.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3072, 1940, 3, '0.0000', NULL, '3.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3073, 1940, 4, '0.0000', NULL, '3.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3074, 2136, 1, '0.0000', NULL, '0.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3075, 2136, 2, '-21.0000', NULL, '0.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3076, 2136, 3, '0.0000', NULL, '0.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3077, 2136, 4, '114.0000', NULL, '0.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3078, 2137, 1, '0.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3079, 2137, 2, '-1.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3080, 2137, 3, '0.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3081, 2137, 4, '5.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3082, 2138, 1, '0.0000', NULL, '12.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3083, 2138, 2, '-1.0000', NULL, '12.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3084, 2138, 3, '0.0000', NULL, '12.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3085, 2138, 4, '5.0000', NULL, '12.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3086, 2139, 1, '0.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3087, 2139, 2, '0.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3088, 2139, 3, '0.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3089, 2139, 4, '1.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3090, 2140, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3091, 2140, 2, '-2.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3092, 2140, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3093, 2140, 4, '3.0000', NULL, '7.7858');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3098, 2142, 1, '0.0000', NULL, '57.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3099, 2142, 2, '-5.0000', NULL, '57.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3100, 2142, 3, '2.0000', NULL, '57.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3101, 2142, 4, '5.0000', NULL, '57.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3102, 2143, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3103, 2143, 2, '-10.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3104, 2143, 3, '-1.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3105, 2143, 4, '15.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3106, 2144, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3107, 2144, 2, '-6.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3108, 2144, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3109, 2144, 4, '5.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3110, 2145, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3111, 2145, 2, '-2.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3112, 2145, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3113, 2145, 4, '6.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3118, 2147, 1, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3119, 2147, 2, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3120, 2147, 3, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3121, 2147, 4, '3.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3122, 2148, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3123, 2148, 2, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3124, 2148, 3, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3125, 2148, 4, '2.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3126, 2149, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3127, 2149, 2, '-1.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3128, 2149, 3, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3129, 2149, 4, '3.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3130, 2150, 1, '0.0000', NULL, '30.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3131, 2150, 2, '-2.0000', NULL, '30.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3132, 2150, 3, '0.0000', NULL, '30.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3133, 2150, 4, '2.0000', NULL, '30.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3134, 2151, 1, '0.0000', NULL, '17.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3135, 2151, 2, '-1.0000', NULL, '17.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3136, 2151, 3, '0.0000', NULL, '17.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3137, 2151, 4, '3.0000', NULL, '17.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3138, 2152, 1, '0.0000', NULL, '10.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3139, 2152, 2, '0.0000', NULL, '10.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3140, 2152, 3, '2.0000', NULL, '10.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3141, 2152, 4, '7.0000', NULL, '10.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3142, 2153, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3143, 2153, 2, '-2.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3144, 2153, 3, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3145, 2153, 4, '3.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3146, 2154, 1, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3147, 2154, 2, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3148, 2154, 3, '5.0000', NULL, '10.4743');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3149, 2154, 4, '11.0000', NULL, '10.6849');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3150, 2155, 1, '0.0000', NULL, '21.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3151, 2155, 2, '2.0000', NULL, '21.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3152, 2155, 3, '0.0000', NULL, '21.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3153, 2155, 4, '0.0000', NULL, '21.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3154, 2156, 1, '0.0000', NULL, '3.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3155, 2156, 2, '10.0000', NULL, '3.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3156, 2156, 3, '9.0000', NULL, '3.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3157, 2156, 4, '0.0000', NULL, '3.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3158, 2157, 1, '0.0000', NULL, '0.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3159, 2157, 2, '4.0000', NULL, '0.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3160, 2157, 3, '0.0000', NULL, '0.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3161, 2157, 4, '20.0000', NULL, '0.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3166, 2159, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3167, 2159, 2, '-2.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3168, 2159, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3169, 2159, 4, '9.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3170, 2160, 1, '0.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3171, 2160, 2, '1.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3172, 2160, 3, '0.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3173, 2160, 4, '4.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3174, 2161, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3175, 2161, 2, '-2.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3176, 2161, 3, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3177, 2161, 4, '4.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3178, 2162, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3179, 2162, 2, '-1.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3180, 2162, 3, '12.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3181, 2162, 4, '12.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3182, 2163, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3183, 2163, 2, '-4.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3184, 2163, 3, '3.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3185, 2163, 4, '4.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3186, 2164, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3187, 2164, 2, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3188, 2164, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3189, 2164, 4, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3190, 2165, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3191, 2165, 2, '3.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3192, 2165, 3, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3193, 2165, 4, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3194, 2166, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3195, 2166, 2, '2.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3196, 2166, 3, '3.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3197, 2166, 4, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3198, 2167, 1, '0.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3199, 2167, 2, '12.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3200, 2167, 3, '-19.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3201, 2167, 4, '3.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3202, 2168, 1, '0.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3203, 2168, 2, '8.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3204, 2168, 3, '-1.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3205, 2168, 4, '3.0000', NULL, '27.2228');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3206, 2169, 1, '0.0000', NULL, '0.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3207, 2169, 2, '111.0000', NULL, '0.9502');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3208, 2169, 3, '-39.0000', NULL, '0.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3209, 2169, 4, '86.0000', NULL, '3.8397');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3210, 2170, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3211, 2170, 2, '1.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3212, 2170, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3213, 2170, 4, '-1.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3214, 2171, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3215, 2171, 2, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3216, 2171, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3217, 2171, 4, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3218, 2172, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3219, 2172, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3220, 2172, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3221, 2172, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3222, 2173, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3223, 2173, 2, '1.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3224, 2173, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3225, 2173, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3226, 2174, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3227, 2174, 2, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3228, 2174, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3229, 2174, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3230, 2175, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3231, 2175, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3232, 2175, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3233, 2175, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3234, 2176, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3235, 2176, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3236, 2176, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3237, 2176, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3238, 2177, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3239, 2177, 2, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3240, 2177, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3241, 2177, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3242, 2178, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3243, 2178, 2, '-4.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3244, 2178, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3245, 2178, 4, '1.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3246, 2179, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3247, 2179, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3248, 2179, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3249, 2179, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3250, 2180, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3251, 2180, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3252, 2180, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3253, 2180, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3254, 2181, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3255, 2181, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3256, 2181, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3257, 2181, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3258, 2182, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3259, 2182, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3260, 2182, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3261, 2182, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3262, 2183, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3263, 2183, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3264, 2183, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3265, 2183, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3266, 2184, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3267, 2184, 2, '1.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3268, 2184, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3269, 2184, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3270, 2185, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3271, 2185, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3272, 2185, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3273, 2185, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3274, 2186, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3275, 2186, 2, '6.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3276, 2186, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3277, 2186, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3278, 2187, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3279, 2187, 2, '1.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3280, 2187, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3281, 2187, 4, '-1.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3282, 2188, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3283, 2188, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3284, 2188, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3285, 2188, 4, '-1.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3286, 2189, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3287, 2189, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3288, 2189, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3289, 2189, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3290, 2190, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3291, 2190, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3292, 2190, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3293, 2190, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3294, 2191, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3295, 2191, 2, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3296, 2191, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3297, 2191, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3298, 2192, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3299, 2192, 2, '3.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3300, 2192, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3301, 2192, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3302, 2193, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3303, 2193, 2, '1.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3304, 2193, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3305, 2193, 4, '-2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3306, 2194, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3307, 2194, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3308, 2194, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3309, 2194, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3310, 2195, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3311, 2195, 2, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3312, 2195, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3313, 2195, 4, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3314, 2196, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3315, 2196, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3316, 2196, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3317, 2196, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3318, 2197, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3319, 2197, 2, '1.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3320, 2197, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3321, 2197, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3322, 2198, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3323, 2198, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3324, 2198, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3325, 2198, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3326, 2199, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3327, 2199, 2, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3328, 2199, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3329, 2199, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3330, 2200, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3331, 2200, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3332, 2200, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3333, 2200, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3334, 2201, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3335, 2201, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3336, 2201, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3337, 2201, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3338, 2202, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3339, 2202, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3340, 2202, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3341, 2202, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3342, 2203, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3343, 2203, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3344, 2203, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3345, 2203, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3346, 2204, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3347, 2204, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3348, 2204, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3349, 2204, 4, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3350, 2205, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3351, 2205, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3352, 2205, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3353, 2205, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3354, 2206, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3355, 2206, 2, '1.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3356, 2206, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3357, 2206, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3358, 2207, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3359, 2207, 2, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3360, 2207, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3361, 2207, 4, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3362, 2208, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3363, 2208, 2, '2.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3364, 2208, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3365, 2208, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3366, 2209, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3367, 2209, 2, '1.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3368, 2209, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3369, 2209, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3370, 2210, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3371, 2210, 2, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3372, 2210, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3373, 2210, 4, '3.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3374, 2211, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3375, 2211, 2, '-3.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3376, 2211, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3377, 2211, 4, '2.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3378, 2212, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3379, 2212, 2, '1.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3380, 2212, 3, '1.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3381, 2212, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3382, 2213, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3383, 2213, 2, '-1.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3384, 2213, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3385, 2213, 4, '2.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3386, 2214, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3387, 2214, 2, '8.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3388, 2214, 3, '3.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3389, 2214, 4, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3390, 2215, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3391, 2215, 2, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3392, 2215, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3393, 2215, 4, '1.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3394, 2216, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3395, 2216, 2, '1.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3396, 2216, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3397, 2216, 4, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3398, 2217, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3399, 2217, 2, '1.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3400, 2217, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3401, 2217, 4, '1.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3402, 2218, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3403, 2218, 2, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3404, 2218, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3405, 2218, 4, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3406, 2219, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3407, 2219, 2, '3.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3408, 2219, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3409, 2219, 4, '-3.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3410, 2220, 1, '0.0000', NULL, '5.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3411, 2220, 2, '3.0000', NULL, '2.1473');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3412, 2220, 3, '12.0000', NULL, '5.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3413, 2220, 4, '18.0000', NULL, '5.4170');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3414, 2221, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3415, 2221, 2, '30.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3416, 2221, 3, '5.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3417, 2221, 4, '5.0000', NULL, '14.4737');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3418, 2222, 1, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3419, 2222, 2, '3.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3420, 2222, 3, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3421, 2222, 4, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3422, 1532, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3423, 1532, 2, '26.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3424, 1532, 3, '-3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3425, 2223, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3426, 2223, 2, '2.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3427, 2223, 3, '2.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3428, 2223, 4, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3429, 2224, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3430, 2224, 2, '-3.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3431, 2224, 3, '1.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3432, 2224, 4, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3433, 2225, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3434, 2225, 2, '3.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3435, 2225, 3, '1.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3436, 2225, 4, '-1.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3437, 2226, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3438, 2226, 2, '6.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3439, 2226, 3, '1.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3440, 2226, 4, '-1.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3441, 2227, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3442, 2227, 2, '3.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3443, 2227, 3, '2.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3444, 2227, 4, '-1.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3445, 2228, 1, '0.0000', NULL, '24.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3446, 2228, 2, '7.0000', NULL, '24.5766');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3447, 2228, 3, '4.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3448, 2228, 4, '-1.0000', NULL, '25.0420');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3449, 2229, 1, '0.0000', NULL, '24.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3450, 2229, 2, '6.0000', NULL, '24.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3451, 2229, 3, '2.0000', NULL, '24.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3452, 2229, 4, '-1.0000', NULL, '24.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3457, 2231, 1, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3458, 2231, 2, '3.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3459, 2231, 3, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3460, 2231, 4, '-3.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3461, 2232, 1, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3462, 2232, 2, '6.0000', NULL, '28.9867');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3463, 2232, 3, '1.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3464, 2232, 4, '0.0000', NULL, '29.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3465, 2233, 1, '0.0000', NULL, '19.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3466, 2233, 2, '4.0000', NULL, '19.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3467, 2233, 3, '2.0000', NULL, '19.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3468, 2233, 4, '-3.0000', NULL, '19.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3469, 2235, 1, '0.0000', NULL, '17.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3470, 2235, 2, '5.0000', NULL, '17.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3471, 2235, 3, '2.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3472, 2235, 4, '3.0000', NULL, '17.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3473, 2236, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3474, 2236, 2, '5.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3475, 2236, 3, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3476, 2236, 4, '1.0000', NULL, '5.6599');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3477, 2237, 1, '0.0000', NULL, '1.0600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3478, 2237, 2, '74.0000', NULL, '1.0600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3479, 2237, 3, '6.0000', NULL, '1.0600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3480, 2237, 4, '-6.0000', NULL, '1.0600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3481, 2238, 1, '0.0000', NULL, '39.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3482, 2238, 2, '2.0000', NULL, '39.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3483, 2238, 3, '0.0000', NULL, '39.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3484, 2238, 4, '-8.0000', NULL, '39.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3485, 2239, 1, '0.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3486, 2239, 2, '3.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3487, 2239, 3, '4.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3488, 2239, 4, '0.0000', NULL, '25.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3489, 2240, 1, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3490, 2240, 2, '2.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3491, 2240, 3, '2.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3492, 2240, 4, '0.0000', NULL, '36.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3493, 2241, 1, '0.0000', NULL, '6.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3494, 2241, 2, '0.0000', NULL, '6.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3495, 2241, 3, '3.0000', NULL, '6.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3496, 2241, 4, '-3.0000', NULL, '6.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3497, 2242, 1, '0.0000', NULL, '0.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3498, 2242, 2, '87.0000', NULL, '0.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3499, 2242, 3, '-10.0000', NULL, '0.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3500, 2242, 4, '71.0000', NULL, '0.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3501, 2243, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3502, 2243, 2, '4.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3503, 2243, 3, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3504, 2243, 4, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3505, 2244, 1, '0.0000', NULL, '7.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3506, 2244, 2, '-5.0000', NULL, '7.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3507, 2244, 3, '-1.0000', NULL, '7.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3508, 2244, 4, '-2.0000', NULL, '7.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3509, 2245, 1, '0.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3510, 2245, 2, '-5.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3511, 2245, 3, '26.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3512, 2245, 4, '-1.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3517, 2247, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3518, 2247, 2, '14.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3519, 2247, 3, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3520, 2247, 4, '-1.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3521, 2248, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3522, 2248, 2, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3523, 2248, 3, '1.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3524, 2248, 4, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3525, 2249, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3526, 2249, 2, '2.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3527, 2249, 3, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3528, 2249, 4, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3529, 2250, 1, '0.0000', NULL, '6.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3530, 2250, 2, '9.0000', NULL, '6.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3531, 2250, 3, '2.0000', NULL, '6.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3532, 2250, 4, '2.0000', NULL, '6.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3533, 2251, 1, '0.0000', NULL, '11.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3534, 2251, 2, '12.0000', NULL, '11.7654');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3535, 2251, 3, '-1.0000', NULL, '11.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3536, 2251, 4, '-1.0000', NULL, '10.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3537, 2252, 1, '0.0000', NULL, '9.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3538, 2252, 2, '6.0000', NULL, '9.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3539, 2252, 3, '2.0000', NULL, '10.0900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3540, 2252, 4, '-3.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3541, 2253, 1, '0.0000', NULL, '9.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3542, 2253, 2, '1.0000', NULL, '9.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3543, 2253, 3, '-1.0000', NULL, '9.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3544, 2253, 4, '0.0000', NULL, '9.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3545, 2254, 1, '0.0000', NULL, '17.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3546, 2254, 2, '4.0000', NULL, '17.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3547, 2254, 3, '3.0000', NULL, '17.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3548, 2254, 4, '0.0000', NULL, '17.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3549, 2255, 1, '0.0000', NULL, '17.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3550, 2255, 2, '3.0000', NULL, '17.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3551, 2255, 3, '0.0000', NULL, '17.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3552, 2255, 4, '1.0000', NULL, '17.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3553, 2256, 1, '0.0000', NULL, '12.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3554, 2256, 2, '1.0000', NULL, '12.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3555, 2256, 3, '1.0000', NULL, '12.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3556, 2256, 4, '0.0000', NULL, '12.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3557, 2257, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3558, 2257, 2, '15.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3559, 2257, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3560, 2257, 4, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3561, 2258, 1, '0.0000', NULL, '0.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3562, 2258, 2, '600.0000', NULL, '0.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3563, 2258, 3, '0.0000', NULL, '0.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3564, 2258, 4, '0.0000', NULL, '0.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3565, 2259, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3566, 2259, 2, '8.0000', NULL, '19.3333');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3567, 2259, 3, '4.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3568, 2259, 4, '2.0000', NULL, '19.9405');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3569, 2260, 1, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3570, 2260, 2, '-3.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3571, 2260, 3, '16.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3572, 2260, 4, '6.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3573, 2261, 1, '0.0000', NULL, '18.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3574, 2261, 2, '4.0000', NULL, '18.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3575, 2261, 3, '3.0000', NULL, '18.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3576, 2261, 4, '0.0000', NULL, '18.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3577, 2262, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3578, 2262, 2, '12.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3579, 2262, 3, '-2.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3580, 2262, 4, '-1.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3581, 2263, 1, '0.0000', NULL, '4.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3582, 2263, 2, '19.0000', NULL, '4.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3583, 2263, 3, '0.0000', NULL, '4.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3584, 2263, 4, '8.0000', NULL, '6.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3585, 2264, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3586, 2264, 2, '1.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3587, 2264, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3588, 2264, 4, '1.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3589, 2265, 1, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3590, 2265, 2, '0.0000', NULL, '36.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3591, 2265, 3, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3592, 2265, 4, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3593, 2266, 1, '0.0000', NULL, '6.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3594, 2266, 2, '3.0000', NULL, '6.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3595, 2266, 3, '3.0000', NULL, '6.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3596, 2266, 4, '-3.0000', NULL, '6.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3597, 2267, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3598, 2267, 2, '2.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3599, 2267, 3, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3600, 2267, 4, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3601, 2268, 1, '0.0000', NULL, '14.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3602, 2268, 2, '0.0000', NULL, '14.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3603, 2268, 3, '0.0000', NULL, '7.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3604, 2268, 4, '0.0000', NULL, '7.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3605, 2269, 1, '-1.0000', NULL, '4.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3606, 2269, 2, '2.0000', NULL, '4.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3607, 2269, 3, '3.0000', NULL, '5.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3608, 2269, 4, '-1.0000', NULL, '4.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3609, 2270, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3610, 2270, 2, '2.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3611, 2270, 3, '-1.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3612, 2270, 4, '3.0000', NULL, '0.9880');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3613, 2271, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3614, 2271, 2, '3.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3615, 2271, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3616, 2271, 4, '1.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3617, 2272, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3618, 2272, 2, '11.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3619, 2272, 3, '1.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3620, 2272, 4, '-4.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3621, 2273, 1, '0.0000', NULL, '2.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3622, 2273, 2, '-1.0000', NULL, '2.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3623, 2273, 3, '-1.0000', NULL, '2.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3624, 2273, 4, '-2.0000', NULL, '2.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3625, 2274, 1, '0.0000', NULL, '3.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3626, 2274, 2, '8.0000', NULL, '3.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3627, 2274, 3, '0.0000', NULL, '3.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3628, 2274, 4, '1.0000', NULL, '3.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3629, 2275, 1, '0.0000', NULL, '1.0900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3630, 2275, 2, '-6.0000', NULL, '1.0900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3631, 2275, 3, '16.0000', NULL, '1.0900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3632, 2275, 4, '-16.0000', NULL, '1.0900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3633, 2276, 1, '0.0000', NULL, '55.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3634, 2276, 2, '1.0000', NULL, '55.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3635, 2276, 3, '0.0000', NULL, '55.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3636, 2276, 4, '1.0000', NULL, '55.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3637, 2277, 1, '0.0000', NULL, '0.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3638, 2277, 2, '4.0000', NULL, '0.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3639, 2277, 3, '-6.0000', NULL, '0.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3640, 2277, 4, '-2.0000', NULL, '0.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3641, 2278, 1, '0.0000', NULL, '14.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3642, 2278, 2, '2.0000', NULL, '14.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3643, 2278, 3, '0.0000', NULL, '14.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3644, 2278, 4, '0.0000', NULL, '14.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3645, 2279, 1, '0.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3646, 2279, 2, '15.0000', NULL, '2.6280');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3647, 2279, 3, '22.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3648, 2279, 4, '-6.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3649, 2280, 1, '0.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3650, 2280, 2, '48.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3651, 2280, 3, '38.0000', NULL, '-177.9360');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3652, 2280, 4, '-1.0000', NULL, '3.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3653, 2281, 1, '-6.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3654, 2281, 2, '12.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3655, 2281, 3, '-1.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3656, 2281, 4, '-15.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3657, 2282, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3658, 2282, 2, '3.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3659, 2282, 3, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3660, 2282, 4, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3661, 2283, 1, '0.0000', NULL, '1.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3662, 2283, 2, '6.0000', NULL, '1.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3663, 2283, 3, '-4.0000', NULL, '1.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3664, 2283, 4, '-4.0000', NULL, '1.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3665, 2284, 1, '0.0000', NULL, '1.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3666, 2284, 2, '18.0000', NULL, '1.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3667, 2284, 3, '-5.0000', NULL, '1.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3668, 2284, 4, '34.0000', NULL, '1.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3669, 2285, 1, '0.0000', NULL, '35.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3670, 2285, 2, '7.0000', NULL, '35.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3671, 2285, 3, '-3.0000', NULL, '35.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3672, 2285, 4, '0.0000', NULL, '35.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3673, 2286, 1, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3674, 2286, 2, '27.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3675, 2286, 3, '-6.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3676, 2286, 4, '-13.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3677, 2287, 1, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3678, 2287, 2, '40.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3679, 2287, 3, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3680, 2287, 4, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3681, 2288, 1, '0.0000', NULL, '7.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3682, 2288, 2, '3.0000', NULL, '7.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3683, 2288, 3, '3.0000', NULL, '7.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3684, 2288, 4, '3.0000', NULL, '7.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3685, 2289, 1, '0.0000', NULL, '0.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3686, 2289, 2, '32.0000', NULL, '0.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3687, 2289, 3, '44.0000', NULL, '0.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3688, 2289, 4, '-1.0000', NULL, '0.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3689, 2290, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3690, 2290, 2, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3691, 2290, 3, '3.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3692, 2290, 4, '-1.0000', NULL, '6.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3693, 2291, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3694, 2291, 2, '3.0000', NULL, '20.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3695, 2291, 3, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3696, 2291, 4, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3697, 2292, 1, '0.0000', NULL, '55.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3698, 2292, 2, '2.0000', NULL, '55.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3699, 2292, 3, '0.0000', NULL, '55.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3700, 2292, 4, '0.0000', NULL, '55.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3701, 2293, 1, '0.0000', NULL, '1.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3702, 2293, 2, '64.0000', NULL, '1.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3703, 2293, 3, '-9.0000', NULL, '1.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3704, 2293, 4, '191.0000', NULL, '1.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3705, 2294, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3706, 2294, 2, '5.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3707, 2294, 3, '-1.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3708, 2294, 4, '6.0000', NULL, '4.1050');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3709, 2295, 1, '0.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3710, 2295, 2, '41.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3711, 2295, 3, '-3.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3712, 2295, 4, '50.0000', NULL, '0.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3713, 2296, 1, '0.0000', NULL, '13.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3714, 2296, 2, '2.0000', NULL, '13.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3715, 2296, 3, '0.0000', NULL, '13.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3716, 2296, 4, '1.0000', NULL, '13.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3717, 2297, 1, '0.0000', NULL, '7.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3718, 2297, 2, '3.0000', NULL, '7.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3719, 2297, 3, '-1.0000', NULL, '7.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3720, 2297, 4, '0.0000', NULL, '6.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3721, 2298, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3722, 2298, 2, '2.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3723, 2298, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3724, 2298, 4, '1.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3725, 2299, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3726, 2299, 2, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3727, 2299, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3728, 2299, 4, '4.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3737, 2302, 1, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3738, 2302, 2, '21.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3739, 2302, 3, '10.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3740, 2302, 4, '-7.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3741, 2303, 1, '0.0000', NULL, '16.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3742, 2303, 2, '3.0000', NULL, '16.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3743, 2303, 3, '0.0000', NULL, '16.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3744, 2303, 4, '6.0000', NULL, '16.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3745, 2304, 1, '0.0000', NULL, '1.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3746, 2304, 2, '8.0000', NULL, '1.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3747, 2304, 3, '0.0000', NULL, '1.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3748, 2304, 4, '-10.0000', NULL, '1.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3749, 2305, 1, '0.0000', NULL, '1.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3750, 2305, 2, '6.0000', NULL, '1.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3751, 2305, 3, '0.0000', NULL, '1.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3752, 2305, 4, '5.0000', NULL, '6.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3753, 2306, 1, '0.0000', NULL, '36.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3754, 2306, 2, '2.0000', NULL, '36.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3755, 2306, 3, '0.0000', NULL, '36.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3756, 2306, 4, '0.0000', NULL, '55.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3757, 2307, 1, '0.0000', NULL, '140.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3758, 2307, 2, '3.0000', NULL, '140.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3759, 2307, 3, '0.0000', NULL, '140.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3760, 2307, 4, '5.0000', NULL, '118.9901');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3761, 2308, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3762, 2308, 2, '1.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3763, 2308, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3764, 2308, 4, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3765, 1764, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3766, 1764, 2, '4.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3767, 1764, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3768, 2309, 1, '0.0000', NULL, '1.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3769, 2309, 2, '0.0000', NULL, '1.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3770, 2309, 3, '-3.0000', NULL, '1.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3771, 2309, 4, '40.0000', NULL, '1.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3776, 2311, 1, '0.0000', NULL, '46.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3777, 2311, 2, '1.0000', NULL, '46.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3778, 2311, 3, '0.0000', NULL, '46.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3779, 2311, 4, '0.0000', NULL, '46.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3780, 2312, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3781, 2312, 2, '1.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3782, 2312, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3783, 2312, 4, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3784, 2313, 1, '0.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3785, 2313, 2, '0.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3786, 2313, 3, '0.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3787, 2313, 4, '0.0000', NULL, '8.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3788, 2314, 1, '0.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3789, 2314, 2, '3.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3790, 2314, 3, '0.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3791, 2314, 4, '-3.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3792, 2315, 1, '0.0000', NULL, '0.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3793, 2315, 2, '340.0000', NULL, '0.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3794, 2315, 3, '73.0000', NULL, '-6.8895');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3795, 2315, 4, '-57.0000', NULL, '0.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3796, 2234, 1, '0.0000', NULL, '13.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3797, 2234, 2, '6.0000', NULL, '13.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3798, 2234, 3, '-3.0000', NULL, '13.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3799, 2234, 4, '3.0000', NULL, '16.9284');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3800, 2316, 1, '0.0000', NULL, '44.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3801, 2316, 2, '3.0000', NULL, '43.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3802, 2316, 3, '5.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3803, 2316, 4, '-2.0000', NULL, '44.8814');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3804, 1326, 4, '10.0000', NULL, '2.7762');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3805, 1326, 3, '0.0000', NULL, '3.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3809, 2317, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3810, 2317, 2, '10.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3811, 2317, 3, '25.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3812, 2317, 4, '29.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3813, 2318, 1, '0.0000', NULL, '0.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3814, 2318, 2, '-191.0000', NULL, '0.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3815, 2318, 3, '0.0000', NULL, '0.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3816, 2318, 4, '195.0000', NULL, '0.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3817, 2319, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3818, 2319, 2, '10.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3819, 2319, 3, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3820, 2319, 4, '40.0000', NULL, '3.4444');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3821, 2320, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3822, 2320, 2, '-33.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3823, 2320, 3, '-10.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3824, 2320, 4, '-7.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3825, 2321, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3826, 2321, 2, '-1.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3827, 2321, 3, '3.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3828, 2321, 4, '1.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3829, 2322, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3830, 2322, 2, '2.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3831, 2322, 3, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3832, 2322, 4, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3833, 2323, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3834, 2323, 2, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3835, 2323, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3836, 2323, 4, '10.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3837, 2324, 1, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3838, 2324, 2, '6.0000', NULL, '10.5465');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3839, 2324, 3, '8.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3840, 2324, 4, '-3.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3841, 2325, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3842, 2325, 2, '10.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3843, 2325, 3, '8.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3844, 2325, 4, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3845, 2326, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3846, 2326, 2, '3.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3847, 2326, 3, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3848, 2326, 4, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3849, 2327, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3850, 2327, 2, '12.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3851, 2327, 3, '24.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3852, 2327, 4, '-4.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3853, 2328, 1, '0.0000', NULL, '59.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3854, 2328, 2, '4.0000', NULL, '59.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3855, 2328, 3, '4.0000', NULL, '59.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3856, 2328, 4, '0.0000', NULL, '64.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3857, 2329, 1, '0.0000', NULL, '30.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3858, 2329, 2, '8.0000', NULL, '30.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3859, 2329, 3, '0.0000', NULL, '30.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3860, 2329, 4, '4.0000', NULL, '30.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3865, 2331, 1, '0.0000', NULL, '12.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3866, 2331, 2, '3.0000', NULL, '12.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3867, 2331, 3, '6.0000', NULL, '12.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3868, 2331, 4, '-1.0000', NULL, '12.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3869, 2332, 1, '0.0000', NULL, '5.0900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3870, 2332, 2, '3.0000', NULL, '5.0900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3871, 2332, 3, '3.0000', NULL, '5.0900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3872, 2332, 4, '0.0000', NULL, '5.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3873, 2333, 1, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3874, 2333, 2, '4.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3875, 2333, 3, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3876, 2333, 4, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3877, 2334, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3878, 2334, 2, '2.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3879, 2334, 3, '-1.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3880, 2334, 4, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3881, 2335, 1, '0.0000', NULL, '13.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3882, 2335, 2, '2.0000', NULL, '13.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3883, 2335, 3, '0.0000', NULL, '13.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3884, 2335, 4, '6.0000', NULL, '12.8784');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3885, 2336, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3886, 2336, 2, '2.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3887, 2336, 3, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3888, 2336, 4, '-1.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3889, 2337, 1, '0.0000', NULL, '51.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3890, 2337, 2, '3.0000', NULL, '51.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3891, 2337, 3, '0.0000', NULL, '51.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3892, 2337, 4, '2.0000', NULL, '51.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3893, 2338, 1, '0.0000', NULL, '9.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3894, 2338, 2, '30.0000', NULL, '9.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3895, 2338, 3, '30.0000', NULL, '9.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3896, 2338, 4, '0.0000', NULL, '9.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3897, 2339, 1, '0.0000', NULL, '7.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3898, 2339, 2, '5.0000', NULL, '7.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3899, 2339, 3, '0.0000', NULL, '7.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3900, 2339, 4, '0.0000', NULL, '7.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3901, 2340, 1, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3902, 2340, 2, '7.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3903, 2340, 3, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3904, 2340, 4, '0.0000', NULL, '5.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3905, 2341, 1, '0.0000', NULL, '5.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3906, 2341, 2, '0.0000', NULL, '5.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3907, 2341, 3, '0.0000', NULL, '5.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3908, 2341, 4, '2.0000', NULL, '6.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3909, 2342, 1, '0.0000', NULL, '1.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3910, 2342, 2, '82.0000', NULL, '1.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3911, 2342, 3, '110.0000', NULL, '1.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3912, 2342, 4, '0.0000', NULL, '1.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3913, 2343, 1, '0.0000', NULL, '36.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3914, 2343, 2, '0.0000', NULL, '36.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3915, 2343, 3, '2.0000', NULL, '36.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3916, 2343, 4, '1.0000', NULL, '38.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3917, 2344, 1, '0.0000', NULL, '18.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3918, 2344, 2, '-1.0000', NULL, '18.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3919, 2344, 3, '3.0000', NULL, '19.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3920, 2344, 4, '1.0000', NULL, '18.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3921, 2345, 1, '0.0000', NULL, '7.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3922, 2345, 2, '4.0000', NULL, '7.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3923, 2345, 3, '-1.0000', NULL, '7.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3924, 2345, 4, '2.0000', NULL, '7.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3925, 2346, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3926, 2346, 2, '2.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3927, 2346, 3, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3928, 2346, 4, '5.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3929, 2347, 1, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3930, 2347, 2, '5.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3931, 2347, 3, '-1.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3932, 2347, 4, '12.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3933, 2348, 1, '0.0000', NULL, '22.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3934, 2348, 2, '0.0000', NULL, '22.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3935, 2348, 3, '3.0000', NULL, '22.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3936, 2348, 4, '0.0000', NULL, '22.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3937, 2349, 1, '0.0000', NULL, '24.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3938, 2349, 2, '5.0000', NULL, '24.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3939, 2349, 3, '0.0000', NULL, '24.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3940, 2349, 4, '0.0000', NULL, '24.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3941, 2350, 1, '0.0000', NULL, '10.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3942, 2350, 2, '3.0000', NULL, '10.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3943, 2350, 3, '-2.0000', NULL, '10.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3944, 2350, 4, '0.0000', NULL, '10.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3945, 2351, 1, '0.0000', NULL, '17.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3946, 2351, 2, '3.0000', NULL, '17.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3947, 2351, 3, '-2.0000', NULL, '17.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3948, 2351, 4, '4.0000', NULL, '17.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3949, 2352, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3950, 2352, 2, '18.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3951, 2352, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3952, 2352, 4, '7.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3953, 2353, 1, '0.0000', NULL, '4.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3954, 2353, 2, '-1.0000', NULL, '4.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3955, 2353, 3, '-2.0000', NULL, '4.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3956, 2353, 4, '0.0000', NULL, '4.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3957, 2354, 1, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3958, 2354, 2, '5.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3959, 2354, 3, '-1.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3960, 2354, 4, '4.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3961, 2355, 1, '0.0000', NULL, '53.3100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3962, 2355, 2, '0.0000', NULL, '-90.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3963, 2355, 3, '20.0000', NULL, '5.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3964, 2355, 4, '40.0000', NULL, '5.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3965, 2356, 1, '0.0000', NULL, '38.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3966, 2356, 2, '3.0000', NULL, '38.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3967, 2356, 3, '0.0000', NULL, '38.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3968, 2356, 4, '4.0000', NULL, '38.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3969, 2357, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3970, 2357, 2, '6.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3971, 2357, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3972, 2357, 4, '5.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3973, 2358, 1, '0.0000', NULL, '27.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3974, 2358, 2, '0.0000', NULL, '27.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3975, 2358, 3, '0.0000', NULL, '27.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3976, 2358, 4, '6.0000', NULL, '13.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3977, 2359, 1, '0.0000', NULL, '16.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3978, 2359, 2, '2.0000', NULL, '16.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3979, 2359, 3, '0.0000', NULL, '16.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3980, 2359, 4, '1.0000', NULL, '8.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3981, 2360, 1, '0.0000', NULL, '0.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3982, 2360, 2, '47.0000', NULL, '0.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3983, 2360, 3, '25.0000', NULL, '0.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3984, 2360, 4, '-5.0000', NULL, '0.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3985, 2361, 1, '0.0000', NULL, '0.4700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3986, 2361, 2, '25.0000', NULL, '0.4700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3987, 2361, 3, '25.0000', NULL, '0.4700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3988, 2361, 4, '-4.0000', NULL, '0.4700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3989, 2362, 1, '0.0000', NULL, '82.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3990, 2362, 2, '79.0000', NULL, '82.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3991, 2362, 3, '50.0000', NULL, '82.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3992, 2362, 4, '0.0000', NULL, '8.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3993, 2363, 1, '0.0000', NULL, '6.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3994, 2363, 2, '2.0000', NULL, '6.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3995, 2363, 3, '0.0000', NULL, '6.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (3996, 2363, 4, '0.0000', NULL, '6.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4001, 2365, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4002, 2365, 2, '3.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4003, 2365, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4004, 2365, 4, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4005, 2366, 1, '0.0000', NULL, '3.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4006, 2366, 2, '27.0000', NULL, '3.7873');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4007, 2366, 3, '-4.0000', NULL, '3.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4008, 2366, 4, '-7.0000', NULL, '3.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4009, 2367, 1, '0.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4010, 2367, 2, '2.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4011, 2367, 3, '0.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4012, 2367, 4, '0.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4013, 2368, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4014, 2368, 2, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4015, 2368, 3, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4016, 2368, 4, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4017, 2369, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4018, 2369, 2, '2.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4019, 2369, 3, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4020, 2369, 4, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4021, 2370, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4022, 2370, 2, '6.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4023, 2370, 3, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4024, 2370, 4, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4025, 2371, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4026, 2371, 2, '3.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4027, 2371, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4028, 2371, 4, '6.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4029, 2372, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4030, 2372, 2, '3.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4031, 2372, 3, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4032, 2372, 4, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4033, 2373, 1, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4034, 2373, 2, '3.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4035, 2373, 3, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4036, 2373, 4, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4037, 2374, 1, '0.0000', NULL, '6.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4038, 2374, 2, '10.0000', NULL, '6.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4039, 2374, 3, '3.0000', NULL, '6.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4040, 2374, 4, '0.0000', NULL, '7.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4041, 2375, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4042, 2375, 2, '3.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4043, 2375, 3, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4044, 2375, 4, '2.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4045, 2376, 1, '0.0000', NULL, '19.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4046, 2376, 2, '4.0000', NULL, '19.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4047, 2376, 3, '0.0000', NULL, '19.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4048, 2376, 4, '6.0000', NULL, '19.3816');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4049, 2377, 1, '0.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4050, 2377, 2, '3.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4051, 2377, 3, '0.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4052, 2377, 4, '3.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4053, 2378, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4054, 2378, 2, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4055, 2378, 3, '-1.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4056, 2378, 4, '6.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4057, 2379, 1, '0.0000', NULL, '1.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4058, 2379, 2, '12.0000', NULL, '1.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4059, 2379, 3, '1.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4060, 2379, 4, '-13.0000', NULL, '1.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4061, 2380, 1, '0.0000', NULL, '37.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4062, 2380, 2, '2.0000', NULL, '37.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4063, 2380, 3, '6.0000', NULL, '37.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4064, 2380, 4, '0.0000', NULL, '37.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4065, 2381, 1, '0.0000', NULL, '10.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4066, 2381, 2, '4.0000', NULL, '5.0448');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4067, 2381, 3, '1.0000', NULL, '12.0748');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4068, 2381, 4, '0.0000', NULL, '12.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4069, 2382, 1, '0.0000', NULL, '15.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4070, 2382, 2, '3.0000', NULL, '15.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4071, 2382, 3, '3.0000', NULL, '15.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4072, 2382, 4, '0.0000', NULL, '15.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4073, 2383, 1, '0.0000', NULL, '16.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4074, 2383, 2, '8.0000', NULL, '16.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4075, 2383, 3, '6.0000', NULL, '16.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4076, 2383, 4, '0.0000', NULL, '16.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4077, 2384, 1, '0.0000', NULL, '0.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4078, 2384, 2, '77.0000', NULL, '0.0064');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4079, 2384, 3, '-14.0000', NULL, '0.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4080, 2384, 4, '135.0000', NULL, '0.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4081, 2385, 1, '0.0000', NULL, '7.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4082, 2385, 2, '1.0000', NULL, '7.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4083, 2385, 3, '0.0000', NULL, '7.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4084, 2385, 4, '0.0000', NULL, '7.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4085, 2386, 1, '0.0000', NULL, '2.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4086, 2386, 2, '1.0000', NULL, '2.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4087, 2386, 3, '0.0000', NULL, '2.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4088, 2386, 4, '0.0000', NULL, '2.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4089, 2387, 1, '0.0000', NULL, '14.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4090, 2387, 2, '4.0000', NULL, '17.8874');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4091, 2387, 3, '2.0000', NULL, '14.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4092, 2387, 4, '0.0000', NULL, '14.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4093, 2388, 1, '0.0000', NULL, '52.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4094, 2388, 2, '0.0000', NULL, '52.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4095, 2388, 3, '0.0000', NULL, '52.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4096, 2388, 4, '0.0000', NULL, '52.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4097, 2389, 1, '0.0000', NULL, '3.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4098, 2389, 2, '24.0000', NULL, '3.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4099, 2389, 3, '10.0000', NULL, '3.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4100, 2389, 4, '0.0000', NULL, '3.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4101, 2390, 1, '0.0000', NULL, '7.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4102, 2390, 2, '7.0000', NULL, '7.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4103, 2390, 3, '0.0000', NULL, '7.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4104, 2390, 4, '0.0000', NULL, '7.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4105, 2391, 1, '0.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4106, 2391, 2, '3.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4107, 2391, 3, '0.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4108, 2391, 4, '0.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4109, 2392, 1, '0.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4110, 2392, 2, '5.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4111, 2392, 3, '0.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4112, 2392, 4, '10.0000', NULL, '3.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4113, 2393, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4114, 2393, 2, '3.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4115, 2393, 3, '-1.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4116, 2393, 4, '8.0000', NULL, '4.1979');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4117, 2394, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4118, 2394, 2, '5.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4119, 2394, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4120, 2394, 4, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4121, 2395, 1, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4122, 2395, 2, '3.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4123, 2395, 3, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4124, 2395, 4, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4125, 2396, 1, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4126, 2396, 2, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4127, 2396, 3, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4128, 2396, 4, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4129, 2397, 1, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4130, 2397, 2, '2.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4131, 2397, 3, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4132, 2397, 4, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4133, 2398, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4134, 2398, 2, '4.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4135, 2398, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4136, 2398, 4, '5.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4137, 2399, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4138, 2399, 2, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4139, 2399, 3, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4140, 2399, 4, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4141, 2400, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4142, 2400, 2, '4.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4143, 2400, 3, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4144, 2400, 4, '4.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4145, 2401, 1, '0.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4146, 2401, 2, '0.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4147, 2401, 3, '0.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4148, 2401, 4, '0.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4149, 2402, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4150, 2402, 2, '2.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4151, 2402, 3, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4152, 2402, 4, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4153, 2403, 1, '0.0000', NULL, '17.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4154, 2403, 2, '7.0000', NULL, '17.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4155, 2403, 3, '-1.0000', NULL, '17.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4156, 2403, 4, '0.0000', NULL, '17.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4157, 2404, 1, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4158, 2404, 2, '1.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4159, 2404, 3, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4160, 2404, 4, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4161, 2405, 1, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4162, 2405, 2, '98.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4163, 2405, 3, '50.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4164, 2405, 4, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4165, 2406, 1, '0.0000', NULL, '20.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4166, 2406, 2, '2.0000', NULL, '20.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4167, 2406, 3, '3.0000', NULL, '20.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4168, 2406, 4, '0.0000', NULL, '20.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4169, 1774, 1, '0.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4170, 1774, 2, '28.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4171, 1774, 3, '0.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4172, 1775, 1, '0.0000', NULL, '1.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4173, 1775, 2, '28.0000', NULL, '1.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4174, 1775, 3, '0.0000', NULL, '1.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4175, 1775, 4, '28.0000', NULL, '1.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4176, 2407, 4, '0.0000', NULL, '20.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4177, 2408, 1, '0.0000', NULL, '8.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4178, 2408, 2, '2.0000', NULL, '8.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4179, 2408, 3, '0.0000', NULL, '8.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4180, 2408, 4, '0.0000', NULL, '9.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4181, 2409, 1, '0.0000', NULL, '2.3100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4182, 2409, 2, '5.0000', NULL, '2.3100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4183, 2409, 3, '2.0000', NULL, '2.3100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4184, 2409, 4, '-1.0000', NULL, '2.3100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4185, 2410, 1, '0.0000', NULL, '4.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4186, 2410, 2, '-1.0000', NULL, '4.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4187, 2410, 3, '8.0000', NULL, '4.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4188, 2410, 4, '-1.0000', NULL, '4.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4189, 2411, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4190, 2411, 2, '30.0000', NULL, '1.5581');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4191, 2411, 3, '-3.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4192, 2411, 4, '8.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4193, 2412, 1, '0.0000', NULL, '0.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4194, 2412, 2, '46.0000', NULL, '0.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4195, 2412, 3, '0.0000', NULL, '0.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4196, 2412, 4, '57.0000', NULL, '0.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4197, 2413, 1, '0.0000', NULL, '1.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4198, 2413, 2, '139.0000', NULL, '1.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4199, 2413, 3, '0.0000', NULL, '1.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4200, 2413, 4, '-2.0000', NULL, '1.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4201, 2407, 1, '0.0000', NULL, '20.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4202, 2407, 2, '1.0000', NULL, '20.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4203, 2407, 3, '3.0000', NULL, '20.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4204, 2414, 1, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4205, 2414, 2, '6.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4206, 2414, 3, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4207, 2414, 4, '-3.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4208, 2415, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4209, 2415, 2, '-5.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4210, 2415, 3, '-1.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4211, 2415, 4, '-7.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4212, 2416, 1, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4213, 2416, 2, '4.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4214, 2416, 3, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4215, 2416, 4, '-3.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4216, 2417, 1, '0.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4217, 2417, 2, '16.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4218, 2417, 3, '0.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4219, 2417, 4, '0.0000', NULL, '3.0653');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4220, 2418, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4221, 2418, 2, '3.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4222, 2418, 3, '2.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4223, 2418, 4, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4224, 2419, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4225, 2419, 2, '2.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4226, 2419, 3, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4227, 2419, 4, '-2.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4228, 2420, 1, '0.0000', NULL, '21.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4229, 2420, 2, '2.0000', NULL, '21.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4230, 2420, 3, '0.0000', NULL, '21.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4231, 2420, 4, '0.0000', NULL, '21.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4232, 2421, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4233, 2421, 2, '3.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4234, 2421, 3, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4235, 2421, 4, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4236, 2422, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4237, 2422, 2, '3.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4238, 2422, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4239, 2422, 4, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4240, 2423, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4241, 2423, 2, '1.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4242, 2423, 3, '6.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4243, 2423, 4, '-1.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4244, 2424, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4245, 2424, 2, '5.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4246, 2424, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4247, 2424, 4, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4248, 2425, 1, '0.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4249, 2425, 2, '1.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4250, 2425, 3, '0.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4251, 2425, 4, '-1.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4252, 2426, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4253, 2426, 2, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4254, 2426, 3, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4255, 2426, 4, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4256, 2427, 1, '0.0000', NULL, '5.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4257, 2427, 2, '10.0000', NULL, '5.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4258, 2427, 3, '0.0000', NULL, '5.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4259, 2427, 4, '0.0000', NULL, '5.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4260, 2428, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4261, 2428, 2, '3.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4262, 2428, 3, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4263, 2428, 4, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4264, 2429, 1, '0.0000', NULL, '10.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4265, 2429, 2, '6.0000', NULL, '10.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4266, 2429, 3, '0.0000', NULL, '10.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4267, 2429, 4, '0.0000', NULL, '10.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4268, 2430, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4269, 2430, 2, '5.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4270, 2430, 3, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4271, 2430, 4, '-1.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4272, 2431, 1, '0.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4273, 2431, 2, '6.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4274, 2431, 3, '6.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4275, 2431, 4, '-4.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4276, 2432, 1, '0.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4277, 2432, 2, '2.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4278, 2432, 3, '0.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4279, 2432, 4, '0.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4280, 2433, 1, '0.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4281, 2433, 2, '80.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4282, 2433, 3, '0.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4283, 2433, 4, '0.0000', NULL, '0.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4284, 2434, 1, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4285, 2434, 2, '5.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4286, 2434, 3, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4287, 2434, 4, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4288, 2435, 1, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4289, 2435, 2, '1.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4290, 2435, 3, '4.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4291, 2435, 4, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4292, 2436, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4293, 2436, 2, '3.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4294, 2436, 3, '2.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4295, 2436, 4, '1.0000', NULL, '8.6125');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4296, 2437, 1, '0.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4297, 2437, 2, '-1.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4298, 2437, 3, '0.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4299, 2437, 4, '-1.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4300, 2438, 1, '0.0000', NULL, '29.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4301, 2438, 2, '3.0000', NULL, '29.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4302, 2438, 3, '0.0000', NULL, '29.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4303, 2438, 4, '0.0000', NULL, '29.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4304, 2439, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4305, 2439, 2, '1.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4306, 2439, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4307, 2439, 4, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4308, 2440, 1, '0.0000', NULL, '5.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4309, 2440, 2, '4.0000', NULL, '5.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4310, 2440, 3, '6.0000', NULL, '5.2092');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4311, 2440, 4, '0.0000', NULL, '5.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4312, 2441, 1, '-1.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4313, 2441, 2, '7.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4314, 2441, 3, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4315, 2441, 4, '-1.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4316, 2442, 1, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4317, 2442, 2, '7.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4318, 2442, 3, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4319, 2442, 4, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4320, 2443, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4321, 2443, 2, '4.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4322, 2443, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4323, 2443, 4, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4324, 2444, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4325, 2444, 2, '6.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4326, 2444, 3, '5.0000', NULL, '7.0800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4327, 2444, 4, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4328, 2445, 1, '0.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4329, 2445, 2, '-34.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4330, 2445, 3, '30.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4331, 2445, 4, '-10.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4332, 2446, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4333, 2446, 2, '6.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4334, 2446, 3, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4335, 2446, 4, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4336, 2447, 1, '0.0000', NULL, '3.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4337, 2447, 2, '6.0000', NULL, '3.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4338, 2447, 3, '0.0000', NULL, '3.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4339, 2447, 4, '0.0000', NULL, '3.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4340, 2448, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4341, 2448, 2, '5.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4342, 2448, 3, '6.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4343, 2448, 4, '-1.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4344, 2449, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4345, 2449, 2, '4.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4346, 2449, 3, '3.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4347, 2449, 4, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4348, 2450, 1, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4349, 2450, 2, '6.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4350, 2450, 3, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4351, 2450, 4, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4352, 2451, 1, '0.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4353, 2451, 2, '4.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4354, 2451, 3, '3.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4355, 2451, 4, '0.0000', NULL, '10.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4356, 2452, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4357, 2452, 2, '2.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4358, 2452, 3, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4359, 2452, 4, '5.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4360, 2453, 1, '0.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4361, 2453, 2, '3.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4362, 2453, 3, '-1.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4363, 2453, 4, '10.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4364, 2454, 1, '0.0000', NULL, '7.5400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4365, 2454, 2, '0.0000', NULL, '7.5400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4366, 2454, 3, '2.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4367, 2454, 4, '0.0000', NULL, '7.5400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4368, 2455, 1, '0.0000', NULL, '7.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4369, 2455, 2, '5.0000', NULL, '7.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4370, 2455, 3, '5.0000', NULL, '7.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4371, 2455, 4, '-1.0000', NULL, '7.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4372, 2456, 1, '0.0000', NULL, '18.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4373, 2456, 2, '2.0000', NULL, '18.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4374, 2456, 3, '0.0000', NULL, '18.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4375, 2456, 4, '0.0000', NULL, '18.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4376, 2457, 1, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4377, 2457, 2, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4378, 2457, 3, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4379, 2457, 4, '-1.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4380, 2458, 1, '0.0000', NULL, '9.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4381, 2458, 2, '2.0000', NULL, '9.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4382, 2458, 3, '-1.0000', NULL, '9.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4383, 2458, 4, '0.0000', NULL, '13.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4384, 2459, 1, '0.0000', NULL, '5.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4385, 2459, 2, '10.0000', NULL, '-0.0719');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4386, 2459, 3, '1.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4387, 2459, 4, '0.0000', NULL, '5.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4388, 2460, 1, '0.0000', NULL, '32.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4389, 2460, 2, '2.0000', NULL, '32.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4390, 2460, 3, '0.0000', NULL, '32.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4391, 2460, 4, '-1.0000', NULL, '32.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4392, 2461, 1, '0.0000', NULL, '8.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4393, 2461, 2, '-1.0000', NULL, '8.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4394, 2461, 3, '0.0000', NULL, '8.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4395, 2461, 4, '0.0000', NULL, '8.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4396, 2462, 1, '0.0000', NULL, '46.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4397, 2462, 2, '2.0000', NULL, '72.3166');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4398, 2462, 3, '2.0000', NULL, '46.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4399, 2462, 4, '0.0000', NULL, '46.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4400, 2463, 1, '0.0000', NULL, '2.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4401, 2463, 2, '9.0000', NULL, '2.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4402, 2463, 3, '0.0000', NULL, '2.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4403, 2463, 4, '-3.0000', NULL, '2.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4404, 2464, 1, '0.0000', NULL, '54.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4405, 2464, 2, '2.0000', NULL, '54.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4406, 2464, 3, '0.0000', NULL, '54.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4407, 2464, 4, '0.0000', NULL, '54.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4408, 2465, 1, '0.0000', NULL, '7.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4409, 2465, 2, '2.0000', NULL, '7.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4410, 2465, 3, '-1.0000', NULL, '7.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4411, 2465, 4, '0.0000', NULL, '7.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4412, 2466, 1, '0.0000', NULL, '13.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4413, 2466, 2, '0.0000', NULL, '13.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4414, 2466, 3, '2.0000', NULL, '13.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4415, 2466, 4, '3.0000', NULL, '13.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4416, 2467, 1, '0.0000', NULL, '19.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4417, 2467, 2, '1.0000', NULL, '19.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4418, 2467, 3, '0.0000', NULL, '19.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4419, 2467, 4, '0.0000', NULL, '19.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4420, 2468, 1, '0.0000', NULL, '4.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4421, 2468, 2, '-1.0000', NULL, '4.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4422, 2468, 3, '0.0000', NULL, '4.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4423, 2468, 4, '0.0000', NULL, '4.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4424, 2469, 1, '0.0000', NULL, '48.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4425, 2469, 2, '0.0000', NULL, '48.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4426, 2469, 3, '0.0000', NULL, '48.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4427, 2469, 4, '0.0000', NULL, '48.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4428, 2470, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4429, 2470, 2, '2.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4430, 2470, 3, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4431, 2470, 4, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4432, 2471, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4433, 2471, 2, '1.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4434, 2471, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4435, 2471, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4436, 2472, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4437, 2472, 2, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4438, 2472, 3, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4439, 2472, 4, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4440, 2473, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4441, 2473, 2, '3.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4442, 2473, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4443, 2473, 4, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4444, 2474, 1, '0.0000', NULL, '5.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4445, 2474, 2, '0.0000', NULL, '5.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4446, 2474, 3, '0.0000', NULL, '5.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4447, 2474, 4, '0.0000', NULL, '5.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4448, 2475, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4449, 2475, 2, '5.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4450, 2475, 3, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4451, 2475, 4, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4452, 2476, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4453, 2476, 2, '17.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4454, 2476, 3, '5.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4455, 2476, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4456, 2477, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4457, 2477, 2, '6.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4458, 2477, 3, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4459, 2477, 4, '-1.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4460, 2478, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4461, 2478, 2, '15.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4462, 2478, 3, '2.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4463, 2478, 4, '-1.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4464, 2479, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4465, 2479, 2, '18.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4466, 2479, 3, '6.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4467, 2479, 4, '-1.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4468, 2480, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4469, 2480, 2, '-1.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4470, 2480, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4471, 2480, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4472, 2481, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4473, 2481, 2, '11.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4474, 2481, 3, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4475, 2481, 4, '-2.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4476, 2482, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4477, 2482, 2, '13.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4478, 2482, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4479, 2482, 4, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4480, 2483, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4481, 2483, 2, '4.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4482, 2483, 3, '5.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4483, 2483, 4, '6.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4484, 2484, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4485, 2484, 2, '3.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4486, 2484, 3, '5.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4487, 2484, 4, '-2.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4488, 2485, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4489, 2485, 2, '14.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4490, 2485, 3, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4491, 2485, 4, '1.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4492, 2486, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4493, 2486, 2, '44.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4494, 2486, 3, '10.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4495, 2486, 4, '3.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4496, 2487, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4497, 2487, 2, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4498, 2487, 3, '6.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4499, 2487, 4, '5.0000', NULL, '23.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4500, 2488, 1, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4501, 2488, 2, '20.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4502, 2488, 3, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4503, 2488, 4, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4504, 2489, 1, '0.0000', NULL, '63.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4505, 2489, 2, '-1.0000', NULL, '63.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4506, 2489, 3, '0.0000', NULL, '63.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4507, 2489, 4, '0.0000', NULL, '63.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4508, 2490, 1, '0.0000', NULL, '8.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4509, 2490, 2, '3.0000', NULL, '8.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4510, 2490, 3, '0.0000', NULL, '8.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4511, 2490, 4, '0.0000', NULL, '8.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4512, 2491, 1, '0.0000', NULL, '12.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4513, 2491, 2, '0.0000', NULL, '12.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4514, 2491, 3, '6.0000', NULL, '12.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4515, 2491, 4, '-6.0000', NULL, '12.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4516, 2492, 1, '0.0000', NULL, '21.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4517, 2492, 2, '4.0000', NULL, '21.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4518, 2492, 3, '-1.0000', NULL, '21.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4519, 2492, 4, '3.0000', NULL, '21.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4520, 2493, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4521, 2493, 2, '1.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4522, 2493, 3, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4523, 2493, 4, '5.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4524, 2495, 1, '0.0000', NULL, '8.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4525, 2495, 2, '3.0000', NULL, '8.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4526, 2495, 3, '0.0000', NULL, '8.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4527, 2495, 4, '-1.0000', NULL, '8.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4528, 2496, 1, '0.0000', NULL, '0.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4529, 2496, 2, '0.0000', NULL, '0.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4530, 2496, 3, '0.0000', NULL, '0.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4531, 2496, 4, '0.0000', NULL, '0.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4532, 2497, 1, '0.0000', NULL, '34.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4533, 2497, 2, '0.0000', NULL, '31.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4534, 2497, 3, '2.0000', NULL, '34.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4535, 2497, 4, '2.0000', NULL, '34.4493');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4536, 2498, 1, '0.0000', NULL, '9.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4537, 2498, 2, '12.0000', NULL, '9.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4538, 2498, 3, '0.0000', NULL, '9.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4539, 2498, 4, '2.0000', NULL, '9.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4540, 2499, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4541, 2499, 2, '10.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4542, 2499, 3, '30.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4543, 2499, 4, '0.0000', NULL, '10.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4544, 2500, 1, '0.0000', NULL, '5.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4545, 2500, 2, '60.0000', NULL, '5.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4546, 2500, 3, '0.0000', NULL, '5.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4547, 2500, 4, '0.0000', NULL, '5.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4548, 1687, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4549, 1687, 2, '4.0000', NULL, '15.3580');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4550, 1687, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4555, 2502, 1, '0.0000', NULL, '43.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4556, 2502, 2, '0.0000', NULL, '43.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4557, 2502, 3, '0.0000', NULL, '43.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4558, 2502, 4, '0.0000', NULL, '43.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4559, 2503, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4560, 2503, 2, '4.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4561, 2503, 3, '1.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4562, 2503, 4, '-1.0000', NULL, '14.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4563, 2504, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4564, 2504, 2, '3.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4565, 2504, 3, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4566, 2504, 4, '-1.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4567, 2505, 1, '0.0000', NULL, '68.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4568, 2505, 2, '2.0000', NULL, '68.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4569, 2505, 3, '0.0000', NULL, '68.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4570, 2505, 4, '0.0000', NULL, '68.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4571, 2506, 1, '0.0000', NULL, '3.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4572, 2506, 2, '-1.0000', NULL, '3.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4573, 2506, 3, '4.0000', NULL, '3.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4574, 2506, 4, '8.0000', NULL, '3.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4575, 2507, 1, '0.0000', NULL, '34.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4576, 2507, 2, '1.0000', NULL, '34.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4577, 2507, 3, '2.0000', NULL, '34.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4578, 2507, 4, '0.0000', NULL, '34.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4579, 2508, 1, '0.0000', NULL, '34.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4580, 2508, 2, '2.0000', NULL, '34.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4581, 2508, 3, '2.0000', NULL, '34.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4582, 2508, 4, '0.0000', NULL, '34.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4583, 2509, 1, '0.0000', NULL, '13.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4584, 2509, 2, '5.0000', NULL, '13.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4585, 2509, 3, '0.0000', NULL, '13.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4586, 2509, 4, '0.0000', NULL, '24.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4587, 2510, 1, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4588, 2510, 2, '3.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4589, 2510, 3, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4590, 2510, 4, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4591, 2511, 1, '0.0000', NULL, '8.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4592, 2511, 2, '2.0000', NULL, '8.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4593, 2511, 3, '0.0000', NULL, '8.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4594, 2511, 4, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4595, 2512, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4596, 2512, 2, '3.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4597, 2512, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4598, 2512, 4, '-1.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4599, 2513, 1, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4600, 2513, 2, '5.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4601, 2513, 3, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4602, 2513, 4, '-1.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4603, 2514, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4604, 2514, 2, '4.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4605, 2514, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4606, 2514, 4, '-1.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4607, 2515, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4608, 2515, 2, '11.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4609, 2515, 3, '4.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4610, 2515, 4, '-1.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4611, 2516, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4612, 2516, 2, '2.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4613, 2516, 3, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4614, 2516, 4, '-1.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4615, 2517, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4616, 2517, 2, '2.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4617, 2517, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4618, 2517, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4619, 2518, 1, '0.0000', NULL, '107.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4620, 2518, 2, '0.0000', NULL, '107.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4621, 2518, 3, '1.0000', NULL, '118.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4622, 2518, 4, '2.0000', NULL, '120.7354');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4623, 2519, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4624, 2519, 2, '-1.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4625, 2519, 3, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4626, 2519, 4, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4627, 2520, 1, '0.0000', NULL, '18.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4628, 2520, 2, '0.0000', NULL, '18.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4629, 2520, 3, '0.0000', NULL, '18.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4630, 2520, 4, '0.0000', NULL, '18.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4631, 2521, 1, '0.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4632, 2521, 2, '3.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4633, 2521, 3, '5.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4634, 2521, 4, '0.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4635, 2522, 1, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4636, 2522, 2, '5.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4637, 2522, 3, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4638, 2522, 4, '0.0000', NULL, '6.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4639, 2523, 1, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4640, 2523, 2, '2.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4641, 2523, 3, '6.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4642, 2523, 4, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4643, 2524, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4644, 2524, 2, '1.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4645, 2524, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4646, 2524, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4647, 2525, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4648, 2525, 2, '8.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4649, 2525, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4650, 2525, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4651, 2526, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4652, 2526, 2, '11.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4653, 2526, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4654, 2526, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4655, 2527, 1, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4656, 2527, 2, '4.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4657, 2527, 3, '2.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4658, 2527, 4, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4659, 2528, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4660, 2528, 2, '2.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4661, 2528, 3, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4662, 2528, 4, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4663, 2529, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4664, 2529, 2, '3.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4665, 2529, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4666, 2529, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4667, 2530, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4668, 2530, 2, '2.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4669, 2530, 3, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4670, 2530, 4, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4671, 2531, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4672, 2531, 2, '6.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4673, 2531, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4674, 2531, 4, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4675, 2532, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4676, 2532, 2, '6.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4677, 2532, 3, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4678, 2532, 4, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4679, 2533, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4680, 2533, 2, '2.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4681, 2533, 3, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4682, 2533, 4, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4683, 2534, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4684, 2534, 2, '5.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4685, 2534, 3, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4686, 2534, 4, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4687, 2535, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4688, 2535, 2, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4689, 2535, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4690, 2535, 4, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4691, 2536, 1, '0.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4692, 2536, 2, '1.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4693, 2536, 3, '0.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4694, 2536, 4, '0.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4695, 2537, 1, '0.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4696, 2537, 2, '0.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4697, 2537, 3, '0.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4698, 2537, 4, '0.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4699, 2538, 1, '0.0000', NULL, '120.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4700, 2538, 2, '1.0000', NULL, '120.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4701, 2538, 3, '0.0000', NULL, '120.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4702, 2538, 4, '0.0000', NULL, '120.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4703, 2539, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4704, 2539, 2, '4.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4705, 2539, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4706, 2539, 4, '-1.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4707, 2540, 1, '0.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4708, 2540, 2, '-3.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4709, 2540, 3, '0.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4710, 2540, 4, '3.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4711, 2541, 1, '0.0000', NULL, '9.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4712, 2541, 2, '5.0000', NULL, '9.6622');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4713, 2541, 3, '-1.0000', NULL, '9.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4714, 2541, 4, '10.0000', NULL, '10.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4715, 2542, 1, '0.0000', NULL, '54.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4716, 2542, 2, '1.0000', NULL, '54.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4717, 2542, 3, '1.0000', NULL, '54.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4718, 2542, 4, '0.0000', NULL, '59.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4719, 2543, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4720, 2543, 2, '46.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4721, 2543, 3, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4722, 2543, 4, '4.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4723, 2544, 1, '0.0000', NULL, '6.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4724, 2544, 2, '4.0000', NULL, '6.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4725, 2544, 3, '-1.0000', NULL, '6.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4726, 2544, 4, '2.0000', NULL, '6.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4727, 2545, 1, '0.0000', NULL, '5.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4728, 2545, 2, '1.0000', NULL, '5.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4729, 2545, 3, '1.0000', NULL, '5.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4730, 2545, 4, '-1.0000', NULL, '5.8819');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4731, 2546, 1, '0.0000', NULL, '13.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4732, 2546, 2, '4.0000', NULL, '13.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4733, 2546, 3, '-3.0000', NULL, '13.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4734, 2546, 4, '1.0000', NULL, '13.7598');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4735, 2547, 1, '0.0000', NULL, '8.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4736, 2547, 2, '4.0000', NULL, '9.0675');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4737, 2547, 3, '4.0000', NULL, '8.9650');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4738, 2547, 4, '0.0000', NULL, '8.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4739, 2548, 1, '0.0000', NULL, '6.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4740, 2548, 2, '2.0000', NULL, '6.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4741, 2548, 3, '3.0000', NULL, '6.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4742, 2548, 4, '-1.0000', NULL, '6.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4743, 2549, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4744, 2549, 2, '11.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4745, 2549, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4746, 2549, 4, '-1.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4751, 2551, 1, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4752, 2551, 2, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4753, 2551, 3, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4754, 2551, 4, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4755, 2552, 1, '0.0000', NULL, '87.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4756, 2552, 2, '0.0000', NULL, '87.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4757, 2552, 3, '0.0000', NULL, '87.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4758, 2552, 4, '1.0000', NULL, '95.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4759, 2553, 1, '0.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4760, 2553, 2, '0.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4761, 2553, 3, '0.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4762, 2553, 4, '0.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4763, 2554, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4764, 2554, 2, '-2.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4765, 2554, 3, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4766, 2554, 4, '-1.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4767, 2555, 1, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4768, 2555, 2, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4769, 2555, 3, '-5.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4770, 2555, 4, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4775, 2556, 1, '0.0000', NULL, '0.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4776, 2556, 2, '12.0000', NULL, '0.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4777, 2556, 3, '27.0000', NULL, '0.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4778, 2556, 4, '-18.0000', NULL, '0.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4779, 2557, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4780, 2557, 2, '51.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4781, 2557, 3, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4782, 2557, 4, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4783, 2558, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4784, 2558, 2, '8.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4785, 2558, 3, '4.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4786, 2558, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4787, 2559, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4788, 2559, 2, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4789, 2559, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4790, 2559, 4, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4791, 2560, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4792, 2560, 2, '1.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4793, 2560, 3, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4794, 2560, 4, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4795, 2561, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4796, 2561, 2, '4.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4797, 2561, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4798, 2561, 4, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4799, 2562, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4800, 2562, 2, '1.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4801, 2562, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4802, 2562, 4, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4803, 2563, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4804, 2563, 2, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4805, 2563, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4806, 2563, 4, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4807, 2564, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4808, 2564, 2, '1.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4809, 2564, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4810, 2564, 4, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4811, 2565, 1, '0.0000', NULL, '0.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4812, 2565, 2, '16.0000', NULL, '0.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4813, 2565, 3, '10.0000', NULL, '0.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4814, 2565, 4, '0.0000', NULL, '0.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4815, 2566, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4816, 2566, 2, '1.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4817, 2566, 3, '2.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4818, 2566, 4, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4819, 2567, 1, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4820, 2567, 2, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4821, 2567, 3, '6.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4822, 2567, 4, '-2.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4823, 2568, 1, '0.0000', NULL, '0.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4824, 2568, 2, '-87.0000', NULL, '0.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4825, 2568, 3, '0.0000', NULL, '0.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4826, 2568, 4, '-10.0000', NULL, '0.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4827, 2569, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4828, 2569, 2, '2.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4829, 2569, 3, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4830, 2569, 4, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4831, 2570, 1, '0.0000', NULL, '7.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4832, 2570, 2, '0.0000', NULL, '7.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4833, 2570, 3, '0.0000', NULL, '7.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4834, 2570, 4, '0.0000', NULL, '7.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4835, 2571, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4836, 2571, 2, '3.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4837, 2571, 3, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4838, 2571, 4, '4.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4839, 2572, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4840, 2572, 2, '3.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4841, 2572, 3, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4842, 2572, 4, '4.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4843, 2573, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4844, 2573, 2, '3.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4845, 2573, 3, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4846, 2573, 4, '5.0000', NULL, '7.7594');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4847, 2574, 1, '0.0000', NULL, '0.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4848, 2574, 2, '50.0000', NULL, '0.8967');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4849, 2574, 3, '20.0000', NULL, '0.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4850, 2574, 4, '28.0000', NULL, '0.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4851, 2575, 1, '0.0000', NULL, '12.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4852, 2575, 2, '3.0000', NULL, '12.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4853, 2575, 3, '0.0000', NULL, '12.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4854, 2575, 4, '6.0000', NULL, '12.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4855, 2576, 1, '0.0000', NULL, '107.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4856, 2576, 2, '1.0000', NULL, '107.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4857, 2576, 3, '0.0000', NULL, '107.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4858, 2576, 4, '2.0000', NULL, '54.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4859, 2577, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4860, 2577, 2, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4861, 2577, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4862, 2577, 4, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4863, 2578, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4864, 2578, 2, '10.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4865, 2578, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4866, 2578, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4867, 2579, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4868, 2579, 2, '3.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4869, 2579, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4870, 2579, 4, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4871, 2580, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4872, 2580, 2, '5.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4873, 2580, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4874, 2580, 4, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4875, 2581, 1, '0.0000', NULL, '92.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4876, 2581, 2, '1.0000', NULL, '92.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4877, 2581, 3, '0.0000', NULL, '92.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4878, 2581, 4, '-1.0000', NULL, '92.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4879, 2582, 1, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4880, 2582, 2, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4881, 2582, 3, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4882, 2582, 4, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4883, 2583, 1, '0.0000', NULL, '77.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4884, 2583, 2, '4.0000', NULL, '77.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4885, 2583, 3, '0.0000', NULL, '77.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4886, 2583, 4, '0.0000', NULL, '77.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4887, 2584, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4888, 2584, 2, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4889, 2584, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4890, 2584, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4891, 2585, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4892, 2585, 2, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4893, 2585, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4894, 2585, 4, '2.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4895, 2586, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4896, 2586, 2, '2.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4897, 2586, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4898, 2586, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4899, 2587, 1, '0.0000', NULL, '135.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4900, 2587, 2, '0.0000', NULL, '135.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4901, 2587, 3, '0.0000', NULL, '135.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4902, 2587, 4, '0.0000', NULL, '135.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4903, 2588, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4904, 2588, 2, '4.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4905, 2588, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4906, 2588, 4, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4907, 2589, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4908, 2589, 2, '2.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4909, 2589, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4910, 2589, 4, '-2.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4911, 2590, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4912, 2590, 2, '3.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4913, 2590, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4914, 2590, 4, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4919, 2592, 1, '0.0000', NULL, '7.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4920, 2592, 2, '11.0000', NULL, '7.9392');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4921, 2592, 3, '8.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4922, 2592, 4, '-3.0000', NULL, '7.9670');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4923, 2593, 1, '0.0000', NULL, '14.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4924, 2593, 2, '-5.0000', NULL, '14.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4925, 2593, 3, '6.0000', NULL, '14.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4926, 2593, 4, '6.0000', NULL, '14.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4927, 2594, 1, '0.0000', NULL, '16.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4928, 2594, 2, '3.0000', NULL, '16.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4929, 2594, 3, '0.0000', NULL, '16.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4930, 2594, 4, '0.0000', NULL, '16.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4931, 2595, 1, '0.0000', NULL, '17.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4932, 2595, 2, '2.0000', NULL, '17.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4933, 2595, 3, '0.0000', NULL, '17.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4934, 2595, 4, '0.0000', NULL, '17.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4935, 2596, 1, '0.0000', NULL, '19.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4936, 2596, 2, '1.0000', NULL, '19.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4937, 2596, 3, '2.0000', NULL, '19.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4938, 2596, 4, '0.0000', NULL, '19.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4939, 2597, 1, '0.0000', NULL, '3.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4940, 2597, 2, '1.0000', NULL, '3.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4941, 2597, 3, '0.0000', NULL, '3.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4942, 2597, 4, '-1.0000', NULL, '3.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4943, 2598, 1, '0.0000', NULL, '5.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4944, 2598, 2, '1.0000', NULL, '5.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4945, 2598, 3, '0.0000', NULL, '5.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4946, 2598, 4, '2.0000', NULL, '5.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4947, 2599, 1, '0.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4948, 2599, 2, '2.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4949, 2599, 3, '0.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4950, 2599, 4, '2.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4951, 2600, 1, '0.0000', NULL, '56.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4952, 2600, 2, '-1.0000', NULL, '56.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4953, 2600, 3, '1.0000', NULL, '56.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4954, 2600, 4, '0.0000', NULL, '56.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4955, 2601, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4956, 2601, 2, '1.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4957, 2601, 3, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4958, 2601, 4, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4959, 2602, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4960, 2602, 2, '4.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4961, 2602, 3, '2.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4962, 2602, 4, '16.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4963, 2603, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4964, 2603, 2, '19.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4965, 2603, 3, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4966, 2603, 4, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4967, 2604, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4968, 2604, 2, '6.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4969, 2604, 3, '3.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4970, 2604, 4, '-1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4971, 2605, 1, '0.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4972, 2605, 2, '3.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4973, 2605, 3, '0.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4974, 2605, 4, '-3.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4975, 2606, 1, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4976, 2606, 2, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4977, 2606, 3, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4978, 2606, 4, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4979, 2607, 1, '0.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4980, 2607, 2, '15.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4981, 2607, 3, '0.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4982, 2607, 4, '13.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4983, 2608, 1, '0.0000', NULL, '83.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4984, 2608, 2, '1.0000', NULL, '83.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4985, 2608, 3, '0.0000', NULL, '83.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4986, 2608, 4, '0.0000', NULL, '83.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4987, 2609, 1, '0.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4988, 2609, 2, '3.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4989, 2609, 3, '-1.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4990, 2609, 4, '0.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4991, 2610, 1, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4992, 2610, 2, '1.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4993, 2610, 3, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4994, 2610, 4, '-1.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4995, 2611, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4996, 2611, 2, '4.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4997, 2611, 3, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4998, 2611, 4, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (4999, 2612, 1, '0.0000', NULL, '7.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5000, 2612, 2, '5.0000', NULL, '7.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5001, 2612, 3, '0.0000', NULL, '7.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5002, 2612, 4, '0.0000', NULL, '7.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5003, 2613, 1, '0.0000', NULL, '29.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5004, 2613, 2, '0.0000', NULL, '29.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5005, 2613, 3, '0.0000', NULL, '29.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5006, 2613, 4, '0.0000', NULL, '29.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5007, 2614, 1, '0.0000', NULL, '52.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5008, 2614, 2, '1.0000', NULL, '52.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5009, 2614, 3, '0.0000', NULL, '52.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5010, 2614, 4, '0.0000', NULL, '52.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5011, 2615, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5012, 2615, 2, '3.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5013, 2615, 3, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5014, 2615, 4, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5015, 2616, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5016, 2616, 2, '6.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5017, 2616, 3, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5018, 2616, 4, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5019, 2617, 1, '0.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5020, 2617, 2, '2.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5021, 2617, 3, '0.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5022, 2617, 4, '-2.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5023, 2618, 1, '0.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5024, 2618, 2, '27.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5025, 2618, 3, '0.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5026, 2618, 4, '-4.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5027, 2619, 1, '0.0000', NULL, '31.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5028, 2619, 2, '0.0000', NULL, '31.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5029, 2619, 3, '0.0000', NULL, '31.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5030, 2619, 4, '0.0000', NULL, '31.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5031, 2620, 1, '0.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5032, 2620, 2, '2.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5033, 2620, 3, '0.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5034, 2620, 4, '0.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5035, 2621, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5036, 2621, 2, '3.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5037, 2621, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5038, 2621, 4, '3.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5039, 2622, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5040, 2622, 2, '2.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5041, 2622, 3, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5042, 2622, 4, '-2.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5043, 2623, 1, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5044, 2623, 2, '-3.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5045, 2623, 3, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5046, 2623, 4, '5.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5047, 2624, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5048, 2624, 2, '2.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5049, 2624, 3, '1.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5050, 2624, 4, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5051, 2625, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5052, 2625, 2, '1.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5053, 2625, 3, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5054, 2625, 4, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5055, 2626, 1, '0.0000', NULL, '7.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5056, 2626, 2, '2.0000', NULL, '7.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5057, 2626, 3, '3.0000', NULL, '7.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5058, 2626, 4, '0.0000', NULL, '7.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5059, 2627, 1, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5060, 2627, 2, '2.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5061, 2627, 3, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5062, 2627, 4, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5063, 2628, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5064, 2628, 2, '3.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5065, 2628, 3, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5066, 2628, 4, '-1.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5067, 2629, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5068, 2629, 2, '2.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5069, 2629, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5070, 2629, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5071, 2630, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5072, 2630, 2, '3.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5073, 2630, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5074, 2630, 4, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5075, 2631, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5076, 2631, 2, '1.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5077, 2631, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5078, 2631, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5079, 2632, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5080, 2632, 2, '3.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5081, 2632, 3, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5082, 2632, 4, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5083, 2633, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5084, 2633, 2, '6.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5085, 2633, 3, '-1.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5086, 2633, 4, '8.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5087, 2634, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5088, 2634, 2, '2.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5089, 2634, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5090, 2634, 4, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5091, 2635, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5092, 2635, 2, '-1.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5093, 2635, 3, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5094, 2635, 4, '-1.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5095, 2636, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5096, 2636, 2, '4.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5097, 2636, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5098, 2636, 4, '1.0000', NULL, '7.2738');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5099, 2637, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5100, 2637, 2, '4.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5101, 2637, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5102, 2637, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5103, 2638, 1, '0.0000', NULL, '19.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5104, 2638, 2, '4.0000', NULL, '19.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5105, 2638, 3, '0.0000', NULL, '19.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5106, 2638, 4, '5.0000', NULL, '19.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5111, 2640, 1, '0.0000', NULL, '7.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5112, 2640, 2, '0.0000', NULL, '7.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5113, 2640, 3, '0.0000', NULL, '7.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5114, 2640, 4, '0.0000', NULL, '7.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5115, 2641, 1, '0.0000', NULL, '9.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5116, 2641, 2, '0.0000', NULL, '9.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5117, 2641, 3, '0.0000', NULL, '9.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5118, 2641, 4, '0.0000', NULL, '9.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5119, 2642, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5120, 2642, 2, '24.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5121, 2642, 3, '12.0000', NULL, '9.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5122, 2642, 4, '-2.0000', NULL, '9.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5123, 2643, 1, '0.0000', NULL, '0.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5124, 2643, 2, '4.0000', NULL, '0.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5125, 2643, 3, '0.0000', NULL, '0.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5126, 2643, 4, '-1.0000', NULL, '0.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5127, 2644, 1, '0.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5128, 2644, 2, '0.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5129, 2644, 3, '0.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5130, 2644, 4, '0.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5131, 2645, 1, '0.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5132, 2645, 2, '1.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5133, 2645, 3, '0.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5134, 2645, 4, '0.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5135, 2646, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5136, 2646, 2, '8.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5137, 2646, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5138, 2646, 4, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5139, 2647, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5140, 2647, 2, '2.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5141, 2647, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5142, 2647, 4, '-1.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5143, 2648, 1, '0.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5144, 2648, 2, '7.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5145, 2648, 3, '0.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5146, 2648, 4, '0.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5147, 2649, 1, '0.0000', NULL, '71.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5148, 2649, 2, '6.0000', NULL, '69.5976');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5149, 2649, 3, '0.0000', NULL, '71.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5150, 2649, 4, '-1.0000', NULL, '71.9188');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5151, 2650, 1, '0.0000', NULL, '7.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5152, 2650, 2, '1.0000', NULL, '7.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5153, 2650, 3, '-1.0000', NULL, '7.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5154, 2650, 4, '-2.0000', NULL, '7.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5155, 2651, 1, '0.0000', NULL, '10.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5156, 2651, 2, '1.0000', NULL, '10.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5157, 2651, 3, '0.0000', NULL, '10.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5158, 2651, 4, '0.0000', NULL, '10.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5159, 2652, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5160, 2652, 2, '2.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5161, 2652, 3, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5162, 2652, 4, '-3.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5163, 2653, 1, '0.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5164, 2653, 2, '3.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5165, 2653, 3, '0.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5166, 2653, 4, '7.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5167, 2654, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5168, 2654, 2, '3.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5169, 2654, 3, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5170, 2654, 4, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5171, 2655, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5172, 2655, 2, '-13.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5173, 2655, 3, '-6.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5174, 2655, 4, '-8.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5175, 2656, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5176, 2656, 2, '12.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5177, 2656, 3, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5178, 2656, 4, '-2.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5179, 2657, 1, '-3.0000', NULL, '5.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5180, 2657, 2, '8.0000', NULL, '5.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5181, 2657, 3, '0.0000', NULL, '5.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5182, 2657, 4, '-2.0000', NULL, '5.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5183, 2658, 1, '-8.0000', NULL, '0.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5184, 2658, 2, '10.0000', NULL, '0.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5185, 2658, 3, '0.0000', NULL, '0.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5186, 2658, 4, '0.0000', NULL, '0.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5187, 2659, 1, '0.0000', NULL, '25.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5188, 2659, 2, '1.0000', NULL, '25.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5189, 2659, 3, '2.0000', NULL, '25.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5190, 2659, 4, '0.0000', NULL, '25.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5191, 2660, 1, '0.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5192, 2660, 2, '119.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5193, 2660, 3, '26.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5194, 2660, 4, '-30.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5195, 2661, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5196, 2661, 2, '5.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5197, 2661, 3, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5198, 2661, 4, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5199, 2662, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5200, 2662, 2, '10.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5201, 2662, 3, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5202, 2662, 4, '-5.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5203, 2663, 1, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5204, 2663, 2, '3.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5205, 2663, 3, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5206, 2663, 4, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5207, 2664, 1, '0.0000', NULL, '11.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5208, 2664, 2, '0.0000', NULL, '11.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5209, 2664, 3, '0.0000', NULL, '11.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5210, 2664, 4, '0.0000', NULL, '11.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5211, 2665, 1, '0.0000', NULL, '23.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5212, 2665, 2, '3.0000', NULL, '24.4700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5213, 2665, 3, '0.0000', NULL, '23.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5214, 2665, 4, '0.0000', NULL, '23.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5215, 2666, 1, '0.0000', NULL, '18.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5216, 2666, 2, '2.0000', NULL, '18.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5217, 2666, 3, '0.0000', NULL, '18.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5218, 2666, 4, '0.0000', NULL, '18.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5219, 2667, 1, '0.0000', NULL, '25.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5220, 2667, 2, '2.0000', NULL, '25.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5221, 2667, 3, '0.0000', NULL, '25.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5222, 2667, 4, '0.0000', NULL, '25.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5223, 2668, 1, '0.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5224, 2668, 2, '2.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5225, 2668, 3, '0.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5226, 2668, 4, '6.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5227, 2669, 1, '0.0000', NULL, '49.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5228, 2669, 2, '1.0000', NULL, '49.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5229, 2669, 3, '4.0000', NULL, '24.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5230, 2669, 4, '1.0000', NULL, '24.5336');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5231, 2670, 1, '0.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5232, 2670, 2, '92.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5233, 2670, 3, '0.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5234, 2670, 4, '0.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5235, 2671, 1, '0.0000', NULL, '28.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5236, 2671, 2, '2.0000', NULL, '28.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5237, 2671, 3, '0.0000', NULL, '28.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5238, 2671, 4, '-1.0000', NULL, '28.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5239, 2672, 1, '0.0000', NULL, '7.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5240, 2672, 2, '14.0000', NULL, '7.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5241, 2672, 3, '0.0000', NULL, '7.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5242, 2672, 4, '0.0000', NULL, '7.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5243, 2673, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5244, 2673, 2, '3.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5245, 2673, 3, '-2.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5246, 2673, 4, '4.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5247, 2674, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5248, 2674, 2, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5249, 2674, 3, '10.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5250, 2674, 4, '0.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5251, 2675, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5252, 2675, 2, '50.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5253, 2675, 3, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5254, 2675, 4, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5255, 2676, 1, '0.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5256, 2676, 2, '-1.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5257, 2676, 3, '0.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5258, 2676, 4, '0.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5259, 2677, 1, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5260, 2677, 2, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5261, 2677, 3, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5262, 2677, 4, '0.0000', NULL, '250.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5263, 2678, 1, '0.0000', NULL, '37.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5264, 2678, 2, '6.0000', NULL, '37.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5265, 2678, 3, '10.0000', NULL, '37.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5266, 2678, 4, '-1.0000', NULL, '37.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5267, 2679, 1, '0.0000', NULL, '32.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5268, 2679, 2, '3.0000', NULL, '32.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5269, 2679, 3, '3.0000', NULL, '33.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5270, 2679, 4, '-2.0000', NULL, '32.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5271, 2680, 1, '0.0000', NULL, '11.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5272, 2680, 2, '0.0000', NULL, '11.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5273, 2680, 3, '0.0000', NULL, '11.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5274, 2680, 4, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5275, 2681, 1, '0.0000', NULL, '12.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5276, 2681, 2, '7.0000', NULL, '12.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5277, 2681, 3, '8.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5278, 2681, 4, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5279, 2682, 1, '0.0000', NULL, '19.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5280, 2682, 2, '6.0000', NULL, '19.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5281, 2682, 3, '3.0000', NULL, '19.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5282, 2682, 4, '0.0000', NULL, '19.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5283, 2683, 1, '0.0000', NULL, '49.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5284, 2683, 2, '4.0000', NULL, '49.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5285, 2683, 3, '0.0000', NULL, '49.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5286, 2683, 4, '-1.0000', NULL, '49.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5287, 2684, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5288, 2684, 2, '3.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5289, 2684, 3, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5290, 2684, 4, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5291, 2685, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5292, 2685, 2, '6.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5293, 2685, 3, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5294, 2685, 4, '-1.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5295, 2686, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5296, 2686, 2, '2.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5297, 2686, 3, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5298, 2686, 4, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5299, 2687, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5300, 2687, 2, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5301, 2687, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5302, 2687, 4, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5303, 2688, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5304, 2688, 2, '2.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5305, 2688, 3, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5306, 2688, 4, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5307, 2689, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5308, 2689, 2, '1.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5309, 2689, 3, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5310, 2689, 4, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5311, 2690, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5312, 2690, 2, '3.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5313, 2690, 3, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5314, 2690, 4, '-1.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5315, 2691, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5316, 2691, 2, '5.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5317, 2691, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5318, 2691, 4, '-1.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5319, 2692, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5320, 2692, 2, '17.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5321, 2692, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5322, 2692, 4, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5323, 2693, 1, '0.0000', NULL, '25.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5324, 2693, 2, '1.0000', NULL, '25.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5325, 2693, 3, '0.0000', NULL, '25.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5326, 2693, 4, '-1.0000', NULL, '25.3656');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5327, 2694, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5328, 2694, 2, '9.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5329, 2694, 3, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5330, 2694, 4, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5331, 2695, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5332, 2695, 2, '58.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5333, 2695, 3, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5334, 2695, 4, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5335, 2696, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5336, 2696, 2, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5337, 2696, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5338, 2696, 4, '-1.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5339, 2697, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5340, 2697, 2, '-5.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5341, 2697, 3, '5.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5342, 2697, 4, '8.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5343, 2698, 1, '0.0000', NULL, '36.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5344, 2698, 2, '2.0000', NULL, '36.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5345, 2698, 3, '0.0000', NULL, '36.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5346, 2698, 4, '0.0000', NULL, '36.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5347, 2699, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5348, 2699, 2, '11.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5349, 2699, 3, '-5.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5350, 2699, 4, '-3.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5351, 2700, 1, '0.0000', NULL, '27.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5352, 2700, 2, '0.0000', NULL, '27.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5353, 2700, 3, '2.0000', NULL, '27.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5354, 2700, 4, '0.0000', NULL, '27.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5355, 2701, 1, '0.0000', NULL, '31.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5356, 2701, 2, '1.0000', NULL, '31.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5357, 2701, 3, '0.0000', NULL, '31.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5358, 2701, 4, '0.0000', NULL, '31.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5359, 2702, 1, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5360, 2702, 2, '4.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5361, 2702, 3, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5362, 2702, 4, '-1.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5363, 2703, 1, '0.0000', NULL, '4.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5364, 2703, 2, '0.0000', NULL, '4.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5365, 2703, 3, '0.0000', NULL, '4.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5366, 2703, 4, '0.0000', NULL, '4.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5367, 2704, 1, '0.0000', NULL, '14.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5368, 2704, 2, '0.0000', NULL, '14.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5369, 2704, 3, '0.0000', NULL, '14.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5370, 2704, 4, '0.0000', NULL, '14.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5371, 2705, 1, '0.0000', NULL, '10.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5372, 2705, 2, '2.0000', NULL, '10.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5373, 2705, 3, '0.0000', NULL, '10.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5374, 2705, 4, '0.0000', NULL, '10.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5375, 2706, 1, '0.0000', NULL, '6.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5376, 2706, 2, '2.0000', NULL, '6.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5377, 2706, 3, '1.0000', NULL, '6.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5378, 2706, 4, '0.0000', NULL, '6.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5379, 2707, 1, '0.0000', NULL, '0.5400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5380, 2707, 2, '50.0000', NULL, '0.5400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5381, 2707, 3, '100.0000', NULL, '0.5400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5382, 2707, 4, '-4.0000', NULL, '0.5400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5383, 2708, 1, '0.0000', NULL, '33.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5384, 2708, 2, '2.0000', NULL, '33.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5385, 2708, 3, '0.0000', NULL, '33.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5386, 2708, 4, '0.0000', NULL, '33.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5387, 2709, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5388, 2709, 2, '2.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5389, 2709, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5390, 2709, 4, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5391, 2710, 1, '0.0000', NULL, '40.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5392, 2710, 2, '4.0000', NULL, '40.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5393, 2710, 3, '6.0000', NULL, '40.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5394, 2710, 4, '0.0000', NULL, '40.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5399, 2712, 1, '0.0000', NULL, '0.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5400, 2712, 2, '49.0000', NULL, '0.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5401, 2712, 3, '0.0000', NULL, '0.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5402, 2712, 4, '-17.0000', NULL, '0.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5403, 2713, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5404, 2713, 2, '3.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5405, 2713, 3, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5406, 2713, 4, '1.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5407, 2714, 1, '0.0000', NULL, '0.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5408, 2714, 2, '-7.0000', NULL, '0.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5409, 2714, 3, '0.0000', NULL, '0.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5410, 2714, 4, '15.0000', NULL, '0.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5411, 2715, 1, '0.0000', NULL, '9.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5412, 2715, 2, '3.0000', NULL, '9.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5413, 2715, 3, '0.0000', NULL, '9.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5414, 2715, 4, '0.0000', NULL, '9.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5415, 2716, 1, '0.0000', NULL, '9.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5416, 2716, 2, '5.0000', NULL, '9.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5417, 2716, 3, '3.0000', NULL, '9.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5418, 2716, 4, '0.0000', NULL, '9.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5419, 2717, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5420, 2717, 2, '2.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5421, 2717, 3, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5422, 2717, 4, '6.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5427, 2719, 1, '0.0000', NULL, '55.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5428, 2719, 2, '0.0000', NULL, '55.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5429, 2719, 3, '1.0000', NULL, '55.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5430, 2719, 4, '0.0000', NULL, '55.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5431, 2720, 1, '0.0000', NULL, '2.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5432, 2720, 2, '0.0000', NULL, '2.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5433, 2720, 3, '5.0000', NULL, '2.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5434, 2720, 4, '0.0000', NULL, '2.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5435, 2721, 1, '0.0000', NULL, '8.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5436, 2721, 2, '0.0000', NULL, '8.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5437, 2721, 3, '2.0000', NULL, '8.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5438, 2721, 4, '0.0000', NULL, '8.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5439, 2722, 1, '0.0000', NULL, '8.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5440, 2722, 2, '0.0000', NULL, '8.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5441, 2722, 3, '0.0000', NULL, '8.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5442, 2722, 4, '-1.0000', NULL, '8.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5443, 2723, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5444, 2723, 2, '3.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5445, 2723, 3, '6.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5446, 2723, 4, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5447, 2724, 1, '0.0000', NULL, '7.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5448, 2724, 2, '0.0000', NULL, '7.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5449, 2724, 3, '0.0000', NULL, '7.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5450, 2724, 4, '0.0000', NULL, '7.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5451, 2725, 1, '0.0000', NULL, '7.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5452, 2725, 2, '0.0000', NULL, '7.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5453, 2725, 3, '6.0000', NULL, '7.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5454, 2725, 4, '0.0000', NULL, '7.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5455, 2726, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5456, 2726, 2, '-1.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5457, 2726, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5458, 2726, 4, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5459, 2727, 1, '0.0000', NULL, '4.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5460, 2727, 2, '0.0000', NULL, '4.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5461, 2727, 3, '4.0000', NULL, '4.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5462, 2727, 4, '-1.0000', NULL, '4.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5463, 2728, 1, '0.0000', NULL, '0.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5464, 2728, 2, '0.0000', NULL, '0.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5465, 2728, 3, '48.0000', NULL, '0.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5466, 2728, 4, '0.0000', NULL, '0.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5467, 2729, 1, '0.0000', NULL, '3.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5468, 2729, 2, '0.0000', NULL, '3.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5469, 2729, 3, '9.0000', NULL, '3.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5470, 2729, 4, '-2.0000', NULL, '3.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5471, 2730, 1, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5472, 2730, 2, '96.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5473, 2730, 3, '-2.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5474, 2730, 4, '48.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5475, 2731, 1, '0.0000', NULL, '2.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5476, 2731, 2, '0.0000', NULL, '2.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5477, 2731, 3, '1.0000', NULL, '2.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5478, 2731, 4, '0.0000', NULL, '2.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5479, 2732, 1, '0.0000', NULL, '29.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5480, 2732, 2, '-1.0000', NULL, '36.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5481, 2732, 3, '3.0000', NULL, '29.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5482, 2732, 4, '0.0000', NULL, '29.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5483, 2733, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5484, 2733, 2, '6.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5485, 2733, 3, '9.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5486, 2733, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5487, 2734, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5488, 2734, 2, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5489, 2734, 3, '2.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5490, 2734, 4, '3.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5491, 2735, 1, '0.0000', NULL, '13.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5492, 2735, 2, '0.0000', NULL, '13.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5493, 2735, 3, '3.0000', NULL, '13.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5494, 2735, 4, '3.0000', NULL, '13.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5495, 2736, 1, '0.0000', NULL, '8.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5496, 2736, 2, '0.0000', NULL, '8.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5497, 2736, 3, '3.0000', NULL, '8.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5498, 2736, 4, '0.0000', NULL, '8.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5499, 2737, 1, '0.0000', NULL, '6.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5500, 2737, 2, '0.0000', NULL, '6.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5501, 2737, 3, '3.0000', NULL, '6.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5502, 2737, 4, '0.0000', NULL, '6.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5503, 2738, 1, '0.0000', NULL, '7.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5504, 2738, 2, '0.0000', NULL, '7.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5505, 2738, 3, '10.0000', NULL, '7.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5506, 2738, 4, '0.0000', NULL, '7.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5507, 2739, 1, '0.0000', NULL, '6.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5508, 2739, 2, '0.0000', NULL, '6.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5509, 2739, 3, '8.0000', NULL, '6.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5510, 2739, 4, '-6.0000', NULL, '6.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5511, 2740, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5512, 2740, 2, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5513, 2740, 3, '3.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5514, 2740, 4, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5515, 2741, 1, '-2.0000', NULL, '40.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5516, 2741, 2, '4.0000', NULL, '40.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5517, 2741, 3, '1.0000', NULL, '40.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5518, 2741, 4, '0.0000', NULL, '40.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5519, 2742, 1, '0.0000', NULL, '14.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5520, 2742, 2, '0.0000', NULL, '14.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5521, 2742, 3, '2.0000', NULL, '14.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5522, 2742, 4, '0.0000', NULL, '14.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5523, 2743, 1, '0.0000', NULL, '5.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5524, 2743, 2, '0.0000', NULL, '5.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5525, 2743, 3, '3.0000', NULL, '5.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5526, 2743, 4, '0.0000', NULL, '5.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5527, 2744, 1, '0.0000', NULL, '9.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5528, 2744, 2, '0.0000', NULL, '9.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5529, 2744, 3, '3.0000', NULL, '9.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5530, 2744, 4, '-1.0000', NULL, '9.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5531, 2745, 1, '0.0000', NULL, '97.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5532, 2745, 2, '0.0000', NULL, '97.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5533, 2745, 3, '0.0000', NULL, '97.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5534, 2745, 4, '0.0000', NULL, '97.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5543, 2748, 1, '0.0000', NULL, '35.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5544, 2748, 2, '2.0000', NULL, '35.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5545, 2748, 3, '0.0000', NULL, '35.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5546, 2748, 4, '0.0000', NULL, '35.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5547, 2749, 1, '0.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5548, 2749, 2, '3.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5549, 2749, 3, '3.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5550, 2749, 4, '-1.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5551, 2750, 1, '0.0000', NULL, '0.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5552, 2750, 2, '0.0000', NULL, '0.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5553, 2750, 3, '10.0000', NULL, '0.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5554, 2750, 4, '0.0000', NULL, '0.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5555, 2751, 1, '0.0000', NULL, '0.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5556, 2751, 2, '0.0000', NULL, '0.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5557, 2751, 3, '10.0000', NULL, '0.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5558, 2751, 4, '0.0000', NULL, '0.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5559, 2752, 1, '0.0000', NULL, '0.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5560, 2752, 2, '0.0000', NULL, '0.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5561, 2752, 3, '10.0000', NULL, '0.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5562, 2752, 4, '0.0000', NULL, '0.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5563, 2753, 1, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5564, 2753, 2, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5565, 2753, 3, '4.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5566, 2753, 4, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5567, 2754, 1, '0.0000', NULL, '0.0800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5568, 2754, 2, '0.0000', NULL, '0.0800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5569, 2754, 3, '99.0000', NULL, '0.0800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5570, 2754, 4, '-4.0000', NULL, '0.0800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5571, 2755, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5572, 2755, 2, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5573, 2755, 3, '3.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5574, 2755, 4, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5575, 2756, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5576, 2756, 2, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5577, 2756, 3, '2.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5578, 2756, 4, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5579, 2757, 1, '0.0000', NULL, '6.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5580, 2757, 2, '0.0000', NULL, '6.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5581, 2757, 3, '2.0000', NULL, '6.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5582, 2757, 4, '0.0000', NULL, '6.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5583, 2758, 1, '0.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5584, 2758, 2, '0.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5585, 2758, 3, '10.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5586, 2758, 4, '0.0000', NULL, '-20.1917');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5587, 2759, 1, '0.0000', NULL, '3.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5588, 2759, 2, '2.0000', NULL, '3.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5589, 2759, 3, '4.0000', NULL, '3.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5590, 2759, 4, '0.0000', NULL, '3.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5591, 1918, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5592, 1918, 2, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5593, 1918, 3, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5594, 1918, 4, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5595, 2760, 1, '0.0000', NULL, '7.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5596, 2760, 2, '0.0000', NULL, '7.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5597, 2760, 3, '-9.0000', NULL, '7.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5598, 2760, 4, '0.0000', NULL, '-464.7024');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5599, 2761, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5600, 2761, 2, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5601, 2761, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5602, 2761, 4, '1.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5603, 2762, 1, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5604, 2762, 2, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5605, 2762, 3, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5606, 2762, 4, '3.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5607, 2763, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5608, 2763, 2, '18.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5609, 2763, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5610, 2763, 4, '-1.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5615, 2765, 1, '0.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5616, 2765, 2, '0.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5617, 2765, 3, '0.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5618, 2765, 4, '0.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5619, 2766, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5620, 2766, 2, '-1.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5621, 2766, 3, '-1.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5622, 2766, 4, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5623, 2767, 1, '0.0000', NULL, '35.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5624, 2767, 2, '2.0000', NULL, '35.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5625, 2767, 3, '0.0000', NULL, '35.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5626, 2767, 4, '2.0000', NULL, '35.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5627, 2768, 1, '0.0000', NULL, '0.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5628, 2768, 2, '-9.0000', NULL, '0.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5629, 2768, 3, '-3.0000', NULL, '0.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5630, 2768, 4, '-2.0000', NULL, '0.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5631, 2769, 1, '0.0000', NULL, '0.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5632, 2769, 2, '-4.0000', NULL, '0.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5633, 2769, 3, '-4.0000', NULL, '0.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5634, 2769, 4, '5.0000', NULL, '1.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5635, 2770, 1, '0.0000', NULL, '53.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5636, 2770, 2, '0.0000', NULL, '53.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5637, 2770, 3, '0.0000', NULL, '53.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5638, 2770, 4, '3.0000', NULL, '53.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5639, 2771, 1, '0.0000', NULL, '0.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5640, 2771, 2, '0.0000', NULL, '0.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5641, 2771, 3, '0.0000', NULL, '0.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5642, 2771, 4, '48.0000', NULL, '0.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5643, 2772, 1, '0.0000', NULL, '16.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5644, 2772, 2, '-3.0000', NULL, '16.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5645, 2772, 3, '0.0000', NULL, '16.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5646, 2772, 4, '11.0000', NULL, '16.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5647, 2773, 1, '0.0000', NULL, '15.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5648, 2773, 2, '0.0000', NULL, '15.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5649, 2773, 3, '0.0000', NULL, '15.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5650, 2773, 4, '0.0000', NULL, '15.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5651, 2774, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5652, 2774, 2, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5653, 2774, 3, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5654, 2774, 4, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5655, 2775, 1, '0.0000', NULL, '18.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5656, 2775, 2, '3.0000', NULL, '18.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5657, 2775, 3, '2.0000', NULL, '18.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5658, 2775, 4, '0.0000', NULL, '18.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5659, 2776, 1, '0.0000', NULL, '14.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5660, 2776, 2, '2.0000', NULL, '14.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5661, 2776, 3, '0.0000', NULL, '14.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5662, 2776, 4, '0.0000', NULL, '14.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5663, 2777, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5664, 2777, 2, '-3.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5665, 2777, 3, '4.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5666, 2777, 4, '-2.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5667, 2778, 1, '0.0000', NULL, '89.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5668, 2778, 2, '2.0000', NULL, '89.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5669, 2778, 3, '0.0000', NULL, '89.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5670, 2778, 4, '2.0000', NULL, '89.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5671, 2779, 1, '0.0000', NULL, '26.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5672, 2779, 2, '3.0000', NULL, '26.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5673, 2779, 3, '0.0000', NULL, '26.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5674, 2779, 4, '2.0000', NULL, '26.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5675, 2780, 1, '0.0000', NULL, '52.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5676, 2780, 2, '2.0000', NULL, '52.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5677, 2780, 3, '0.0000', NULL, '52.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5678, 2780, 4, '2.0000', NULL, '52.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5679, 2781, 1, '0.0000', NULL, '31.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5680, 2781, 2, '3.0000', NULL, '31.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5681, 2781, 3, '0.0000', NULL, '31.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5682, 2781, 4, '2.0000', NULL, '31.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5683, 2782, 1, '0.0000', NULL, '91.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5684, 2782, 2, '2.0000', NULL, '91.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5685, 2782, 3, '0.0000', NULL, '91.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5686, 2782, 4, '1.0000', NULL, '91.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5687, 2783, 1, '0.0000', NULL, '17.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5688, 2783, 2, '3.0000', NULL, '17.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5689, 2783, 3, '0.0000', NULL, '17.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5690, 2783, 4, '2.0000', NULL, '17.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5691, 2784, 1, '0.0000', NULL, '53.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5692, 2784, 2, '4.0000', NULL, '53.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5693, 2784, 3, '0.0000', NULL, '53.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5694, 2784, 4, '1.0000', NULL, '53.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5695, 2785, 1, '0.0000', NULL, '41.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5696, 2785, 2, '3.0000', NULL, '41.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5697, 2785, 3, '0.0000', NULL, '41.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5698, 2785, 4, '2.0000', NULL, '41.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5699, 2786, 1, '0.0000', NULL, '40.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5700, 2786, 2, '2.0000', NULL, '40.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5701, 2786, 3, '0.0000', NULL, '40.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5702, 2786, 4, '2.0000', NULL, '40.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5703, 2787, 1, '0.0000', NULL, '16.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5704, 2787, 2, '4.0000', NULL, '16.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5705, 2787, 3, '0.0000', NULL, '16.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5706, 2787, 4, '5.0000', NULL, '16.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5707, 2788, 1, '0.0000', NULL, '33.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5708, 2788, 2, '3.0000', NULL, '33.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5709, 2788, 3, '0.0000', NULL, '33.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5710, 2788, 4, '2.0000', NULL, '33.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5711, 2789, 1, '0.0000', NULL, '52.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5712, 2789, 2, '3.0000', NULL, '52.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5713, 2789, 3, '0.0000', NULL, '52.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5714, 2789, 4, '2.0000', NULL, '52.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5715, 2790, 1, '0.0000', NULL, '39.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5716, 2790, 2, '3.0000', NULL, '39.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5717, 2790, 3, '0.0000', NULL, '39.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5718, 2790, 4, '2.0000', NULL, '39.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5719, 2791, 1, '0.0000', NULL, '41.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5720, 2791, 2, '3.0000', NULL, '41.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5721, 2791, 3, '0.0000', NULL, '41.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5722, 2791, 4, '2.0000', NULL, '41.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5723, 2792, 1, '0.0000', NULL, '38.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5724, 2792, 2, '3.0000', NULL, '38.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5725, 2792, 3, '0.0000', NULL, '38.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5726, 2792, 4, '2.0000', NULL, '38.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5727, 2793, 1, '0.0000', NULL, '31.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5728, 2793, 2, '2.0000', NULL, '31.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5729, 2793, 3, '0.0000', NULL, '31.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5730, 2793, 4, '0.0000', NULL, '31.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5731, 2794, 1, '0.0000', NULL, '17.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5732, 2794, 2, '5.0000', NULL, '17.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5733, 2794, 3, '0.0000', NULL, '17.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5734, 2794, 4, '5.0000', NULL, '17.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5735, 2795, 1, '0.0000', NULL, '35.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5736, 2795, 2, '3.0000', NULL, '35.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5737, 2795, 3, '0.0000', NULL, '35.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5738, 2795, 4, '2.0000', NULL, '35.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5739, 2796, 1, '0.0000', NULL, '30.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5740, 2796, 2, '2.0000', NULL, '30.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5741, 2796, 3, '0.0000', NULL, '30.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5742, 2796, 4, '3.0000', NULL, '30.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5743, 2798, 1, '0.0000', NULL, '28.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5744, 2798, 2, '3.0000', NULL, '28.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5745, 2798, 3, '0.0000', NULL, '28.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5746, 2798, 4, '2.0000', NULL, '28.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5747, 2799, 1, '0.0000', NULL, '56.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5748, 2799, 2, '0.0000', NULL, '56.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5749, 2799, 3, '0.0000', NULL, '56.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5750, 2799, 4, '1.0000', NULL, '56.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5751, 2800, 1, '0.0000', NULL, '45.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5752, 2800, 2, '3.0000', NULL, '45.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5753, 2800, 3, '0.0000', NULL, '45.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5754, 2800, 4, '2.0000', NULL, '45.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5755, 2801, 1, '0.0000', NULL, '65.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5756, 2801, 2, '3.0000', NULL, '65.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5757, 2801, 3, '0.0000', NULL, '65.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5758, 2801, 4, '2.0000', NULL, '65.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5759, 2802, 1, '0.0000', NULL, '52.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5760, 2802, 2, '3.0000', NULL, '52.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5761, 2802, 3, '0.0000', NULL, '52.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5762, 2802, 4, '2.0000', NULL, '52.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5763, 2797, 4, '2.0000', NULL, '27.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5764, 2797, 1, '0.0000', NULL, '27.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5765, 2797, 2, '3.0000', NULL, '27.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5766, 2797, 3, '0.0000', NULL, '27.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5767, 2803, 1, '0.0000', NULL, '8.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5768, 2803, 2, '88.0000', NULL, '1.4745');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5769, 2803, 3, '1.0000', NULL, '8.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5770, 2803, 4, '0.0000', NULL, '8.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5771, 2804, 1, '0.0000', NULL, '51.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5772, 2804, 2, '2.0000', NULL, '51.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5773, 2804, 3, '0.0000', NULL, '51.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5774, 2804, 4, '2.0000', NULL, '51.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5775, 2805, 1, '0.0000', NULL, '70.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5776, 2805, 2, '3.0000', NULL, '70.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5777, 2805, 3, '0.0000', NULL, '70.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5778, 2805, 4, '2.0000', NULL, '70.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5779, 2806, 1, '0.0000', NULL, '5.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5780, 2806, 2, '3.0000', NULL, '5.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5781, 2806, 3, '0.0000', NULL, '5.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5782, 2806, 4, '0.0000', NULL, '5.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5783, 2807, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5784, 2807, 2, '7.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5785, 2807, 3, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5786, 2807, 4, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5787, 2808, 1, '0.0000', NULL, '39.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5788, 2808, 2, '1.0000', NULL, '39.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5789, 2808, 3, '0.0000', NULL, '39.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5790, 2808, 4, '0.0000', NULL, '39.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5791, 2809, 1, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5792, 2809, 2, '7.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5793, 2809, 3, '7.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5794, 2809, 4, '2.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5795, 2810, 1, '0.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5796, 2810, 2, '20.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5797, 2810, 3, '31.0000', NULL, '6788008906.4158');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5798, 2810, 4, '-5.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5799, 2811, 1, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5800, 2811, 2, '1.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5801, 2811, 3, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5802, 2811, 4, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5803, 2812, 1, '0.0000', NULL, '98.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5804, 2812, 2, '1.0000', NULL, '98.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5805, 2812, 3, '1.0000', NULL, '98.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5806, 2812, 4, '0.0000', NULL, '98.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5807, 2813, 1, '0.0000', NULL, '51.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5808, 2813, 2, '0.0000', NULL, '51.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5809, 2813, 3, '0.0000', NULL, '51.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5810, 2813, 4, '0.0000', NULL, '51.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5811, 2814, 1, '0.0000', NULL, '14.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5812, 2814, 2, '2.0000', NULL, '14.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5813, 2814, 3, '0.0000', NULL, '14.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5814, 2814, 4, '1.0000', NULL, '14.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5815, 2815, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5816, 2815, 2, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5817, 2815, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5818, 2815, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5819, 2816, 1, '-5.0000', NULL, '0.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5820, 2816, 2, '30.0000', NULL, '0.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5821, 2816, 3, '0.0000', NULL, '0.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5822, 2816, 4, '-16.0000', NULL, '0.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5823, 2817, 1, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5824, 2817, 2, '71.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5825, 2817, 3, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5826, 2817, 4, '0.0000', NULL, '1.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5827, 2818, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5828, 2818, 2, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5829, 2818, 3, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5830, 2818, 4, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5831, 2819, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5832, 2819, 2, '1.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5833, 2819, 3, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5834, 2819, 4, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5835, 2820, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5836, 2820, 2, '1.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5837, 2820, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5838, 2820, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5839, 2821, 1, '0.0000', NULL, '3.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5840, 2821, 2, '27.0000', NULL, '3.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5841, 2821, 3, '12.0000', NULL, '3.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5842, 2821, 4, '-11.0000', NULL, '3.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5843, 2822, 1, '0.0000', NULL, '2.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5844, 2822, 2, '91.0000', NULL, '2.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5845, 2822, 3, '50.0000', NULL, '2.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5846, 2822, 4, '-4.0000', NULL, '2.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5847, 2823, 1, '0.0000', NULL, '11.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5848, 2823, 2, '0.0000', NULL, '11.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5849, 2823, 3, '4.0000', NULL, '11.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5850, 2823, 4, '-4.0000', NULL, '11.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5851, 2824, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5852, 2824, 2, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5853, 2824, 3, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5854, 2824, 4, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5855, 2825, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5856, 2825, 2, '-6.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5857, 2825, 3, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5858, 2825, 4, '-1.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5859, 2826, 1, '0.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5860, 2826, 2, '1.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5861, 2826, 3, '0.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5862, 2826, 4, '0.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5863, 2827, 1, '0.0000', NULL, '37.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5864, 2827, 2, '1.0000', NULL, '37.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5865, 2827, 3, '0.0000', NULL, '37.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5866, 2827, 4, '0.0000', NULL, '37.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5867, 2828, 1, '-1.0000', NULL, '17.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5868, 2828, 2, '9.0000', NULL, '17.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5869, 2828, 3, '0.0000', NULL, '17.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5870, 2828, 4, '0.0000', NULL, '17.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5871, 2829, 1, '0.0000', NULL, '23.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5872, 2829, 2, '5.0000', NULL, '25.3646');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5873, 2829, 3, '-2.0000', NULL, '23.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5874, 2829, 4, '-5.0000', NULL, '27.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5875, 2830, 1, '0.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5876, 2830, 2, '0.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5877, 2830, 3, '0.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5878, 2830, 4, '0.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5879, 2831, 1, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5880, 2831, 2, '1.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5881, 2831, 3, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5882, 2831, 4, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5883, 2832, 1, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5884, 2832, 2, '1.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5885, 2832, 3, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5886, 2832, 4, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5887, 2833, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5888, 2833, 2, '1.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5889, 2833, 3, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5890, 2833, 4, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5891, 2834, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5892, 2834, 2, '1.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5893, 2834, 3, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5894, 2834, 4, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5895, 2835, 1, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5896, 2835, 2, '1.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5897, 2835, 3, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5898, 2835, 4, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5899, 2836, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5900, 2836, 2, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5901, 2836, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5902, 2836, 4, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5903, 2837, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5904, 2837, 2, '1.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5905, 2837, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5906, 2837, 4, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5907, 2838, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5908, 2838, 2, '1.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5909, 2838, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5910, 2838, 4, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5911, 2839, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5912, 2839, 2, '1.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5913, 2839, 3, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5914, 2839, 4, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5915, 2840, 1, '0.0000', NULL, '11.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5916, 2840, 2, '1.0000', NULL, '11.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5917, 2840, 3, '0.0000', NULL, '11.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5918, 2840, 4, '0.0000', NULL, '11.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5919, 2841, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5920, 2841, 2, '1.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5921, 2841, 3, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5922, 2841, 4, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5923, 2842, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5924, 2842, 2, '-2.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5925, 2842, 3, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5926, 2842, 4, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5927, 2843, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5928, 2843, 2, '1.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5929, 2843, 3, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5930, 2843, 4, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5931, 2844, 1, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5932, 2844, 2, '1.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5933, 2844, 3, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5934, 2844, 4, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5935, 2845, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5936, 2845, 2, '1.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5937, 2845, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5938, 2845, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5939, 2846, 1, '0.0000', NULL, '39.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5940, 2846, 2, '1.0000', NULL, '39.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5941, 2846, 3, '0.0000', NULL, '39.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5942, 2846, 4, '0.0000', NULL, '39.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5943, 2847, 1, '0.0000', NULL, '13.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5944, 2847, 2, '0.0000', NULL, '13.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5945, 2847, 3, '0.0000', NULL, '13.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5946, 2847, 4, '0.0000', NULL, '13.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5947, 2848, 1, '0.0000', NULL, '16.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5948, 2848, 2, '4.0000', NULL, '16.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5949, 2848, 3, '0.0000', NULL, '16.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5950, 2848, 4, '0.0000', NULL, '16.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5951, 2849, 1, '0.0000', NULL, '5.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5952, 2849, 2, '6.0000', NULL, '5.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5953, 2849, 3, '0.0000', NULL, '5.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5954, 2849, 4, '0.0000', NULL, '5.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5955, 2850, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5956, 2850, 2, '6.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5957, 2850, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5958, 2850, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5959, 2851, 1, '0.0000', NULL, '44.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5960, 2851, 2, '0.0000', NULL, '44.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5961, 2851, 3, '0.0000', NULL, '44.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5962, 2851, 4, '0.0000', NULL, '44.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5963, 2852, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5964, 2852, 2, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5965, 2852, 3, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5966, 2852, 4, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5967, 2853, 1, '0.0000', NULL, '18.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5968, 2853, 2, '0.0000', NULL, '18.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5969, 2853, 3, '0.0000', NULL, '18.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5970, 2853, 4, '0.0000', NULL, '18.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5971, 2854, 1, '0.0000', NULL, '8.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5972, 2854, 2, '1.0000', NULL, '8.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5973, 2854, 3, '0.0000', NULL, '8.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5974, 2854, 4, '0.0000', NULL, '8.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5975, 2855, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5976, 2855, 2, '27.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5977, 2855, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5978, 2855, 4, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5979, 2856, 1, '0.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5980, 2856, 2, '2.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5981, 2856, 3, '0.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5982, 2856, 4, '0.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5983, 2857, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5984, 2857, 2, '1.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5985, 2857, 3, '2.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5986, 2857, 4, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5987, 2858, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5988, 2858, 2, '15.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5989, 2858, 3, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5990, 2858, 4, '-1.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5991, 2859, 1, '0.0000', NULL, '0.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5992, 2859, 2, '5.0000', NULL, '0.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5993, 2859, 3, '0.0000', NULL, '0.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5994, 2859, 4, '13.0000', NULL, '0.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5995, 2860, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5996, 2860, 2, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5997, 2860, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5998, 2860, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (5999, 2861, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6000, 2861, 2, '10.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6001, 2861, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6002, 2861, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6003, 2862, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6004, 2862, 2, '11.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6005, 2862, 3, '-1.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6006, 2862, 4, '-1.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6007, 2863, 1, '0.0000', NULL, '0.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6008, 2863, 2, '100.0000', NULL, '0.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6009, 2863, 3, '0.0000', NULL, '0.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6010, 2863, 4, '0.0000', NULL, '0.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6011, 2864, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6012, 2864, 2, '23.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6013, 2864, 3, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6014, 2864, 4, '10.0000', NULL, '1.5198');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6015, 2865, 1, '0.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6016, 2865, 2, '4.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6017, 2865, 3, '0.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6018, 2865, 4, '0.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6019, 2866, 1, '0.0000', NULL, '0.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6020, 2866, 2, '130.0000', NULL, '0.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6021, 2866, 3, '200.0000', NULL, '0.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6022, 2866, 4, '-100.0000', NULL, '0.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6023, 2867, 1, '0.0000', NULL, '61.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6024, 2867, 2, '2.0000', NULL, '61.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6025, 2867, 3, '0.0000', NULL, '61.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6026, 2867, 4, '2.0000', NULL, '61.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6027, 2868, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6028, 2868, 2, '5.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6029, 2868, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6030, 2868, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6031, 2869, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6032, 2869, 2, '2.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6033, 2869, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6034, 2869, 4, '1.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6035, 2870, 1, '0.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6036, 2870, 2, '0.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6037, 2870, 3, '2.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6038, 2870, 4, '0.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6039, 2871, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6040, 2871, 2, '2.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6041, 2871, 3, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6042, 2871, 4, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6043, 2872, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6044, 2872, 2, '2.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6045, 2872, 3, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6046, 2872, 4, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6047, 2873, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6048, 2873, 2, '3.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6049, 2873, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6050, 2873, 4, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6051, 2874, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6052, 2874, 2, '3.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6053, 2874, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6054, 2874, 4, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6055, 2875, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6056, 2875, 2, '12.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6057, 2875, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6058, 2875, 4, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6059, 2876, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6060, 2876, 2, '3.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6061, 2876, 3, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6062, 2876, 4, '-1.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6063, 2877, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6064, 2877, 2, '8.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6065, 2877, 3, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6066, 2877, 4, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6067, 2878, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6068, 2878, 2, '3.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6069, 2878, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6070, 2878, 4, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6071, 2879, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6072, 2879, 2, '3.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6073, 2879, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6074, 2879, 4, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6075, 2880, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6076, 2880, 2, '3.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6077, 2880, 3, '1.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6078, 2880, 4, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6079, 2881, 1, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6080, 2881, 2, '1.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6081, 2881, 3, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6082, 2881, 4, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6083, 2882, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6084, 2882, 2, '2.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6085, 2882, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6086, 2882, 4, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6087, 2883, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6088, 2883, 2, '2.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6089, 2883, 3, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6090, 2883, 4, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6091, 2884, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6092, 2884, 2, '2.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6093, 2884, 3, '1.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6094, 2884, 4, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6095, 2885, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6096, 2885, 2, '7.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6097, 2885, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6098, 2885, 4, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6099, 2886, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6100, 2886, 2, '1.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6101, 2886, 3, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6102, 2886, 4, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6103, 2887, 1, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6104, 2887, 2, '3.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6105, 2887, 3, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6106, 2887, 4, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6107, 2888, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6108, 2888, 2, '3.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6109, 2888, 3, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6110, 2888, 4, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6111, 2889, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6112, 2889, 2, '1.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6113, 2889, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6114, 2889, 4, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6115, 2890, 1, '0.0000', NULL, '38.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6116, 2890, 2, '2.0000', NULL, '38.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6117, 2890, 3, '0.0000', NULL, '38.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6118, 2890, 4, '0.0000', NULL, '38.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6119, 2891, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6120, 2891, 2, '2.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6121, 2891, 3, '3.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6122, 2891, 4, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6123, 2892, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6124, 2892, 2, '8.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6125, 2892, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6126, 2892, 4, '-1.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6127, 2893, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6128, 2893, 2, '18.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6129, 2893, 3, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6130, 2893, 4, '-1.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6131, 2894, 1, '0.0000', NULL, '43.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6132, 2894, 2, '2.0000', NULL, '43.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6133, 2894, 3, '0.0000', NULL, '43.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6134, 2894, 4, '0.0000', NULL, '43.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6135, 2895, 1, '0.0000', NULL, '11.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6136, 2895, 2, '6.0000', NULL, '11.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6137, 2895, 3, '0.0000', NULL, '11.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6138, 2895, 4, '0.0000', NULL, '11.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6139, 2896, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6140, 2896, 2, '6.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6141, 2896, 3, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6142, 2896, 4, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6143, 2897, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6144, 2897, 2, '10.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6145, 2897, 3, '3.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6146, 2897, 4, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6147, 2898, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6148, 2898, 2, '10.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6149, 2898, 3, '3.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6150, 2898, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6151, 2899, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6152, 2899, 2, '10.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6153, 2899, 3, '3.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6154, 2899, 4, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6155, 2900, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6156, 2900, 2, '5.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6157, 2900, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6158, 2900, 4, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6159, 2901, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6160, 2901, 2, '5.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6161, 2901, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6162, 2901, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6163, 2902, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6164, 2902, 2, '5.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6165, 2902, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6166, 2902, 4, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6167, 2903, 1, '0.0000', NULL, '32.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6168, 2903, 2, '2.0000', NULL, '32.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6169, 2903, 3, '2.0000', NULL, '32.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6170, 2903, 4, '0.0000', NULL, '32.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6171, 2904, 1, '0.0000', NULL, '19.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6172, 2904, 2, '2.0000', NULL, '19.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6173, 2904, 3, '2.0000', NULL, '19.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6174, 2904, 4, '0.0000', NULL, '19.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6175, 2905, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6176, 2905, 2, '5.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6177, 2905, 3, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6178, 2905, 4, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6179, 2906, 1, '0.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6180, 2906, 2, '50.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6181, 2906, 3, '0.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6182, 2906, 4, '0.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6183, 2907, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6184, 2907, 2, '5.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6185, 2907, 3, '-1.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6186, 2907, 4, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6187, 2908, 1, '0.0000', NULL, '0.2700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6188, 2908, 2, '97.0000', NULL, '0.2700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6189, 2908, 3, '48.0000', NULL, '0.2700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6190, 2908, 4, '-4.0000', NULL, '0.2700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6191, 2909, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6192, 2909, 2, '10.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6193, 2909, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6194, 2909, 4, '10.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6195, 2911, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6196, 2911, 2, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6197, 2911, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6198, 2911, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6199, 2912, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6200, 2912, 2, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6201, 2912, 3, '5.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6202, 2912, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6207, 2910, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6208, 2910, 2, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6209, 2910, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6210, 2910, 4, '8.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6211, 2914, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6212, 2914, 2, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6213, 2914, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6214, 2914, 4, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6215, 2915, 1, '0.0000', NULL, '15.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6216, 2915, 2, '1.0000', NULL, '15.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6217, 2915, 3, '0.0000', NULL, '15.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6218, 2915, 4, '0.0000', NULL, '15.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6219, 2916, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6220, 2916, 2, '7.0000', NULL, '13.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6221, 2916, 3, '4.0000', NULL, '15.0176');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6222, 2916, 4, '-5.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6223, 2917, 1, '0.0000', NULL, '7.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6224, 2917, 2, '2.0000', NULL, '7.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6225, 2917, 3, '7.0000', NULL, '7.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6226, 2917, 4, '-1.0000', NULL, '7.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6227, 2918, 1, '0.0000', NULL, '14.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6228, 2918, 2, '3.0000', NULL, '14.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6229, 2918, 3, '0.0000', NULL, '14.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6230, 2918, 4, '0.0000', NULL, '14.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6231, 2919, 1, '0.0000', NULL, '2.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6232, 2919, 2, '40.0000', NULL, '2.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6233, 2919, 3, '0.0000', NULL, '2.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6234, 2919, 4, '0.0000', NULL, '2.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6235, 2920, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6236, 2920, 2, '2.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6237, 2920, 3, '-2.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6238, 2920, 4, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6239, 2921, 1, '0.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6240, 2921, 2, '3.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6241, 2921, 3, '0.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6242, 2921, 4, '0.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6243, 2922, 1, '0.0000', NULL, '8.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6244, 2922, 2, '3.0000', NULL, '8.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6245, 2922, 3, '0.0000', NULL, '8.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6246, 2922, 4, '0.0000', NULL, '8.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6247, 2923, 4, '0.0000', NULL, '11.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6248, 2924, 1, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6249, 2924, 2, '3.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6250, 2924, 3, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6251, 2924, 4, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6252, 2925, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6253, 2925, 2, '3.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6254, 2925, 3, '3.0000', NULL, '3.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6255, 2925, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6256, 2926, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6257, 2926, 2, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6258, 2926, 3, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6259, 2926, 4, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6260, 2923, 1, '0.0000', NULL, '11.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6261, 2923, 2, '1.0000', NULL, '11.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6262, 2923, 3, '4.0000', NULL, '11.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6263, 2927, 1, '0.0000', NULL, '14.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6264, 2927, 2, '10.0000', NULL, '14.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6265, 2927, 3, '0.0000', NULL, '14.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6266, 2927, 4, '10.0000', NULL, '14.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6267, 2928, 1, '0.0000', NULL, '42.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6268, 2928, 2, '2.0000', NULL, '42.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6269, 2928, 3, '0.0000', NULL, '42.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6270, 2928, 4, '2.0000', NULL, '42.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6271, 2929, 1, '0.0000', NULL, '46.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6272, 2929, 2, '1.0000', NULL, '46.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6273, 2929, 3, '0.0000', NULL, '46.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6274, 2929, 4, '0.0000', NULL, '46.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6275, 2930, 1, '0.0000', NULL, '37.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6276, 2930, 2, '3.0000', NULL, '37.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6277, 2930, 3, '0.0000', NULL, '37.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6278, 2930, 4, '2.0000', NULL, '37.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6279, 2931, 1, '0.0000', NULL, '38.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6280, 2931, 2, '3.0000', NULL, '38.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6281, 2931, 3, '0.0000', NULL, '38.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6282, 2931, 4, '3.0000', NULL, '38.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6283, 2932, 1, '0.0000', NULL, '62.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6284, 2932, 2, '3.0000', NULL, '62.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6285, 2932, 3, '0.0000', NULL, '62.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6286, 2932, 4, '2.0000', NULL, '62.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6287, 2933, 1, '0.0000', NULL, '56.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6288, 2933, 2, '1.0000', NULL, '56.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6289, 2933, 3, '0.0000', NULL, '56.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6290, 2933, 4, '0.0000', NULL, '56.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6291, 2934, 1, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6292, 2934, 2, '1.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6293, 2934, 3, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6294, 2934, 4, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6295, 2935, 1, '0.0000', NULL, '7.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6296, 2935, 2, '2.0000', NULL, '7.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6297, 2935, 3, '0.0000', NULL, '7.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6298, 2935, 4, '2.0000', NULL, '7.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6299, 2936, 1, '0.0000', NULL, '6.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6300, 2936, 2, '4.0000', NULL, '6.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6301, 2936, 3, '2.0000', NULL, '6.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6302, 2936, 4, '-1.0000', NULL, '6.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6303, 2937, 1, '0.0000', NULL, '5.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6304, 2937, 2, '4.0000', NULL, '5.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6305, 2937, 3, '5.0000', NULL, '5.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6306, 2937, 4, '0.0000', NULL, '5.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6307, 2938, 1, '0.0000', NULL, '6.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6308, 2938, 2, '2.0000', NULL, '6.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6309, 2938, 3, '0.0000', NULL, '6.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6310, 2938, 4, '0.0000', NULL, '6.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6311, 2939, 1, '0.0000', NULL, '7.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6312, 2939, 2, '2.0000', NULL, '7.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6313, 2939, 3, '0.0000', NULL, '7.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6314, 2939, 4, '0.0000', NULL, '7.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6315, 2940, 1, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6316, 2940, 2, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6317, 2940, 3, '3.0000', NULL, '6.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6318, 2940, 4, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6319, 2941, 1, '0.0000', NULL, '2.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6320, 2941, 2, '3.0000', NULL, '2.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6321, 2941, 3, '5.0000', NULL, '2.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6322, 2941, 4, '0.0000', NULL, '2.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6323, 2942, 1, '0.0000', NULL, '0.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6324, 2942, 2, '1.0000', NULL, '0.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6325, 2942, 3, '0.0000', NULL, '0.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6326, 2942, 4, '0.0000', NULL, '0.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6327, 2943, 1, '0.0000', NULL, '2.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6328, 2943, 2, '3.0000', NULL, '2.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6329, 2943, 3, '3.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6330, 2943, 4, '-2.0000', NULL, '2.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6331, 2944, 1, '0.0000', NULL, '51.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6332, 2944, 2, '3.0000', NULL, '51.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6333, 2944, 3, '0.0000', NULL, '51.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6334, 2944, 4, '0.0000', NULL, '51.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6335, 2945, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6336, 2945, 2, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6337, 2945, 3, '4.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6338, 2945, 4, '-1.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6339, 2946, 1, '0.0000', NULL, '37.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6340, 2946, 2, '0.0000', NULL, '37.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6341, 2946, 3, '2.0000', NULL, '37.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6342, 2946, 4, '0.0000', NULL, '37.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6343, 2947, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6344, 2947, 2, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6345, 2947, 3, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6346, 2947, 4, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6347, 2948, 1, '0.0000', NULL, '0.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6348, 2948, 2, '-1.0000', NULL, '0.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6349, 2948, 3, '161.0000', NULL, '0.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6350, 2948, 4, '-1.0000', NULL, '0.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6351, 2949, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6352, 2949, 2, '-1.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6353, 2949, 3, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6354, 2949, 4, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6355, 2950, 1, '0.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6356, 2950, 2, '0.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6357, 2950, 3, '-1.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6358, 2950, 4, '-3.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6359, 2951, 1, '0.0000', NULL, '0.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6360, 2951, 2, '0.0000', NULL, '0.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6361, 2951, 3, '-33.0000', NULL, '0.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6362, 2951, 4, '-20.0000', NULL, '0.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6363, 2952, 1, '0.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6364, 2952, 2, '0.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6365, 2952, 3, '0.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6366, 2952, 4, '10.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6367, 2953, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6368, 2953, 2, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6369, 2953, 3, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6370, 2953, 4, '6.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6371, 2954, 1, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6372, 2954, 2, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6373, 2954, 3, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6374, 2954, 4, '2.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6375, 2955, 1, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6376, 2955, 2, '1.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6377, 2955, 3, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6378, 2955, 4, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6379, 2956, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6380, 2956, 2, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6381, 2956, 3, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6382, 2956, 4, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6383, 2957, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6384, 2957, 2, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6385, 2957, 3, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6386, 2957, 4, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6387, 2958, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6388, 2958, 2, '17.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6389, 2958, 3, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6390, 2958, 4, '-6.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6391, 2959, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6392, 2959, 2, '6.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6393, 2959, 3, '4.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6394, 2959, 4, '5.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6395, 2960, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6396, 2960, 2, '2.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6397, 2960, 3, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6398, 2960, 4, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6399, 2961, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6400, 2961, 2, '2.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6401, 2961, 3, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6402, 2961, 4, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6403, 2962, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6404, 2962, 2, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6405, 2962, 3, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6406, 2962, 4, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6407, 2963, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6408, 2963, 2, '1.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6409, 2963, 3, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6410, 2963, 4, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6411, 2964, 1, '0.0000', NULL, '6.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6412, 2964, 2, '3.0000', NULL, '6.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6413, 2964, 3, '3.0000', NULL, '6.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6414, 2964, 4, '0.0000', NULL, '6.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6415, 2965, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6416, 2965, 2, '5.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6417, 2965, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6418, 2965, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6419, 2966, 1, '0.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6420, 2966, 2, '1.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6421, 2966, 3, '0.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6422, 2966, 4, '0.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6423, 2967, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6424, 2967, 2, '4.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6425, 2967, 3, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6426, 2967, 4, '-2.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6427, 2968, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6428, 2968, 2, '5.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6429, 2968, 3, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6430, 2968, 4, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6431, 2969, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6432, 2969, 2, '6.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6433, 2969, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6434, 2969, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6435, 2970, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6436, 2970, 2, '12.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6437, 2970, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6438, 2970, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6439, 2971, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6440, 2971, 2, '2.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6441, 2971, 3, '4.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6442, 2971, 4, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6443, 2972, 1, '0.0000', NULL, '22.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6444, 2972, 2, '3.0000', NULL, '22.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6445, 2972, 3, '4.0000', NULL, '34.9094');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6446, 2972, 4, '0.0000', NULL, '22.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6447, 2973, 1, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6448, 2973, 2, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6449, 2973, 3, '10.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6450, 2973, 4, '-1.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6451, 2974, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6452, 2974, 2, '8.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6453, 2974, 3, '20.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6454, 2974, 4, '-7.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6455, 2975, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6456, 2975, 2, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6457, 2975, 3, '10.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6458, 2975, 4, '9.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6459, 2976, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6460, 2976, 2, '8.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6461, 2976, 3, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6462, 2976, 4, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6463, 2977, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6464, 2977, 2, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6465, 2977, 3, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6466, 2977, 4, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6467, 2978, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6468, 2978, 2, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6469, 2978, 3, '2.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6470, 2978, 4, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6471, 2979, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6472, 2979, 2, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6473, 2979, 3, '2.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6474, 2979, 4, '-2.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6475, 2980, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6476, 2980, 2, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6477, 2980, 3, '6.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6478, 2980, 4, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6479, 2981, 1, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6480, 2981, 2, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6481, 2981, 3, '8.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6482, 2981, 4, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6483, 2982, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6484, 2982, 2, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6485, 2982, 3, '18.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6486, 2982, 4, '-1.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6487, 2983, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6488, 2983, 2, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6489, 2983, 3, '4.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6490, 2983, 4, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6491, 2984, 1, '0.0000', NULL, '3.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6492, 2984, 2, '0.0000', NULL, '3.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6493, 2984, 3, '5.0000', NULL, '3.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6494, 2984, 4, '0.0000', NULL, '3.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6495, 2985, 1, '0.0000', NULL, '28.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6496, 2985, 2, '0.0000', NULL, '28.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6497, 2985, 3, '2.0000', NULL, '28.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6498, 2985, 4, '0.0000', NULL, '28.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6499, 2986, 1, '0.0000', NULL, '0.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6500, 2986, 2, '0.0000', NULL, '0.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6501, 2986, 3, '10.0000', NULL, '0.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6502, 2986, 4, '-3.0000', NULL, '0.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6503, 2987, 1, '0.0000', NULL, '0.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6504, 2987, 2, '0.0000', NULL, '0.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6505, 2987, 3, '20.0000', NULL, '0.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6506, 2987, 4, '0.0000', NULL, '0.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6507, 2988, 1, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6508, 2988, 2, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6509, 2988, 3, '30.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6510, 2988, 4, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6511, 2989, 1, '0.0000', NULL, '0.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6512, 2989, 2, '0.0000', NULL, '0.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6513, 2989, 3, '7.0000', NULL, '0.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6514, 2989, 4, '-4.0000', NULL, '0.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6515, 2990, 1, '0.0000', NULL, '1.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6516, 2990, 2, '0.0000', NULL, '1.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6517, 2990, 3, '4.0000', NULL, '1.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6518, 2990, 4, '-3.0000', NULL, '1.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6519, 2991, 1, '0.0000', NULL, '0.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6520, 2991, 2, '0.0000', NULL, '0.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6521, 2991, 3, '99.0000', NULL, '0.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6522, 2991, 4, '0.0000', NULL, '0.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6523, 2992, 1, '0.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6524, 2992, 2, '-4.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6525, 2992, 3, '27.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6526, 2992, 4, '-1.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6527, 2993, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6528, 2993, 2, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6529, 2993, 3, '3.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6530, 2993, 4, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6531, 2994, 1, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6532, 2994, 2, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6533, 2994, 3, '2.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6534, 2994, 4, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6535, 2995, 1, '0.0000', NULL, '39.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6536, 2995, 2, '1.0000', NULL, '39.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6537, 2995, 3, '1.0000', NULL, '39.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6538, 2995, 4, '0.0000', NULL, '39.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6539, 2996, 1, '0.0000', NULL, '1.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6540, 2996, 2, '15.0000', NULL, '1.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6541, 2996, 3, '0.0000', NULL, '1.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6542, 2996, 4, '0.0000', NULL, '1.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6543, 2997, 1, '0.0000', NULL, '1.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6544, 2997, 2, '15.0000', NULL, '1.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6545, 2997, 3, '0.0000', NULL, '1.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6546, 2997, 4, '0.0000', NULL, '1.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6547, 2998, 1, '0.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6548, 2998, 2, '0.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6549, 2998, 3, '21.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6550, 2998, 4, '-7.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6551, 2999, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6552, 2999, 2, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6553, 2999, 3, '3.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6554, 2999, 4, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6555, 3000, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6556, 3000, 2, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6557, 3000, 3, '3.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6558, 3000, 4, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6559, 3001, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6560, 3001, 2, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6561, 3001, 3, '50.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6562, 3001, 4, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6563, 3002, 1, '0.0000', NULL, '6.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6564, 3002, 2, '0.0000', NULL, '6.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6565, 3002, 3, '1.0000', NULL, '6.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6566, 3002, 4, '0.0000', NULL, '6.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6567, 3003, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6568, 3003, 2, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6569, 3003, 3, '5.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6570, 3003, 4, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6571, 3004, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6572, 3004, 2, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6573, 3004, 3, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6574, 3004, 4, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6575, 3005, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6576, 3005, 2, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6577, 3005, 3, '2.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6578, 3005, 4, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6579, 3006, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6580, 3006, 2, '-1.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6581, 3006, 3, '-3.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6582, 3006, 4, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6583, 3007, 1, '0.0000', NULL, '7.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6584, 3007, 2, '0.0000', NULL, '7.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6585, 3007, 3, '3.0000', NULL, '7.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6586, 3007, 4, '0.0000', NULL, '7.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6587, 3008, 1, '0.0000', NULL, '56.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6588, 3008, 2, '0.0000', NULL, '56.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6589, 3008, 3, '2.0000', NULL, '56.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6590, 3008, 4, '0.0000', NULL, '56.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6591, 3009, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6592, 3009, 2, '-1.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6593, 3009, 3, '3.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6594, 3009, 4, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6595, 3010, 1, '0.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6596, 3010, 2, '0.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6597, 3010, 3, '2.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6598, 3010, 4, '0.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6599, 3011, 1, '0.0000', NULL, '3.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6600, 3011, 2, '40.0000', NULL, '3.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6601, 3011, 3, '0.0000', NULL, '3.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6602, 3011, 4, '0.0000', NULL, '3.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6603, 3012, 1, '0.0000', NULL, '4.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6604, 3012, 2, '5.0000', NULL, '4.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6605, 3012, 3, '-1.0000', NULL, '4.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6606, 3012, 4, '0.0000', NULL, '4.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6607, 3013, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6608, 3013, 2, '6.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6609, 3013, 3, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6610, 3013, 4, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6611, 3014, 1, '0.0000', NULL, '55.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6612, 3014, 2, '0.0000', NULL, '55.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6613, 3014, 3, '0.0000', NULL, '55.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6614, 3014, 4, '0.0000', NULL, '55.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6615, 3015, 1, '0.0000', NULL, '47.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6616, 3015, 2, '1.0000', NULL, '47.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6617, 3015, 3, '1.0000', NULL, '49.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6618, 3015, 4, '0.0000', NULL, '47.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6619, 3016, 1, '0.0000', NULL, '14.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6620, 3016, 2, '3.0000', NULL, '14.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6621, 3016, 3, '0.0000', NULL, '14.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6622, 3016, 4, '0.0000', NULL, '14.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6623, 3017, 1, '0.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6624, 3017, 2, '-1.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6625, 3017, 3, '6.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6626, 3017, 4, '0.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6627, 3018, 1, '0.0000', NULL, '4.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6628, 3018, 2, '5.0000', NULL, '4.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6629, 3018, 3, '-5.0000', NULL, '4.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6630, 3018, 4, '0.0000', NULL, '4.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6631, 3019, 1, '0.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6632, 3019, 2, '2.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6633, 3019, 3, '0.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6634, 3019, 4, '0.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6635, 3020, 1, '0.0000', NULL, '11.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6636, 3020, 2, '2.0000', NULL, '11.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6637, 3020, 3, '0.0000', NULL, '11.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6638, 3020, 4, '0.0000', NULL, '11.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6639, 3021, 1, '0.0000', NULL, '25.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6640, 3021, 2, '2.0000', NULL, '25.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6641, 3021, 3, '0.0000', NULL, '25.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6642, 3021, 4, '0.0000', NULL, '25.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6643, 3022, 1, '0.0000', NULL, '4.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6644, 3022, 2, '2.0000', NULL, '4.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6645, 3022, 3, '0.0000', NULL, '4.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6646, 3022, 4, '0.0000', NULL, '4.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6647, 3023, 1, '0.0000', NULL, '5.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6648, 3023, 2, '3.0000', NULL, '5.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6649, 3023, 3, '3.0000', NULL, '5.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6650, 3023, 4, '0.0000', NULL, '5.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6651, 3024, 1, '0.0000', NULL, '5.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6652, 3024, 2, '0.0000', NULL, '5.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6653, 3024, 3, '6.0000', NULL, '5.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6654, 3024, 4, '0.0000', NULL, '5.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6655, 3025, 1, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6656, 3025, 2, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6657, 3025, 3, '12.0000', NULL, '2.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6658, 3025, 4, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6659, 3026, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6660, 3026, 2, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6661, 3026, 3, '11.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6662, 3026, 4, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6663, 3027, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6664, 3027, 2, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6665, 3027, 3, '6.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6666, 3027, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6667, 3028, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6668, 3028, 2, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6669, 3028, 3, '6.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6670, 3028, 4, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6671, 3029, 1, '0.0000', NULL, '4.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6672, 3029, 2, '0.0000', NULL, '4.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6673, 3029, 3, '4.0000', NULL, '4.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6674, 3029, 4, '-1.0000', NULL, '4.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6675, 3030, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6676, 3030, 2, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6677, 3030, 3, '2.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6678, 3030, 4, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6679, 3031, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6680, 3031, 2, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6681, 3031, 3, '2.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6682, 3031, 4, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6683, 3032, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6684, 3032, 2, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6685, 3032, 3, '1.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6686, 3032, 4, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6687, 3033, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6688, 3033, 2, '2.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6689, 3033, 3, '2.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6690, 3033, 4, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6691, 3034, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6692, 3034, 2, '4.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6693, 3034, 3, '2.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6694, 3034, 4, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6695, 3035, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6696, 3035, 2, '2.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6697, 3035, 3, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6698, 3035, 4, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6699, 3036, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6700, 3036, 2, '2.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6701, 3036, 3, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6702, 3036, 4, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6703, 3037, 1, '0.0000', NULL, '46.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6704, 3037, 2, '1.0000', NULL, '46.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6705, 3037, 3, '0.0000', NULL, '46.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6706, 3037, 4, '0.0000', NULL, '46.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6707, 3038, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6708, 3038, 2, '2.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6709, 3038, 3, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6710, 3038, 4, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6711, 3039, 1, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6712, 3039, 2, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6713, 3039, 3, '2.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6714, 3039, 4, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6715, 3040, 1, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6716, 3040, 2, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6717, 3040, 3, '1.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6718, 3040, 4, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6719, 3041, 1, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6720, 3041, 2, '20.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6721, 3041, 3, '19.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6722, 3041, 4, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6723, 3042, 1, '0.0000', NULL, '27.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6724, 3042, 2, '2.0000', NULL, '27.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6725, 3042, 3, '0.0000', NULL, '27.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6726, 3042, 4, '0.0000', NULL, '27.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6727, 3043, 1, '0.0000', NULL, '65.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6728, 3043, 2, '1.0000', NULL, '65.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6729, 3043, 3, '1.0000', NULL, '65.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6730, 3043, 4, '0.0000', NULL, '65.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6731, 3044, 1, '0.0000', NULL, '0.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6732, 3044, 2, '0.0000', NULL, '0.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6733, 3044, 3, '49.0000', NULL, '0.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6734, 3044, 4, '0.0000', NULL, '0.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6735, 3045, 1, '0.0000', NULL, '5.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6736, 3045, 2, '0.0000', NULL, '5.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6737, 3045, 3, '2.0000', NULL, '5.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6738, 3045, 4, '0.0000', NULL, '5.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6739, 3046, 1, '0.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6740, 3046, 2, '9.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6741, 3046, 3, '0.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6742, 3046, 4, '0.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6743, 3047, 1, '0.0000', NULL, '52.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6744, 3047, 2, '1.0000', NULL, '52.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6745, 3047, 3, '0.0000', NULL, '52.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6746, 3047, 4, '0.0000', NULL, '52.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6747, 3048, 1, '0.0000', NULL, '46.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6748, 3048, 2, '3.0000', NULL, '46.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6749, 3048, 3, '0.0000', NULL, '46.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6750, 3048, 4, '0.0000', NULL, '46.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6751, 3049, 1, '0.0000', NULL, '10.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6752, 3049, 2, '2.0000', NULL, '10.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6753, 3049, 3, '0.0000', NULL, '10.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6754, 3049, 4, '0.0000', NULL, '10.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6755, 3050, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6756, 3050, 2, '3.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6757, 3050, 3, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6758, 3050, 4, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6759, 3051, 1, '0.0000', NULL, '35.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6760, 3051, 2, '2.0000', NULL, '35.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6761, 3051, 3, '0.0000', NULL, '35.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6762, 3051, 4, '0.0000', NULL, '35.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6763, 3052, 1, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6764, 3052, 2, '3.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6765, 3052, 3, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6766, 3052, 4, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6767, 3053, 1, '0.0000', NULL, '29.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6768, 3053, 2, '40.0000', NULL, '1.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6769, 3053, 3, '0.0000', NULL, '29.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6770, 3053, 4, '0.0000', NULL, '29.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6771, 3054, 1, '0.0000', NULL, '57.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6772, 3054, 2, '2.0000', NULL, '57.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6773, 3054, 3, '0.0000', NULL, '57.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6774, 3054, 4, '0.0000', NULL, '57.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6775, 3055, 1, '0.0000', NULL, '2.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6776, 3055, 2, '0.0000', NULL, '2.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6777, 3055, 3, '10.0000', NULL, '2.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6778, 3055, 4, '0.0000', NULL, '2.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6779, 3056, 1, '0.0000', NULL, '52.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6780, 3056, 2, '0.0000', NULL, '52.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6781, 3056, 3, '0.0000', NULL, '52.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6782, 3056, 4, '0.0000', NULL, '52.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6783, 3057, 1, '0.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6784, 3057, 2, '0.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6785, 3057, 3, '24.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6786, 3057, 4, '0.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6787, 3058, 1, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6788, 3058, 2, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6789, 3058, 3, '10.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6790, 3058, 4, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6791, 3059, 1, '0.0000', NULL, '0.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6792, 3059, 2, '0.0000', NULL, '0.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6793, 3059, 3, '0.0000', NULL, '0.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6794, 3059, 4, '0.0000', NULL, '0.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6795, 3060, 1, '0.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6796, 3060, 2, '0.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6797, 3060, 3, '2.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6798, 3060, 4, '0.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6799, 3061, 1, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6800, 3061, 2, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6801, 3061, 3, '2.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6802, 3061, 4, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6803, 3062, 1, '0.0000', NULL, '6.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6804, 3062, 2, '0.0000', NULL, '6.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6805, 3062, 3, '2.0000', NULL, '6.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6806, 3062, 4, '0.0000', NULL, '6.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6807, 3063, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6808, 3063, 2, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6809, 3063, 3, '16.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6810, 3063, 4, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6811, 3064, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6812, 3064, 2, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6813, 3064, 3, '5.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6814, 3064, 4, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6815, 3065, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6816, 3065, 2, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6817, 3065, 3, '1.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6818, 3065, 4, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6819, 3066, 1, '0.0000', NULL, '24.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6820, 3066, 2, '0.0000', NULL, '24.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6821, 3066, 3, '0.0000', NULL, '24.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6822, 3066, 4, '0.0000', NULL, '24.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6823, 3067, 1, '0.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6824, 3067, 2, '0.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6825, 3067, 3, '46.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6826, 3067, 4, '0.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6827, 3068, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6828, 3068, 2, '5.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6829, 3068, 3, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6830, 3068, 4, '-2.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6831, 3069, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6832, 3069, 2, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6833, 3069, 3, '6.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6834, 3069, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6835, 3070, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6836, 3070, 2, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6837, 3070, 3, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6838, 3070, 4, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6839, 3071, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6840, 3071, 2, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6841, 3071, 3, '3.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6842, 3071, 4, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6843, 3072, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6844, 3072, 2, '3.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6845, 3072, 3, '2.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6846, 3072, 4, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6847, 3073, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6848, 3073, 2, '3.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6849, 3073, 3, '3.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6850, 3073, 4, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6851, 3074, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6852, 3074, 2, '12.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6853, 3074, 3, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6854, 3074, 4, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6855, 3075, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6856, 3075, 2, '6.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6857, 3075, 3, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6858, 3075, 4, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6859, 3076, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6860, 3076, 2, '3.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6861, 3076, 3, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6862, 3076, 4, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6863, 3077, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6864, 3077, 2, '3.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6865, 3077, 3, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6866, 3077, 4, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6867, 3078, 1, '0.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6868, 3078, 2, '6.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6869, 3078, 3, '0.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6870, 3078, 4, '0.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6871, 3079, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6872, 3079, 2, '3.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6873, 3079, 3, '3.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6874, 3079, 4, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6875, 3080, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6876, 3080, 2, '3.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6877, 3080, 3, '3.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6878, 3080, 4, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6879, 3081, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6880, 3081, 2, '3.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6881, 3081, 3, '3.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6882, 3081, 4, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6883, 3082, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6884, 3082, 2, '3.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6885, 3082, 3, '3.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6886, 3082, 4, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6887, 3083, 1, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6888, 3083, 2, '10.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6889, 3083, 3, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6890, 3083, 4, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6891, 3084, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6892, 3084, 2, '10.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6893, 3084, 3, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6894, 3084, 4, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6895, 3085, 1, '0.0000', NULL, '55.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6896, 3085, 2, '-1.0000', NULL, '55.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6897, 3085, 3, '0.0000', NULL, '55.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6898, 3085, 4, '0.0000', NULL, '55.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6899, 3086, 1, '0.0000', NULL, '47.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6900, 3086, 2, '0.0000', NULL, '47.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6901, 3086, 3, '0.0000', NULL, '47.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6902, 3086, 4, '0.0000', NULL, '47.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6903, 3087, 1, '0.0000', NULL, '10.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6904, 3087, 2, '0.0000', NULL, '10.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6905, 3087, 3, '0.0000', NULL, '10.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6906, 3087, 4, '0.0000', NULL, '10.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6907, 3088, 1, '0.0000', NULL, '0.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6908, 3089, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6909, 3090, 1, '0.0000', NULL, '9.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6910, 3091, 1, '0.0000', NULL, '19.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6911, 3092, 1, '0.0000', NULL, '13.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6912, 3093, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6913, 3094, 1, '0.0000', NULL, '7.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6914, 3095, 1, '0.0000', NULL, '7.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6915, 3096, 1, '0.0000', NULL, '4.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6916, 3097, 1, '0.0000', NULL, '6.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6917, 3098, 1, '0.0000', NULL, '55.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6918, 3099, 1, '0.0000', NULL, '23.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6919, 3100, 1, '0.0000', NULL, '0.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6920, 3101, 1, '0.0000', NULL, '6.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6921, 3102, 1, '0.0000', NULL, '11.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6922, 3103, 1, '0.0000', NULL, '19.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6923, 3104, 1, '0.0000', NULL, '3.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6924, 3105, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6925, 3106, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6926, 3107, 1, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6927, 3108, 1, '0.0000', NULL, '21.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6928, 3109, 1, '0.0000', NULL, '10.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6929, 3110, 1, '0.0000', NULL, '23.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6930, 3111, 1, '0.0000', NULL, '0.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6931, 3112, 1, '0.0000', NULL, '6.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6932, 3113, 1, '0.0000', NULL, '49.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6933, 3114, 1, '0.0000', NULL, '13.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6934, 3115, 1, '0.0000', NULL, '3.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6935, 3116, 1, '0.0000', NULL, '1.5400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6936, 3117, 1, '0.0000', NULL, '47.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6937, 3118, 1, '0.0000', NULL, '94.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6938, 3119, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6939, 3120, 1, '0.0000', NULL, '11.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6940, 3121, 1, '0.0000', NULL, '14.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6941, 3122, 1, '0.0000', NULL, '25.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6942, 3123, 1, '0.0000', NULL, '94.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6943, 3124, 1, '0.0000', NULL, '1.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6944, 3125, 1, '0.0000', NULL, '0.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6945, 3126, 1, '0.0000', NULL, '0.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6946, 3127, 1, '0.0000', NULL, '18.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6947, 3128, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6948, 3129, 1, '0.0000', NULL, '11.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6949, 3130, 1, '0.0000', NULL, '10.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6950, 3131, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6951, 3132, 1, '0.0000', NULL, '18.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6952, 3133, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6953, 3134, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6954, 3135, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6955, 3136, 1, '0.0000', NULL, '2.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6956, 3137, 1, '0.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6957, 3138, 1, '0.0000', NULL, '5.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6958, 3139, 1, '0.0000', NULL, '9.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6959, 3140, 1, '0.0000', NULL, '14.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6960, 3141, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6961, 3142, 1, '0.0000', NULL, '11.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6962, 3143, 1, '0.0000', NULL, '32.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6963, 3144, 1, '0.0000', NULL, '27.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6964, 3145, 1, '0.0000', NULL, '23.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6965, 3146, 1, '0.0000', NULL, '22.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6966, 3147, 1, '0.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6967, 3148, 1, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6968, 3149, 1, '0.0000', NULL, '5.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6969, 3150, 1, '0.0000', NULL, '141.7100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6970, 3151, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6971, 3152, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6972, 3153, 1, '0.0000', NULL, '12.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6973, 3154, 1, '0.0000', NULL, '5.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6974, 3155, 1, '0.0000', NULL, '55.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6975, 3156, 1, '0.0000', NULL, '7.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6976, 3157, 1, '0.0000', NULL, '1.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6977, 3158, 1, '0.0000', NULL, '8.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6978, 3159, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6979, 3160, 1, '0.0000', NULL, '3.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6980, 3161, 1, '0.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6981, 3162, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6982, 3163, 1, '0.0000', NULL, '14.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6983, 3164, 1, '0.0000', NULL, '18.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6984, 3165, 1, '0.0000', NULL, '335.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6985, 3166, 1, '0.0000', NULL, '0.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6986, 3167, 1, '0.0000', NULL, '9.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6987, 3168, 1, '0.0000', NULL, '12.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6988, 3169, 1, '0.0000', NULL, '72.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6989, 3170, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6990, 3171, 1, '0.0000', NULL, '7.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6991, 3172, 1, '0.0000', NULL, '18.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6992, 3173, 1, '0.0000', NULL, '57.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6993, 3174, 1, '0.0000', NULL, '14.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6994, 3175, 1, '0.0000', NULL, '23.0900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6995, 3176, 1, '0.0000', NULL, '116.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6996, 3177, 1, '0.0000', NULL, '8.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6997, 3178, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6998, 3179, 1, '0.0000', NULL, '4.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (6999, 3180, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7000, 3181, 1, '0.0000', NULL, '7.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7001, 3182, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7002, 3183, 1, '0.0000', NULL, '1.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7003, 3184, 1, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7004, 3185, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7005, 3186, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7006, 3187, 1, '0.0000', NULL, '5.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7007, 3188, 1, '0.0000', NULL, '18.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7008, 3189, 1, '0.0000', NULL, '5.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7009, 3190, 1, '0.0000', NULL, '1.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7010, 3191, 1, '0.0000', NULL, '25.5400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7011, 3192, 1, '0.0000', NULL, '25.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7012, 3193, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7013, 3194, 1, '0.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7014, 3195, 1, '0.0000', NULL, '12.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7015, 3196, 1, '0.0000', NULL, '4.4700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7016, 3197, 1, '0.0000', NULL, '7.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7017, 3198, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7018, 3199, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7019, 3200, 1, '0.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7020, 3201, 1, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7021, 3202, 1, '0.0000', NULL, '49.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7022, 3203, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7023, 3204, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7024, 3205, 1, '0.0000', NULL, '4.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7025, 3206, 1, '0.0000', NULL, '3.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7026, 3207, 1, '0.0000', NULL, '6.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7027, 3208, 1, '0.0000', NULL, '2.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7028, 3209, 1, '0.0000', NULL, '4.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7029, 3210, 1, '0.0000', NULL, '28.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7030, 3211, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7031, 3212, 1, '0.0000', NULL, '23.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7032, 3213, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7033, 3214, 1, '0.0000', NULL, '9.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7034, 3215, 1, '0.0000', NULL, '0.2300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7035, 3216, 1, '0.0000', NULL, '2.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7036, 3217, 1, '0.0000', NULL, '6.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7037, 3218, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7038, 3219, 1, '0.0000', NULL, '1.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7039, 3220, 1, '0.0000', NULL, '1.3100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7040, 3221, 1, '0.0000', NULL, '19.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7041, 3222, 1, '0.0000', NULL, '15.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7042, 3223, 1, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7043, 3224, 1, '0.0000', NULL, '5.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7044, 3225, 1, '0.0000', NULL, '20.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7045, 3226, 1, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7046, 3227, 1, '0.0000', NULL, '28.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7047, 3228, 1, '0.0000', NULL, '26.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7048, 3229, 1, '0.0000', NULL, '5.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7049, 3230, 1, '0.0000', NULL, '1.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7050, 3231, 1, '0.0000', NULL, '2.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7051, 3232, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7052, 3233, 1, '0.0000', NULL, '40.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7053, 3234, 1, '0.0000', NULL, '51.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7054, 3235, 1, '0.0000', NULL, '86.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7055, 3236, 1, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7056, 3237, 1, '0.0000', NULL, '20.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7057, 3238, 1, '0.0000', NULL, '2.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7058, 3239, 1, '0.0000', NULL, '3.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7059, 3240, 1, '0.0000', NULL, '1.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7060, 3241, 1, '0.0000', NULL, '16.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7061, 3242, 1, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7062, 3243, 1, '0.0000', NULL, '10.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7063, 3244, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7064, 3245, 1, '0.0000', NULL, '0.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7065, 3246, 1, '0.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7066, 3247, 1, '0.0000', NULL, '9.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7067, 3248, 1, '0.0000', NULL, '67.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7068, 3249, 1, '0.0000', NULL, '0.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7069, 3250, 1, '0.0000', NULL, '4.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7070, 3251, 1, '0.0000', NULL, '60.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7071, 3252, 1, '0.0000', NULL, '29.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7072, 3253, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7073, 3254, 1, '0.0000', NULL, '3.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7074, 3255, 1, '0.0000', NULL, '0.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7075, 3256, 1, '0.0000', NULL, '10.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7076, 3257, 1, '0.0000', NULL, '0.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7077, 3258, 1, '0.0000', NULL, '54.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7078, 3259, 1, '0.0000', NULL, '19.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7079, 3260, 1, '0.0000', NULL, '9.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7080, 3261, 1, '0.0000', NULL, '2.3400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7081, 3262, 1, '0.0000', NULL, '0.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7082, 3263, 1, '0.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7083, 3264, 1, '0.0000', NULL, '9.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7084, 3265, 1, '0.0000', NULL, '21.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7085, 3266, 1, '0.0000', NULL, '4.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7086, 3267, 1, '0.0000', NULL, '4.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7087, 3268, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7088, 3269, 1, '0.0000', NULL, '17.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7089, 3270, 1, '0.0000', NULL, '0.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7090, 3271, 1, '0.0000', NULL, '0.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7091, 3272, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7092, 3273, 1, '0.0000', NULL, '7.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7093, 3274, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7094, 3275, 1, '0.0000', NULL, '3.5400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7095, 3276, 1, '0.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7096, 3277, 1, '0.0000', NULL, '7.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7097, 3278, 1, '0.0000', NULL, '1.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7098, 3279, 1, '0.0000', NULL, '0.2700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7099, 3280, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7100, 3281, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7101, 3282, 1, '0.0000', NULL, '8.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7102, 3283, 1, '0.0000', NULL, '4.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7103, 3284, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7104, 3285, 1, '0.0000', NULL, '13.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7105, 3286, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7106, 3287, 1, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7107, 3288, 1, '0.0000', NULL, '7.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7108, 3289, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7109, 3290, 1, '0.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7110, 3291, 1, '0.0000', NULL, '15.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7111, 3292, 1, '0.0000', NULL, '5.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7112, 3293, 1, '0.0000', NULL, '0.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7113, 3294, 1, '0.0000', NULL, '9.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7114, 3295, 1, '0.0000', NULL, '8.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7115, 3296, 1, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7116, 3297, 1, '0.0000', NULL, '1.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7117, 3298, 1, '0.0000', NULL, '11.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7118, 3299, 1, '0.0000', NULL, '0.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7119, 3300, 1, '0.0000', NULL, '0.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7120, 3301, 1, '0.0000', NULL, '1.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7121, 3302, 1, '0.0000', NULL, '5.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7122, 3303, 1, '0.0000', NULL, '0.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7123, 3304, 1, '0.0000', NULL, '17.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7124, 3305, 1, '0.0000', NULL, '16.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7125, 3306, 1, '0.0000', NULL, '9.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7126, 3307, 1, '0.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7127, 3308, 1, '0.0000', NULL, '5.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7128, 3309, 1, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7129, 3310, 1, '0.0000', NULL, '3.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7130, 3311, 1, '0.0000', NULL, '70.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7131, 3312, 1, '0.0000', NULL, '18.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7132, 3313, 1, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7133, 3314, 1, '0.0000', NULL, '3.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7134, 3315, 1, '0.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7135, 3316, 1, '0.0000', NULL, '0.2100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7136, 3317, 1, '0.0000', NULL, '18.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7137, 3318, 1, '0.0000', NULL, '9.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7138, 3319, 1, '0.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7139, 3320, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7140, 3321, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7141, 3322, 1, '0.0000', NULL, '0.3400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7142, 3323, 1, '0.0000', NULL, '2.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7143, 3324, 1, '0.0000', NULL, '4.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7144, 3325, 1, '0.0000', NULL, '1.2700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7145, 3326, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7146, 3327, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7147, 3328, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7148, 3329, 1, '0.0000', NULL, '0.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7149, 3330, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7150, 3331, 1, '0.0000', NULL, '6.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7151, 3332, 1, '0.0000', NULL, '33.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7152, 3333, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7153, 3334, 1, '0.0000', NULL, '4.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7154, 3335, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7155, 3336, 1, '0.0000', NULL, '0.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7156, 3337, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7157, 3338, 1, '0.0000', NULL, '6.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7158, 3339, 1, '0.0000', NULL, '0.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7159, 3340, 1, '0.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7160, 3341, 1, '0.0000', NULL, '32.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7161, 3342, 1, '0.0000', NULL, '6.0600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7162, 3343, 1, '0.0000', NULL, '1.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7163, 3344, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7164, 3345, 1, '0.0000', NULL, '39.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7165, 3346, 1, '0.0000', NULL, '8.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7166, 3347, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7167, 3348, 1, '0.0000', NULL, '1.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7168, 3349, 1, '0.0000', NULL, '28.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7169, 3350, 1, '0.0000', NULL, '6.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7170, 3351, 1, '0.0000', NULL, '0.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7171, 3352, 1, '0.0000', NULL, '25.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7172, 3353, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7173, 3354, 1, '0.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7174, 3355, 1, '0.0000', NULL, '1.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7175, 3356, 1, '0.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7176, 3357, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7177, 3358, 1, '0.0000', NULL, '3.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7178, 3359, 1, '0.0000', NULL, '6.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7179, 3360, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7180, 3361, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7181, 3362, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7182, 3363, 1, '0.0000', NULL, '1.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7183, 3364, 1, '0.0000', NULL, '4.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7184, 3365, 1, '0.0000', NULL, '2.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7185, 3366, 1, '0.0000', NULL, '8.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7186, 3367, 1, '0.0000', NULL, '2.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7187, 3368, 1, '0.0000', NULL, '10.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7188, 3369, 1, '0.0000', NULL, '26.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7189, 3370, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7190, 3371, 1, '0.0000', NULL, '4.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7191, 3372, 1, '0.0000', NULL, '1.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7192, 3373, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7193, 3374, 1, '0.0000', NULL, '1.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7194, 3375, 1, '0.0000', NULL, '4.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7195, 3376, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7196, 3377, 1, '0.0000', NULL, '1.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7197, 3378, 1, '0.0000', NULL, '4.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7198, 3379, 1, '0.0000', NULL, '7.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7199, 3380, 1, '0.0000', NULL, '6.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7200, 3381, 1, '0.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7201, 3382, 1, '0.0000', NULL, '29.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7202, 3383, 1, '0.0000', NULL, '4.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7203, 3384, 1, '0.0000', NULL, '1.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7204, 3385, 1, '0.0000', NULL, '21.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7205, 3386, 1, '0.0000', NULL, '46.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7206, 3387, 1, '0.0000', NULL, '6.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7207, 3388, 1, '0.0000', NULL, '4.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7208, 3389, 1, '0.0000', NULL, '4.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7209, 3390, 1, '0.0000', NULL, '21.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7210, 3391, 1, '0.0000', NULL, '34.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7211, 3392, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7212, 3393, 1, '0.0000', NULL, '4.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7213, 3394, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7214, 3395, 1, '0.0000', NULL, '3.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7215, 3396, 1, '0.0000', NULL, '17.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7216, 3397, 1, '0.0000', NULL, '0.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7217, 3398, 1, '0.0000', NULL, '7.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7218, 3399, 1, '0.0000', NULL, '40.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7219, 3400, 1, '0.0000', NULL, '3.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7220, 3401, 1, '0.0000', NULL, '143.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7221, 3402, 1, '0.0000', NULL, '2.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7222, 3403, 1, '0.0000', NULL, '68.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7223, 3404, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7224, 3405, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7225, 3406, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7226, 3407, 1, '0.0000', NULL, '12.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7227, 3408, 1, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7228, 3409, 1, '0.0000', NULL, '6.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7229, 3410, 1, '0.0000', NULL, '11.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7230, 3411, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7231, 3412, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7232, 3413, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7233, 3414, 1, '0.0000', NULL, '5.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7234, 3415, 1, '0.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7235, 3416, 1, '0.0000', NULL, '2.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7236, 3417, 1, '0.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7237, 3418, 1, '0.0000', NULL, '7.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7238, 3419, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7239, 3420, 1, '0.0000', NULL, '4.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7240, 3421, 1, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7241, 3422, 1, '0.0000', NULL, '2.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7242, 3423, 1, '0.0000', NULL, '2.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7243, 3424, 1, '0.0000', NULL, '0.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7244, 3425, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7245, 3426, 1, '0.0000', NULL, '40.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7246, 3427, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7247, 3428, 1, '0.0000', NULL, '5.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7248, 3429, 1, '0.0000', NULL, '10.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7249, 3430, 1, '0.0000', NULL, '1.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7250, 3431, 1, '0.0000', NULL, '5.4700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7251, 3432, 1, '0.0000', NULL, '10.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7252, 3433, 1, '0.0000', NULL, '5.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7253, 3434, 1, '0.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7254, 3435, 1, '0.0000', NULL, '7.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7255, 3436, 1, '0.0000', NULL, '6.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7256, 3437, 1, '0.0000', NULL, '5.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7257, 3438, 1, '0.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7258, 3439, 1, '0.0000', NULL, '5.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7259, 3440, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7260, 3441, 1, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7261, 3442, 1, '0.0000', NULL, '19.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7262, 3443, 1, '0.0000', NULL, '1.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7263, 3444, 1, '0.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7264, 3445, 1, '0.0000', NULL, '15.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7265, 3446, 1, '0.0000', NULL, '1.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7266, 3447, 1, '0.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7267, 3448, 1, '0.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7268, 3449, 1, '0.0000', NULL, '11.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7269, 3450, 1, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7270, 3451, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7271, 3452, 1, '0.0000', NULL, '21.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7272, 3453, 1, '0.0000', NULL, '5.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7273, 3454, 1, '0.0000', NULL, '7.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7274, 3455, 1, '0.0000', NULL, '9.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7275, 3456, 1, '0.0000', NULL, '0.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7276, 3457, 1, '0.0000', NULL, '1.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7277, 3458, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7278, 3459, 1, '0.0000', NULL, '31.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7279, 3460, 1, '0.0000', NULL, '19.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7280, 3461, 1, '0.0000', NULL, '7.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7281, 3462, 1, '0.0000', NULL, '13.3400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7282, 3463, 1, '0.0000', NULL, '12.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7283, 3464, 1, '0.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7284, 3465, 1, '0.0000', NULL, '4.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7285, 3466, 1, '0.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7286, 3467, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7287, 3468, 1, '0.0000', NULL, '4.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7288, 3469, 1, '0.0000', NULL, '3.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7289, 3470, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7290, 3471, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7291, 3472, 1, '0.0000', NULL, '4.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7292, 3473, 1, '0.0000', NULL, '6.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7293, 3474, 1, '0.0000', NULL, '3.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7294, 3475, 1, '0.0000', NULL, '0.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7295, 3476, 1, '0.0000', NULL, '0.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7296, 3477, 1, '0.0000', NULL, '22.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7297, 3478, 1, '0.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7298, 3479, 1, '0.0000', NULL, '5.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7299, 3480, 1, '0.0000', NULL, '6.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7300, 3481, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7301, 3482, 1, '0.0000', NULL, '13.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7302, 3483, 1, '0.0000', NULL, '35.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7303, 3484, 1, '0.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7304, 3485, 1, '0.0000', NULL, '0.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7305, 3486, 1, '0.0000', NULL, '0.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7306, 3487, 1, '0.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7307, 3488, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7308, 3489, 1, '0.0000', NULL, '1.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7309, 3490, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7310, 3491, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7311, 3492, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7312, 3493, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7313, 3494, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7314, 3495, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7315, 3496, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7316, 3497, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7317, 3498, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7318, 3499, 1, '0.0000', NULL, '1.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7319, 3500, 1, '0.0000', NULL, '2.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7320, 3501, 1, '0.0000', NULL, '0.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7321, 3502, 1, '0.0000', NULL, '0.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7322, 3503, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7323, 3504, 1, '0.0000', NULL, '45.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7324, 3505, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7325, 3506, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7326, 3507, 1, '0.0000', NULL, '25.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7327, 3508, 1, '0.0000', NULL, '15.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7328, 3509, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7329, 3510, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7330, 3511, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7331, 3512, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7332, 3513, 1, '0.0000', NULL, '2.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7333, 3514, 1, '0.0000', NULL, '3.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7334, 3515, 1, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7335, 3516, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7336, 3517, 1, '0.0000', NULL, '7.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7337, 3518, 1, '0.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7338, 3519, 1, '0.0000', NULL, '7.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7339, 3520, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7340, 3521, 1, '0.0000', NULL, '17.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7341, 3522, 1, '0.0000', NULL, '33.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7342, 3523, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7343, 3524, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7344, 3525, 1, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7345, 3526, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7346, 3527, 1, '0.0000', NULL, '3.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7347, 3528, 1, '0.0000', NULL, '19.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7348, 3529, 1, '0.0000', NULL, '82.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7349, 3530, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7350, 3531, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7351, 3532, 1, '0.0000', NULL, '10.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7352, 3533, 1, '0.0000', NULL, '19.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7353, 3534, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7354, 3535, 1, '0.0000', NULL, '2.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7355, 3536, 1, '0.0000', NULL, '5.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7356, 3537, 1, '0.0000', NULL, '1.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7357, 3538, 1, '0.0000', NULL, '12.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7358, 3539, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7359, 3540, 1, '0.0000', NULL, '11.1900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7360, 3541, 1, '0.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7361, 3542, 1, '0.0000', NULL, '7.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7362, 3543, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7363, 3544, 1, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7364, 3545, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7365, 3546, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7366, 3547, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7367, 3548, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7368, 3549, 1, '0.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7369, 3550, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7370, 3551, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7371, 3552, 1, '0.0000', NULL, '13.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7372, 3553, 1, '0.0000', NULL, '0.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7373, 3554, 1, '0.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7374, 3555, 1, '0.0000', NULL, '4.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7375, 3556, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7376, 3557, 1, '0.0000', NULL, '3.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7377, 3558, 1, '0.0000', NULL, '7.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7378, 3559, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7379, 3560, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7380, 3561, 1, '0.0000', NULL, '3.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7381, 3562, 1, '0.0000', NULL, '2.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7382, 3563, 1, '0.0000', NULL, '1.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7383, 3564, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7384, 3565, 1, '0.0000', NULL, '11.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7385, 3566, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7386, 3567, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7387, 3568, 1, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7388, 3569, 1, '0.0000', NULL, '20.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7389, 3570, 1, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7390, 3571, 1, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7391, 3572, 1, '0.0000', NULL, '4.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7392, 3573, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7393, 3574, 1, '0.0000', NULL, '0.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7394, 3575, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7395, 3576, 1, '0.0000', NULL, '0.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7396, 3577, 1, '0.0000', NULL, '1.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7397, 3578, 1, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7398, 3579, 1, '0.0000', NULL, '2.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7399, 3580, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7400, 3581, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7401, 3582, 1, '0.0000', NULL, '13.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7402, 3583, 1, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7403, 3584, 1, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7404, 3585, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7405, 3586, 1, '0.0000', NULL, '16.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7406, 3587, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7407, 3588, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7408, 3589, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7409, 3590, 1, '0.0000', NULL, '10.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7410, 3591, 1, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7411, 3592, 1, '0.0000', NULL, '15.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7412, 3593, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7413, 3594, 1, '0.0000', NULL, '8.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7414, 3595, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7415, 3596, 1, '0.0000', NULL, '5.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7416, 3597, 1, '0.0000', NULL, '11.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7417, 3598, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7418, 3599, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7419, 3600, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7420, 3601, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7421, 3602, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7422, 3603, 1, '0.0000', NULL, '18.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7423, 3604, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7424, 3605, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7425, 3606, 1, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7426, 3607, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7427, 3608, 1, '0.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7428, 3609, 1, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7429, 3610, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7430, 3611, 1, '0.0000', NULL, '14.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7431, 3612, 1, '0.0000', NULL, '1.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7432, 3613, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7433, 3614, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7434, 3615, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7435, 3616, 1, '0.0000', NULL, '25.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7436, 3617, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7437, 3618, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7438, 3619, 1, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7439, 3620, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7440, 3621, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7441, 3622, 1, '0.0000', NULL, '1.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7442, 3623, 1, '0.0000', NULL, '0.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7443, 3624, 1, '0.0000', NULL, '15.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7444, 3625, 1, '0.0000', NULL, '12.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7445, 3626, 1, '0.0000', NULL, '6.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7446, 3627, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7447, 3628, 1, '0.0000', NULL, '28.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7448, 3629, 1, '0.0000', NULL, '13.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7449, 3630, 1, '0.0000', NULL, '6.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7450, 3631, 1, '0.0000', NULL, '12.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7451, 3632, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7452, 3633, 1, '0.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7453, 3634, 1, '0.0000', NULL, '3.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7454, 3635, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7455, 3636, 1, '0.0000', NULL, '17.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7456, 3637, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7457, 3638, 1, '0.0000', NULL, '2.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7458, 3639, 1, '0.0000', NULL, '1.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7459, 3640, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7460, 3641, 1, '0.0000', NULL, '4.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7461, 3642, 1, '0.0000', NULL, '28.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7462, 3643, 1, '0.0000', NULL, '4.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7463, 3644, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7464, 3645, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7465, 3646, 1, '0.0000', NULL, '48.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7466, 3647, 1, '0.0000', NULL, '52.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7467, 3648, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7468, 3649, 1, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7469, 3650, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7470, 3651, 1, '0.0000', NULL, '1.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7471, 3652, 1, '0.0000', NULL, '2.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7472, 3653, 1, '0.0000', NULL, '1.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7473, 3654, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7474, 3655, 1, '0.0000', NULL, '32.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7475, 3656, 1, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7476, 3657, 1, '0.0000', NULL, '82.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7477, 3658, 1, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7478, 3659, 1, '0.0000', NULL, '17.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7479, 3660, 1, '0.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7480, 3661, 1, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7481, 3662, 1, '0.0000', NULL, '17.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7482, 3663, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7483, 3664, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7484, 3665, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7485, 3666, 1, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7486, 3667, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7487, 3668, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7488, 3669, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7489, 3670, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7490, 3671, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7491, 3672, 1, '0.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7492, 3673, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7493, 3674, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7494, 3675, 1, '0.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7495, 3676, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7496, 3677, 1, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7497, 3678, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7498, 3679, 1, '0.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7499, 3680, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7500, 3681, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7501, 3682, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7502, 3683, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7503, 3684, 1, '0.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7504, 3685, 1, '0.0000', NULL, '4.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7505, 3686, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7506, 3687, 1, '0.0000', NULL, '2.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7507, 3688, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7508, 3689, 1, '0.0000', NULL, '0.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7509, 3690, 1, '0.0000', NULL, '8.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7510, 3691, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7511, 3692, 1, '0.0000', NULL, '1.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7512, 3693, 1, '0.0000', NULL, '4.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7513, 3694, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7514, 3695, 1, '0.0000', NULL, '0.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7515, 3696, 1, '0.0000', NULL, '6.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7516, 3697, 1, '0.0000', NULL, '6.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7517, 3698, 1, '0.0000', NULL, '4.7100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7518, 3699, 1, '0.0000', NULL, '11.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7519, 3700, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7520, 3701, 1, '0.0000', NULL, '6.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7521, 3702, 1, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7522, 3703, 1, '0.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7523, 3704, 1, '0.0000', NULL, '1.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7524, 3705, 1, '0.0000', NULL, '0.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7525, 3706, 1, '0.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7526, 3707, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7527, 3708, 1, '0.0000', NULL, '4.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7528, 3709, 1, '0.0000', NULL, '0.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7529, 3710, 1, '0.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7530, 3711, 1, '0.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7531, 3712, 1, '0.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7532, 3713, 1, '0.0000', NULL, '0.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7533, 3714, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7534, 3715, 1, '0.0000', NULL, '0.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7535, 3716, 1, '0.0000', NULL, '1.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7536, 3717, 1, '0.0000', NULL, '0.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7537, 3718, 1, '0.0000', NULL, '1.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7538, 3719, 1, '0.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7539, 3720, 1, '0.0000', NULL, '0.5200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7540, 3721, 1, '0.0000', NULL, '14.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7541, 3722, 1, '0.0000', NULL, '2.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7542, 3723, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7543, 3724, 1, '0.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7544, 3725, 1, '0.0000', NULL, '14.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7545, 3726, 1, '0.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7546, 3727, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7547, 3728, 1, '-1.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7548, 3729, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7549, 3730, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7550, 3731, 1, '0.0000', NULL, '0.3400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7551, 3732, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7552, 3733, 1, '0.0000', NULL, '9.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7553, 3734, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7554, 3735, 1, '0.0000', NULL, '14.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7555, 3736, 1, '0.0000', NULL, '65.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7556, 3737, 1, '0.0000', NULL, '4.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7557, 3738, 1, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7558, 3739, 1, '0.0000', NULL, '5.6100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7559, 3740, 1, '0.0000', NULL, '1.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7560, 3741, 1, '0.0000', NULL, '0.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7561, 3742, 1, '0.0000', NULL, '2.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7562, 3743, 1, '0.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7563, 3744, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7564, 3745, 1, '0.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7565, 3746, 1, '0.0000', NULL, '23.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7566, 3747, 1, '0.0000', NULL, '15.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7567, 3748, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7568, 3749, 1, '0.0000', NULL, '21.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7569, 3750, 1, '0.0000', NULL, '20.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7570, 3751, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7571, 3752, 1, '0.0000', NULL, '0.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7572, 3753, 1, '0.0000', NULL, '0.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7573, 3754, 1, '0.0000', NULL, '17.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7574, 3755, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7575, 3756, 1, '0.0000', NULL, '11.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7576, 3757, 1, '0.0000', NULL, '42.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7577, 3758, 1, '0.0000', NULL, '16.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7578, 3759, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7579, 3760, 1, '0.0000', NULL, '52.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7580, 3761, 1, '0.0000', NULL, '37.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7581, 3762, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7582, 3763, 1, '0.0000', NULL, '26.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7583, 3764, 1, '0.0000', NULL, '15.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7584, 3765, 1, '0.0000', NULL, '39.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7585, 3766, 1, '0.0000', NULL, '8.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7586, 3767, 1, '0.0000', NULL, '41.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7587, 3768, 1, '0.0000', NULL, '47.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7588, 3769, 1, '0.0000', NULL, '40.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7589, 3770, 1, '0.0000', NULL, '33.0100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7590, 3771, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7591, 3772, 1, '0.0000', NULL, '6.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7592, 3773, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7593, 3774, 1, '0.0000', NULL, '25.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7594, 3775, 1, '0.0000', NULL, '36.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7595, 3776, 1, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7596, 3777, 1, '0.0000', NULL, '53.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7597, 3778, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7598, 3779, 1, '0.0000', NULL, '17.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7599, 3780, 1, '0.0000', NULL, '7.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7600, 3781, 1, '0.0000', NULL, '8.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7601, 3782, 1, '0.0000', NULL, '5.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7602, 3783, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7603, 3784, 1, '0.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7604, 3785, 1, '0.0000', NULL, '0.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7605, 3786, 1, '0.0000', NULL, '0.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7606, 3787, 1, '0.0000', NULL, '3.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7607, 3788, 1, '0.0000', NULL, '40.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7608, 3789, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7609, 3790, 1, '0.0000', NULL, '9.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7610, 3791, 1, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7611, 3792, 1, '0.0000', NULL, '11.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7612, 3793, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7613, 3794, 1, '0.0000', NULL, '51.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7614, 3795, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7615, 3796, 1, '0.0000', NULL, '17.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7616, 3797, 1, '0.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7617, 3798, 1, '0.0000', NULL, '10.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7618, 3799, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7619, 3800, 1, '0.0000', NULL, '16.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7620, 3801, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7621, 3802, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7622, 3803, 1, '0.0000', NULL, '32.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7623, 3804, 1, '0.0000', NULL, '5.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7624, 3805, 1, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7625, 3806, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7626, 3807, 1, '0.0000', NULL, '27.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7627, 3808, 1, '0.0000', NULL, '4.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7628, 3809, 1, '0.0000', NULL, '1.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7629, 3810, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7630, 3811, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7631, 3812, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7632, 3813, 1, '0.0000', NULL, '34.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7633, 3814, 1, '0.0000', NULL, '4.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7634, 3815, 1, '0.0000', NULL, '0.4700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7635, 3816, 1, '0.0000', NULL, '33.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7636, 3817, 1, '0.0000', NULL, '27.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7637, 3818, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7638, 3819, 1, '0.0000', NULL, '16.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7639, 3820, 1, '0.0000', NULL, '39.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7640, 3821, 1, '0.0000', NULL, '9.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7641, 3822, 1, '0.0000', NULL, '15.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7642, 3823, 1, '0.0000', NULL, '18.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7643, 3824, 1, '0.0000', NULL, '28.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7644, 3825, 1, '0.0000', NULL, '0.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7645, 3826, 1, '0.0000', NULL, '0.4700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7646, 3827, 1, '0.0000', NULL, '2.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7647, 3828, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7648, 3829, 1, '0.0000', NULL, '10.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7649, 3830, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7650, 3831, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7651, 3832, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7652, 3833, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7653, 3834, 1, '0.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7654, 3835, 1, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7655, 3836, 1, '0.0000', NULL, '4.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7656, 3837, 1, '0.0000', NULL, '28.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7657, 3838, 1, '0.0000', NULL, '48.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7658, 3839, 1, '0.0000', NULL, '4.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7659, 3840, 1, '0.0000', NULL, '5.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7660, 3841, 1, '0.0000', NULL, '29.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7661, 3842, 1, '0.0000', NULL, '8.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7662, 3843, 1, '0.0000', NULL, '7.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7663, 3844, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7664, 3845, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7665, 3846, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7666, 3847, 1, '0.0000', NULL, '9.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7667, 3848, 1, '0.0000', NULL, '3.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7668, 3849, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7669, 3850, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7670, 3851, 1, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7671, 3852, 1, '0.0000', NULL, '0.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7672, 3853, 1, '0.0000', NULL, '0.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7673, 3854, 1, '0.0000', NULL, '2.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7674, 3855, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7675, 3856, 1, '0.0000', NULL, '11.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7676, 3857, 1, '0.0000', NULL, '0.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7677, 3858, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7678, 3859, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7679, 3860, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7680, 3861, 1, '0.0000', NULL, '20.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7681, 3862, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7682, 3863, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7683, 3864, 1, '0.0000', NULL, '8.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7684, 3865, 1, '0.0000', NULL, '7.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7685, 3866, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7686, 3867, 1, '0.0000', NULL, '8.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7687, 3868, 1, '0.0000', NULL, '47.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7688, 3869, 1, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7689, 3870, 1, '0.0000', NULL, '15.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7690, 3871, 1, '0.0000', NULL, '7.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7691, 3872, 1, '0.0000', NULL, '52.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7692, 3873, 1, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7693, 3874, 1, '0.0000', NULL, '26.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7694, 3875, 1, '0.0000', NULL, '21.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7695, 3876, 1, '0.0000', NULL, '1.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7696, 3877, 1, '0.0000', NULL, '3.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7697, 3878, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7698, 3879, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7699, 3880, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7700, 3881, 1, '0.0000', NULL, '2.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7701, 3882, 1, '0.0000', NULL, '84.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7702, 3883, 1, '0.0000', NULL, '14.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7703, 3884, 1, '0.0000', NULL, '17.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7704, 3885, 1, '0.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7705, 3886, 1, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7706, 3887, 1, '0.0000', NULL, '29.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7707, 3888, 1, '0.0000', NULL, '17.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7708, 3889, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7709, 3890, 1, '0.0000', NULL, '57.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7710, 3891, 1, '0.0000', NULL, '1.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7711, 3892, 1, '0.0000', NULL, '31.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7712, 3893, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7713, 3894, 1, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7714, 3895, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7715, 3896, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7716, 3897, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7717, 3898, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7718, 3899, 1, '0.0000', NULL, '0.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7719, 3900, 1, '0.0000', NULL, '7.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7720, 3901, 1, '0.0000', NULL, '24.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7721, 3902, 1, '0.0000', NULL, '35.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7722, 3903, 1, '0.0000', NULL, '29.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7723, 3904, 1, '0.0000', NULL, '8.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7724, 3905, 1, '0.0000', NULL, '6.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7725, 3906, 1, '0.0000', NULL, '4.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7726, 3907, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7727, 3908, 1, '0.0000', NULL, '5.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7728, 3909, 1, '0.0000', NULL, '13.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7729, 3910, 1, '0.0000', NULL, '29.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7730, 3911, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7731, 3912, 1, '0.0000', NULL, '9.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7732, 3913, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7733, 3914, 1, '0.0000', NULL, '6.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7734, 3915, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7735, 3916, 1, '0.0000', NULL, '84.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7736, 3917, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7737, 3918, 1, '0.0000', NULL, '3.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7738, 3919, 1, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7739, 3920, 1, '0.0000', NULL, '34.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7740, 3921, 1, '0.0000', NULL, '4.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7741, 3922, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7742, 3923, 1, '0.0000', NULL, '38.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7743, 3924, 1, '0.0000', NULL, '27.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7744, 3925, 1, '0.0000', NULL, '1.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7745, 3926, 1, '0.0000', NULL, '0.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7746, 3927, 1, '0.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7747, 3928, 1, '0.0000', NULL, '12.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7748, 3929, 1, '0.0000', NULL, '65.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7749, 3930, 1, '0.0000', NULL, '25.3100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7750, 3931, 1, '0.0000', NULL, '17.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7751, 3932, 1, '0.0000', NULL, '18.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7752, 3933, 1, '0.0000', NULL, '19.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7753, 3934, 1, '0.0000', NULL, '3.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7754, 3935, 1, '0.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7755, 3936, 1, '0.0000', NULL, '16.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7756, 3937, 1, '0.0000', NULL, '4.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7757, 3938, 1, '0.0000', NULL, '3.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7758, 3939, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7759, 3940, 1, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7760, 3941, 1, '0.0000', NULL, '16.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7761, 3942, 1, '0.0000', NULL, '5.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7762, 3943, 1, '0.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7763, 3944, 1, '0.0000', NULL, '1.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7764, 3945, 1, '0.0000', NULL, '3.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7765, 3946, 1, '0.0000', NULL, '40.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7766, 3947, 1, '0.0000', NULL, '4.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7767, 3948, 1, '0.0000', NULL, '1.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7768, 3949, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7769, 3950, 1, '0.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7770, 3951, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7771, 3952, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7772, 3953, 1, '0.0000', NULL, '0.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7773, 3954, 1, '0.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7774, 3955, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7775, 3956, 1, '0.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7776, 3957, 1, '0.0000', NULL, '81.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7777, 3958, 1, '0.0000', NULL, '0.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7778, 3959, 1, '0.0000', NULL, '0.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7779, 3960, 1, '0.0000', NULL, '1.0800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7780, 3961, 1, '0.0000', NULL, '14.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7781, 3962, 1, '0.0000', NULL, '13.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7782, 3963, 1, '0.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7783, 3964, 1, '0.0000', NULL, '11.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7784, 3965, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7785, 3966, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7786, 3967, 1, '0.0000', NULL, '25.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7787, 3968, 1, '0.0000', NULL, '31.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7788, 3969, 1, '0.0000', NULL, '62.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7789, 3970, 1, '0.0000', NULL, '53.3100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7790, 3971, 1, '0.0000', NULL, '7.2700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7791, 3972, 1, '0.0000', NULL, '6.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7792, 3973, 1, '0.0000', NULL, '10.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7793, 3974, 1, '0.0000', NULL, '8.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7794, 3975, 1, '0.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7795, 3976, 1, '0.0000', NULL, '1.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7796, 3977, 1, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7797, 3978, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7798, 3979, 1, '0.0000', NULL, '2.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7799, 3980, 1, '0.0000', NULL, '0.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7800, 3981, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7801, 3982, 1, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7802, 3983, 1, '0.0000', NULL, '59.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7803, 3984, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7804, 3985, 1, '0.0000', NULL, '0.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7805, 3986, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7806, 3987, 1, '0.0000', NULL, '23.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7807, 3988, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7808, 3989, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7809, 3990, 1, '0.0000', NULL, '11.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7810, 3991, 1, '0.0000', NULL, '9.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7811, 3992, 1, '0.0000', NULL, '8.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7812, 3993, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7813, 3994, 1, '0.0000', NULL, '32.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7814, 3995, 1, '0.0000', NULL, '3.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7815, 3996, 1, '0.0000', NULL, '18.0600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7816, 3997, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7817, 3998, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7818, 3999, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7819, 4000, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7820, 4001, 1, '0.0000', NULL, '0.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7821, 4002, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7822, 4003, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7823, 4004, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7824, 4005, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7825, 4006, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7826, 4007, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7827, 4008, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7828, 4009, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7829, 4010, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7830, 4011, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7831, 4012, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7832, 4013, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7833, 4014, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7834, 4015, 1, '0.0000', NULL, '0.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7835, 4016, 1, '0.0000', NULL, '0.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7836, 4017, 1, '0.0000', NULL, '1.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7837, 4018, 1, '0.0000', NULL, '37.4100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7838, 4019, 1, '0.0000', NULL, '2.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7839, 4020, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7840, 4021, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7841, 4022, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7842, 4023, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7843, 4024, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7844, 4025, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7845, 4026, 1, '0.0000', NULL, '27.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7846, 4027, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7847, 4028, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7848, 4029, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7849, 4030, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7850, 4031, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7851, 4032, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7852, 4033, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7853, 4034, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7854, 4035, 1, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7855, 4036, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7856, 4037, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7857, 4038, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7858, 4039, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7859, 4040, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7860, 4041, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7861, 4042, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7862, 4043, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7863, 4044, 1, '0.0000', NULL, '0.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7864, 4045, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7865, 4046, 1, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7866, 4047, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7867, 4048, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7868, 4049, 1, '0.0000', NULL, '6.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7869, 4050, 1, '0.0000', NULL, '4.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7870, 4051, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7871, 4052, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7872, 4053, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7873, 4054, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7874, 4055, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7875, 4056, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7876, 4057, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7877, 4058, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7878, 4059, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7879, 4060, 1, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7880, 4061, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7881, 4062, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7882, 4063, 1, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7883, 4064, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7884, 4065, 1, '0.0000', NULL, '11.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7885, 4066, 1, '0.0000', NULL, '18.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7886, 4067, 1, '0.0000', NULL, '24.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7887, 4068, 1, '0.0000', NULL, '1.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7888, 4069, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7889, 4070, 1, '0.0000', NULL, '11.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7890, 4071, 1, '0.0000', NULL, '73.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7891, 4072, 1, '0.0000', NULL, '7.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7892, 4073, 1, '0.0000', NULL, '10.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7893, 4074, 1, '0.0000', NULL, '7.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7894, 4075, 1, '0.0000', NULL, '4.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7895, 4076, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7896, 4077, 1, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7897, 4078, 1, '0.0000', NULL, '8.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7898, 4079, 1, '0.0000', NULL, '3.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7899, 4080, 1, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7900, 4081, 1, '0.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7901, 4082, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7902, 4083, 1, '0.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7903, 4084, 1, '0.0000', NULL, '22.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7904, 4085, 1, '0.0000', NULL, '12.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7905, 4086, 1, '0.0000', NULL, '10.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7906, 4087, 1, '0.0000', NULL, '13.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7907, 4088, 1, '0.0000', NULL, '7.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7908, 4089, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7909, 4090, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7910, 4091, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7911, 4092, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7912, 4093, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7913, 4094, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7914, 4095, 1, '0.0000', NULL, '4.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7915, 4096, 1, '0.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7916, 4097, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7917, 4098, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7918, 4099, 1, '0.0000', NULL, '7.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7919, 4100, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7920, 4101, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7921, 4102, 1, '0.0000', NULL, '32.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7922, 4103, 1, '0.0000', NULL, '27.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7923, 4104, 1, '0.0000', NULL, '43.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7924, 4105, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7925, 4106, 1, '0.0000', NULL, '31.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7926, 4107, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7927, 4108, 1, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7928, 4109, 1, '0.0000', NULL, '21.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7929, 4110, 1, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7930, 4111, 1, '0.0000', NULL, '20.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7931, 4112, 1, '0.0000', NULL, '1.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7932, 4113, 1, '0.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7933, 4114, 1, '0.0000', NULL, '23.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7934, 4115, 1, '0.0000', NULL, '43.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7935, 4116, 1, '0.0000', NULL, '8.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7936, 4117, 1, '0.0000', NULL, '5.5100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7937, 4118, 1, '0.0000', NULL, '18.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7938, 4119, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7939, 4120, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7940, 4121, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7941, 4122, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7942, 4123, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7943, 4124, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7944, 4125, 1, '0.0000', NULL, '8.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7945, 4126, 1, '0.0000', NULL, '4.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7946, 4127, 1, '0.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7947, 4128, 1, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7948, 4129, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7949, 4130, 1, '0.0000', NULL, '11.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7950, 4131, 1, '0.0000', NULL, '13.2700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7951, 4132, 1, '0.0000', NULL, '3.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7952, 4133, 1, '0.0000', NULL, '6.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7953, 4134, 1, '0.0000', NULL, '0.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7954, 4135, 1, '0.0000', NULL, '4.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7955, 4136, 1, '0.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7956, 4137, 1, '0.0000', NULL, '38.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7957, 4138, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7958, 4139, 1, '0.0000', NULL, '9.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7959, 4140, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7960, 4141, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7961, 4142, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7962, 4143, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7963, 4144, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7964, 4145, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7965, 4146, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7966, 4147, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7967, 4148, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7968, 4149, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7969, 4150, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7970, 4151, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7971, 4152, 1, '0.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7972, 4153, 1, '0.0000', NULL, '13.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7973, 4154, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7974, 4155, 1, '0.0000', NULL, '12.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7975, 4156, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7976, 4157, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7977, 4158, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7978, 4159, 1, '0.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7979, 4160, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7980, 4161, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7981, 4162, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7982, 4163, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7983, 4164, 1, '0.0000', NULL, '8.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7984, 4165, 1, '0.0000', NULL, '0.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7985, 4166, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7986, 4167, 1, '0.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7987, 4168, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7988, 4169, 1, '0.0000', NULL, '0.9700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7989, 4170, 1, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7990, 4171, 1, '0.0000', NULL, '44.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7991, 4172, 1, '0.0000', NULL, '35.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7992, 4173, 1, '0.0000', NULL, '7.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7993, 4174, 1, '0.0000', NULL, '43.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7994, 4175, 1, '0.0000', NULL, '23.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7995, 4176, 1, '0.0000', NULL, '28.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7996, 4177, 1, '0.0000', NULL, '74.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7997, 4178, 1, '0.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7998, 4179, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (7999, 4180, 1, '0.0000', NULL, '9.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8000, 4181, 1, '0.0000', NULL, '2.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8001, 4182, 1, '0.0000', NULL, '43.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8002, 4183, 1, '0.0000', NULL, '7.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8003, 4184, 1, '0.0000', NULL, '42.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8004, 4185, 1, '0.0000', NULL, '90.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8005, 4186, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8006, 4187, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8007, 4188, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8008, 4189, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8009, 4190, 1, '0.0000', NULL, '43.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8010, 4191, 1, '0.0000', NULL, '5.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8011, 4192, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8012, 4193, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8013, 4194, 1, '0.0000', NULL, '34.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8014, 4195, 1, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8015, 4196, 1, '0.0000', NULL, '41.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8016, 4197, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8017, 4198, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8018, 4199, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8019, 4200, 1, '0.0000', NULL, '19.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8020, 4201, 1, '0.0000', NULL, '6.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8021, 4202, 1, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8022, 4203, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8023, 4204, 1, '0.0000', NULL, '44.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8024, 4205, 1, '0.0000', NULL, '29.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8025, 4206, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8026, 4207, 1, '0.0000', NULL, '10.2700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8027, 4208, 1, '0.0000', NULL, '27.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8028, 4209, 1, '0.0000', NULL, '5.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8029, 4210, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8030, 4211, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8031, 4212, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8032, 4213, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8033, 4214, 1, '0.0000', NULL, '8.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8034, 4215, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8035, 4216, 1, '0.0000', NULL, '2.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8036, 4217, 1, '0.0000', NULL, '36.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8037, 4218, 1, '0.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8038, 4219, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8039, 4220, 1, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8040, 4221, 1, '0.0000', NULL, '11.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8041, 4222, 1, '0.0000', NULL, '6.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8042, 4223, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8043, 4224, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8044, 4225, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8045, 4226, 1, '0.0000', NULL, '4.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8046, 4227, 1, '0.0000', NULL, '5.0800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8047, 4228, 1, '0.0000', NULL, '5.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8048, 4229, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8049, 4230, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8050, 4231, 1, '0.0000', NULL, '0.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8051, 4232, 1, '0.0000', NULL, '0.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8052, 4233, 1, '0.0000', NULL, '9.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8053, 4234, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8054, 4235, 1, '0.0000', NULL, '1.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8055, 4236, 1, '0.0000', NULL, '9.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8056, 4237, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8057, 4238, 1, '0.0000', NULL, '2.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8058, 4239, 1, '0.0000', NULL, '60.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8059, 4240, 1, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8060, 4241, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8061, 4242, 1, '0.0000', NULL, '52.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8062, 4243, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8063, 4244, 1, '0.0000', NULL, '19.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8064, 4245, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8065, 4246, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8066, 4247, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8067, 4248, 1, '0.0000', NULL, '0.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8068, 4249, 1, '0.0000', NULL, '8.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8069, 4250, 1, '0.0000', NULL, '23.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8070, 4251, 1, '0.0000', NULL, '12.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8071, 4252, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8072, 4253, 1, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8073, 4254, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8074, 4255, 1, '0.0000', NULL, '31.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8075, 4256, 1, '0.0000', NULL, '2.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8076, 4257, 1, '0.0000', NULL, '8.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8077, 4258, 1, '0.0000', NULL, '19.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8078, 4259, 1, '0.0000', NULL, '7.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8079, 4260, 1, '0.0000', NULL, '9.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8080, 4261, 1, '0.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8081, 4262, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8082, 4263, 1, '0.0000', NULL, '30.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8083, 4264, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8084, 4265, 1, '0.0000', NULL, '66.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8085, 4266, 1, '0.0000', NULL, '35.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8086, 4267, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8087, 4268, 1, '0.0000', NULL, '28.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8088, 4269, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8089, 4270, 1, '0.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8090, 4271, 1, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8091, 4272, 1, '0.0000', NULL, '10.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8092, 4273, 1, '0.0000', NULL, '55.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8093, 4274, 1, '0.0000', NULL, '22.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8094, 4275, 1, '0.0000', NULL, '47.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8095, 4276, 1, '0.0000', NULL, '5.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8096, 4277, 1, '0.0000', NULL, '1.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8097, 4278, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8098, 4279, 1, '0.0000', NULL, '66.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8099, 4280, 1, '0.0000', NULL, '35.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8100, 4281, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8101, 4282, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8102, 4283, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8103, 4284, 1, '0.0000', NULL, '1.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8104, 4285, 1, '0.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8105, 4286, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8106, 4287, 1, '0.0000', NULL, '1.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8107, 4288, 1, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8108, 4289, 1, '0.0000', NULL, '28.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8109, 4290, 1, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8110, 4291, 1, '0.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8111, 4292, 1, '0.0000', NULL, '17.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8112, 4293, 1, '0.0000', NULL, '4.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8113, 4294, 1, '0.0000', NULL, '7.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8114, 4295, 1, '0.0000', NULL, '56.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8115, 4296, 1, '0.0000', NULL, '4.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8116, 4297, 1, '0.0000', NULL, '48.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8117, 4298, 1, '0.0000', NULL, '19.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8118, 4299, 1, '0.0000', NULL, '18.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8119, 4300, 1, '0.0000', NULL, '52.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8120, 4301, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8121, 4302, 1, '0.0000', NULL, '16.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8122, 4303, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8123, 4304, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8124, 4305, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8125, 4306, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8126, 4307, 1, '0.0000', NULL, '9.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8127, 4308, 1, '0.0000', NULL, '18.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8128, 4309, 1, '0.0000', NULL, '32.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8129, 4310, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8130, 4311, 1, '0.0000', NULL, '0.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8131, 4312, 1, '0.0000', NULL, '2.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8132, 4313, 1, '0.0000', NULL, '31.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8133, 4314, 1, '0.0000', NULL, '35.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8134, 4315, 1, '0.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8135, 4316, 1, '0.0000', NULL, '13.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8136, 4317, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8137, 4318, 1, '0.0000', NULL, '2.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8138, 4319, 1, '0.0000', NULL, '3.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8139, 4320, 1, '0.0000', NULL, '6.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8140, 4321, 1, '0.0000', NULL, '16.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8141, 4322, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8142, 4323, 1, '0.0000', NULL, '36.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8143, 4324, 1, '0.0000', NULL, '36.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8144, 4325, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8145, 4326, 1, '0.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8146, 4327, 1, '0.0000', NULL, '36.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8147, 4328, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8148, 4329, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8149, 4330, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8150, 4331, 1, '0.0000', NULL, '54.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8151, 4332, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8152, 4333, 1, '0.0000', NULL, '2.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8153, 4334, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8154, 4335, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8155, 4336, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8156, 4337, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8157, 4338, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8158, 4339, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8159, 4340, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8160, 4341, 1, '0.0000', NULL, '2.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8161, 4342, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8162, 4343, 1, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8163, 4344, 1, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8164, 4345, 1, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8165, 4346, 1, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8166, 4347, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8167, 4348, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8168, 4349, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8169, 4350, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8170, 4351, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8171, 4352, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8172, 4353, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8173, 4354, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8174, 4355, 1, '0.0000', NULL, '16.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8175, 4356, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8176, 4357, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8177, 4358, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8178, 4359, 1, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8179, 4360, 1, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8180, 4361, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8181, 4362, 1, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8182, 4363, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8183, 4364, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8184, 4365, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8185, 4366, 1, '0.0000', NULL, '1.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8186, 4367, 1, '0.0000', NULL, '3.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8187, 4368, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8188, 4369, 1, '0.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8189, 4370, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8190, 4371, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8191, 4372, 1, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8192, 4373, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8193, 4374, 1, '0.0000', NULL, '0.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8194, 4375, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8195, 4376, 1, '0.0000', NULL, '27.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8196, 4377, 1, '0.0000', NULL, '7.0300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8197, 4378, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8198, 4379, 1, '0.0000', NULL, '0.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8199, 4380, 1, '0.0000', NULL, '0.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8200, 4381, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8201, 4382, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8202, 4383, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8203, 4384, 1, '0.0000', NULL, '8.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8204, 4385, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8205, 4386, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8206, 4387, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8207, 4388, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8208, 4389, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8209, 4390, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8210, 4391, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8211, 4392, 1, '0.0000', NULL, '18.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8212, 4393, 1, '0.0000', NULL, '17.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8213, 4394, 1, '0.0000', NULL, '1.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8214, 4395, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8215, 4396, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8216, 4397, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8217, 4398, 1, '0.0000', NULL, '7.6400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8218, 4399, 1, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8219, 4400, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8220, 4401, 1, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8221, 4402, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8222, 4403, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8223, 4404, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8224, 4405, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8225, 4406, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8226, 4407, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8227, 4408, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8228, 4409, 1, '0.0000', NULL, '1.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8229, 4410, 1, '0.0000', NULL, '0.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8230, 4411, 1, '0.0000', NULL, '40.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8231, 4412, 1, '0.0000', NULL, '2.1100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8232, 4413, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8233, 4414, 1, '0.0000', NULL, '35.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8234, 4415, 1, '0.0000', NULL, '11.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8235, 4416, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8236, 4417, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8237, 4418, 1, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8238, 4419, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8239, 4420, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8240, 4421, 1, '0.0000', NULL, '17.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8241, 4422, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8242, 4423, 1, '0.0000', NULL, '29.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8243, 4424, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8244, 4425, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8245, 4426, 1, '0.0000', NULL, '2.0600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8246, 4427, 1, '0.0000', NULL, '14.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8247, 4428, 1, '0.0000', NULL, '5.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8248, 4429, 1, '0.0000', NULL, '6.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8249, 4430, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8250, 4431, 1, '0.0000', NULL, '7.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8251, 4432, 1, '0.0000', NULL, '17.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8252, 4433, 1, '0.0000', NULL, '3.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8253, 4434, 1, '0.0000', NULL, '17.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8254, 4435, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8255, 4436, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8256, 4437, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8257, 4438, 1, '0.0000', NULL, '0.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8258, 4439, 1, '0.0000', NULL, '6.2700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8259, 4440, 1, '0.0000', NULL, '0.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8260, 4441, 1, '0.0000', NULL, '30.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8261, 4442, 1, '0.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8262, 4443, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8263, 4444, 1, '0.0000', NULL, '1.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8264, 4445, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8265, 4446, 1, '0.0000', NULL, '5.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8266, 4447, 1, '0.0000', NULL, '37.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8267, 4448, 1, '0.0000', NULL, '28.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8268, 4449, 1, '0.0000', NULL, '1.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8269, 4450, 1, '0.0000', NULL, '34.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8270, 4451, 1, '0.0000', NULL, '7.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8271, 4452, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8272, 4453, 1, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8273, 4454, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8274, 4455, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8275, 4456, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8276, 4457, 1, '0.0000', NULL, '5.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8277, 4458, 1, '0.0000', NULL, '7.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8278, 4459, 1, '0.0000', NULL, '32.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8279, 4460, 1, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8280, 4461, 1, '0.0000', NULL, '1.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8281, 4462, 1, '0.0000', NULL, '10.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8282, 4463, 1, '0.0000', NULL, '16.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8283, 4464, 1, '0.0000', NULL, '92.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8284, 4465, 1, '0.0000', NULL, '2.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8285, 4466, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8286, 4467, 1, '0.0000', NULL, '13.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8287, 4468, 1, '0.0000', NULL, '38.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8288, 4469, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8289, 4470, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8290, 4471, 1, '0.0000', NULL, '0.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8291, 4472, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8292, 4473, 1, '0.0000', NULL, '6.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8293, 4474, 1, '0.0000', NULL, '1.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8294, 4475, 1, '0.0000', NULL, '5.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8295, 4476, 1, '0.0000', NULL, '3.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8296, 4477, 1, '0.0000', NULL, '2.3100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8297, 4478, 1, '0.0000', NULL, '2.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8298, 4479, 1, '0.0000', NULL, '3.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8299, 4480, 1, '0.0000', NULL, '4.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8300, 4481, 1, '0.0000', NULL, '0.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8301, 4482, 1, '0.0000', NULL, '8.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8302, 4483, 1, '0.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8303, 4484, 1, '0.0000', NULL, '7.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8304, 4485, 1, '0.0000', NULL, '5.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8305, 4486, 1, '0.0000', NULL, '4.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8306, 4487, 1, '0.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8307, 4488, 1, '0.0000', NULL, '8.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8308, 4489, 1, '0.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8309, 4490, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8310, 4491, 1, '0.0000', NULL, '4.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8311, 4492, 1, '0.0000', NULL, '7.6800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8312, 4493, 1, '0.0000', NULL, '21.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8313, 4494, 1, '0.0000', NULL, '19.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8314, 4495, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8315, 4496, 1, '0.0000', NULL, '19.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8316, 4497, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8317, 4498, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8318, 4499, 1, '0.0000', NULL, '17.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8319, 4500, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8320, 4501, 1, '0.0000', NULL, '13.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8321, 4502, 1, '0.0000', NULL, '25.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8322, 4503, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8323, 4504, 1, '0.0000', NULL, '5.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8324, 4505, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8325, 4506, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8326, 4507, 1, '0.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8327, 4508, 1, '0.0000', NULL, '15.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8328, 4509, 1, '0.0000', NULL, '5.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8329, 4510, 1, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8330, 4511, 1, '0.0000', NULL, '9.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8331, 4512, 1, '0.0000', NULL, '1.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8332, 4513, 1, '0.0000', NULL, '4.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8333, 4514, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8334, 4515, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8335, 4516, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8336, 4517, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8337, 4518, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8338, 4519, 1, '0.0000', NULL, '38.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8339, 4520, 1, '0.0000', NULL, '19.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8340, 4521, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8341, 4522, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8342, 4523, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8343, 4524, 1, '0.0000', NULL, '2.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8344, 4525, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8345, 4526, 1, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8346, 4527, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8347, 4528, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8348, 4529, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8349, 4530, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8350, 4531, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8351, 4532, 1, '0.0000', NULL, '3.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8352, 4533, 1, '0.0000', NULL, '8.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8353, 4534, 1, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8354, 4535, 1, '0.0000', NULL, '5.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8355, 4536, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8356, 4537, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8357, 4538, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8358, 4539, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8359, 4540, 1, '0.0000', NULL, '5.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8360, 4541, 1, '0.0000', NULL, '6.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8361, 4542, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8362, 4543, 1, '0.0000', NULL, '4.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8363, 4544, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8364, 4545, 1, '0.0000', NULL, '2.9100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8365, 4546, 1, '0.0000', NULL, '2.0800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8366, 4547, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8367, 4548, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8368, 4549, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8369, 4550, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8370, 4551, 1, '0.0000', NULL, '5.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8371, 4552, 1, '0.0000', NULL, '41.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8372, 4553, 1, '0.0000', NULL, '7.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8373, 4554, 1, '0.0000', NULL, '25.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8374, 4555, 1, '0.0000', NULL, '45.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8375, 4556, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8376, 4557, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8377, 4558, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8378, 4559, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8379, 4560, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8380, 4561, 1, '0.0000', NULL, '5.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8381, 4562, 1, '0.0000', NULL, '1.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8382, 4563, 1, '0.0000', NULL, '2.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8383, 4564, 1, '0.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8384, 4565, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8385, 4566, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8386, 4567, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8387, 4568, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8388, 4569, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8389, 4570, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8390, 4571, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8391, 4572, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8392, 4573, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8393, 4574, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8394, 4575, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8395, 4576, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8396, 4577, 1, '0.0000', NULL, '350.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8397, 4578, 1, '0.0000', NULL, '75.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8398, 4579, 1, '0.0000', NULL, '3.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8399, 4580, 1, '0.0000', NULL, '4.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8400, 4581, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8401, 4582, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8402, 4583, 1, '0.0000', NULL, '6.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8403, 4584, 1, '0.0000', NULL, '80.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8404, 4585, 1, '0.0000', NULL, '11.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8405, 4586, 1, '0.0000', NULL, '0.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8406, 4587, 1, '0.0000', NULL, '17.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8407, 4588, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8408, 4589, 1, '0.0000', NULL, '15.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8409, 4590, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8410, 4591, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8411, 4592, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8412, 4593, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8413, 4594, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8414, 4595, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8415, 4596, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8416, 4597, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8417, 4598, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8418, 4599, 1, '0.0000', NULL, '7.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8419, 4600, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8420, 4601, 1, '0.0000', NULL, '1.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8421, 4602, 1, '0.0000', NULL, '8.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8422, 4603, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8423, 4604, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8424, 4605, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8425, 4606, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8426, 4607, 1, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8427, 4608, 1, '0.0000', NULL, '0.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8428, 4609, 1, '0.0000', NULL, '5.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8429, 4610, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8430, 4611, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8431, 4612, 1, '0.0000', NULL, '7.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8432, 4613, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8433, 4614, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8434, 4615, 1, '0.0000', NULL, '36.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8435, 4616, 1, '0.0000', NULL, '4.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8436, 4617, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8437, 4618, 1, '0.0000', NULL, '35.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8438, 4619, 1, '0.0000', NULL, '40.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8439, 4620, 1, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8440, 4621, 1, '0.0000', NULL, '1.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8441, 4622, 1, '0.0000', NULL, '5.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8442, 4623, 1, '0.0000', NULL, '1.0700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8443, 4624, 1, '0.0000', NULL, '0.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8444, 4625, 1, '0.0000', NULL, '16.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8445, 4626, 1, '0.0000', NULL, '15.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8446, 4627, 1, '0.0000', NULL, '21.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8447, 4628, 1, '0.0000', NULL, '73.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8448, 4629, 1, '0.0000', NULL, '55.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8449, 4630, 1, '0.0000', NULL, '3.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8450, 4631, 1, '0.0000', NULL, '21.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8451, 4632, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8452, 4633, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8453, 4634, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8454, 4635, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8455, 4636, 1, '0.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8456, 4637, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8457, 4638, 1, '0.0000', NULL, '1.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8458, 4639, 1, '0.0000', NULL, '38.7600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8459, 4640, 1, '0.0000', NULL, '0.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8460, 4641, 1, '0.0000', NULL, '33.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8461, 4642, 1, '0.0000', NULL, '15.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8462, 4643, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8463, 4644, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8464, 4645, 1, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8465, 4646, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8466, 4647, 1, '0.0000', NULL, '14.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8467, 4648, 1, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8468, 4649, 1, '0.0000', NULL, '5.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8469, 4650, 1, '0.0000', NULL, '0.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8470, 4651, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8471, 4652, 1, '0.0000', NULL, '6.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8472, 4653, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8473, 4654, 1, '0.0000', NULL, '2.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8474, 4655, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8475, 4656, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8476, 4657, 1, '0.0000', NULL, '56.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8477, 4658, 1, '0.0000', NULL, '3.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8478, 4659, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8479, 4660, 1, '0.0000', NULL, '27.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8480, 4661, 1, '0.0000', NULL, '34.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8481, 4662, 1, '0.0000', NULL, '36.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8482, 4663, 1, '0.0000', NULL, '43.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8483, 4664, 1, '0.0000', NULL, '3.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8484, 4665, 1, '0.0000', NULL, '16.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8485, 4666, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8486, 4667, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8487, 4668, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8488, 4669, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8489, 4670, 1, '0.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8490, 4671, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8491, 4672, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8492, 4673, 1, '0.0000', NULL, '200.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8493, 4674, 1, '0.0000', NULL, '16.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8494, 4675, 1, '0.0000', NULL, '4.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8495, 4676, 1, '0.0000', NULL, '2.0800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8496, 4677, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8497, 4678, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8498, 4679, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8499, 4680, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8500, 4681, 1, '0.0000', NULL, '0.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8501, 4682, 1, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8502, 4683, 1, '0.0000', NULL, '2.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8503, 4684, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8504, 4685, 1, '0.0000', NULL, '21.1300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8505, 4686, 1, '0.0000', NULL, '2.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8506, 4687, 1, '0.0000', NULL, '5.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8507, 4688, 1, '0.0000', NULL, '10.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8508, 4689, 1, '0.0000', NULL, '29.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8509, 4690, 1, '0.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8510, 4691, 1, '0.0000', NULL, '4.0500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8511, 4692, 1, '0.0000', NULL, '10.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8512, 4693, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8513, 4694, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8514, 4695, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8515, 4696, 1, '0.0000', NULL, '4.2700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8516, 4697, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8517, 4698, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8518, 4699, 1, '0.0000', NULL, '2.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8519, 4700, 1, '0.0000', NULL, '39.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8520, 4701, 1, '0.0000', NULL, '36.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8521, 4702, 1, '0.0000', NULL, '25.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8522, 4703, 1, '0.0000', NULL, '77.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8523, 4704, 1, '0.0000', NULL, '47.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8524, 4705, 1, '0.0000', NULL, '6.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8525, 4706, 1, '0.0000', NULL, '7.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8526, 4707, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8527, 4708, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8528, 4709, 1, '0.0000', NULL, '0.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8529, 4710, 1, '0.0000', NULL, '1.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8530, 4711, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8531, 4712, 1, '0.0000', NULL, '7.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8532, 4713, 1, '0.0000', NULL, '0.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8533, 4714, 1, '0.0000', NULL, '4.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8534, 4715, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8535, 4716, 1, '0.0000', NULL, '38.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8536, 4717, 1, '0.0000', NULL, '0.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8537, 4718, 1, '0.0000', NULL, '10.6300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8538, 4719, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8539, 4720, 1, '0.0000', NULL, '13.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8540, 4721, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8541, 4722, 1, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8542, 4723, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8543, 4724, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8544, 4725, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8545, 4726, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8546, 4727, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8547, 4728, 1, '0.0000', NULL, '4.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8548, 4729, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8549, 4730, 1, '0.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8550, 4731, 1, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8551, 4732, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8552, 4733, 1, '0.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8553, 4734, 1, '0.0000', NULL, '3.5400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8554, 4735, 1, '0.0000', NULL, '7.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8555, 4736, 1, '0.0000', NULL, '0.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8556, 4737, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8557, 4738, 1, '0.0000', NULL, '7.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8558, 4739, 1, '0.0000', NULL, '52.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8559, 4740, 1, '0.0000', NULL, '46.2600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8560, 4741, 1, '0.0000', NULL, '1.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8561, 4742, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8562, 4743, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8563, 4744, 1, '0.0000', NULL, '1.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8564, 4745, 1, '0.0000', NULL, '1.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8565, 4746, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8566, 4747, 1, '0.0000', NULL, '7.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8567, 4748, 1, '0.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8568, 4749, 1, '0.0000', NULL, '2.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8569, 4750, 1, '0.0000', NULL, '1.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8570, 4751, 1, '0.0000', NULL, '0.5700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8571, 4752, 1, '0.0000', NULL, '0.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8572, 4753, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8573, 4754, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8574, 4755, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8575, 4756, 1, '0.0000', NULL, '0.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8576, 4757, 1, '0.0000', NULL, '0.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8577, 4758, 1, '0.0000', NULL, '304.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8578, 4759, 1, '0.0000', NULL, '33.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8579, 4760, 1, '0.0000', NULL, '7.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8580, 4761, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8581, 4762, 1, '0.0000', NULL, '1.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8582, 4763, 1, '0.0000', NULL, '0.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8583, 4764, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8584, 4765, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8585, 4766, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8586, 4767, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8587, 4768, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8588, 4769, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8589, 4770, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8590, 4771, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8591, 4772, 1, '0.0000', NULL, '0.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8592, 4773, 1, '0.0000', NULL, '22.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8593, 4774, 1, '0.0000', NULL, '14.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8594, 4775, 1, '0.0000', NULL, '4.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8595, 4776, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8596, 4777, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8597, 4778, 1, '0.0000', NULL, '22.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8598, 4779, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8599, 4780, 1, '0.0000', NULL, '43.1500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8600, 4781, 1, '0.0000', NULL, '22.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8601, 4782, 1, '0.0000', NULL, '2.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8602, 4783, 1, '0.0000', NULL, '6.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8603, 4784, 1, '0.0000', NULL, '0.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8604, 4785, 1, '0.0000', NULL, '0.7500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8605, 4786, 1, '0.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8606, 4787, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8607, 4788, 1, '0.0000', NULL, '19.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8608, 4789, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8609, 4790, 1, '0.0000', NULL, '2.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8610, 4791, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8611, 4792, 1, '0.0000', NULL, '42.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8612, 4793, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8613, 4794, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8614, 4795, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8615, 4796, 1, '0.0000', NULL, '6.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8616, 4797, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8617, 4798, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8618, 4799, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8619, 4800, 1, '0.0000', NULL, '2.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8620, 4801, 1, '0.0000', NULL, '29.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8621, 4802, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8622, 4803, 1, '0.0000', NULL, '0.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8623, 4804, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8624, 4805, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8625, 4806, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8626, 4807, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8627, 4808, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8628, 4809, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8629, 4810, 1, '0.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8630, 4811, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8631, 4812, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8632, 4813, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8633, 4814, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8634, 4815, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8635, 4816, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8636, 4817, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8637, 4818, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8638, 4819, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8639, 4820, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8640, 4821, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8641, 4822, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8642, 4823, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8643, 4824, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8644, 4825, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8645, 4826, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8646, 4827, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8647, 4828, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8648, 4829, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8649, 4830, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8650, 4831, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8651, 4832, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8652, 4833, 1, '0.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8653, 4834, 1, '0.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8654, 4835, 1, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8655, 4836, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8656, 4837, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8657, 4838, 1, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8658, 4839, 1, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8659, 4840, 1, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8660, 4841, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8661, 4842, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8662, 4843, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8663, 4844, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8664, 4845, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8665, 4846, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8666, 4847, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8667, 4848, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8668, 4849, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8669, 4850, 1, '0.0000', NULL, '52.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8670, 4851, 1, '0.0000', NULL, '0.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8671, 4852, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8672, 4853, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8673, 4854, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8674, 4855, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8675, 4856, 1, '0.0000', NULL, '9.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8676, 4857, 1, '0.0000', NULL, '4.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8677, 4858, 1, '0.0000', NULL, '0.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8678, 4859, 1, '0.0000', NULL, '2.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8679, 4860, 1, '0.0000', NULL, '14.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8680, 4861, 1, '0.0000', NULL, '4.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8681, 4862, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8682, 4863, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8683, 4864, 1, '0.0000', NULL, '0.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8684, 4865, 1, '0.0000', NULL, '6.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8685, 4866, 1, '0.0000', NULL, '5.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8686, 4867, 1, '0.0000', NULL, '8.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8687, 4868, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8688, 4869, 1, '0.0000', NULL, '17.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8689, 4870, 1, '0.0000', NULL, '26.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8690, 4871, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8691, 4872, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8692, 4873, 1, '0.0000', NULL, '10.3400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8693, 4874, 1, '0.0000', NULL, '0.4700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8694, 4875, 1, '0.0000', NULL, '32.1800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8695, 4876, 1, '0.0000', NULL, '18.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8696, 4877, 1, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8697, 4878, 1, '0.0000', NULL, '14.7700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8698, 4879, 1, '0.0000', NULL, '0.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8699, 4880, 1, '0.0000', NULL, '5.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8700, 4881, 1, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8701, 4882, 1, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8702, 4883, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8703, 4884, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8704, 4885, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8705, 4886, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8706, 4887, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8707, 4888, 1, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8708, 4889, 1, '0.0000', NULL, '35.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8709, 4890, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8710, 4891, 1, '0.0000', NULL, '0.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8711, 4892, 1, '0.0000', NULL, '0.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8712, 4893, 1, '0.0000', NULL, '14.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8713, 4894, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8714, 4895, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8715, 4896, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8716, 4897, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8717, 4898, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8718, 4899, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8719, 4900, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8720, 4901, 1, '0.0000', NULL, '60.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8721, 4902, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8722, 4903, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8723, 4904, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8724, 4905, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8725, 4906, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8726, 4907, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8727, 4908, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8728, 4909, 1, '0.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8729, 4910, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8730, 4911, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8731, 4912, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8732, 4913, 1, '0.0000', NULL, '0.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8733, 4914, 1, '0.0000', NULL, '6.9300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8734, 4915, 1, '0.0000', NULL, '9.5300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8735, 4916, 1, '0.0000', NULL, '7.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8736, 4917, 1, '0.0000', NULL, '6.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8737, 4918, 1, '0.0000', NULL, '28.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8738, 4919, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8739, 4920, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8740, 4921, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8741, 4922, 1, '0.0000', NULL, '20.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8742, 4923, 1, '0.0000', NULL, '8.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8743, 4924, 1, '0.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8744, 4925, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8745, 4926, 1, '0.0000', NULL, '10.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8746, 4927, 1, '0.0000', NULL, '1.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8747, 4928, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8748, 4929, 1, '0.0000', NULL, '13.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8749, 4930, 1, '0.0000', NULL, '5.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8750, 4931, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8751, 4932, 1, '0.0000', NULL, '3.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8752, 4933, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8753, 4934, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8754, 4935, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8755, 4936, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8756, 4937, 1, '0.0000', NULL, '15.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8757, 4938, 1, '0.0000', NULL, '6.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8758, 4939, 1, '0.0000', NULL, '11.9600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8759, 4940, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8760, 4941, 1, '0.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8761, 4942, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8762, 4943, 1, '0.0000', NULL, '50.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8763, 4944, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8764, 4945, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8765, 4946, 1, '0.0000', NULL, '15.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8766, 4947, 1, '0.0000', NULL, '17.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8767, 4948, 1, '0.0000', NULL, '21.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8768, 4949, 1, '0.0000', NULL, '0.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8769, 4950, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8770, 4951, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8771, 4952, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8772, 4953, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8773, 4954, 1, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8774, 4955, 1, '0.0000', NULL, '5.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8775, 4956, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8776, 4957, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8777, 4958, 1, '0.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8778, 4959, 1, '0.0000', NULL, '13.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8779, 4960, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8780, 4961, 1, '0.0000', NULL, '7.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8781, 4962, 1, '0.0000', NULL, '4.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8782, 4963, 1, '0.0000', NULL, '0.7900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8783, 4964, 1, '0.0000', NULL, '16.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8784, 4965, 1, '0.0000', NULL, '6.6700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8785, 4966, 1, '0.0000', NULL, '13.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8786, 4967, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8787, 4968, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8788, 4969, 1, '0.0000', NULL, '4.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8789, 4970, 1, '0.0000', NULL, '0.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8790, 4971, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8791, 4972, 1, '0.0000', NULL, '5.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8792, 4973, 1, '0.0000', NULL, '5.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8793, 4974, 1, '0.0000', NULL, '1.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8794, 4975, 1, '0.0000', NULL, '5.3900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8795, 4976, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8796, 4977, 1, '0.0000', NULL, '0.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8797, 4978, 1, '0.0000', NULL, '8.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8798, 4979, 1, '0.0000', NULL, '0.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8799, 4980, 1, '0.0000', NULL, '15.8900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8800, 4981, 1, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8801, 4982, 1, '0.0000', NULL, '46.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8802, 4983, 1, '0.0000', NULL, '4.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8803, 4984, 1, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8804, 4985, 1, '0.0000', NULL, '5.8300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8805, 4986, 1, '0.0000', NULL, '9.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8806, 4987, 1, '0.0000', NULL, '1.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8807, 4988, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8808, 4989, 1, '0.0000', NULL, '2.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8809, 4990, 1, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8810, 4991, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8811, 4992, 1, '0.0000', NULL, '20.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8812, 4993, 1, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8813, 4994, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8814, 4995, 1, '0.0000', NULL, '4.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8815, 4996, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8816, 4997, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8817, 4998, 1, '0.0000', NULL, '10.8600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8818, 4999, 1, '0.0000', NULL, '5.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8819, 5000, 1, '0.0000', NULL, '6.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8820, 5001, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8821, 5002, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8822, 5003, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8823, 5004, 1, '0.0000', NULL, '10.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8824, 5005, 1, '0.0000', NULL, '40.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8825, 5006, 1, '0.0000', NULL, '39.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8826, 5007, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8827, 5008, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8828, 5009, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8829, 5010, 1, '0.0000', NULL, '11.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8830, 5011, 1, '0.0000', NULL, '24.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8831, 5012, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8832, 5013, 1, '0.0000', NULL, '44.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8833, 5014, 1, '0.0000', NULL, '25.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8834, 5015, 1, '0.0000', NULL, '20.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8835, 5016, 1, '0.0000', NULL, '1.1200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8836, 5017, 1, '0.0000', NULL, '6.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8837, 5018, 1, '0.0000', NULL, '3.4300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8838, 5019, 1, '0.0000', NULL, '15.1700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8839, 5020, 1, '0.0000', NULL, '16.8400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8840, 5021, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8841, 5022, 1, '0.0000', NULL, '19.6900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8842, 5023, 1, '0.0000', NULL, '6.4900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8843, 5024, 1, '0.0000', NULL, '9.8500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8844, 5025, 1, '0.0000', NULL, '37.3700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8845, 5026, 1, '0.0000', NULL, '11.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8846, 5027, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8847, 5028, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8848, 5029, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8849, 5030, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8850, 5031, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8851, 5032, 1, '0.0000', NULL, '30.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8852, 5033, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8853, 5034, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8854, 5035, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8855, 5036, 1, '0.0000', NULL, '2.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8856, 5037, 1, '0.0000', NULL, '2.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8857, 5038, 1, '0.0000', NULL, '3.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8858, 5039, 1, '0.0000', NULL, '1.5500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8859, 5040, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8860, 5041, 1, '0.0000', NULL, '2.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8861, 5042, 1, '0.0000', NULL, '1.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8862, 5043, 1, '0.0000', NULL, '1.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8863, 5044, 1, '0.0000', NULL, '0.4500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8864, 5045, 1, '0.0000', NULL, '0.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8865, 5046, 1, '0.0000', NULL, '3.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8866, 5047, 1, '0.0000', NULL, '0.3500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8867, 5048, 1, '0.0000', NULL, '0.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8868, 5049, 1, '0.0000', NULL, '6.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8869, 5050, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8870, 5051, 1, '0.0000', NULL, '68.2500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8871, 5052, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8872, 5053, 1, '0.0000', NULL, '2.3300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8873, 5054, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8874, 5055, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8875, 5056, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8876, 5057, 1, '0.0000', NULL, '2.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8877, 5058, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8878, 5059, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8879, 5060, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8880, 5061, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8881, 5062, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8882, 5063, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8883, 5064, 1, '0.0000', NULL, '38.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8884, 5065, 1, '0.0000', NULL, '11.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8885, 5066, 1, '0.0000', NULL, '3.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8886, 5067, 1, '0.0000', NULL, '28.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8887, 5068, 1, '0.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8888, 5069, 1, '0.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8889, 5070, 1, '0.0000', NULL, '8.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8890, 5071, 1, '0.0000', NULL, '2.4700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8891, 5072, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8892, 5073, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8893, 5074, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8894, 5075, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8895, 5076, 1, '0.0000', NULL, '2.8100');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8896, 5077, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8897, 5078, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8898, 5079, 1, '0.0000', NULL, '0.1600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8899, 5080, 1, '0.0000', NULL, '3.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8900, 5081, 1, '0.0000', NULL, '3.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8901, 5082, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8902, 5083, 1, '0.0000', NULL, '6.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8903, 5084, 1, '0.0000', NULL, '6.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8904, 5085, 1, '0.0000', NULL, '9.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8905, 5086, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8906, 5087, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8907, 5088, 1, '0.0000', NULL, '10.2400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8908, 5089, 1, '0.0000', NULL, '12.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8909, 5090, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8910, 5091, 1, '0.0000', NULL, '12.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8911, 5092, 1, '0.0000', NULL, '9.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8912, 5093, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8913, 5094, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8914, 5095, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8915, 5096, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8916, 5097, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8917, 5098, 1, '0.0000', NULL, '13.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8918, 5099, 1, '0.0000', NULL, '92.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8919, 5100, 1, '0.0000', NULL, '8.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8920, 5101, 1, '0.0000', NULL, '5.9500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8921, 5102, 1, '0.0000', NULL, '7.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8922, 5103, 1, '0.0000', NULL, '72.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8923, 5104, 1, '0.0000', NULL, '11.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8924, 5105, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8925, 5106, 1, '0.0000', NULL, '72.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8926, 5107, 1, '0.0000', NULL, '24.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8927, 5108, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8928, 5109, 1, '0.0000', NULL, '0.6600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8929, 5110, 1, '0.0000', NULL, '14.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8930, 5111, 1, '0.0000', NULL, '5.7200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8931, 5112, 1, '0.0000', NULL, '3.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8932, 5113, 1, '0.0000', NULL, '89.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8933, 5114, 1, '0.0000', NULL, '26.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8934, 5115, 1, '0.0000', NULL, '31.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8935, 5116, 1, '0.0000', NULL, '52.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8936, 5117, 1, '0.0000', NULL, '91.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8937, 5118, 1, '0.0000', NULL, '17.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8938, 5119, 1, '0.0000', NULL, '53.4600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8939, 5120, 1, '0.0000', NULL, '41.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8940, 5121, 1, '0.0000', NULL, '40.4400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8941, 5122, 1, '0.0000', NULL, '16.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8942, 5123, 1, '0.0000', NULL, '33.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8943, 5124, 1, '0.0000', NULL, '52.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8944, 5125, 1, '0.0000', NULL, '39.9000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8945, 5126, 1, '0.0000', NULL, '41.2200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8946, 5127, 1, '0.0000', NULL, '38.2800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8947, 5128, 1, '0.0000', NULL, '17.8200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8948, 5129, 1, '0.0000', NULL, '35.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8949, 5130, 1, '0.0000', NULL, '30.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8950, 5131, 1, '0.0000', NULL, '27.4800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8951, 5132, 1, '0.0000', NULL, '28.3800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8952, 5133, 1, '0.0000', NULL, '45.3600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8953, 5134, 1, '0.0000', NULL, '65.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8954, 5135, 1, '0.0000', NULL, '52.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8955, 5136, 1, '0.0000', NULL, '0.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8956, 5137, 1, '0.0000', NULL, '8.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8957, 5138, 1, '0.0000', NULL, '7.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8958, 5139, 1, '0.0000', NULL, '17.6500');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8959, 5140, 1, '0.0000', NULL, '17.2900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8960, 5141, 1, '0.0000', NULL, '32.9800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8961, 5142, 1, '0.0000', NULL, '9.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8962, 5143, 1, '0.0000', NULL, '51.7800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8963, 5144, 1, '0.0000', NULL, '70.5800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8964, 5145, 1, '0.0000', NULL, '14.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8965, 5146, 1, '0.0000', NULL, '42.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8966, 5147, 1, '0.0000', NULL, '46.7300');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8967, 5148, 1, '0.0000', NULL, '37.7400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8968, 5149, 1, '0.0000', NULL, '38.0400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8969, 5150, 1, '0.0000', NULL, '61.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8970, 5151, 1, '0.0000', NULL, '62.0200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8971, 5152, 1, '0.0000', NULL, '24.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8972, 5153, 1, '0.0000', NULL, '9.9200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8973, 5154, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8974, 5155, 1, '0.0000', NULL, '5.6200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8975, 5156, 1, '0.0000', NULL, '5.2000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8976, 5157, 1, '0.0000', NULL, '7.9400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8977, 5158, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8978, 5159, 1, '0.0000', NULL, '45.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8979, 5160, 1, '0.0000', NULL, '4.9900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8980, 5161, 1, '0.0000', NULL, '6.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8981, 5162, 1, '0.0000', NULL, '1.1400');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8982, 5163, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8983, 5164, 1, '0.0000', NULL, '25.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8984, 5165, 1, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8985, 5166, 1, '0.0000', NULL, '10.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8986, 5167, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8987, 5168, 1, '0.0000', NULL, '5.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8988, 5169, 1, '0.0000', NULL, '15.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8989, 5170, 1, '0.0000', NULL, '4.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8990, 5171, 1, '0.0000', NULL, '0.5600');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8991, 5172, 1, '0.0000', NULL, '4.4200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8992, 5173, 1, '0.0000', NULL, '4.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8993, 5174, 1, '0.0000', NULL, '0.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8994, 5175, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8995, 5176, 1, '0.0000', NULL, '3.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8996, 5177, 1, '0.0000', NULL, '1.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8997, 5178, 1, '0.0000', NULL, '27.1000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8998, 5179, 1, '0.0000', NULL, '5.4000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (8999, 5180, 1, '0.0000', NULL, '10.5000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9000, 5181, 1, '0.0000', NULL, '5.3000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9001, 5182, 1, '0.0000', NULL, '4.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9002, 5183, 1, '0.0000', NULL, '11.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9003, 5184, 1, '0.0000', NULL, '20.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9004, 5185, 1, '0.0000', NULL, '6.8700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9005, 5186, 1, '0.0000', NULL, '33.4700');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9006, 5187, 1, '0.0000', NULL, '12.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9007, 5188, 1, '0.0000', NULL, '5.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9008, 5189, 1, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9009, 5190, 1, '0.0000', NULL, '7.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9010, 5191, 1, '0.0000', NULL, '1.6533');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9011, 5192, 1, '0.0000', NULL, '19.8000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9012, 5193, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9013, 5194, 1, '0.0000', NULL, '5.5900');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9014, 5195, 1, '0.0000', NULL, '4.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9015, 5196, 1, '0.0000', NULL, '4.3200');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9016, 5197, 1, '0.0000', NULL, '1.6000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9017, 5198, 1, '0.0000', NULL, '68.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9018, 3088, 2, '0.0000', NULL, '0.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9019, 3088, 3, '0.0000', NULL, '0.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9020, 3088, 4, '0.0000', NULL, '0.8800');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9021, 3098, 2, '0.0000', NULL, '55.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9022, 3098, 3, '0.0000', NULL, '55.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9023, 3098, 4, '0.0000', NULL, '55.7000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9024, 3232, 2, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9025, 3232, 3, '0.0000', NULL, '3.0000');
INSERT INTO `sma_warehouses_products` (`id`, `product_id`, `warehouse_id`, `quantity`, `rack`, `avg_cost`) VALUES (9026, 3232, 4, '0.0000', NULL, '3.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 DEFAULT CHARSET=utf8;

